-
Notifications
You must be signed in to change notification settings - Fork 37
/
CHANGELOG.txt
99 lines (87 loc) · 4.88 KB
/
CHANGELOG.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
v1.4.1
-Fixed issue with appearing popover when binding is dynamically changed when popover is hidden
-Fixed issue with numeric 0 value for radio buttons
-Fixed issue with updating popver placement when template is used
v1.4.0
-Added support of stacked progress-bars for progress binding
-Added support of custom event names for modal binding (so if you override events of modal, you still would be able to use modal binding)
-Added support of usage of all template options with popover binding
-Added possibility to use object with template options for popover binding's template property
-Fixed issue with clickable disabled checkboxes in checkbox binding
-Fixed not updating popover when its data was dynamically changed while popover is opened
-Fixed issue with not disabled controls in pagination binding for cases, when pagesCount is zero
-Fixed issue with numeric values in radio binding
-Removed Bootstrap dependency from nuspec, since there is a lot of different packages with Bootstrap
-Removed jamjs repository link since it is closed now
v1.3.2
-Fixed changing of selected radio button, when it is disabled
-Fixed changing of selected checkbox, when it is disabled
v1.3.1
-Fixed not working close button in popover, when bootstrap 3.3.5 used
-Removed unwrapProperties implementation as ko.toJS do the same. ko.utils.unwrapProperties still available as alias for ko.toJS
-Prioritised loading reference to knockout and jQuery from global context. It fixes cases, when knockout and jQuery are loaded from cdn and knockstarp is loaded via 'require'
v1.3.0
-Added pagination binding
-Added pager binding
-Added class binding
-Updated bower dependencies with official knockout package
-Updated to use anonymous module when exporting via AMD
-Fixed alert and checkbox binding to work in ie8
-Fixed carousel binding to add "active" class to first indicator after loading
-Fixed radioBinding using value with quote
-Fixed the previous css class is not removed from alert element
-Popover now subscribes to the bootstrap 3.3.5 event inserted.bs.popover if available
-Changed grunt-templates-concat to grunt-html-convert in build process, because grunt-templates-concat was removed from npm repo for unknown reasons.
v1.2.1
-Fixed issue with submitting forms with toggle buttons
-Fixed attemting to set visible property for computed value for modal binding
-Updated docs to work via https
v1.2.0
-Changed dependency name from jQuery to official jquery
-Added dialogCss property to modal binding
v1.1.0
-Added possibility to use popover binding with other bindings on same element and with other bindings on child elements
-Added support of close button via 'data-dismiss="popover"' for popover binding
-Made visible property optional for modal binding
-Added possibility of using observable header, body and footer properties to modal binding
-Added possibility to obtain added templates from stringTemplateEngine
-Added possibility to provide different options for progress-bar in progress binding
-Added possibility to change default css and attributes of root element for modal, progress and carousel bindings
v1.0.0
-Fixed popover positioning, when template is used
-Fixed not changing template, when popover is opened
-Added possibility to add new string-based templates dynamically
-Added possibility to change default template engine for default templates of Knockstrap bindings
-Rewrote stringTemplateEngine implementation
-Added tests for stringTemplateEngine
-Added possibility to change default template engine for header, footer and body in modal binding
-Added possibility to pass modal options via data-attributes
-Reorganized and updated documentation
-Added travis-ci support
v0.4.0
-Added unit tests via jasmine for all bindings and utility functions
-Added throwing exception, when binding is used with incompatible values
-Added unchecking of buttons for radio binding, when no buttons have passed value
-Fixed checkboxes don't have 'checked' property set to true, when they are clicked for checkbox binding
-Made 'footer' property optional for modal binding
-Fixed carousel binding bugs
-Removed close callback from alert binding ('close.bs.alert' event from bootstrap can be used instead)
-Updated alert binding default template: now it require only 'message' property, 'type' property doesn't depend on template data
-Updated unwrapPoperties function: now if you pass not objects, it returns them without transformation into objects.
-Added nuget package manager support
v0.3.0
-Added checkbox binding
-Added carousel binding
-Changed bindings documentation
-Updated uniqueId function: now it will generate separate sequences for different prefixes
-Updated radio binding: now it will support dynamically added buttons
-Added short notation for popover binding
-Added bower and jam package managers support
v0.2.0
-Added radio binding
-Added toggle binding
-Dividing examples into separate files
-Added sources for examples
-Small fixes
v0.1.0
-First version