@syncfusion/ej2-navigations 29.2.7 → 30.1.37

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 (157) hide show
  1. package/.eslintrc.json +2 -0
  2. package/dist/ej2-navigations.min.js +2 -2
  3. package/dist/ej2-navigations.umd.min.js +2 -2
  4. package/dist/ej2-navigations.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-navigations.es2015.js +108 -30
  6. package/dist/es6/ej2-navigations.es2015.js.map +1 -1
  7. package/dist/es6/ej2-navigations.es5.js +109 -30
  8. package/dist/es6/ej2-navigations.es5.js.map +1 -1
  9. package/dist/global/ej2-navigations.min.js +2 -2
  10. package/dist/global/ej2-navigations.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +17 -69
  13. package/src/carousel/carousel.js +1 -7
  14. package/src/sidebar/sidebar.js +5 -1
  15. package/src/stepper/stepper.js +6 -5
  16. package/src/tab/tab.js +4 -1
  17. package/src/toolbar/toolbar-model.d.ts +8 -1
  18. package/src/toolbar/toolbar.d.ts +19 -0
  19. package/src/toolbar/toolbar.js +69 -13
  20. package/src/treeview/treeview.js +24 -3
  21. package/styles/bds-lite.css +29 -1
  22. package/styles/bds.css +31 -3
  23. package/styles/bootstrap-dark-lite.css +29 -1
  24. package/styles/bootstrap-dark.css +33 -5
  25. package/styles/bootstrap-lite.css +29 -1
  26. package/styles/bootstrap.css +33 -5
  27. package/styles/bootstrap4-lite.css +29 -1
  28. package/styles/bootstrap4.css +31 -3
  29. package/styles/bootstrap5-dark-lite.css +23 -1
  30. package/styles/bootstrap5-dark.css +26 -4
  31. package/styles/bootstrap5-lite.css +23 -1
  32. package/styles/bootstrap5.3-lite.css +23 -1
  33. package/styles/bootstrap5.3.css +25 -3
  34. package/styles/bootstrap5.css +26 -4
  35. package/styles/breadcrumb/_layout.scss +14 -0
  36. package/styles/breadcrumb/bds.css +15 -0
  37. package/styles/breadcrumb/bootstrap-dark.css +15 -0
  38. package/styles/breadcrumb/bootstrap.css +15 -0
  39. package/styles/breadcrumb/bootstrap4.css +15 -0
  40. package/styles/breadcrumb/bootstrap5-dark.css +15 -0
  41. package/styles/breadcrumb/bootstrap5.3.css +15 -0
  42. package/styles/breadcrumb/bootstrap5.css +15 -0
  43. package/styles/breadcrumb/fabric-dark.css +15 -0
  44. package/styles/breadcrumb/fabric.css +15 -0
  45. package/styles/breadcrumb/fluent-dark.css +15 -0
  46. package/styles/breadcrumb/fluent.css +15 -0
  47. package/styles/breadcrumb/fluent2.css +15 -0
  48. package/styles/breadcrumb/highcontrast-light.css +15 -0
  49. package/styles/breadcrumb/highcontrast.css +15 -0
  50. package/styles/breadcrumb/material-dark.css +15 -0
  51. package/styles/breadcrumb/material.css +15 -0
  52. package/styles/breadcrumb/material3-dark.css +15 -0
  53. package/styles/breadcrumb/material3.css +15 -0
  54. package/styles/breadcrumb/tailwind-dark.css +15 -0
  55. package/styles/breadcrumb/tailwind.css +15 -0
  56. package/styles/breadcrumb/tailwind3.css +15 -0
  57. package/styles/fabric-dark-lite.css +29 -1
  58. package/styles/fabric-dark.css +31 -3
  59. package/styles/fabric-lite.css +29 -1
  60. package/styles/fabric.css +31 -3
  61. package/styles/fluent-dark-lite.css +29 -1
  62. package/styles/fluent-dark.css +32 -4
  63. package/styles/fluent-lite.css +29 -1
  64. package/styles/fluent.css +32 -4
  65. package/styles/fluent2-lite.css +29 -1
  66. package/styles/fluent2.css +31 -3
  67. package/styles/highcontrast-light-lite.css +29 -1
  68. package/styles/highcontrast-light.css +31 -3
  69. package/styles/highcontrast-lite.css +31 -3
  70. package/styles/highcontrast.css +33 -5
  71. package/styles/material-dark-lite.css +31 -3
  72. package/styles/material-dark.css +33 -5
  73. package/styles/material-lite.css +31 -3
  74. package/styles/material.css +33 -5
  75. package/styles/material3-dark-lite.css +29 -1
  76. package/styles/material3-dark.css +31 -4
  77. package/styles/material3-lite.css +29 -1
  78. package/styles/material3.css +31 -4
  79. package/styles/pager/_bds-definition.scss +1 -1
  80. package/styles/pager/_bigger.scss +0 -1
  81. package/styles/pager/_bootstrap-dark-definition.scss +1 -1
  82. package/styles/pager/_bootstrap-definition.scss +1 -1
  83. package/styles/pager/_bootstrap4-definition.scss +1 -1
  84. package/styles/pager/_bootstrap5-definition.scss +2 -2
  85. package/styles/pager/_bootstrap5.3-definition.scss +1 -1
  86. package/styles/pager/_fabric-dark-definition.scss +1 -1
  87. package/styles/pager/_fabric-definition.scss +1 -1
  88. package/styles/pager/_fluent-definition.scss +2 -2
  89. package/styles/pager/_fluent2-definition.scss +1 -1
  90. package/styles/pager/_fusionnew-definition.scss +1 -1
  91. package/styles/pager/_highcontrast-definition.scss +1 -1
  92. package/styles/pager/_highcontrast-light-definition.scss +1 -1
  93. package/styles/pager/_layout.scss +8 -0
  94. package/styles/pager/_material-dark-definition.scss +1 -1
  95. package/styles/pager/_material-definition.scss +1 -1
  96. package/styles/pager/_material3-definition.scss +1 -1
  97. package/styles/pager/_tailwind-definition.scss +1 -1
  98. package/styles/pager/_tailwind3-definition.scss +2 -2
  99. package/styles/pager/bds.css +13 -3
  100. package/styles/pager/bootstrap-dark.css +13 -3
  101. package/styles/pager/bootstrap.css +13 -3
  102. package/styles/pager/bootstrap4.css +13 -3
  103. package/styles/pager/bootstrap5-dark.css +8 -4
  104. package/styles/pager/bootstrap5.3.css +7 -3
  105. package/styles/pager/bootstrap5.css +8 -4
  106. package/styles/pager/fabric-dark.css +13 -3
  107. package/styles/pager/fabric.css +13 -3
  108. package/styles/pager/fluent-dark.css +14 -4
  109. package/styles/pager/fluent.css +14 -4
  110. package/styles/pager/fluent2.css +13 -3
  111. package/styles/pager/highcontrast-light.css +13 -3
  112. package/styles/pager/highcontrast.css +13 -3
  113. package/styles/pager/material-dark.css +13 -3
  114. package/styles/pager/material.css +13 -3
  115. package/styles/pager/material3-dark.css +13 -4
  116. package/styles/pager/material3.css +13 -4
  117. package/styles/pager/tailwind-dark.css +13 -3
  118. package/styles/pager/tailwind.css +13 -3
  119. package/styles/pager/tailwind3.css +14 -4
  120. package/styles/tailwind-dark-lite.css +29 -1
  121. package/styles/tailwind-dark.css +31 -3
  122. package/styles/tailwind-lite.css +29 -1
  123. package/styles/tailwind.css +31 -3
  124. package/styles/tailwind3-lite.css +29 -1
  125. package/styles/tailwind3.css +32 -4
  126. package/styles/toolbar/_bootstrap-dark-definition.scss +1 -1
  127. package/styles/toolbar/_bootstrap-definition.scss +1 -1
  128. package/styles/toolbar/_highcontrast-definition.scss +1 -1
  129. package/styles/toolbar/_material-dark-definition.scss +2 -2
  130. package/styles/toolbar/_material-definition.scss +2 -2
  131. package/styles/toolbar/bootstrap-dark.css +2 -2
  132. package/styles/toolbar/bootstrap.css +2 -2
  133. package/styles/toolbar/highcontrast.css +2 -2
  134. package/styles/toolbar/material-dark.css +2 -2
  135. package/styles/toolbar/material.css +2 -2
  136. package/styles/treeview/_layout.scss +4 -0
  137. package/styles/treeview/bds.css +3 -0
  138. package/styles/treeview/bootstrap-dark.css +3 -0
  139. package/styles/treeview/bootstrap.css +3 -0
  140. package/styles/treeview/bootstrap4.css +3 -0
  141. package/styles/treeview/bootstrap5-dark.css +3 -0
  142. package/styles/treeview/bootstrap5.3.css +3 -0
  143. package/styles/treeview/bootstrap5.css +3 -0
  144. package/styles/treeview/fabric-dark.css +3 -0
  145. package/styles/treeview/fabric.css +3 -0
  146. package/styles/treeview/fluent-dark.css +3 -0
  147. package/styles/treeview/fluent.css +3 -0
  148. package/styles/treeview/fluent2.css +3 -0
  149. package/styles/treeview/highcontrast-light.css +3 -0
  150. package/styles/treeview/highcontrast.css +3 -0
  151. package/styles/treeview/material-dark.css +3 -0
  152. package/styles/treeview/material.css +3 -0
  153. package/styles/treeview/material3-dark.css +3 -0
  154. package/styles/treeview/material3.css +3 -0
  155. package/styles/treeview/tailwind-dark.css +3 -0
  156. package/styles/treeview/tailwind.css +3 -0
  157. package/styles/treeview/tailwind3.css +3 -0
@@ -113,7 +113,7 @@ $tbar-item-nrml-minwidth: 30px !default;
113
113
  $tbar-separator-bgr-height: calc(100% - 12px) !default;
114
114
  $tbar-separator-bgr-mrgn: 6px 6px !default;
115
115
  $tbar-separator-nrml-mrgn: 5.5px 6px !default;
116
- $tbar-btn-bgr-padding: 1px 7px !default;
116
+ $tbar-btn-bgr-padding: 0 7px !default;
117
117
  $tbar-btn-bgr-focus-padding: 0 7px !default;
118
118
  $tbar-btn-nrml-padding: 1px 2.5px !default;
119
119
  $tbar-icons-bgr-font-size: 14px !default;
@@ -118,7 +118,7 @@ $tbar-separator-bgr-mrgn: 6px 6px !default;
118
118
  $tbar-separator-nrml-mrgn: 5.5px 6px !default;
119
119
  $tbar-separator-vertical-bgr-mrgn: 6px !default;
120
120
  $tbar-separator-vertical-nrml-mrgn: 6px 5.5px !default;
121
- $tbar-btn-bgr-padding: 1px 7px !default;
121
+ $tbar-btn-bgr-padding: 0 7px !default;
122
122
  $tbar-btn-bgr-focus-padding: 0 7px !default;
123
123
  $tbar-btn-nrml-padding: 1px 2.5px !default;
124
124
  $tbar-icons-bgr-font-size: 14px !default;
@@ -97,7 +97,7 @@ $tbar-btn-border-radius: 0 !default;
97
97
  $tbar-btn-pressed-box-shadow: none !default;
98
98
  $tbar-btn-nrml-mrgn: 0 !default;
99
99
  $tbar-popup-padding: 0 !default;
100
- $tbar-btn-nrml-minheight: 39px !default;
100
+ $tbar-btn-nrml-minheight: 40px !default;
101
101
  $tbar-btn-nrml-line-height: 25px !default;
102
102
  $tbar-btn-icon-nrml-line-height: 24px !default;
103
103
  $tbar-btn-bgr-minheight: 49px !default;
@@ -9,8 +9,8 @@ $tbar-btn-bgr-line-height: 35px !default;
9
9
  $tbar-btn-icon-bgr-line-height: 34px !default;
10
10
  $tbar-icons-bgr-font-size: 14px !default;
11
11
  $tbar-btn-nrml-minheight: 0 !default;
12
- $tbar-btn-nrml-line-height: 25px !default;
13
- $tbar-btn-icon-nrml-line-height: 25px !default;
12
+ $tbar-btn-nrml-line-height: 24px !default;
13
+ $tbar-btn-icon-nrml-line-height: 24px !default;
14
14
  $tbar-pop-icon-nrml-padding: 0 !default;
15
15
  $tbar-pop-btn-txt-nrml-pad: 0 !default;
16
16
  $tbar-btn-icn-nrml-padding: 0 !default;
@@ -8,8 +8,8 @@ $tbar-btn-bgr-line-height: 35px !default;
8
8
  $tbar-btn-icon-bgr-line-height: 34px !default;
9
9
  $tbar-icons-bgr-font-size: 14px;
10
10
  $tbar-btn-nrml-minheight: 0 !default;
11
- $tbar-btn-nrml-line-height: 25px !default;
12
- $tbar-btn-icon-nrml-line-height: 25px !default;
11
+ $tbar-btn-nrml-line-height: 24px !default;
12
+ $tbar-btn-icon-nrml-line-height: 24px !default;
13
13
  $tbar-pop-icon-nrml-padding: 0;
14
14
  $tbar-pop-btn-txt-nrml-pad: 0;
15
15
  $tbar-btn-icn-nrml-padding: 0;
@@ -939,7 +939,7 @@
939
939
  .e-toolbar.e-bigger .e-toolbar-item .e-tbar-btn.e-btn.e-control {
940
940
  min-height: 34px;
941
941
  min-width: 0;
942
- padding: 1px 7px;
942
+ padding: 0 7px;
943
943
  line-height: 34px;
944
944
  }
945
945
  .e-bigger .e-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text,
@@ -1064,7 +1064,7 @@
1064
1064
  .e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control {
1065
1065
  min-height: 34px;
1066
1066
  min-width: 0;
1067
- padding: 1px 7px;
1067
+ padding: 0 7px;
1068
1068
  }
1069
1069
  .e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text,
1070
1070
  .e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-tbar-btn-text,
@@ -941,7 +941,7 @@
941
941
  .e-toolbar.e-bigger .e-toolbar-item .e-tbar-btn.e-btn.e-control {
942
942
  min-height: 34px;
943
943
  min-width: 0;
944
- padding: 1px 7px;
944
+ padding: 0 7px;
945
945
  line-height: 34px;
946
946
  }
947
947
  .e-bigger .e-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text,
@@ -1066,7 +1066,7 @@
1066
1066
  .e-toolbar.e-bigger.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control {
1067
1067
  min-height: 34px;
1068
1068
  min-width: 0;
1069
- padding: 1px 7px;
1069
+ padding: 0 7px;
1070
1070
  }
1071
1071
  .e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text,
1072
1072
  .e-bigger .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control .e-tbar-btn-text,
@@ -163,7 +163,7 @@
163
163
  -ms-flex-pack: center;
164
164
  justify-content: center;
165
165
  margin: 0;
166
- min-height: 39px;
166
+ min-height: 40px;
167
167
  min-width: 40px;
168
168
  padding: 0;
169
169
  border-radius: 0;
@@ -435,7 +435,7 @@
435
435
  }
436
436
  .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn,
437
437
  .e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn.e-btn.e-control {
438
- min-height: 39px;
438
+ min-height: 40px;
439
439
  min-width: 40px;
440
440
  padding: 0;
441
441
  }
@@ -232,7 +232,7 @@
232
232
  min-width: 0;
233
233
  padding: 0 1.5px;
234
234
  border-radius: 2px;
235
- line-height: 25px;
235
+ line-height: 24px;
236
236
  border: none;
237
237
  cursor: pointer;
238
238
  font-size: 14px;
@@ -253,7 +253,7 @@
253
253
  min-width: 24px;
254
254
  width: auto;
255
255
  font-size: 14px;
256
- line-height: 25px;
256
+ line-height: 24px;
257
257
  }
258
258
  .e-toolbar .e-toolbar-item .e-tbar-btn:hover, .e-toolbar .e-toolbar-item .e-tbar-btn:focus, .e-toolbar .e-toolbar-item .e-tbar-btn:active {
259
259
  padding: 0 1.5px;
@@ -234,7 +234,7 @@
234
234
  min-width: 0;
235
235
  padding: 0 1.5px;
236
236
  border-radius: 2px;
237
- line-height: 25px;
237
+ line-height: 24px;
238
238
  border: none;
239
239
  cursor: pointer;
240
240
  font-size: 14px;
@@ -255,7 +255,7 @@
255
255
  min-width: 24px;
256
256
  width: auto;
257
257
  font-size: 14px;
258
- line-height: 25px;
258
+ line-height: 24px;
259
259
  }
260
260
  .e-toolbar .e-toolbar-item .e-tbar-btn:hover, .e-toolbar .e-toolbar-item .e-tbar-btn:focus, .e-toolbar .e-toolbar-item .e-tbar-btn:active {
261
261
  padding: 0 1.5px;
@@ -81,6 +81,10 @@
81
81
  }
82
82
  }
83
83
 
84
+ .e-mask-parent {
85
+ display: none;
86
+ }
87
+
84
88
  & > .e-ul {
85
89
  -webkit-overflow-scrolling: touch;
86
90
  overflow: auto;
@@ -211,6 +211,9 @@
211
211
  .e-treeview.e-virtualization .e-ul {
212
212
  overflow: unset;
213
213
  }
214
+ .e-treeview .e-mask-parent {
215
+ display: none;
216
+ }
214
217
  .e-treeview > .e-ul {
215
218
  -webkit-overflow-scrolling: touch;
216
219
  overflow: auto;
@@ -61,6 +61,9 @@
61
61
  .e-treeview.e-virtualization .e-ul {
62
62
  overflow: unset;
63
63
  }
64
+ .e-treeview .e-mask-parent {
65
+ display: none;
66
+ }
64
67
  .e-treeview > .e-ul {
65
68
  -webkit-overflow-scrolling: touch;
66
69
  overflow: auto;
@@ -62,6 +62,9 @@
62
62
  .e-treeview.e-virtualization .e-ul {
63
63
  overflow: unset;
64
64
  }
65
+ .e-treeview .e-mask-parent {
66
+ display: none;
67
+ }
65
68
  .e-treeview > .e-ul {
66
69
  -webkit-overflow-scrolling: touch;
67
70
  overflow: auto;
@@ -61,6 +61,9 @@
61
61
  .e-treeview.e-virtualization .e-ul {
62
62
  overflow: unset;
63
63
  }
64
+ .e-treeview .e-mask-parent {
65
+ display: none;
66
+ }
64
67
  .e-treeview > .e-ul {
65
68
  -webkit-overflow-scrolling: touch;
66
69
  overflow: auto;
@@ -62,6 +62,9 @@
62
62
  .e-treeview.e-virtualization .e-ul {
63
63
  overflow: unset;
64
64
  }
65
+ .e-treeview .e-mask-parent {
66
+ display: none;
67
+ }
65
68
  .e-treeview > .e-ul {
66
69
  -webkit-overflow-scrolling: touch;
67
70
  overflow: auto;
@@ -66,6 +66,9 @@
66
66
  .e-treeview.e-virtualization .e-ul {
67
67
  overflow: unset;
68
68
  }
69
+ .e-treeview .e-mask-parent {
70
+ display: none;
71
+ }
69
72
  .e-treeview > .e-ul {
70
73
  -webkit-overflow-scrolling: touch;
71
74
  overflow: auto;
@@ -62,6 +62,9 @@
62
62
  .e-treeview.e-virtualization .e-ul {
63
63
  overflow: unset;
64
64
  }
65
+ .e-treeview .e-mask-parent {
66
+ display: none;
67
+ }
65
68
  .e-treeview > .e-ul {
66
69
  -webkit-overflow-scrolling: touch;
67
70
  overflow: auto;
@@ -61,6 +61,9 @@
61
61
  .e-treeview.e-virtualization .e-ul {
62
62
  overflow: unset;
63
63
  }
64
+ .e-treeview .e-mask-parent {
65
+ display: none;
66
+ }
64
67
  .e-treeview > .e-ul {
65
68
  -webkit-overflow-scrolling: touch;
66
69
  overflow: auto;
@@ -62,6 +62,9 @@
62
62
  .e-treeview.e-virtualization .e-ul {
63
63
  overflow: unset;
64
64
  }
65
+ .e-treeview .e-mask-parent {
66
+ display: none;
67
+ }
65
68
  .e-treeview > .e-ul {
66
69
  -webkit-overflow-scrolling: touch;
67
70
  overflow: auto;
@@ -62,6 +62,9 @@
62
62
  .e-treeview.e-virtualization .e-ul {
63
63
  overflow: unset;
64
64
  }
65
+ .e-treeview .e-mask-parent {
66
+ display: none;
67
+ }
65
68
  .e-treeview > .e-ul {
66
69
  -webkit-overflow-scrolling: touch;
67
70
  overflow: auto;
@@ -62,6 +62,9 @@
62
62
  .e-treeview.e-virtualization .e-ul {
63
63
  overflow: unset;
64
64
  }
65
+ .e-treeview .e-mask-parent {
66
+ display: none;
67
+ }
65
68
  .e-treeview > .e-ul {
66
69
  -webkit-overflow-scrolling: touch;
67
70
  overflow: auto;
@@ -250,6 +250,9 @@
250
250
  .e-treeview.e-virtualization .e-ul {
251
251
  overflow: unset;
252
252
  }
253
+ .e-treeview .e-mask-parent {
254
+ display: none;
255
+ }
253
256
  .e-treeview > .e-ul {
254
257
  -webkit-overflow-scrolling: touch;
255
258
  overflow: auto;
@@ -61,6 +61,9 @@
61
61
  .e-treeview.e-virtualization .e-ul {
62
62
  overflow: unset;
63
63
  }
64
+ .e-treeview .e-mask-parent {
65
+ display: none;
66
+ }
64
67
  .e-treeview > .e-ul {
65
68
  -webkit-overflow-scrolling: touch;
66
69
  overflow: auto;
@@ -62,6 +62,9 @@
62
62
  .e-treeview.e-virtualization .e-ul {
63
63
  overflow: unset;
64
64
  }
65
+ .e-treeview .e-mask-parent {
66
+ display: none;
67
+ }
65
68
  .e-treeview > .e-ul {
66
69
  -webkit-overflow-scrolling: touch;
67
70
  overflow: auto;
@@ -75,6 +75,9 @@
75
75
  .e-treeview.e-virtualization .e-ul {
76
76
  overflow: unset;
77
77
  }
78
+ .e-treeview .e-mask-parent {
79
+ display: none;
80
+ }
78
81
  .e-treeview > .e-ul {
79
82
  -webkit-overflow-scrolling: touch;
80
83
  overflow: auto;
@@ -96,6 +96,9 @@
96
96
  .e-treeview.e-virtualization .e-ul {
97
97
  overflow: unset;
98
98
  }
99
+ .e-treeview .e-mask-parent {
100
+ display: none;
101
+ }
99
102
  .e-treeview > .e-ul {
100
103
  -webkit-overflow-scrolling: touch;
101
104
  overflow: auto;
@@ -96,6 +96,9 @@
96
96
  .e-treeview.e-virtualization .e-ul {
97
97
  overflow: unset;
98
98
  }
99
+ .e-treeview .e-mask-parent {
100
+ display: none;
101
+ }
99
102
  .e-treeview > .e-ul {
100
103
  -webkit-overflow-scrolling: touch;
101
104
  overflow: auto;
@@ -98,6 +98,9 @@
98
98
  .e-treeview.e-virtualization .e-ul {
99
99
  overflow: unset;
100
100
  }
101
+ .e-treeview .e-mask-parent {
102
+ display: none;
103
+ }
101
104
  .e-treeview > .e-ul {
102
105
  -webkit-overflow-scrolling: touch;
103
106
  overflow: auto;
@@ -62,6 +62,9 @@
62
62
  .e-treeview.e-virtualization .e-ul {
63
63
  overflow: unset;
64
64
  }
65
+ .e-treeview .e-mask-parent {
66
+ display: none;
67
+ }
65
68
  .e-treeview > .e-ul {
66
69
  -webkit-overflow-scrolling: touch;
67
70
  overflow: auto;
@@ -62,6 +62,9 @@
62
62
  .e-treeview.e-virtualization .e-ul {
63
63
  overflow: unset;
64
64
  }
65
+ .e-treeview .e-mask-parent {
66
+ display: none;
67
+ }
65
68
  .e-treeview > .e-ul {
66
69
  -webkit-overflow-scrolling: touch;
67
70
  overflow: auto;
@@ -82,6 +82,9 @@
82
82
  .e-treeview.e-virtualization .e-ul {
83
83
  overflow: unset;
84
84
  }
85
+ .e-treeview .e-mask-parent {
86
+ display: none;
87
+ }
85
88
  .e-treeview > .e-ul {
86
89
  -webkit-overflow-scrolling: touch;
87
90
  overflow: auto;