@syncfusion/ej2-navigations 19.3.56 → 19.4.41

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.
Files changed (255) hide show
  1. package/.github/PULL_REQUEST_TEMPLATE/Bug.md +63 -0
  2. package/.github/PULL_REQUEST_TEMPLATE/feature.md +39 -0
  3. package/CHANGELOG.md +57 -0
  4. package/dist/ej2-navigations.umd.min.js +2 -2
  5. package/dist/ej2-navigations.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-navigations.es2015.js +513 -144
  7. package/dist/es6/ej2-navigations.es2015.js.map +1 -1
  8. package/dist/es6/ej2-navigations.es5.js +520 -145
  9. package/dist/es6/ej2-navigations.es5.js.map +1 -1
  10. package/dist/global/ej2-navigations.min.js +2 -2
  11. package/dist/global/ej2-navigations.min.js.map +1 -1
  12. package/dist/global/index.d.ts +1 -1
  13. package/package.json +11 -11
  14. package/src/accordion/accordion-model.d.ts +5 -5
  15. package/src/accordion/accordion.d.ts +5 -5
  16. package/src/accordion/accordion.js +2 -19
  17. package/src/breadcrumb/breadcrumb-model.d.ts +23 -11
  18. package/src/breadcrumb/breadcrumb.d.ts +33 -10
  19. package/src/breadcrumb/breadcrumb.js +320 -78
  20. package/src/common/v-scroll.js +1 -1
  21. package/src/sidebar/sidebar.js +4 -4
  22. package/src/tab/tab-model.d.ts +14 -6
  23. package/src/tab/tab.d.ts +33 -16
  24. package/src/tab/tab.js +66 -31
  25. package/src/toolbar/toolbar-model.d.ts +7 -7
  26. package/src/toolbar/toolbar.d.ts +6 -6
  27. package/src/toolbar/toolbar.js +81 -13
  28. package/src/treeview/treeview-model.d.ts +10 -0
  29. package/src/treeview/treeview.d.ts +13 -0
  30. package/src/treeview/treeview.js +48 -0
  31. package/styles/accordion/_bootstrap-dark-definition.scss +4 -0
  32. package/styles/accordion/_bootstrap-definition.scss +4 -0
  33. package/styles/accordion/_bootstrap4-definition.scss +4 -0
  34. package/styles/accordion/_bootstrap5-definition.scss +39 -35
  35. package/styles/accordion/_fabric-dark-definition.scss +4 -0
  36. package/styles/accordion/_fabric-definition.scss +4 -0
  37. package/styles/accordion/_fluent-definition.scss +85 -0
  38. package/styles/accordion/_highcontrast-definition.scss +5 -1
  39. package/styles/accordion/_highcontrast-light-definition.scss +4 -0
  40. package/styles/accordion/_layout.scss +6 -14
  41. package/styles/accordion/_material-dark-definition.scss +4 -0
  42. package/styles/accordion/_material-definition.scss +4 -0
  43. package/styles/accordion/_tailwind-definition.scss +83 -79
  44. package/styles/accordion/_theme.scss +12 -11
  45. package/styles/accordion/bootstrap4.css +1 -2
  46. package/styles/accordion/bootstrap5-dark.css +11 -2
  47. package/styles/accordion/bootstrap5.css +11 -2
  48. package/styles/accordion/highcontrast-light.css +0 -4
  49. package/styles/accordion/highcontrast.css +1 -5
  50. package/styles/accordion/icons/_fluent.scss +17 -0
  51. package/styles/accordion/icons/_tailwind.scss +17 -17
  52. package/styles/bootstrap-dark.css +317 -84
  53. package/styles/bootstrap.css +316 -83
  54. package/styles/bootstrap4.css +317 -76
  55. package/styles/bootstrap5-dark.css +339 -75
  56. package/styles/bootstrap5.css +341 -77
  57. package/styles/breadcrumb/_bootstrap-dark-definition.scss +14 -0
  58. package/styles/breadcrumb/_bootstrap-definition.scss +13 -0
  59. package/styles/breadcrumb/_bootstrap4-definition.scss +13 -0
  60. package/styles/breadcrumb/_bootstrap5-definition.scss +15 -2
  61. package/styles/breadcrumb/_fabric-dark-definition.scss +13 -0
  62. package/styles/breadcrumb/_fabric-definition.scss +13 -0
  63. package/styles/breadcrumb/_fluent-definition.scss +59 -0
  64. package/styles/breadcrumb/_highcontrast-definition.scss +13 -0
  65. package/styles/breadcrumb/_highcontrast-light-definition.scss +13 -0
  66. package/styles/breadcrumb/_layout.scss +171 -22
  67. package/styles/breadcrumb/_material-dark-definition.scss +13 -0
  68. package/styles/breadcrumb/_material-definition.scss +13 -0
  69. package/styles/breadcrumb/_tailwind-dark-definition.scss +13 -0
  70. package/styles/breadcrumb/_tailwind-definition.scss +13 -0
  71. package/styles/breadcrumb/_theme.scss +27 -8
  72. package/styles/breadcrumb/bootstrap-dark.css +194 -17
  73. package/styles/breadcrumb/bootstrap.css +194 -17
  74. package/styles/breadcrumb/bootstrap4.css +194 -17
  75. package/styles/breadcrumb/bootstrap5-dark.css +198 -24
  76. package/styles/breadcrumb/bootstrap5.css +198 -24
  77. package/styles/breadcrumb/fabric-dark.css +197 -20
  78. package/styles/breadcrumb/fabric.css +197 -20
  79. package/styles/breadcrumb/highcontrast-light.css +200 -22
  80. package/styles/breadcrumb/highcontrast.css +200 -22
  81. package/styles/breadcrumb/icons/_bootstrap-dark.scss +2 -1
  82. package/styles/breadcrumb/icons/_bootstrap.scss +2 -1
  83. package/styles/breadcrumb/icons/_bootstrap4.scss +2 -1
  84. package/styles/breadcrumb/icons/_bootstrap5.scss +2 -1
  85. package/styles/breadcrumb/icons/_fabric-dark.scss +2 -1
  86. package/styles/breadcrumb/icons/_fabric.scss +2 -1
  87. package/styles/breadcrumb/icons/_fluent.scss +25 -0
  88. package/styles/breadcrumb/icons/_highcontrast-light.scss +2 -1
  89. package/styles/breadcrumb/icons/_highcontrast.scss +2 -1
  90. package/styles/breadcrumb/icons/_material-dark.scss +2 -1
  91. package/styles/breadcrumb/icons/_material.scss +2 -1
  92. package/styles/breadcrumb/icons/_tailwind-dark.scss +2 -1
  93. package/styles/breadcrumb/icons/_tailwind.scss +2 -1
  94. package/styles/breadcrumb/material-dark.css +186 -13
  95. package/styles/breadcrumb/material.css +186 -13
  96. package/styles/breadcrumb/tailwind-dark.css +195 -22
  97. package/styles/breadcrumb/tailwind.css +195 -22
  98. package/styles/context-menu/_bootstrap-dark-definition.scss +1 -1
  99. package/styles/context-menu/_bootstrap-definition.scss +1 -1
  100. package/styles/context-menu/_bootstrap4-definition.scss +1 -1
  101. package/styles/context-menu/_bootstrap5-definition.scss +5 -5
  102. package/styles/context-menu/_fluent-definition.scss +52 -0
  103. package/styles/context-menu/_material-dark-definition.scss +1 -1
  104. package/styles/context-menu/_material-definition.scss +1 -1
  105. package/styles/context-menu/_tailwind-definition.scss +1 -1
  106. package/styles/context-menu/bootstrap-dark.css +1 -1
  107. package/styles/context-menu/bootstrap.css +1 -1
  108. package/styles/context-menu/bootstrap4.css +1 -1
  109. package/styles/context-menu/bootstrap5-dark.css +5 -5
  110. package/styles/context-menu/bootstrap5.css +6 -6
  111. package/styles/context-menu/icons/_fluent.scss +32 -0
  112. package/styles/context-menu/material-dark.css +1 -1
  113. package/styles/context-menu/material.css +1 -1
  114. package/styles/context-menu/tailwind-dark.css +1 -1
  115. package/styles/context-menu/tailwind.css +1 -1
  116. package/styles/fabric-dark.css +305 -41
  117. package/styles/fabric.css +308 -44
  118. package/styles/h-scroll/_fluent-definition.scss +78 -0
  119. package/styles/h-scroll/_tailwind-definition.scss +78 -78
  120. package/styles/h-scroll/_theme.scss +1 -1
  121. package/styles/h-scroll/bootstrap-dark.css +1 -1
  122. package/styles/h-scroll/bootstrap.css +1 -1
  123. package/styles/h-scroll/bootstrap4.css +1 -1
  124. package/styles/h-scroll/bootstrap5-dark.css +1 -1
  125. package/styles/h-scroll/bootstrap5.css +1 -1
  126. package/styles/h-scroll/fabric-dark.css +1 -1
  127. package/styles/h-scroll/fabric.css +1 -1
  128. package/styles/h-scroll/highcontrast-light.css +1 -1
  129. package/styles/h-scroll/highcontrast.css +1 -1
  130. package/styles/h-scroll/icons/_fluent.scss +49 -0
  131. package/styles/h-scroll/icons/_tailwind.scss +49 -49
  132. package/styles/h-scroll/material-dark.css +1 -1
  133. package/styles/h-scroll/material.css +1 -1
  134. package/styles/h-scroll/tailwind-dark.css +1 -1
  135. package/styles/h-scroll/tailwind.css +1 -1
  136. package/styles/highcontrast-light.css +317 -47
  137. package/styles/highcontrast.css +322 -52
  138. package/styles/material-dark.css +295 -32
  139. package/styles/material.css +296 -33
  140. package/styles/menu/_fluent-definition.scss +68 -0
  141. package/styles/menu/_layout.scss +1 -1
  142. package/styles/menu/_theme.scss +9 -0
  143. package/styles/menu/bootstrap-dark.css +1 -1
  144. package/styles/menu/bootstrap.css +1 -1
  145. package/styles/menu/bootstrap4.css +1 -1
  146. package/styles/menu/bootstrap5-dark.css +4 -4
  147. package/styles/menu/bootstrap5.css +5 -5
  148. package/styles/menu/icons/_fluent.scss +133 -0
  149. package/styles/menu/material-dark.css +1 -1
  150. package/styles/menu/material.css +1 -1
  151. package/styles/menu/tailwind-dark.css +1 -1
  152. package/styles/menu/tailwind.css +1 -1
  153. package/styles/sidebar/_bootstrap5-definition.scss +5 -5
  154. package/styles/sidebar/_fluent-definition.scss +5 -0
  155. package/styles/sidebar/_theme.scss +4 -2
  156. package/styles/sidebar/bootstrap5-dark.css +0 -1
  157. package/styles/sidebar/bootstrap5.css +0 -1
  158. package/styles/sidebar/tailwind-dark.css +0 -1
  159. package/styles/sidebar/tailwind.css +0 -1
  160. package/styles/tab/_bootstrap-dark-definition.scss +10 -1
  161. package/styles/tab/_bootstrap-definition.scss +10 -1
  162. package/styles/tab/_bootstrap4-definition.scss +9 -1
  163. package/styles/tab/_bootstrap5-definition.scss +401 -401
  164. package/styles/tab/_fabric-dark-definition.scss +10 -0
  165. package/styles/tab/_fabric-definition.scss +10 -0
  166. package/styles/tab/_fluent-definition.scss +409 -0
  167. package/styles/tab/_highcontrast-definition.scss +10 -0
  168. package/styles/tab/_highcontrast-light-definition.scss +10 -0
  169. package/styles/tab/_layout.scss +145 -0
  170. package/styles/tab/_material-dark-definition.scss +10 -0
  171. package/styles/tab/_material-definition.scss +10 -0
  172. package/styles/tab/_tailwind-definition.scss +431 -420
  173. package/styles/tab/_theme.scss +188 -113
  174. package/styles/tab/bootstrap-dark.css +43 -18
  175. package/styles/tab/bootstrap.css +42 -17
  176. package/styles/tab/bootstrap4.css +47 -28
  177. package/styles/tab/bootstrap5-dark.css +53 -30
  178. package/styles/tab/bootstrap5.css +53 -30
  179. package/styles/tab/fabric-dark.css +43 -20
  180. package/styles/tab/fabric.css +46 -23
  181. package/styles/tab/highcontrast-light.css +52 -19
  182. package/styles/tab/highcontrast.css +56 -23
  183. package/styles/tab/icons/_bootstrap-dark.scss +2 -2
  184. package/styles/tab/icons/_fabric-dark.scss +2 -2
  185. package/styles/tab/icons/_fluent.scss +140 -0
  186. package/styles/tab/icons/_tailwind.scss +140 -140
  187. package/styles/tab/material-dark.css +42 -15
  188. package/styles/tab/material.css +42 -15
  189. package/styles/tab/tailwind-dark.css +42 -17
  190. package/styles/tab/tailwind.css +42 -17
  191. package/styles/tailwind-dark.css +313 -50
  192. package/styles/tailwind.css +313 -50
  193. package/styles/toolbar/_bootstrap-dark-definition.scss +7 -1
  194. package/styles/toolbar/_bootstrap-definition.scss +7 -1
  195. package/styles/toolbar/_bootstrap4-definition.scss +8 -2
  196. package/styles/toolbar/_bootstrap5-definition.scss +104 -86
  197. package/styles/toolbar/_fabric-dark-definition.scss +7 -0
  198. package/styles/toolbar/_fabric-definition.scss +7 -0
  199. package/styles/toolbar/_fluent-definition.scss +149 -0
  200. package/styles/toolbar/_highcontrast-definition.scss +7 -0
  201. package/styles/toolbar/_highcontrast-light-definition.scss +7 -0
  202. package/styles/toolbar/_layout.scss +27 -72
  203. package/styles/toolbar/_material-dark-definition.scss +7 -1
  204. package/styles/toolbar/_material-definition.scss +7 -1
  205. package/styles/toolbar/_tailwind-definition.scss +149 -143
  206. package/styles/toolbar/_theme.scss +12 -15
  207. package/styles/toolbar/bootstrap-dark.css +17 -46
  208. package/styles/toolbar/bootstrap.css +17 -46
  209. package/styles/toolbar/bootstrap4.css +12 -26
  210. package/styles/toolbar/bootstrap5-dark.css +6 -7
  211. package/styles/toolbar/bootstrap5.css +6 -7
  212. package/styles/toolbar/fabric-dark.css +4 -0
  213. package/styles/toolbar/fabric.css +4 -0
  214. package/styles/toolbar/highcontrast-light.css +4 -1
  215. package/styles/toolbar/highcontrast.css +4 -1
  216. package/styles/toolbar/icons/_fluent.scss +16 -0
  217. package/styles/toolbar/icons/_tailwind.scss +16 -16
  218. package/styles/toolbar/material-dark.css +4 -1
  219. package/styles/toolbar/material.css +5 -2
  220. package/styles/toolbar/tailwind-dark.css +8 -6
  221. package/styles/toolbar/tailwind.css +8 -6
  222. package/styles/treeview/_bootstrap-dark-definition.scss +11 -0
  223. package/styles/treeview/_bootstrap-definition.scss +11 -0
  224. package/styles/treeview/_bootstrap4-definition.scss +11 -0
  225. package/styles/treeview/_bootstrap5-definition.scss +120 -109
  226. package/styles/treeview/_fabric-dark-definition.scss +11 -0
  227. package/styles/treeview/_fabric-definition.scss +11 -0
  228. package/styles/treeview/_fluent-definition.scss +120 -0
  229. package/styles/treeview/_highcontrast-definition.scss +11 -0
  230. package/styles/treeview/_highcontrast-light-definition.scss +11 -0
  231. package/styles/treeview/_layout.scss +116 -20
  232. package/styles/treeview/_material-dark-definition.scss +13 -0
  233. package/styles/treeview/_material-definition.scss +11 -0
  234. package/styles/treeview/_tailwind-definition.scss +12 -0
  235. package/styles/treeview/_theme.scss +5 -5
  236. package/styles/treeview/bootstrap-dark.css +60 -0
  237. package/styles/treeview/bootstrap.css +60 -0
  238. package/styles/treeview/bootstrap4.css +60 -0
  239. package/styles/treeview/bootstrap5-dark.css +61 -1
  240. package/styles/treeview/bootstrap5.css +61 -1
  241. package/styles/treeview/fabric-dark.css +60 -0
  242. package/styles/treeview/fabric.css +60 -0
  243. package/styles/treeview/highcontrast-light.css +60 -0
  244. package/styles/treeview/highcontrast.css +60 -0
  245. package/styles/treeview/icons/_bootstrap5.scss +43 -43
  246. package/styles/treeview/icons/_fluent.scss +43 -0
  247. package/styles/treeview/icons/_tailwind-dark.scss +43 -43
  248. package/styles/treeview/material-dark.css +60 -0
  249. package/styles/treeview/material.css +60 -0
  250. package/styles/treeview/tailwind-dark.css +65 -1
  251. package/styles/treeview/tailwind.css +65 -1
  252. package/styles/v-scroll/_fluent-definition.scss +49 -0
  253. package/styles/v-scroll/_tailwind-definition.scss +49 -49
  254. package/styles/v-scroll/icons/_fluent.scss +26 -0
  255. package/styles/v-scroll/icons/_tailwind.scss +26 -26
@@ -64,7 +64,7 @@
64
64
  }
65
65
  }
66
66
 
67
- @if $skin-name == 'tailwind' or $skin-name == 'bootstrap5' {
67
+ @if $skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' {
68
68
  .e-ul {
69
69
  padding: $treeview-big-root-ul-padding;
70
70
  }
@@ -117,6 +117,14 @@
117
117
 
118
118
  &.e-drag-item {
119
119
 
120
+ @if $skin-name == 'FluentUI' {
121
+ .e-icon-expandable,
122
+ .e-icon-collapsible {
123
+ padding-left: 24px;
124
+ padding-top: 10;
125
+ }
126
+ }
127
+
120
128
  .e-drop-count {
121
129
  padding: 3px 5px 4px;
122
130
  }
@@ -177,6 +185,40 @@
177
185
  height: $treeview-big-item-height;
178
186
  }
179
187
 
188
+ &.e-text-wrap {
189
+ .e-checkbox-wrapper {
190
+ & + .e-list-text {
191
+ max-width: $treeview-big-check-wrap-width;
192
+ }
193
+
194
+ & + .e-list-icon,
195
+ & + .e-list-img {
196
+ & + .e-list-text {
197
+ max-width: $treeview-big-check-icon-wrap-width;
198
+ }
199
+ }
200
+
201
+ & + .e-list-icon + .e-list-img {
202
+ & + .e-list-text {
203
+ max-width: $treeview-big-check-icon-img-wrap-width;
204
+ }
205
+ }
206
+ }
207
+
208
+ .e-list-icon,
209
+ .e-list-img {
210
+ & + .e-list-text {
211
+ max-width: $treeview-big-icon-wrap-width;
212
+ }
213
+ }
214
+
215
+ .e-list-icon + .e-list-img {
216
+ & + .e-list-text {
217
+ max-width: $treeview-big-icon-img-wrap-width;
218
+ }
219
+ }
220
+ }
221
+
180
222
  .e-list-text {
181
223
  line-height: $treeview-big-text-height;
182
224
  @if $skin-name != 'bootstrap4' {
@@ -218,7 +260,7 @@
218
260
  @if $skin-name == 'bootstrap4' {
219
261
  font-size: $treeview-big-image-font-size;
220
262
  }
221
- @if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'bootstrap5') {
263
+ @if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
222
264
  & + .e-list-text {
223
265
  padding: $treeview-big-image-text-padding;
224
266
  }
@@ -246,7 +288,7 @@
246
288
 
247
289
  &.e-drag-item {
248
290
 
249
- @if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'bootstrap5') {
291
+ @if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
250
292
 
251
293
  .e-text-content {
252
294
  padding-left: $treeview-big-drag-item-text-padding-left;
@@ -255,17 +297,17 @@
255
297
  .e-icon-collapsible,
256
298
  .e-icon-expandable {
257
299
  font-size: $treeview-big-drag-icon-font-size;
258
- @if ($skin-name != 'bootstrap5') {
300
+ @if ($skin-name != 'bootstrap5' and $skin-name != 'FluentUI') {
259
301
  margin: $treeview-big-drag-icon-margin;
260
302
  }
261
303
  }
262
304
 
263
305
  .e-icon-collapsible::before,
264
306
  .e-icon-expandable::before {
265
- @if ($skin-name != 'bootstrap5') {
307
+ @if ($skin-name != 'bootstrap5' and $skin-name != 'FluentUI') {
266
308
  padding: $treeview-big-drag-before-icon-padding;
267
309
  }
268
- @if ($skin-name == 'bootstrap5') {
310
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
269
311
  font-size: $treeview-big-drag-icon-font-size;
270
312
  }
271
313
  }
@@ -280,7 +322,7 @@
280
322
 
281
323
  &.e-rtl {
282
324
 
283
- @if $skin-name == 'tailwind' or $skin-name == 'bootstrap5' {
325
+ @if $skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' {
284
326
  .e-ul {
285
327
  padding: $treeview-big-rtl-root-ul-padding;
286
328
  }
@@ -303,7 +345,7 @@
303
345
 
304
346
  &.e-drag-item {
305
347
 
306
- @if ($skin-name == 'bootstrap5') {
348
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
307
349
 
308
350
  .e-text-content {
309
351
  padding-left: 0;
@@ -388,7 +430,52 @@
388
430
  &.e-text-wrap {
389
431
  .e-list-text {
390
432
  white-space: normal;
391
- word-break: break-all;
433
+ word-break: break-word;
434
+ }
435
+
436
+ &.e-ie-wrap {
437
+ .e-list-text {
438
+ word-break: break-all;
439
+ }
440
+ }
441
+
442
+ .e-editing {
443
+ .e-list-text,
444
+ .e-list-text .e-input-group {
445
+ max-width: $treeview-edit-wrap-width;
446
+ }
447
+ }
448
+
449
+ .e-checkbox-wrapper {
450
+ & + .e-list-text {
451
+ max-width: $treeview-check-wrap-width;
452
+ }
453
+
454
+ & + .e-list-icon,
455
+ & + .e-list-img {
456
+ & + .e-list-text {
457
+ max-width: $treeview-check-icon-wrap-width;
458
+ }
459
+ }
460
+
461
+ & + .e-list-icon + .e-list-img {
462
+ & + .e-list-text {
463
+ max-width: $treeview-check-icon-img-wrap-width;
464
+ }
465
+ }
466
+ }
467
+
468
+ .e-list-icon,
469
+ .e-list-img {
470
+ & + .e-list-text {
471
+ max-width: $treeview-icon-wrap-width;
472
+ }
473
+ }
474
+
475
+ .e-list-icon + .e-list-img {
476
+ & + .e-list-text {
477
+ max-width: $treeview-icon-img-wrap-width;
478
+ }
392
479
  }
393
480
  }
394
481
 
@@ -407,6 +494,12 @@
407
494
 
408
495
  .e-list-item {
409
496
 
497
+ &.e-active {
498
+ @if $skin-name == 'tailwind' {
499
+ font-weight: $treeview-active-font-weight;
500
+ }
501
+ }
502
+
410
503
  div.e-icons.interaction {
411
504
  -webkit-transition: -webkit-transform .3s ease-in-out;
412
505
  border-radius: 15px;
@@ -537,7 +630,7 @@
537
630
 
538
631
  .e-input-group {
539
632
  height: $treeview-input-height;
540
- @if($skin-name == 'tailwind') {
633
+ @if($skin-name == 'tailwind' or $skin-name == 'FluentUI') {
541
634
  margin-top: 3px;
542
635
  }
543
636
  @else if($skin-name == 'bootstrap5') {
@@ -596,8 +689,8 @@
596
689
  }
597
690
 
598
691
  .e-sibling {
599
- @if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5') {
600
- width: 100%;
692
+ @if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
693
+ width: 144px;
601
694
  }
602
695
  @else {
603
696
  @include sibling-style;
@@ -613,7 +706,7 @@
613
706
  @if ($skin-name == 'tailwind') {
614
707
  margin-top: -2px;
615
708
  }
616
- @else if ($skin-name == 'bootstrap5') {
709
+ @else if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
617
710
  margin-top: 1px;
618
711
  }
619
712
  @else {
@@ -623,7 +716,7 @@
623
716
 
624
717
  .e-sibling::before {
625
718
  @include sibling-before(ltr);
626
- @if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5') {
719
+ @if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
627
720
  height: 2px;
628
721
  top: -1.5px;
629
722
  }
@@ -742,21 +835,24 @@
742
835
  float: left;
743
836
 
744
837
  .e-list-text {
745
- @if ($skin-name == 'bootstrap5') {
838
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
746
839
  padding: 0 $treeview-drag-icon-padding;
747
840
  }
748
841
  }
749
842
  }
750
- @if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'bootstrap5' ) {
843
+ @if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
751
844
  .e-icon-collapsible,
752
845
  .e-icon-expandable {
753
- @if ($skin-name != 'bootstrap5') {
846
+ @if ($skin-name != 'bootstrap5' and $skin-name != 'FluentUI') {
754
847
  margin: $treeview-drag-icon-margin;
755
848
  }
756
849
 
757
- @if ($skin-name == 'bootstrap5') {
850
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
758
851
  box-sizing: content-box;
759
852
  padding-left: $treeview-drag-icon-padding;
853
+ @if ($skin-name == 'FluentUI') {
854
+ padding-top: 8px;
855
+ }
760
856
  }
761
857
  }
762
858
  }
@@ -764,7 +860,7 @@
764
860
  .e-icon-collapsible::before,
765
861
  .e-icon-expandable::before {
766
862
  font-size: $treeview-drag-icon-font-size;
767
- @if ($skin-name != 'bootstrap5') {
863
+ @if ($skin-name != 'bootstrap5' and $skin-name != 'FluentUI') {
768
864
  padding: $treeview-drag-icon-padding;
769
865
  }
770
866
  @if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind') {
@@ -785,7 +881,7 @@
785
881
  @else {
786
882
  line-height: normal;
787
883
  min-width: 12px;
788
- @if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5') {
884
+ @if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
789
885
  padding: 1px 3px 2px;
790
886
  }
791
887
  @else {
@@ -73,6 +73,13 @@ $treeview-check-image-margin: 0 0 0 12px !default;
73
73
  $treeview-rtl-check-image-margin: 0 12px 0 0 !default;
74
74
  $treeview-drop-count-border-size: 1px !default;
75
75
  $treeview-drop-count-font-size: 13px !default;
76
+ $treeview-edit-wrap-width: calc(100% - 2px) !default;
77
+ $treeview-check-wrap-width: calc(100% - 22px) !default;
78
+ $treeview-check-icon-wrap-width: calc(100% - 59px) !default;
79
+ $treeview-check-icon-img-wrap-width: calc(100% - 87px) !default;
80
+ $treeview-icon-wrap-width: calc(100% - 29px) !default;
81
+ $treeview-icon-img-wrap-width: calc(100% - 57px) !default;
82
+
76
83
  $treeview-big-item-height: 40px !default;
77
84
  $treeview-big-text-height: 38px !default;
78
85
  $treeview-big-input-height: 38px !default;
@@ -87,6 +94,12 @@ $treeview-big-check-margin: 0 0 0 10px !default;
87
94
  $treeview-big-rtl-check-margin: 0 10px 0 0 !default;
88
95
  $treeview-big-check-image-margin: 0 0 0 16px !default;
89
96
  $treeview-big-rtl-check-image-margin: 0 16px 0 0 !default;
97
+ $treeview-big-check-wrap-width: calc(100% - 29px) !default;
98
+ $treeview-big-check-icon-wrap-width: calc(100% - 70px) !default;
99
+ $treeview-big-check-icon-img-wrap-width: calc(100% - 98px) !default;
100
+ $treeview-big-icon-wrap-width: calc(100% - 34px) !default;
101
+ $treeview-big-icon-img-wrap-width: calc(100% - 62px) !default;
102
+
90
103
  $treeview-drag-icon-padding: 6px !default;
91
104
  $treeview-font-family: $font-family !default;
92
105
  $treeview-drag-icon-font-size: 12px !default;
@@ -76,6 +76,12 @@ $treeview-check-image-margin: 0 0 0 12px !default;
76
76
  $treeview-rtl-check-image-margin: 0 12px 0 0 !default;
77
77
  $treeview-drop-count-border-size: 1px !default;
78
78
  $treeview-drop-count-font-size: 13px !default;
79
+ $treeview-edit-wrap-width: calc(100% - 2px) !default;
80
+ $treeview-check-wrap-width: calc(100% - 22px) !default;
81
+ $treeview-check-icon-wrap-width: calc(100% - 59px) !default;
82
+ $treeview-check-icon-img-wrap-width: calc(100% - 87px) !default;
83
+ $treeview-icon-wrap-width: calc(100% - 29px) !default;
84
+ $treeview-icon-img-wrap-width: calc(100% - 57px) !default;
79
85
 
80
86
  $treeview-big-item-height: 40px !default;
81
87
  $treeview-big-text-height: 38px !default;
@@ -91,6 +97,11 @@ $treeview-big-check-margin: 0 0 0 10px !default;
91
97
  $treeview-big-rtl-check-margin: 0 10px 0 0 !default;
92
98
  $treeview-big-check-image-margin: 0 0 0 16px !default;
93
99
  $treeview-big-rtl-check-image-margin: 0 16px 0 0 !default;
100
+ $treeview-big-check-wrap-width: calc(100% - 29px) !default;
101
+ $treeview-big-check-icon-wrap-width: calc(100% - 70px) !default;
102
+ $treeview-big-check-icon-img-wrap-width: calc(100% - 98px) !default;
103
+ $treeview-big-icon-wrap-width: calc(100% - 34px) !default;
104
+ $treeview-big-icon-img-wrap-width: calc(100% - 62px) !default;
94
105
 
95
106
  $treeview-font-family: $font-family !default;
96
107
  $treeview-drag-icon-font-size: 12px !default;
@@ -41,6 +41,13 @@ $treeview-check-image-margin: 0 0 0 8px !default;
41
41
  $treeview-rtl-check-image-margin: 0 8px 0 0 !default;
42
42
  $treeview-drop-count-border-size: 1px !default;
43
43
  $treeview-drop-count-font-size: $text-xs !default;
44
+ $treeview-active-font-weight: 500 !default;
45
+ $treeview-edit-wrap-width: calc(100% - 2px) !default;
46
+ $treeview-check-wrap-width: calc(100% - 23px) !default;
47
+ $treeview-check-icon-wrap-width: calc(100% - 56px) !default;
48
+ $treeview-check-icon-img-wrap-width: calc(100% - 84px) !default;
49
+ $treeview-icon-wrap-width: calc(100% - 32px) !default;
50
+ $treeview-icon-img-wrap-width: calc(100% - 60px) !default;
44
51
 
45
52
  $treeview-big-item-height: 48px !default;
46
53
  $treeview-big-text-height: 46px !default;
@@ -70,6 +77,11 @@ $treeview-big-drag-item-text-padding-left: 12px !default;
70
77
  $treeview-big-drag-icon-margin:-6px 0px 5px -9px !default;
71
78
  $treeview-big-drag-before-icon-padding: 6px !default;
72
79
  $treeview-big-check-text-padding: 0 12px !default;
80
+ $treeview-big-check-wrap-width: calc(100% - 29px) !default;
81
+ $treeview-big-check-icon-wrap-width: calc(100% - 65px) !default;
82
+ $treeview-big-check-icon-img-wrap-width: calc(100% - 101px) !default;
83
+ $treeview-big-icon-wrap-width: calc(100% - 35px) !default;
84
+ $treeview-big-icon-img-wrap-width: calc(100% - 71px) !default;
73
85
 
74
86
  $treeview-font-family: $font-family !default;
75
87
  $treeview-drag-icon-font-size: 20px !default;
@@ -143,13 +143,13 @@
143
143
  border-color: $treeview-item-active-check-border-color;
144
144
  color: $treeview-item-active-check-color;
145
145
  }
146
- @else if $skin-name == 'bootstrap5' {
146
+ @else if $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' {
147
147
  border-color: $content-text-color-selected;
148
148
  }
149
149
  }
150
150
 
151
151
  .e-stop {
152
- @if $skin-name == 'bootstrap5' {
152
+ @if $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' {
153
153
  border-color: $content-text-color-selected;
154
154
  }
155
155
  }
@@ -225,7 +225,7 @@
225
225
  > .e-text-content,
226
226
  > .e-fullrow {
227
227
  color: $treeview-text-disable-color;
228
- @if $skin-name == 'bootstrap5' {
228
+ @if $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' {
229
229
  .e-list-text {
230
230
  color: $treeview-text-disable-color;
231
231
  }
@@ -239,7 +239,7 @@
239
239
  }
240
240
 
241
241
  .e-sibling {
242
- @if ($skin-name != 'tailwind' and $skin-name != 'bootstrap5') {
242
+ @if ($skin-name != 'tailwind' and $skin-name != 'bootstrap5' and $skin-name != 'FluentUI') {
243
243
  @include sibling-theme(left, right);
244
244
  }
245
245
  @else {
@@ -347,7 +347,7 @@
347
347
  &.e-rtl {
348
348
 
349
349
  .e-sibling {
350
- @if ($skin-name != 'tailwind' and $skin-name != 'bootstrap5') {
350
+ @if ($skin-name != 'tailwind' and $skin-name != 'bootstrap5' and $skin-name != 'FluentUI') {
351
351
  @include sibling-theme(right, left);
352
352
  }
353
353
  @else {
@@ -81,6 +81,35 @@
81
81
  height: 40px;
82
82
  }
83
83
 
84
+ .e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-text,
85
+ .e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-text {
86
+ max-width: calc(100% - 27px);
87
+ }
88
+
89
+ .e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-text,
90
+ .e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-img + .e-list-text,
91
+ .e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-text,
92
+ .e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-img + .e-list-text {
93
+ max-width: calc(100% - 68px);
94
+ }
95
+
96
+ .e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-img + .e-list-text,
97
+ .e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-img + .e-list-text {
98
+ max-width: calc(100% - 96px);
99
+ }
100
+
101
+ .e-bigger .e-treeview.e-text-wrap .e-list-icon + .e-list-text,
102
+ .e-bigger .e-treeview.e-text-wrap .e-list-img + .e-list-text,
103
+ .e-treeview.e-bigger.e-text-wrap .e-list-icon + .e-list-text,
104
+ .e-treeview.e-bigger.e-text-wrap .e-list-img + .e-list-text {
105
+ max-width: calc(100% - 34px);
106
+ }
107
+
108
+ .e-bigger .e-treeview.e-text-wrap .e-list-icon + .e-list-img + .e-list-text,
109
+ .e-treeview.e-bigger.e-text-wrap .e-list-icon + .e-list-img + .e-list-text {
110
+ max-width: calc(100% - 62px);
111
+ }
112
+
84
113
  .e-bigger .e-treeview .e-list-text,
85
114
  .e-treeview.e-bigger .e-list-text {
86
115
  line-height: 38px;
@@ -200,9 +229,40 @@
200
229
 
201
230
  .e-treeview.e-text-wrap .e-list-text {
202
231
  white-space: normal;
232
+ word-break: break-word;
233
+ }
234
+
235
+ .e-treeview.e-text-wrap.e-ie-wrap .e-list-text {
203
236
  word-break: break-all;
204
237
  }
205
238
 
239
+ .e-treeview.e-text-wrap .e-editing .e-list-text,
240
+ .e-treeview.e-text-wrap .e-editing .e-list-text .e-input-group {
241
+ max-width: calc(100% - 2px);
242
+ }
243
+
244
+ .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-text {
245
+ max-width: calc(100% - 24px);
246
+ }
247
+
248
+ .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-text,
249
+ .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-img + .e-list-text {
250
+ max-width: calc(100% - 61px);
251
+ }
252
+
253
+ .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-img + .e-list-text {
254
+ max-width: calc(100% - 89px);
255
+ }
256
+
257
+ .e-treeview.e-text-wrap .e-list-icon + .e-list-text,
258
+ .e-treeview.e-text-wrap .e-list-img + .e-list-text {
259
+ max-width: calc(100% - 29px);
260
+ }
261
+
262
+ .e-treeview.e-text-wrap .e-list-icon + .e-list-img + .e-list-text {
263
+ max-width: calc(100% - 57px);
264
+ }
265
+
206
266
  .e-treeview .e-ul {
207
267
  margin: 0;
208
268
  padding: 0 0 0 24px;
@@ -82,6 +82,35 @@
82
82
  height: 40px;
83
83
  }
84
84
 
85
+ .e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-text,
86
+ .e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-text {
87
+ max-width: calc(100% - 27px);
88
+ }
89
+
90
+ .e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-text,
91
+ .e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-img + .e-list-text,
92
+ .e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-text,
93
+ .e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-img + .e-list-text {
94
+ max-width: calc(100% - 68px);
95
+ }
96
+
97
+ .e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-img + .e-list-text,
98
+ .e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-img + .e-list-text {
99
+ max-width: calc(100% - 96px);
100
+ }
101
+
102
+ .e-bigger .e-treeview.e-text-wrap .e-list-icon + .e-list-text,
103
+ .e-bigger .e-treeview.e-text-wrap .e-list-img + .e-list-text,
104
+ .e-treeview.e-bigger.e-text-wrap .e-list-icon + .e-list-text,
105
+ .e-treeview.e-bigger.e-text-wrap .e-list-img + .e-list-text {
106
+ max-width: calc(100% - 34px);
107
+ }
108
+
109
+ .e-bigger .e-treeview.e-text-wrap .e-list-icon + .e-list-img + .e-list-text,
110
+ .e-treeview.e-bigger.e-text-wrap .e-list-icon + .e-list-img + .e-list-text {
111
+ max-width: calc(100% - 62px);
112
+ }
113
+
85
114
  .e-bigger .e-treeview .e-list-text,
86
115
  .e-treeview.e-bigger .e-list-text {
87
116
  line-height: 38px;
@@ -201,9 +230,40 @@
201
230
 
202
231
  .e-treeview.e-text-wrap .e-list-text {
203
232
  white-space: normal;
233
+ word-break: break-word;
234
+ }
235
+
236
+ .e-treeview.e-text-wrap.e-ie-wrap .e-list-text {
204
237
  word-break: break-all;
205
238
  }
206
239
 
240
+ .e-treeview.e-text-wrap .e-editing .e-list-text,
241
+ .e-treeview.e-text-wrap .e-editing .e-list-text .e-input-group {
242
+ max-width: calc(100% - 2px);
243
+ }
244
+
245
+ .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-text {
246
+ max-width: calc(100% - 24px);
247
+ }
248
+
249
+ .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-text,
250
+ .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-img + .e-list-text {
251
+ max-width: calc(100% - 61px);
252
+ }
253
+
254
+ .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-img + .e-list-text {
255
+ max-width: calc(100% - 89px);
256
+ }
257
+
258
+ .e-treeview.e-text-wrap .e-list-icon + .e-list-text,
259
+ .e-treeview.e-text-wrap .e-list-img + .e-list-text {
260
+ max-width: calc(100% - 29px);
261
+ }
262
+
263
+ .e-treeview.e-text-wrap .e-list-icon + .e-list-img + .e-list-text {
264
+ max-width: calc(100% - 57px);
265
+ }
266
+
207
267
  .e-treeview .e-ul {
208
268
  margin: 0;
209
269
  padding: 0 0 0 24px;
@@ -93,6 +93,35 @@
93
93
  height: 40px;
94
94
  }
95
95
 
96
+ .e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-text,
97
+ .e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-text {
98
+ max-width: calc(100% - 24px);
99
+ }
100
+
101
+ .e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-text,
102
+ .e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-img + .e-list-text,
103
+ .e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-text,
104
+ .e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-img + .e-list-text {
105
+ max-width: calc(100% - 65px);
106
+ }
107
+
108
+ .e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-img + .e-list-text,
109
+ .e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-img + .e-list-text {
110
+ max-width: calc(100% - 93px);
111
+ }
112
+
113
+ .e-bigger .e-treeview.e-text-wrap .e-list-icon + .e-list-text,
114
+ .e-bigger .e-treeview.e-text-wrap .e-list-img + .e-list-text,
115
+ .e-treeview.e-bigger.e-text-wrap .e-list-icon + .e-list-text,
116
+ .e-treeview.e-bigger.e-text-wrap .e-list-img + .e-list-text {
117
+ max-width: calc(100% - 34px);
118
+ }
119
+
120
+ .e-bigger .e-treeview.e-text-wrap .e-list-icon + .e-list-img + .e-list-text,
121
+ .e-treeview.e-bigger.e-text-wrap .e-list-icon + .e-list-img + .e-list-text {
122
+ max-width: calc(100% - 62px);
123
+ }
124
+
96
125
  .e-bigger .e-treeview .e-list-text,
97
126
  .e-treeview.e-bigger .e-list-text {
98
127
  line-height: 36px;
@@ -271,9 +300,40 @@
271
300
 
272
301
  .e-treeview.e-text-wrap .e-list-text {
273
302
  white-space: normal;
303
+ word-break: break-word;
304
+ }
305
+
306
+ .e-treeview.e-text-wrap.e-ie-wrap .e-list-text {
274
307
  word-break: break-all;
275
308
  }
276
309
 
310
+ .e-treeview.e-text-wrap .e-editing .e-list-text,
311
+ .e-treeview.e-text-wrap .e-editing .e-list-text .e-input-group {
312
+ max-width: calc(100% - 2px);
313
+ }
314
+
315
+ .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-text {
316
+ max-width: calc(100% - 18px);
317
+ }
318
+
319
+ .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-text,
320
+ .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-img + .e-list-text {
321
+ max-width: calc(100% - 55px);
322
+ }
323
+
324
+ .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-img + .e-list-text {
325
+ max-width: calc(100% - 83px);
326
+ }
327
+
328
+ .e-treeview.e-text-wrap .e-list-icon + .e-list-text,
329
+ .e-treeview.e-text-wrap .e-list-img + .e-list-text {
330
+ max-width: calc(100% - 29px);
331
+ }
332
+
333
+ .e-treeview.e-text-wrap .e-list-icon + .e-list-img + .e-list-text {
334
+ max-width: calc(100% - 57px);
335
+ }
336
+
277
337
  .e-treeview .e-ul {
278
338
  margin: 0;
279
339
  padding: 0 0 0 14px;