@syncfusion/ej2-navigations 17.3.9-beta → 17.3.14-96615
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +244 -0
- package/CHANGELOG.md +898 -800
- package/README.md +163 -163
- package/dist/ej2-navigations.umd.min.js +1 -10
- package/dist/ej2-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-navigations.es2015.js +325 -170
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +455 -300
- package/dist/es6/ej2-navigations.es5.js.map +1 -1
- package/dist/global/ej2-navigations.min.js +1 -10
- package/dist/global/ej2-navigations.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/dist/ts/accordion/accordion.ts +1312 -0
- package/dist/ts/common/h-scroll.ts +459 -0
- package/dist/ts/common/menu-base.ts +2131 -0
- package/dist/ts/common/v-scroll.ts +430 -0
- package/dist/ts/context-menu/context-menu.ts +119 -0
- package/dist/ts/menu/menu.ts +270 -0
- package/dist/ts/sidebar/sidebar.ts +817 -0
- package/dist/ts/tab/tab.ts +1761 -0
- package/dist/ts/toolbar/toolbar.ts +2076 -0
- package/dist/ts/treeview/treeview.ts +5050 -0
- package/helpers/e2e/index.js +3 -3
- package/license +10 -10
- package/package.json +135 -149
- package/src/accordion/accordion-model.d.ts +156 -156
- package/src/accordion/accordion.d.ts +1 -0
- package/src/accordion/accordion.js +40 -41
- package/src/common/h-scroll-model.d.ts +5 -5
- package/src/common/h-scroll.js +19 -20
- package/src/common/menu-base-model.d.ts +157 -157
- package/src/common/menu-base.d.ts +19 -0
- package/src/common/menu-base.js +94 -24
- package/src/common/v-scroll-model.d.ts +5 -5
- package/src/common/v-scroll.js +19 -19
- package/src/context-menu/context-menu-model.d.ts +15 -15
- package/src/context-menu/context-menu.js +19 -19
- package/src/menu/menu-model.d.ts +30 -30
- package/src/menu/menu.js +19 -19
- package/src/sidebar/sidebar-model.d.ts +136 -136
- package/src/sidebar/sidebar.js +19 -19
- package/src/tab/tab-model.d.ts +215 -215
- package/src/tab/tab.d.ts +3 -0
- package/src/tab/tab.js +117 -82
- package/src/toolbar/toolbar-model.d.ts +175 -175
- package/src/toolbar/toolbar.d.ts +1 -0
- package/src/toolbar/toolbar.js +30 -24
- package/src/treeview/treeview-model.d.ts +323 -323
- package/src/treeview/treeview.js +79 -33
- package/styles/accordion/_all.scss +2 -2
- package/styles/accordion/_bootstrap-dark-definition.scss +69 -69
- package/styles/accordion/_bootstrap-definition.scss +76 -76
- package/styles/accordion/_bootstrap4-definition.scss +82 -82
- package/styles/accordion/_fabric-dark-definition.scss +74 -74
- package/styles/accordion/_fabric-definition.scss +78 -78
- package/styles/accordion/_highcontrast-definition.scss +106 -106
- package/styles/accordion/_highcontrast-light-definition.scss +104 -104
- package/styles/accordion/_layout.scss +447 -447
- package/styles/accordion/_material-dark-definition.scss +75 -75
- package/styles/accordion/_material-definition.scss +72 -72
- package/styles/accordion/_theme.scss +479 -479
- package/styles/accordion/icons/_bootstrap-dark.scss +17 -17
- package/styles/accordion/icons/_bootstrap.scss +17 -17
- package/styles/accordion/icons/_bootstrap4.scss +17 -17
- package/styles/accordion/icons/_fabric-dark.scss +17 -17
- package/styles/accordion/icons/_fabric.scss +17 -17
- package/styles/accordion/icons/_highcontrast-light.scss +17 -17
- package/styles/accordion/icons/_highcontrast.scss +17 -17
- package/styles/accordion/icons/_material-dark.scss +17 -17
- package/styles/accordion/icons/_material.scss +17 -17
- package/styles/bootstrap-dark.css +7 -9
- package/styles/bootstrap.css +7 -9
- package/styles/bootstrap4.css +7 -9
- package/styles/bootstrap5-dark.css +0 -0
- package/styles/bootstrap5-dark.scss +0 -0
- package/styles/bootstrap5.css +0 -0
- package/styles/bootstrap5.scss +0 -0
- package/styles/context-menu/_all.scss +2 -2
- package/styles/context-menu/_bootstrap-dark-definition.scss +54 -54
- package/styles/context-menu/_bootstrap-definition.scss +52 -52
- package/styles/context-menu/_bootstrap4-definition.scss +52 -52
- package/styles/context-menu/_fabric-dark-definition.scss +54 -54
- package/styles/context-menu/_fabric-definition.scss +52 -52
- package/styles/context-menu/_highcontrast-definition.scss +52 -52
- package/styles/context-menu/_highcontrast-light-definition.scss +54 -54
- package/styles/context-menu/_layout-mixin.scss +175 -175
- package/styles/context-menu/_layout.scss +70 -70
- package/styles/context-menu/_material-dark-definition.scss +54 -54
- package/styles/context-menu/_material-definition.scss +52 -52
- package/styles/context-menu/_theme-mixin.scss +59 -59
- package/styles/context-menu/_theme.scss +36 -36
- package/styles/context-menu/bootstrap-dark.css +0 -1
- package/styles/context-menu/bootstrap.css +0 -1
- package/styles/context-menu/bootstrap4.css +0 -1
- package/styles/context-menu/fabric-dark.css +0 -1
- package/styles/context-menu/fabric.css +0 -1
- package/styles/context-menu/highcontrast-light.css +0 -1
- package/styles/context-menu/highcontrast.css +0 -1
- package/styles/context-menu/icons/_bootstrap-dark.scss +30 -30
- package/styles/context-menu/icons/_bootstrap.scss +30 -30
- package/styles/context-menu/icons/_bootstrap4.scss +30 -30
- package/styles/context-menu/icons/_fabric-dark.scss +30 -30
- package/styles/context-menu/icons/_fabric.scss +30 -30
- package/styles/context-menu/icons/_highcontrast-light.scss +30 -30
- package/styles/context-menu/icons/_highcontrast.scss +30 -30
- package/styles/context-menu/icons/_material-dark.scss +30 -30
- package/styles/context-menu/icons/_material.scss +30 -30
- package/styles/context-menu/material-dark.css +0 -1
- package/styles/context-menu/material.css +3 -4
- package/styles/fabric-dark.css +7 -9
- package/styles/fabric.css +7 -9
- package/styles/h-scroll/_all.scss +2 -2
- package/styles/h-scroll/_bootstrap-dark-definition.scss +49 -49
- package/styles/h-scroll/_bootstrap-definition.scss +50 -50
- package/styles/h-scroll/_bootstrap4-definition.scss +49 -49
- package/styles/h-scroll/_fabric-dark-definition.scss +50 -50
- package/styles/h-scroll/_fabric-definition.scss +48 -48
- package/styles/h-scroll/_highcontrast-definition.scss +52 -52
- package/styles/h-scroll/_highcontrast-light-definition.scss +54 -54
- package/styles/h-scroll/_layout.scss +198 -198
- package/styles/h-scroll/_material-dark-definition.scss +77 -77
- package/styles/h-scroll/_material-definition.scss +77 -77
- package/styles/h-scroll/_theme.scss +157 -157
- package/styles/h-scroll/icons/_bootstrap-dark.scss +49 -49
- package/styles/h-scroll/icons/_bootstrap.scss +49 -49
- package/styles/h-scroll/icons/_bootstrap4.scss +49 -49
- package/styles/h-scroll/icons/_fabric-dark.scss +49 -49
- package/styles/h-scroll/icons/_fabric.scss +49 -49
- package/styles/h-scroll/icons/_highcontrast-light.scss +49 -49
- package/styles/h-scroll/icons/_highcontrast.scss +49 -49
- package/styles/h-scroll/icons/_material-dark.scss +49 -49
- package/styles/h-scroll/icons/_material.scss +49 -49
- package/styles/highcontrast-light.css +7 -9
- package/styles/highcontrast.css +7 -9
- package/styles/material-dark.css +7 -9
- package/styles/material.css +21 -14
- package/styles/menu/_all.scss +2 -2
- package/styles/menu/_bootstrap-dark-definition.scss +63 -63
- package/styles/menu/_bootstrap-definition.scss +65 -65
- package/styles/menu/_bootstrap4-definition.scss +64 -64
- package/styles/menu/_fabric-dark-definition.scss +63 -63
- package/styles/menu/_fabric-definition.scss +64 -64
- package/styles/menu/_highcontrast-definition.scss +65 -65
- package/styles/menu/_highcontrast-light-definition.scss +61 -61
- package/styles/menu/_layout.scss +638 -638
- package/styles/menu/_material-dark-definition.scss +63 -63
- package/styles/menu/_material-definition.scss +64 -64
- package/styles/menu/_theme.scss +243 -243
- package/styles/menu/bootstrap-dark.css +0 -1
- package/styles/menu/bootstrap.css +0 -1
- package/styles/menu/bootstrap.scss +1 -0
- package/styles/menu/bootstrap4.css +0 -1
- package/styles/menu/fabric-dark.css +0 -1
- package/styles/menu/fabric.css +0 -1
- package/styles/menu/fabric.scss +1 -0
- package/styles/menu/highcontrast-light.css +0 -1
- package/styles/menu/highcontrast.css +0 -1
- package/styles/menu/highcontrast.scss +1 -0
- package/styles/menu/icons/_bootstrap-dark.scss +127 -127
- package/styles/menu/icons/_bootstrap.scss +127 -127
- package/styles/menu/icons/_bootstrap4.scss +127 -127
- package/styles/menu/icons/_fabric-dark.scss +127 -127
- package/styles/menu/icons/_fabric.scss +127 -127
- package/styles/menu/icons/_highcontrast-light.scss +127 -127
- package/styles/menu/icons/_highcontrast.scss +127 -127
- package/styles/menu/icons/_material-dark.scss +127 -127
- package/styles/menu/icons/_material.scss +127 -127
- package/styles/menu/material-dark.css +0 -1
- package/styles/menu/material.css +2 -3
- package/styles/menu/material.scss +1 -0
- package/styles/sidebar/_all.scss +3 -3
- package/styles/sidebar/_bootstrap-dark-definition.scss +4 -4
- package/styles/sidebar/_bootstrap-definition.scss +4 -4
- package/styles/sidebar/_bootstrap4-definition.scss +4 -4
- package/styles/sidebar/_fabric-dark-definition.scss +4 -4
- package/styles/sidebar/_fabric-definition.scss +6 -6
- package/styles/sidebar/_highcontrast-definition.scss +4 -4
- package/styles/sidebar/_highcontrast-light-definition.scss +4 -4
- package/styles/sidebar/_icons.scss +1 -1
- package/styles/sidebar/_material-dark-definition.scss +4 -4
- package/styles/sidebar/_material-definition.scss +6 -6
- package/styles/sidebar/_theme.scss +168 -168
- package/styles/sidebar/bootstrap-dark.css +0 -1
- package/styles/sidebar/bootstrap.css +0 -1
- package/styles/sidebar/bootstrap4.css +0 -1
- package/styles/sidebar/fabric-dark.css +0 -1
- package/styles/sidebar/fabric.css +0 -1
- package/styles/sidebar/highcontrast-light.css +0 -1
- package/styles/sidebar/highcontrast.css +0 -1
- package/styles/sidebar/material-dark.css +0 -1
- package/styles/sidebar/material.css +0 -1
- package/styles/tab/_all.scss +2 -2
- package/styles/tab/_bootstrap-dark-definition.scss +386 -386
- package/styles/tab/_bootstrap-definition.scss +396 -396
- package/styles/tab/_bootstrap4-definition.scss +401 -401
- package/styles/tab/_fabric-dark-definition.scss +394 -394
- package/styles/tab/_fabric-definition.scss +410 -410
- package/styles/tab/_highcontrast-definition.scss +434 -434
- package/styles/tab/_highcontrast-light-definition.scss +423 -423
- package/styles/tab/_icons.scss +43 -43
- package/styles/tab/_layout.scss +3528 -3521
- package/styles/tab/_material-dark-definition.scss +407 -407
- package/styles/tab/_material-definition.scss +416 -416
- package/styles/tab/_theme.scss +1751 -1751
- package/styles/tab/bootstrap-dark.css +7 -2
- package/styles/tab/bootstrap.css +7 -2
- package/styles/tab/bootstrap4.css +7 -2
- package/styles/tab/fabric-dark.css +7 -2
- package/styles/tab/fabric.css +7 -2
- package/styles/tab/highcontrast-light.css +7 -2
- package/styles/tab/highcontrast.css +7 -2
- package/styles/tab/icons/_bootstrap-dark.scss +132 -132
- package/styles/tab/icons/_bootstrap.scss +132 -132
- package/styles/tab/icons/_bootstrap4.scss +132 -132
- package/styles/tab/icons/_fabric-dark.scss +132 -132
- package/styles/tab/icons/_fabric.scss +132 -132
- package/styles/tab/icons/_highcontrast-light.scss +132 -132
- package/styles/tab/icons/_highcontrast.scss +132 -132
- package/styles/tab/icons/_material-dark.scss +132 -132
- package/styles/tab/icons/_material.scss +132 -132
- package/styles/tab/material-dark.css +7 -2
- package/styles/tab/material.css +7 -2
- package/styles/tailwind-dark.css +0 -0
- package/styles/tailwind-dark.scss +0 -0
- package/styles/tailwind.css +0 -0
- package/styles/tailwind.scss +0 -0
- package/styles/toolbar/_all.scss +2 -2
- package/styles/toolbar/_bootstrap-dark-definition.scss +135 -135
- package/styles/toolbar/_bootstrap-definition.scss +134 -134
- package/styles/toolbar/_bootstrap4-definition.scss +139 -139
- package/styles/toolbar/_fabric-dark-definition.scss +155 -155
- package/styles/toolbar/_fabric-definition.scss +139 -139
- package/styles/toolbar/_highcontrast-definition.scss +149 -149
- package/styles/toolbar/_highcontrast-light-definition.scss +164 -164
- package/styles/toolbar/_layout.scss +1460 -1460
- package/styles/toolbar/_material-dark-definition.scss +180 -180
- package/styles/toolbar/_material-definition.scss +164 -164
- package/styles/toolbar/_theme.scss +451 -451
- package/styles/toolbar/bootstrap-dark.css +0 -1
- package/styles/toolbar/bootstrap.css +0 -1
- package/styles/toolbar/bootstrap.scss +1 -0
- package/styles/toolbar/bootstrap4.css +0 -1
- package/styles/toolbar/fabric-dark.css +0 -1
- package/styles/toolbar/fabric.css +0 -1
- package/styles/toolbar/fabric.scss +1 -0
- package/styles/toolbar/highcontrast-light.css +0 -1
- package/styles/toolbar/highcontrast.css +0 -1
- package/styles/toolbar/highcontrast.scss +1 -0
- package/styles/toolbar/icons/_bootstrap-dark.scss +16 -16
- package/styles/toolbar/icons/_bootstrap.scss +16 -16
- package/styles/toolbar/icons/_bootstrap4.scss +16 -16
- package/styles/toolbar/icons/_fabric-dark.scss +16 -16
- package/styles/toolbar/icons/_fabric.scss +16 -16
- package/styles/toolbar/icons/_highcontrast-light.scss +16 -16
- package/styles/toolbar/icons/_highcontrast.scss +16 -16
- package/styles/toolbar/icons/_material-dark.scss +16 -16
- package/styles/toolbar/icons/_material.scss +16 -16
- package/styles/toolbar/material-dark.css +0 -1
- package/styles/toolbar/material.css +0 -1
- package/styles/toolbar/material.scss +1 -0
- package/styles/treeview/_all.scss +2 -2
- package/styles/treeview/_bootstrap-dark-definition.scss +131 -131
- package/styles/treeview/_bootstrap-definition.scss +127 -127
- package/styles/treeview/_bootstrap4-definition.scss +153 -153
- package/styles/treeview/_fabric-dark-definition.scss +130 -130
- package/styles/treeview/_fabric-definition.scss +126 -126
- package/styles/treeview/_highcontrast-definition.scss +132 -132
- package/styles/treeview/_highcontrast-light-definition.scss +137 -137
- package/styles/treeview/_layout.scss +551 -551
- package/styles/treeview/_material-dark-definition.scss +126 -126
- package/styles/treeview/_material-definition.scss +126 -126
- package/styles/treeview/_theme.scss +331 -331
- package/styles/treeview/bootstrap-dark.css +0 -3
- package/styles/treeview/bootstrap.css +0 -3
- package/styles/treeview/bootstrap4.css +0 -3
- package/styles/treeview/fabric-dark.css +0 -3
- package/styles/treeview/fabric.css +0 -3
- package/styles/treeview/highcontrast-light.css +0 -3
- package/styles/treeview/highcontrast.css +0 -3
- package/styles/treeview/icons/_bootstrap-dark.scss +39 -39
- package/styles/treeview/icons/_bootstrap.scss +39 -39
- package/styles/treeview/icons/_bootstrap4.scss +39 -39
- package/styles/treeview/icons/_fabric-dark.scss +43 -43
- package/styles/treeview/icons/_fabric.scss +43 -43
- package/styles/treeview/icons/_highcontrast-light.scss +43 -43
- package/styles/treeview/icons/_highcontrast.scss +43 -43
- package/styles/treeview/icons/_material-dark.scss +43 -43
- package/styles/treeview/icons/_material.scss +43 -43
- package/styles/treeview/material-dark.css +0 -3
- package/styles/treeview/material.css +9 -3
- package/styles/v-scroll/_all.scss +2 -2
- package/styles/v-scroll/_bootstrap-dark-definition.scss +50 -50
- package/styles/v-scroll/_bootstrap-definition.scss +49 -49
- package/styles/v-scroll/_bootstrap4-definition.scss +49 -49
- package/styles/v-scroll/_fabric-dark-definition.scss +51 -51
- package/styles/v-scroll/_fabric-definition.scss +50 -50
- package/styles/v-scroll/_highcontrast-definition.scss +51 -51
- package/styles/v-scroll/_highcontrast-light-definition.scss +52 -52
- package/styles/v-scroll/_layout.scss +162 -162
- package/styles/v-scroll/_material-dark-definition.scss +78 -78
- package/styles/v-scroll/_material-definition.scss +77 -77
- package/styles/v-scroll/_theme.scss +133 -133
- package/styles/v-scroll/icons/_bootstrap-dark.scss +26 -26
- package/styles/v-scroll/icons/_bootstrap.scss +26 -26
- package/styles/v-scroll/icons/_bootstrap4.scss +26 -26
- package/styles/v-scroll/icons/_fabric-dark.scss +26 -26
- package/styles/v-scroll/icons/_fabric.scss +26 -26
- package/styles/v-scroll/icons/_highcontrast-light.scss +26 -26
- package/styles/v-scroll/icons/_highcontrast.scss +26 -26
- package/styles/v-scroll/icons/_material-dark.scss +26 -26
- package/styles/v-scroll/icons/_material.scss +26 -26
- package/tslint.json +111 -0
- package/.gitlab/merge_request_templates/Bug.md +0 -63
- package/.gitlab/merge_request_templates/feature.md +0 -39
package/CHANGELOG.md
CHANGED
|
@@ -1,800 +1,898 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## [Unreleased]
|
|
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
|
-
#### Bug Fixes
|
|
74
|
-
|
|
75
|
-
-
|
|
76
|
-
|
|
77
|
-
## 17.
|
|
78
|
-
|
|
79
|
-
###
|
|
80
|
-
|
|
81
|
-
#### Bug Fixes
|
|
82
|
-
|
|
83
|
-
- #
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
###
|
|
96
|
-
|
|
97
|
-
####
|
|
98
|
-
|
|
99
|
-
-
|
|
100
|
-
|
|
101
|
-
## 17.
|
|
102
|
-
|
|
103
|
-
###
|
|
104
|
-
|
|
105
|
-
####
|
|
106
|
-
|
|
107
|
-
-
|
|
108
|
-
|
|
109
|
-
###
|
|
110
|
-
|
|
111
|
-
####
|
|
112
|
-
|
|
113
|
-
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
### TreeView
|
|
154
|
-
|
|
155
|
-
#### Bug Fixes
|
|
156
|
-
|
|
157
|
-
- #
|
|
158
|
-
|
|
159
|
-
## 17.
|
|
160
|
-
|
|
161
|
-
### TreeView
|
|
162
|
-
|
|
163
|
-
#### Bug Fixes
|
|
164
|
-
|
|
165
|
-
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
###
|
|
329
|
-
|
|
330
|
-
#### Bug Fixes
|
|
331
|
-
|
|
332
|
-
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
###
|
|
452
|
-
|
|
453
|
-
#### Bug Fixes
|
|
454
|
-
|
|
455
|
-
-
|
|
456
|
-
|
|
457
|
-
## 16.
|
|
458
|
-
|
|
459
|
-
###
|
|
460
|
-
|
|
461
|
-
####
|
|
462
|
-
|
|
463
|
-
-
|
|
464
|
-
|
|
465
|
-
###
|
|
466
|
-
|
|
467
|
-
####
|
|
468
|
-
|
|
469
|
-
-
|
|
470
|
-
|
|
471
|
-
## 16.
|
|
472
|
-
|
|
473
|
-
###
|
|
474
|
-
|
|
475
|
-
#### Bug Fixes
|
|
476
|
-
|
|
477
|
-
-
|
|
478
|
-
|
|
479
|
-
## 16.
|
|
480
|
-
|
|
481
|
-
###
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
### Tab
|
|
523
|
-
|
|
524
|
-
#### Breaking Changes
|
|
525
|
-
|
|
526
|
-
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
####
|
|
601
|
-
|
|
602
|
-
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
-
|
|
619
|
-
|
|
620
|
-
### Tab
|
|
621
|
-
|
|
622
|
-
#### Breaking Changes
|
|
623
|
-
|
|
624
|
-
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
- Issue
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
##
|
|
683
|
-
|
|
684
|
-
###
|
|
685
|
-
|
|
686
|
-
####
|
|
687
|
-
|
|
688
|
-
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
###
|
|
725
|
-
|
|
726
|
-
####
|
|
727
|
-
|
|
728
|
-
-
|
|
729
|
-
|
|
730
|
-
## 15.4.
|
|
731
|
-
|
|
732
|
-
###
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
-
|
|
737
|
-
|
|
738
|
-
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
-
|
|
751
|
-
|
|
752
|
-
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
-
|
|
777
|
-
|
|
778
|
-
-
|
|
779
|
-
|
|
780
|
-
-
|
|
781
|
-
|
|
782
|
-
###
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
-
|
|
797
|
-
|
|
798
|
-
-
|
|
799
|
-
|
|
800
|
-
-
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [Unreleased]
|
|
4
|
+
|
|
5
|
+
## 17.3.34 (2019-12-10)
|
|
6
|
+
|
|
7
|
+
### Tab
|
|
8
|
+
|
|
9
|
+
#### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- Accessibility issues has been fixed.
|
|
12
|
+
|
|
13
|
+
### Toolbar
|
|
14
|
+
|
|
15
|
+
#### Bug Fixes
|
|
16
|
+
|
|
17
|
+
- Accessibility issues has been fixed.
|
|
18
|
+
|
|
19
|
+
### Accordion
|
|
20
|
+
|
|
21
|
+
#### Bug Fixes
|
|
22
|
+
|
|
23
|
+
- Accessibility issues has been fixed.
|
|
24
|
+
|
|
25
|
+
## 17.3.27 (2019-11-12)
|
|
26
|
+
|
|
27
|
+
### Tab
|
|
28
|
+
|
|
29
|
+
#### Bug Fixes
|
|
30
|
+
|
|
31
|
+
- `#253216` - An issue with destroying Tab component in IE11 has been fixed.
|
|
32
|
+
|
|
33
|
+
### TreeView
|
|
34
|
+
|
|
35
|
+
#### Bug Fixes
|
|
36
|
+
|
|
37
|
+
- #242926 - Now the drop indicator has been shown correctly while hovering the expand and collapse icon.
|
|
38
|
+
|
|
39
|
+
## 17.3.26 (2019-11-05)
|
|
40
|
+
|
|
41
|
+
### Menu
|
|
42
|
+
|
|
43
|
+
#### Bug Fixes
|
|
44
|
+
|
|
45
|
+
- `#253129` - Menu child item disable issue resolved.
|
|
46
|
+
|
|
47
|
+
## 17.3.21 (2019-10-30)
|
|
48
|
+
|
|
49
|
+
### ContextMenu
|
|
50
|
+
|
|
51
|
+
#### Bug Fixes
|
|
52
|
+
|
|
53
|
+
- `#F147793` - ContextMenu not closed while scrolling the target element has been resolved.
|
|
54
|
+
|
|
55
|
+
## 17.3.17 (2019-10-15)
|
|
56
|
+
|
|
57
|
+
### Tab
|
|
58
|
+
|
|
59
|
+
#### Bug Fixes
|
|
60
|
+
|
|
61
|
+
- `#250013` - An issue with nested tab rendering while `headerPlacement` is set as `Bottom` has been fixed.
|
|
62
|
+
|
|
63
|
+
## 17.3.16 (2019-10-09)
|
|
64
|
+
|
|
65
|
+
### Toolbar
|
|
66
|
+
|
|
67
|
+
#### Bug Fixes
|
|
68
|
+
|
|
69
|
+
- `#246126` - An issue with toolbar is not working properly in overflow as popup mode when we used input elements in it has been fixed.
|
|
70
|
+
|
|
71
|
+
### Menu
|
|
72
|
+
|
|
73
|
+
#### Bug Fixes
|
|
74
|
+
|
|
75
|
+
- `#249638` - Multiple Menu in the Page causes an issue in Hamburger mode is fixed.
|
|
76
|
+
|
|
77
|
+
## 17.3.14 (2019-10-03)
|
|
78
|
+
|
|
79
|
+
### TreeView
|
|
80
|
+
|
|
81
|
+
#### Bug Fixes
|
|
82
|
+
|
|
83
|
+
- #246937 - The unchecking checkbox performance issue has been resolved.
|
|
84
|
+
|
|
85
|
+
### Accordion
|
|
86
|
+
|
|
87
|
+
#### Bug Fixes
|
|
88
|
+
|
|
89
|
+
- #245474 - Improper rendering of other components inside the accordion content issue has been fixed.
|
|
90
|
+
|
|
91
|
+
- Material dark theme issue has been resolved.
|
|
92
|
+
|
|
93
|
+
- Accessing multiple cssClass property issue with accordion has been fixed.
|
|
94
|
+
|
|
95
|
+
### Tab
|
|
96
|
+
|
|
97
|
+
#### New Features
|
|
98
|
+
|
|
99
|
+
- Provided scroll step customization support for tab header.
|
|
100
|
+
|
|
101
|
+
## 17.3.9-beta (2019-09-20)
|
|
102
|
+
|
|
103
|
+
### Tab
|
|
104
|
+
|
|
105
|
+
#### New Features
|
|
106
|
+
|
|
107
|
+
- Provided template support for tab header.
|
|
108
|
+
|
|
109
|
+
### Accordion
|
|
110
|
+
|
|
111
|
+
#### New Features
|
|
112
|
+
|
|
113
|
+
- Provided item template support for accorion.
|
|
114
|
+
|
|
115
|
+
### TreeView
|
|
116
|
+
|
|
117
|
+
#### Bug Fixes
|
|
118
|
+
|
|
119
|
+
- #242926 - Now the drop indicator has been shown correctly while enabling the checkbox.
|
|
120
|
+
|
|
121
|
+
## 17.2.49 (2019-09-04)
|
|
122
|
+
|
|
123
|
+
### Menu
|
|
124
|
+
|
|
125
|
+
#### Bug Fixes
|
|
126
|
+
|
|
127
|
+
- Issue with modifying item in 'beforeOpen' event creates extra Item in Context Menu is fixed.
|
|
128
|
+
|
|
129
|
+
## 17.2.48-beta (2019-08-28)
|
|
130
|
+
|
|
131
|
+
### Toolbar
|
|
132
|
+
|
|
133
|
+
#### New Features
|
|
134
|
+
|
|
135
|
+
- `enableItems` public method will now support number type.
|
|
136
|
+
|
|
137
|
+
### Accordion
|
|
138
|
+
|
|
139
|
+
#### Breaking Changes
|
|
140
|
+
|
|
141
|
+
- The `expanded` event type changed from `ExpandEventArgs` to `ExpandedEventArgs`.
|
|
142
|
+
|
|
143
|
+
## 17.2.41 (2019-08-14)
|
|
144
|
+
|
|
145
|
+
### TreeView
|
|
146
|
+
|
|
147
|
+
#### Bug Fixes
|
|
148
|
+
|
|
149
|
+
- Issue with custom icon size changed while double clicking the tree node has been fixed.
|
|
150
|
+
|
|
151
|
+
## 17.2.40 (2019-08-06)
|
|
152
|
+
|
|
153
|
+
### TreeView
|
|
154
|
+
|
|
155
|
+
#### Bug Fixes
|
|
156
|
+
|
|
157
|
+
- #242925 - Issue with checked and unchecked the checkbox using keyboard interaction even disable the checkbox has been fixed.
|
|
158
|
+
|
|
159
|
+
## 17.2.39 (2019-07-30)
|
|
160
|
+
|
|
161
|
+
### TreeView
|
|
162
|
+
|
|
163
|
+
#### Bug Fixes
|
|
164
|
+
|
|
165
|
+
- #242589 - Issue with getting checked nodes value using `checkedNodes` property has been fixed.
|
|
166
|
+
|
|
167
|
+
## 17.2.34 (2019-07-11)
|
|
168
|
+
|
|
169
|
+
### Accordion
|
|
170
|
+
|
|
171
|
+
#### Bug Fixes
|
|
172
|
+
|
|
173
|
+
- #239739 - An issue with addItem public method for accordion which was rendered using HTML elements has been fixed
|
|
174
|
+
|
|
175
|
+
## 17.2.28-beta (2019-06-27)
|
|
176
|
+
|
|
177
|
+
### Menu
|
|
178
|
+
|
|
179
|
+
#### Bug Fixes
|
|
180
|
+
|
|
181
|
+
- #237136 - Issue with Parent Menu click in mobile mode.
|
|
182
|
+
|
|
183
|
+
- #236458 - Issue with Menu Item hovering while a page contains multiple menus.
|
|
184
|
+
|
|
185
|
+
### Sidebar
|
|
186
|
+
|
|
187
|
+
#### Breaking Changes
|
|
188
|
+
|
|
189
|
+
- Change event will trigger only after the expand or collapse transition of the Sidebar.
|
|
190
|
+
|
|
191
|
+
## 17.1.49 (2019-05-29)
|
|
192
|
+
|
|
193
|
+
### TreeView
|
|
194
|
+
|
|
195
|
+
#### Bug Fixes
|
|
196
|
+
|
|
197
|
+
- #234147 - Issue with getting checked nodes value using `getAllCheckedNodes` method has been fixed.
|
|
198
|
+
|
|
199
|
+
## 17.1.48 (2019-05-21)
|
|
200
|
+
|
|
201
|
+
### Sidebar
|
|
202
|
+
|
|
203
|
+
#### Bug Fixes
|
|
204
|
+
|
|
205
|
+
- #236219 - On initial rendering, right positioned sidebar opens and closes irrespective of type and isOpen properties has been fixed.
|
|
206
|
+
|
|
207
|
+
### Tab
|
|
208
|
+
|
|
209
|
+
#### Bug Fixes
|
|
210
|
+
|
|
211
|
+
- #235397 - The cancel parameter is exposed in tab selecting event.
|
|
212
|
+
|
|
213
|
+
- #235274 - Incorrect selected content had been getting in tab selected event issue has been fixed.
|
|
214
|
+
|
|
215
|
+
## 17.1.47 (2019-05-14)
|
|
216
|
+
|
|
217
|
+
### Menu
|
|
218
|
+
|
|
219
|
+
#### New Features
|
|
220
|
+
|
|
221
|
+
- #230456 - Provided hamburger menu support for adaptive view.
|
|
222
|
+
|
|
223
|
+
### TreeView
|
|
224
|
+
|
|
225
|
+
#### New Features
|
|
226
|
+
|
|
227
|
+
- #227540 - Provided the support for rendering treeview data in single server request while disabling the loadOnDemand
|
|
228
|
+
|
|
229
|
+
## 17.1.43 (2019-04-30)
|
|
230
|
+
|
|
231
|
+
### Toolbar
|
|
232
|
+
|
|
233
|
+
#### Bug Fixes
|
|
234
|
+
|
|
235
|
+
- #231019 - An issue with RTL mode of Toolbar scroller has not working in Firefox browser has been resolved.
|
|
236
|
+
|
|
237
|
+
### TreeView
|
|
238
|
+
|
|
239
|
+
#### Bug Fixes
|
|
240
|
+
|
|
241
|
+
- #234147 - Issue with maintaining checked states while giving `id` and `parentID` value as string type in data source has been fixed.
|
|
242
|
+
|
|
243
|
+
## 17.1.41 (2019-04-16)
|
|
244
|
+
|
|
245
|
+
### Accordion
|
|
246
|
+
|
|
247
|
+
#### Bug Fixes
|
|
248
|
+
|
|
249
|
+
- Content value getting changed while updating header dynamically issue has been fixed.
|
|
250
|
+
|
|
251
|
+
### TreeView
|
|
252
|
+
|
|
253
|
+
#### Bug Fixes
|
|
254
|
+
|
|
255
|
+
- #231497 - Now the selected node background color is removed before collapsing the parent node with out removing 'e-active' class.
|
|
256
|
+
|
|
257
|
+
## 17.1.40 (2019-04-09)
|
|
258
|
+
|
|
259
|
+
### TreeView
|
|
260
|
+
|
|
261
|
+
#### Bug Fixes
|
|
262
|
+
|
|
263
|
+
- Now the selected node background color is removed before collapsing the parent node.
|
|
264
|
+
|
|
265
|
+
### Tab
|
|
266
|
+
|
|
267
|
+
#### Bug Fixes
|
|
268
|
+
|
|
269
|
+
- Support to restrict add and remove functionalities of Tab has been provided.
|
|
270
|
+
|
|
271
|
+
## 17.1.38 (2019-03-29)
|
|
272
|
+
|
|
273
|
+
### Menu
|
|
274
|
+
|
|
275
|
+
#### Bug Fixes
|
|
276
|
+
|
|
277
|
+
- Support provided for dynamically updating the self referential data.
|
|
278
|
+
|
|
279
|
+
### Accordion
|
|
280
|
+
|
|
281
|
+
#### Bug Fixes
|
|
282
|
+
|
|
283
|
+
- An issue with the expand action of Accordion when set to single mode, with the items being rendered using content template is fixed now.
|
|
284
|
+
|
|
285
|
+
## 17.1.32-beta (2019-03-13)
|
|
286
|
+
|
|
287
|
+
### ContextMenu
|
|
288
|
+
|
|
289
|
+
#### Bug Fixes
|
|
290
|
+
|
|
291
|
+
- Submenu items styles are not proper in ContextMenu issue is fixed.
|
|
292
|
+
|
|
293
|
+
### Sidebar
|
|
294
|
+
|
|
295
|
+
#### New Features
|
|
296
|
+
|
|
297
|
+
- `MediaQuery` property will now support both string and `MediaQueryList` object types.
|
|
298
|
+
|
|
299
|
+
#### Bug Fixes
|
|
300
|
+
|
|
301
|
+
- Multiple event bindings issue on calling show and hide methods when `closeOnDocumentClick` property is enabled has been fixed.
|
|
302
|
+
|
|
303
|
+
### TreeView
|
|
304
|
+
|
|
305
|
+
#### New Features
|
|
306
|
+
|
|
307
|
+
- Provided an option for auto checking parent tree nodes based on child tree nodes checked state and vice versa.
|
|
308
|
+
- Now it is possible to select or unselect the collapsed child nodes by selecting its parent node through checkbox selection, with Load-On-Demand mode enabled.
|
|
309
|
+
|
|
310
|
+
## 16.4.54 (2019-02-19)
|
|
311
|
+
|
|
312
|
+
### Tab
|
|
313
|
+
|
|
314
|
+
#### Breaking Changes
|
|
315
|
+
|
|
316
|
+
- The initial focus set on active tab item is removed from the component on initial load.
|
|
317
|
+
|
|
318
|
+
## 16.4.53 (2019-02-13)
|
|
319
|
+
|
|
320
|
+
### Accordion
|
|
321
|
+
|
|
322
|
+
#### Bug Fixes
|
|
323
|
+
|
|
324
|
+
- Resolved the issue with accessing Accordion item object in clicked event arguments.
|
|
325
|
+
|
|
326
|
+
## 16.4.52 (2019-02-05)
|
|
327
|
+
|
|
328
|
+
### Sidebar
|
|
329
|
+
|
|
330
|
+
#### Bug Fixes
|
|
331
|
+
|
|
332
|
+
- Tabindex support has been provided.
|
|
333
|
+
|
|
334
|
+
#### Breaking Changes
|
|
335
|
+
|
|
336
|
+
- Sidebar with type `Auto` will always expand on initial rendering, irrespective of `enableDock` and `isOpen` properties.
|
|
337
|
+
|
|
338
|
+
- When dynamically changing the type property of the Sidebar with invalid property value (For ex:`Pushs`), will reset the type of the Sidebar to its default type as `Auto`.
|
|
339
|
+
|
|
340
|
+
## 17.1.1-beta (2019-01-29)
|
|
341
|
+
|
|
342
|
+
### Menu
|
|
343
|
+
|
|
344
|
+
#### Bug Fixes
|
|
345
|
+
|
|
346
|
+
- Popup not opened properly when two menu rendered side by side issue fixed.
|
|
347
|
+
|
|
348
|
+
### TreeView
|
|
349
|
+
|
|
350
|
+
#### Bug Fixes
|
|
351
|
+
|
|
352
|
+
- The issue with, “When disabling the TreeView parent nodes, the child nodes also appear in a disabled state” has been fixed.
|
|
353
|
+
|
|
354
|
+
## 16.4.45 (2019-01-02)
|
|
355
|
+
|
|
356
|
+
### Toolbar
|
|
357
|
+
|
|
358
|
+
#### Bug Fixes
|
|
359
|
+
|
|
360
|
+
- While resizing, Toolbar items are not moving from popup to toolbar in `extended` overflow mode issue is fixed.
|
|
361
|
+
|
|
362
|
+
### Menu
|
|
363
|
+
|
|
364
|
+
#### Bug Fixes
|
|
365
|
+
|
|
366
|
+
- Getting custom properties from menu items in `beforeItemRender` event issue fixed.
|
|
367
|
+
|
|
368
|
+
### Sidebar
|
|
369
|
+
|
|
370
|
+
#### Bug Fixes
|
|
371
|
+
|
|
372
|
+
- Fixed the issue with rendering the Sidebar using `isOpen` property and type `Auto`.
|
|
373
|
+
|
|
374
|
+
## 16.4.44 (2018-12-24)
|
|
375
|
+
|
|
376
|
+
### Accordion
|
|
377
|
+
|
|
378
|
+
#### Bug Fixes
|
|
379
|
+
|
|
380
|
+
- Parent accordion collapsing issue is fixed when Tab renders within it.
|
|
381
|
+
|
|
382
|
+
## 16.4.40-beta (2018-12-10)
|
|
383
|
+
|
|
384
|
+
### Tab
|
|
385
|
+
|
|
386
|
+
#### New Features
|
|
387
|
+
|
|
388
|
+
- Tab vertical orientation support was provided.
|
|
389
|
+
|
|
390
|
+
### ContextMenu
|
|
391
|
+
|
|
392
|
+
#### Breaking Changes
|
|
393
|
+
|
|
394
|
+
- The `animationSettings` property type changed from `AnimationSettings` to `AnimationSettingsModel`
|
|
395
|
+
|
|
396
|
+
### Menu
|
|
397
|
+
|
|
398
|
+
#### New Features
|
|
399
|
+
|
|
400
|
+
- Provided scrollable option in Menu for rendering large menus and submenus in an adaptive way.
|
|
401
|
+
|
|
402
|
+
#### Breaking Changes
|
|
403
|
+
|
|
404
|
+
- Type changes done for the following property.
|
|
405
|
+
|
|
406
|
+
Property Name | Old Type | New Type
|
|
407
|
+
-----|-----|-----
|
|
408
|
+
`animationSettings` | AnimationSettings | AnimationSettingsModel
|
|
409
|
+
`fields` | FieldSettings | FieldSettingsModel
|
|
410
|
+
|
|
411
|
+
### TreeView
|
|
412
|
+
|
|
413
|
+
#### New Features
|
|
414
|
+
|
|
415
|
+
- Provided an option to disable child nodes when load-on-demand support is enabled.
|
|
416
|
+
- Provided an option to disable the load-on-demand support in TreeView control.
|
|
417
|
+
|
|
418
|
+
## 16.3.33 (2018-11-20)
|
|
419
|
+
|
|
420
|
+
### Sidebar
|
|
421
|
+
|
|
422
|
+
#### Bug Fixes
|
|
423
|
+
|
|
424
|
+
- Added the `event` and `isInteracted` event arguments in open and close events of Sidebar.
|
|
425
|
+
|
|
426
|
+
### TreeView
|
|
427
|
+
|
|
428
|
+
#### Bug Fixes
|
|
429
|
+
|
|
430
|
+
- In TreeView, scrolling is not working smoothly for iPad device issue is resolved
|
|
431
|
+
|
|
432
|
+
## 16.3.29 (2018-10-31)
|
|
433
|
+
|
|
434
|
+
### TreeView
|
|
435
|
+
|
|
436
|
+
#### New Features
|
|
437
|
+
|
|
438
|
+
- Provided an option to prevent the tree node from auto checking when checked state of the parent or child tree node is modified.
|
|
439
|
+
- Provided support to use hierarchical data as remote data source of the TreeView component by using offline mode of data manager plugin.
|
|
440
|
+
|
|
441
|
+
## 16.3.27 (2018-10-23)
|
|
442
|
+
|
|
443
|
+
### Menu
|
|
444
|
+
|
|
445
|
+
#### Bug Fixes
|
|
446
|
+
|
|
447
|
+
- Destroy method issue while using multiple menu is fixed.
|
|
448
|
+
|
|
449
|
+
## 16.3.25 (2018-10-15)
|
|
450
|
+
|
|
451
|
+
### Menu
|
|
452
|
+
|
|
453
|
+
#### Bug Fixes
|
|
454
|
+
|
|
455
|
+
- Issue with sub menu positioning fixed.
|
|
456
|
+
|
|
457
|
+
## 16.3.23 (2018-10-03)
|
|
458
|
+
|
|
459
|
+
### Sidebar
|
|
460
|
+
|
|
461
|
+
#### New Features
|
|
462
|
+
|
|
463
|
+
- Two-way binding support has been provided for `isOpen` property.
|
|
464
|
+
|
|
465
|
+
### Tab
|
|
466
|
+
|
|
467
|
+
#### Bug Fixes
|
|
468
|
+
|
|
469
|
+
- The issue with tab selection after remove other tabs has been fixed.
|
|
470
|
+
|
|
471
|
+
## 16.3.21 (2018-09-22)
|
|
472
|
+
|
|
473
|
+
### TreeView
|
|
474
|
+
|
|
475
|
+
#### Bug Fixes
|
|
476
|
+
|
|
477
|
+
- The `nodeData` argument in `nodeSelected` event showing wrong value issue has been fixed.
|
|
478
|
+
|
|
479
|
+
## 16.3.17 (2018-09-12)
|
|
480
|
+
|
|
481
|
+
### Menu
|
|
482
|
+
|
|
483
|
+
Menu is a graphical user interface that serves as navigation header for your application or site. Menu can be populated from a data source such as an array of JavaScript objects that can be either structured as hierarchical or self-referential data. The following key features are available in Menu component.
|
|
484
|
+
|
|
485
|
+
- **Rendering** - Supports to render based on the items collection (array of JavaScript objects) and HTML elements.
|
|
486
|
+
|
|
487
|
+
- **Separator** - Supports menu items grouping by using the Separator.
|
|
488
|
+
|
|
489
|
+
- **Icons and Navigations** - Supports items to have Icons and Navigation URL's.
|
|
490
|
+
|
|
491
|
+
- **Template and Multilevel Nesting** - Supports template and multilevel nesting in Menu.
|
|
492
|
+
|
|
493
|
+
- **Accessibility** - Provided with built-in accessibility support that helps to access all the Menu component features through the keyboard, screen readers, or other assistive technology devices.
|
|
494
|
+
|
|
495
|
+
### TreeView
|
|
496
|
+
|
|
497
|
+
#### New Features
|
|
498
|
+
|
|
499
|
+
- Provided an option to get updated data source of tree view after drag and drop, editing, deleting, and adding nodes in tree view.
|
|
500
|
+
- Support to get custom data from tree view.
|
|
501
|
+
- Support to maintain expanded nodes of tree view on page reloads.
|
|
502
|
+
- Provided an option to get all the checked nodes if the tree node is expanded or collapsed.
|
|
503
|
+
- Provided 'none' option in 'expandOn' property to prevent expand or collapse of tree node
|
|
504
|
+
- Provided an option to prevent the parent node from expanding, while adding a node to the tree view control.
|
|
505
|
+
|
|
506
|
+
## 16.2.49 (2018-08-21)
|
|
507
|
+
|
|
508
|
+
### Tab
|
|
509
|
+
|
|
510
|
+
#### Bug Fixes
|
|
511
|
+
|
|
512
|
+
- The issue with updating model on enable/disable tab has fixed in `enableTab` method.
|
|
513
|
+
|
|
514
|
+
### TreeView
|
|
515
|
+
|
|
516
|
+
#### Bug Fixes
|
|
517
|
+
|
|
518
|
+
- Issue with drag and drop of nodes from one tree view to another empty tree view has been fixed.
|
|
519
|
+
|
|
520
|
+
## 16.2.48 (2018-08-14)
|
|
521
|
+
|
|
522
|
+
### Tab
|
|
523
|
+
|
|
524
|
+
#### Breaking Changes
|
|
525
|
+
|
|
526
|
+
- Issue with triggering select events at initial load has been resolved
|
|
527
|
+
|
|
528
|
+
### Toolbar
|
|
529
|
+
|
|
530
|
+
#### Bug Fixes
|
|
531
|
+
|
|
532
|
+
- Resolved the tooltip issue on display special character in toolbar items.
|
|
533
|
+
|
|
534
|
+
## 16.2.47 (2018-08-07)
|
|
535
|
+
|
|
536
|
+
### Tab
|
|
537
|
+
|
|
538
|
+
#### Bug Fixes
|
|
539
|
+
|
|
540
|
+
- The issue with updating model on removing tab has fixed in `removeTab` method.
|
|
541
|
+
- Resolve the issue which occurs on updating item value with `hideTab` method.
|
|
542
|
+
|
|
543
|
+
### Sidebar
|
|
544
|
+
|
|
545
|
+
#### Bug Fixes
|
|
546
|
+
|
|
547
|
+
- Issue with Sidebar destroyed in Angular routing is fixed.
|
|
548
|
+
|
|
549
|
+
### TreeView
|
|
550
|
+
|
|
551
|
+
#### Bug Fixes
|
|
552
|
+
|
|
553
|
+
- Tree view checkbox not working properly in Firefox browser issue has been resolved.
|
|
554
|
+
|
|
555
|
+
## 16.2.46 (2018-07-30)
|
|
556
|
+
|
|
557
|
+
### Accordion
|
|
558
|
+
|
|
559
|
+
#### Bug Fixes
|
|
560
|
+
|
|
561
|
+
- Issue with Space and Enter key, which is not working in RTE while rendering inside the Accordion is fixed
|
|
562
|
+
|
|
563
|
+
### TreeView
|
|
564
|
+
|
|
565
|
+
#### New Features
|
|
566
|
+
|
|
567
|
+
- In tree view, provided an option to prevent dropping an element in the sibling position.
|
|
568
|
+
|
|
569
|
+
## 16.2.45 (2018-07-17)
|
|
570
|
+
|
|
571
|
+
### Tab
|
|
572
|
+
|
|
573
|
+
#### Bug Fixes
|
|
574
|
+
|
|
575
|
+
- Issue with content animation, when switching to other tabs before previous animation complete is fixed
|
|
576
|
+
|
|
577
|
+
## 16.2.44 (2018-07-10)
|
|
578
|
+
|
|
579
|
+
### Sidebar
|
|
580
|
+
|
|
581
|
+
#### Bug Fixes
|
|
582
|
+
|
|
583
|
+
- `target` property is not working on lower version of Firefox browser (below 48), issue has been fixed.
|
|
584
|
+
|
|
585
|
+
## 16.2.41 (2018-06-25)
|
|
586
|
+
|
|
587
|
+
### Sidebar
|
|
588
|
+
|
|
589
|
+
#### New Features
|
|
590
|
+
|
|
591
|
+
- Support for setting the open/close state of the Sidebar has been provided with `isOpen` property.
|
|
592
|
+
|
|
593
|
+
#### Breaking Changes
|
|
594
|
+
|
|
595
|
+
- Target property supports both the id and class selectors to locate the target element.
|
|
596
|
+
- `isOpen()` method is now removed and know about the Sidebar is whether open or close state by using `isOpen` property.
|
|
597
|
+
|
|
598
|
+
### Tab
|
|
599
|
+
|
|
600
|
+
#### Bug Fixes
|
|
601
|
+
|
|
602
|
+
- Content initiated twice when using ng-template in Tab item has been fixed.
|
|
603
|
+
- Solved issues on `removeItem` public method.
|
|
604
|
+
|
|
605
|
+
### Toolbar
|
|
606
|
+
|
|
607
|
+
#### New Features
|
|
608
|
+
|
|
609
|
+
- Provided support for `MultiRow` options on toolbar items.
|
|
610
|
+
- Inline alignment of toolbar items support is provided.
|
|
611
|
+
|
|
612
|
+
## 16.1.42 (2018-05-08)
|
|
613
|
+
|
|
614
|
+
### Accordion
|
|
615
|
+
|
|
616
|
+
#### Bug Fixes
|
|
617
|
+
|
|
618
|
+
- Issue with space key in text area, when placed inside Accordion is fixed.
|
|
619
|
+
|
|
620
|
+
### Tab
|
|
621
|
+
|
|
622
|
+
#### Breaking Changes
|
|
623
|
+
|
|
624
|
+
- Breaking issue with dynamic loading tab content template ID is fixed.
|
|
625
|
+
|
|
626
|
+
## 16.1.40 (2018-05-08)
|
|
627
|
+
|
|
628
|
+
### Tab
|
|
629
|
+
|
|
630
|
+
#### Bug Fixes
|
|
631
|
+
|
|
632
|
+
- Issue with event unbinding in tab content is fixed.
|
|
633
|
+
|
|
634
|
+
## 16.1.38 (2018-05-02)
|
|
635
|
+
|
|
636
|
+
### TreeView
|
|
637
|
+
|
|
638
|
+
#### Bug Fixes
|
|
639
|
+
|
|
640
|
+
- TreeView is not rendering properly when you return entire data (including child nodes) on initial request issue is fixed.
|
|
641
|
+
|
|
642
|
+
### Tab
|
|
643
|
+
|
|
644
|
+
#### Bug Fixes
|
|
645
|
+
|
|
646
|
+
- Issue with loading dynamic content using template ID is fixed.
|
|
647
|
+
|
|
648
|
+
## 16.1.37 (2018-04-24)
|
|
649
|
+
|
|
650
|
+
### TreeView
|
|
651
|
+
|
|
652
|
+
#### Bug Fixes
|
|
653
|
+
|
|
654
|
+
- Issue in triggering `nodeExpanded` event while expanding all the nodes is fixed.
|
|
655
|
+
|
|
656
|
+
## 16.1.35 (2018-04-17)
|
|
657
|
+
|
|
658
|
+
### TreeView
|
|
659
|
+
|
|
660
|
+
#### Bug Fixes
|
|
661
|
+
|
|
662
|
+
- Provided option to prevent expand/collapse node while double clicking the tree node.
|
|
663
|
+
|
|
664
|
+
## 16.1.34 (2018-04-10)
|
|
665
|
+
|
|
666
|
+
### TreeView
|
|
667
|
+
|
|
668
|
+
#### Bug Fixes
|
|
669
|
+
|
|
670
|
+
- Issue in TreeView while ‘cancel' the `nodeDragDrop` event is fixed.
|
|
671
|
+
|
|
672
|
+
- Issue in TreeView drag and drop function, while adding ‘e-droppable’ class in the target element is fixed.
|
|
673
|
+
|
|
674
|
+
## 16.1.32 (2018-03-29)
|
|
675
|
+
|
|
676
|
+
### TreeView
|
|
677
|
+
|
|
678
|
+
#### Bug Fixes
|
|
679
|
+
|
|
680
|
+
- Prevented the checkbox interactions while the corresponding node was in disabled state.
|
|
681
|
+
|
|
682
|
+
## 16.1.28 (2018-03-09)
|
|
683
|
+
|
|
684
|
+
### Toolbar
|
|
685
|
+
|
|
686
|
+
#### Bug Fixes
|
|
687
|
+
|
|
688
|
+
- Toolbar border hidden issue with grid in IE11 browser is fixed.
|
|
689
|
+
|
|
690
|
+
## 16.1.24 (2018-02-22)
|
|
691
|
+
|
|
692
|
+
### Common
|
|
693
|
+
|
|
694
|
+
#### Breaking Changes
|
|
695
|
+
|
|
696
|
+
- Changed the Angular component selector, component name prefix with `ejs` e.g: `ejs-tab`.
|
|
697
|
+
|
|
698
|
+
#### New Features
|
|
699
|
+
|
|
700
|
+
- High contrast theme support.
|
|
701
|
+
|
|
702
|
+
### Sidebar
|
|
703
|
+
|
|
704
|
+
The Sidebar is an expandable and collapsible component that typically acts as a side container to place primary or secondary content alongside the main content.
|
|
705
|
+
|
|
706
|
+
- **Target** - The Sidebar can be initialized in any HTML element other than the body element.
|
|
707
|
+
|
|
708
|
+
- **Types** – Supports Push, Over, Slide and Auto to expand or collapse the Sidebar.
|
|
709
|
+
|
|
710
|
+
- **Position** – Allows to position the Sidebar in Left or Right direction.
|
|
711
|
+
|
|
712
|
+
- **Auto close** - Allows to set the sidebar in an expanded or collapsed state only in certain resolutions.
|
|
713
|
+
|
|
714
|
+
- **Dock** - By default, supports display of short notifications about the content on docked mode.
|
|
715
|
+
|
|
716
|
+
- **Backdrop** – Specifies the whether to apply overlay options to main content when the Sidebar is in open state.
|
|
717
|
+
|
|
718
|
+
### Tab
|
|
719
|
+
|
|
720
|
+
#### Breaking Changes
|
|
721
|
+
|
|
722
|
+
- Locale key changed from close to `closeButtonTitle`.
|
|
723
|
+
|
|
724
|
+
### Toolbar
|
|
725
|
+
|
|
726
|
+
#### Breaking Changes
|
|
727
|
+
|
|
728
|
+
- Pascal casing change to `align` property values (`Left`, `Center`, `Right`).
|
|
729
|
+
|
|
730
|
+
## 15.4.30-preview (2018-02-14)
|
|
731
|
+
|
|
732
|
+
### TreeView
|
|
733
|
+
|
|
734
|
+
#### New Features
|
|
735
|
+
|
|
736
|
+
- Added “getNode” method in TreeView to get the node's data based on given node element or it's ID.
|
|
737
|
+
|
|
738
|
+
- Added “beginEdit” method in TreeView, to initiate the editing mode of the TreeView node through code.
|
|
739
|
+
|
|
740
|
+
#### Breaking Changes
|
|
741
|
+
|
|
742
|
+
- In TreeView, “replaceText” method name has been modified as “updateNode”.
|
|
743
|
+
|
|
744
|
+
## 15.4.27-preview (2018-01-30)
|
|
745
|
+
|
|
746
|
+
### Tab
|
|
747
|
+
|
|
748
|
+
#### Bug Fixes
|
|
749
|
+
|
|
750
|
+
- Separate item change for active content issue with Tab fixed.
|
|
751
|
+
|
|
752
|
+
## 15.4.26-preview (2018-01-23)
|
|
753
|
+
|
|
754
|
+
### ContextMenu
|
|
755
|
+
|
|
756
|
+
#### Bug Fixes
|
|
757
|
+
|
|
758
|
+
- Lengthy text and caret icon wraps next line issue fixed.
|
|
759
|
+
|
|
760
|
+
### Accordion
|
|
761
|
+
|
|
762
|
+
#### Bug Fixes
|
|
763
|
+
|
|
764
|
+
- Accordion content class styles overriding with the other component issue fixed.
|
|
765
|
+
|
|
766
|
+
### Tab
|
|
767
|
+
|
|
768
|
+
#### Bug Fixes
|
|
769
|
+
|
|
770
|
+
- Issue with changing separate items property has been fixed.
|
|
771
|
+
|
|
772
|
+
### Toolbar
|
|
773
|
+
|
|
774
|
+
#### New Features
|
|
775
|
+
|
|
776
|
+
- Provided support to display Toolbar items in popup always.
|
|
777
|
+
|
|
778
|
+
## 15.4.25-preview (2018-01-09)
|
|
779
|
+
|
|
780
|
+
## 15.4.23-preview (2017-12-27)
|
|
781
|
+
|
|
782
|
+
### Common
|
|
783
|
+
|
|
784
|
+
#### New Features
|
|
785
|
+
|
|
786
|
+
- Added typing file for ES5 global scripts (dist/global/index.d.ts)
|
|
787
|
+
|
|
788
|
+
#### Breaking Changes
|
|
789
|
+
|
|
790
|
+
- Modified the module bundle file name for ES6 bundling
|
|
791
|
+
|
|
792
|
+
### Toolbar
|
|
793
|
+
|
|
794
|
+
#### Bug Fixes
|
|
795
|
+
|
|
796
|
+
- Issue with changing separate items property has been fixed.
|
|
797
|
+
|
|
798
|
+
- The Toolbar Popup and scrollable creation issue in non visible element is fixed.
|
|
799
|
+
|
|
800
|
+
- Dynamic Items updating with toolbar alignment is fixed.
|
|
801
|
+
|
|
802
|
+
- Removed unwanted space available in the Toolbar Popup mode initial time.
|
|
803
|
+
|
|
804
|
+
## 15.4.22-preview (2017-12-14)
|
|
805
|
+
|
|
806
|
+
### ContextMenu
|
|
807
|
+
|
|
808
|
+
#### Bug Fixes
|
|
809
|
+
|
|
810
|
+
- Destroy method issue in angular is fixed.
|
|
811
|
+
|
|
812
|
+
## 15.4.21-preview (2017-12-08)
|
|
813
|
+
|
|
814
|
+
### Tab
|
|
815
|
+
|
|
816
|
+
#### Bug Fixes
|
|
817
|
+
|
|
818
|
+
- Tab header overlapping issue with grid is fixed.
|
|
819
|
+
|
|
820
|
+
## 15.4.20-preview (2017-12-01)
|
|
821
|
+
|
|
822
|
+
### Common
|
|
823
|
+
|
|
824
|
+
#### New Features
|
|
825
|
+
|
|
826
|
+
- Upgraded TypeScript version to 2.6.2
|
|
827
|
+
|
|
828
|
+
## 15.4.17-preview (2017-11-13)
|
|
829
|
+
|
|
830
|
+
### Accordion
|
|
831
|
+
|
|
832
|
+
Accordion is a vertically collapsible content panel which is displaying panels, one or multiple at a time within the available space.
|
|
833
|
+
|
|
834
|
+
- **Rendering** - Supports to render based on the items collection and HTML elements.
|
|
835
|
+
|
|
836
|
+
- **Expand Mode** - Supports to define single or multiple expand mode for Accordion panels.
|
|
837
|
+
|
|
838
|
+
- **Animation** - Supports animation effects for expanding/collapsing the panels.
|
|
839
|
+
|
|
840
|
+
- **Accessibility** - Provided with built-in accessibility support which helps to access all the Accordion component features through the keyboard, screen readers, or other assistive technology devices.
|
|
841
|
+
|
|
842
|
+
### ContextMenu
|
|
843
|
+
|
|
844
|
+
ContextMenu is a graphical user interface that appears on the user right click/touch hold action.
|
|
845
|
+
|
|
846
|
+
- **Separator** - Supports menu items grouping by using the Separator.
|
|
847
|
+
|
|
848
|
+
- **Icons and Navigations** - Supports items to have Icons and Navigation URL's.
|
|
849
|
+
|
|
850
|
+
- **Template and Multilevel Nesting** - Supports template and multilevel nesting in ContextMenu.
|
|
851
|
+
|
|
852
|
+
- **Accessibility** - Provided with built-in accessibility support that helps to access all the ContextMenu component features through the keyboard, screen readers, or other assistive technology devices.
|
|
853
|
+
|
|
854
|
+
### Tab
|
|
855
|
+
|
|
856
|
+
Tab is a content panel to show multiple contents in specific space one at a time.
|
|
857
|
+
|
|
858
|
+
- **Rendering** - Supports to render based on the items collection and HTML elements.
|
|
859
|
+
|
|
860
|
+
- **Adaptive** - Supports responsive rendering with scrollable Tabs and popup menu.
|
|
861
|
+
|
|
862
|
+
- **Animation** - Supports animation effects for moving previous/next contents of the Tab.
|
|
863
|
+
|
|
864
|
+
- **Customization** - Provides customization support for header with icons and orientation.
|
|
865
|
+
|
|
866
|
+
- **Accessibility** - Provided with built-in accessibility support which helps to access all the Tab component features through the keyboard, screen readers, or other assistive technology devices.
|
|
867
|
+
|
|
868
|
+
### Toolbar
|
|
869
|
+
|
|
870
|
+
Displays a group of command buttons arranged horizontally.
|
|
871
|
+
|
|
872
|
+
- **Rendering** - Supports to render based on the items collection and HTML elements.
|
|
873
|
+
|
|
874
|
+
- **Customization** - Supports to add buttons , separator & input components.
|
|
875
|
+
|
|
876
|
+
- **Adaptive** - Supports responsive rendering with scrollable Toolbar and popup menu.
|
|
877
|
+
|
|
878
|
+
- **Accessibility**- Provided with built-in accessibility support which helps to access all the Toolbar component features through the keyboard, screen readers, or other assistive technology devices.
|
|
879
|
+
|
|
880
|
+
### TreeView
|
|
881
|
+
|
|
882
|
+
TreeView component is used to represent hierarchical data in a tree like structure with advanced functions to edit, drag and drop, select with CheckBox and more. TreeView can be populated from a data source such as an array of JavaScript objects or from DataManager. The following key features are available in TreeView component.
|
|
883
|
+
|
|
884
|
+
- **Data Binding** - Binds the TreeView component with an array of JavaScript objects or DataManager.
|
|
885
|
+
|
|
886
|
+
- **CheckBox** - Allows you to select more than one node in TreeView without affecting the UI appearance.
|
|
887
|
+
|
|
888
|
+
- **Drag and Drop** - Allows you to drag and drop any node in TreeView.
|
|
889
|
+
|
|
890
|
+
- **Multi Selection** - Allows you to select more than one node in TreeView.
|
|
891
|
+
|
|
892
|
+
- **Node Editing** - Allows you to change the text of a node in TreeView.
|
|
893
|
+
|
|
894
|
+
- **Sorting** - Allows display of the TreeView nodes in an ascending or a descending order.
|
|
895
|
+
|
|
896
|
+
- **Template** - Allows you to customize the nodes in TreeView.
|
|
897
|
+
|
|
898
|
+
- **Accessibility** - Provides built-in accessibility support that helps to access all the TreeView component features through the keyboard, on-screen readers, or other assistive technology devices.
|