@syncfusion/ej2-navigations 30.2.7 → 31.1.17

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 (162) hide show
  1. package/dist/ej2-navigations.min.js +1 -1
  2. package/dist/ej2-navigations.umd.min.js +1 -1
  3. package/dist/ej2-navigations.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-navigations.es2015.js.map +1 -1
  5. package/dist/es6/ej2-navigations.es5.js.map +1 -1
  6. package/dist/global/ej2-navigations.min.js +1 -1
  7. package/dist/global/ej2-navigations.min.js.map +1 -1
  8. package/dist/global/index.d.ts +1 -1
  9. package/dist/ts/accordion/accordion-model.d.ts +285 -0
  10. package/dist/ts/accordion/accordion.d.ts +458 -0
  11. package/dist/ts/accordion/accordion.ts +1580 -0
  12. package/dist/ts/accordion/index.d.ts +5 -0
  13. package/dist/ts/accordion/index.ts +5 -0
  14. package/dist/ts/appbar/appbar-model.d.ts +76 -0
  15. package/dist/ts/appbar/appbar.d.ts +115 -0
  16. package/dist/ts/appbar/appbar.ts +281 -0
  17. package/dist/ts/appbar/index.d.ts +3 -0
  18. package/dist/ts/appbar/index.ts +3 -0
  19. package/dist/ts/breadcrumb/breadcrumb-model.d.ts +170 -0
  20. package/dist/ts/breadcrumb/breadcrumb.d.ts +297 -0
  21. package/dist/ts/breadcrumb/breadcrumb.ts +959 -0
  22. package/dist/ts/breadcrumb/index.d.ts +5 -0
  23. package/dist/ts/breadcrumb/index.ts +5 -0
  24. package/dist/ts/carousel/carousel-model.d.ts +282 -0
  25. package/dist/ts/carousel/carousel.d.ts +439 -0
  26. package/dist/ts/carousel/carousel.ts +1633 -0
  27. package/dist/ts/carousel/index.d.ts +3 -0
  28. package/dist/ts/carousel/index.ts +3 -0
  29. package/dist/ts/common/h-scroll-model.d.ts +16 -0
  30. package/dist/ts/common/h-scroll.d.ts +105 -0
  31. package/dist/ts/common/h-scroll.ts +481 -0
  32. package/dist/ts/common/index.d.ts +9 -0
  33. package/dist/ts/common/index.ts +10 -0
  34. package/dist/ts/common/menu-base-model.d.ts +308 -0
  35. package/dist/ts/common/menu-base.d.ts +558 -0
  36. package/dist/ts/common/menu-base.ts +2736 -0
  37. package/dist/ts/common/menu-scroll.d.ts +29 -0
  38. package/dist/ts/common/menu-scroll.ts +105 -0
  39. package/dist/ts/common/v-scroll-model.d.ts +16 -0
  40. package/dist/ts/common/v-scroll.d.ts +106 -0
  41. package/dist/ts/common/v-scroll.ts +454 -0
  42. package/dist/ts/context-menu/context-menu-model.d.ts +47 -0
  43. package/dist/ts/context-menu/context-menu.d.ts +102 -0
  44. package/dist/ts/context-menu/context-menu.ts +165 -0
  45. package/dist/ts/context-menu/index.d.ts +5 -0
  46. package/dist/ts/context-menu/index.ts +5 -0
  47. package/dist/ts/index.d.ts +16 -0
  48. package/dist/ts/index.ts +16 -0
  49. package/dist/ts/menu/index.d.ts +5 -0
  50. package/dist/ts/menu/index.ts +5 -0
  51. package/dist/ts/menu/menu-model.d.ts +70 -0
  52. package/dist/ts/menu/menu.d.ts +127 -0
  53. package/dist/ts/menu/menu.ts +313 -0
  54. package/dist/ts/sidebar/index.d.ts +5 -0
  55. package/dist/ts/sidebar/index.ts +5 -0
  56. package/dist/ts/sidebar/sidebar-model.d.ts +200 -0
  57. package/dist/ts/sidebar/sidebar.d.ts +336 -0
  58. package/dist/ts/sidebar/sidebar.ts +907 -0
  59. package/dist/ts/stepper/index.d.ts +3 -0
  60. package/dist/ts/stepper/index.ts +3 -0
  61. package/dist/ts/stepper/stepper-model.d.ts +159 -0
  62. package/dist/ts/stepper/stepper.d.ts +381 -0
  63. package/dist/ts/stepper/stepper.ts +1350 -0
  64. package/dist/ts/stepper-base/index.d.ts +5 -0
  65. package/dist/ts/stepper-base/index.ts +6 -0
  66. package/dist/ts/stepper-base/stepper-base-model.d.ts +124 -0
  67. package/dist/ts/stepper-base/stepper-base.d.ts +187 -0
  68. package/dist/ts/stepper-base/stepper-base.ts +290 -0
  69. package/dist/ts/tab/index.d.ts +5 -0
  70. package/dist/ts/tab/index.ts +5 -0
  71. package/dist/ts/tab/tab-model.d.ts +408 -0
  72. package/dist/ts/tab/tab.d.ts +715 -0
  73. package/dist/ts/tab/tab.ts +2842 -0
  74. package/dist/ts/toolbar/index.d.ts +5 -0
  75. package/dist/ts/toolbar/index.ts +5 -0
  76. package/dist/ts/toolbar/toolbar-model.d.ts +294 -0
  77. package/dist/ts/toolbar/toolbar.d.ts +541 -0
  78. package/dist/ts/toolbar/toolbar.ts +2646 -0
  79. package/dist/ts/treeview/index.d.ts +5 -0
  80. package/dist/ts/treeview/index.ts +5 -0
  81. package/dist/ts/treeview/treeview-model.d.ts +637 -0
  82. package/dist/ts/treeview/treeview.d.ts +1518 -0
  83. package/dist/ts/treeview/treeview.ts +6780 -0
  84. package/package.json +70 -17
  85. package/src/context-menu/context-menu-model.d.ts +1 -1
  86. package/src/context-menu/context-menu.js +1 -1
  87. package/styles/accordion/_bootstrap-dark-definition.scss +1 -1
  88. package/styles/accordion/_bootstrap-definition.scss +1 -1
  89. package/styles/accordion/bootstrap-dark.css +1 -1
  90. package/styles/accordion/bootstrap.css +1 -1
  91. package/styles/bds-lite.css +1 -1
  92. package/styles/bds.css +1 -1
  93. package/styles/bootstrap-dark-lite.css +2 -2
  94. package/styles/bootstrap-dark.css +2 -2
  95. package/styles/bootstrap-lite.css +2 -2
  96. package/styles/bootstrap.css +2 -2
  97. package/styles/bootstrap4-lite.css +1 -1
  98. package/styles/bootstrap4.css +1 -1
  99. package/styles/bootstrap5-dark-lite.css +1 -1
  100. package/styles/bootstrap5-dark.css +1 -1
  101. package/styles/bootstrap5-lite.css +1 -1
  102. package/styles/bootstrap5.3-lite.css +1 -1
  103. package/styles/bootstrap5.3.css +9 -1
  104. package/styles/bootstrap5.css +1 -1
  105. package/styles/fabric-dark-lite.css +1 -1
  106. package/styles/fabric-dark.css +1 -1
  107. package/styles/fabric-lite.css +1 -1
  108. package/styles/fabric.css +1 -1
  109. package/styles/fluent-dark-lite.css +1 -1
  110. package/styles/fluent-dark.css +1 -1
  111. package/styles/fluent-lite.css +1 -1
  112. package/styles/fluent.css +1 -1
  113. package/styles/fluent2-lite.css +4 -1
  114. package/styles/fluent2.css +4 -1
  115. package/styles/h-scroll/_layout.scss +1 -1
  116. package/styles/h-scroll/bds.css +1 -1
  117. package/styles/h-scroll/bootstrap-dark.css +1 -1
  118. package/styles/h-scroll/bootstrap.css +1 -1
  119. package/styles/h-scroll/bootstrap4.css +1 -1
  120. package/styles/h-scroll/bootstrap5-dark.css +1 -1
  121. package/styles/h-scroll/bootstrap5.3.css +1 -1
  122. package/styles/h-scroll/bootstrap5.css +1 -1
  123. package/styles/h-scroll/fabric-dark.css +1 -1
  124. package/styles/h-scroll/fabric.css +1 -1
  125. package/styles/h-scroll/fluent-dark.css +1 -1
  126. package/styles/h-scroll/fluent.css +1 -1
  127. package/styles/h-scroll/fluent2.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/material-dark.css +1 -1
  131. package/styles/h-scroll/material.css +1 -1
  132. package/styles/h-scroll/material3-dark.css +1 -1
  133. package/styles/h-scroll/material3.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/h-scroll/tailwind3.css +1 -1
  137. package/styles/highcontrast-light-lite.css +1 -1
  138. package/styles/highcontrast-light.css +1 -1
  139. package/styles/highcontrast-lite.css +1 -1
  140. package/styles/highcontrast.css +1 -1
  141. package/styles/material-dark-lite.css +1 -1
  142. package/styles/material-dark.css +1 -1
  143. package/styles/material-lite.css +1 -1
  144. package/styles/material.css +1 -1
  145. package/styles/material3-dark-lite.css +1 -1
  146. package/styles/material3-dark.css +1 -7
  147. package/styles/material3-lite.css +1 -1
  148. package/styles/material3.css +1 -7
  149. package/styles/tailwind-dark-lite.css +1 -1
  150. package/styles/tailwind-dark.css +1 -1
  151. package/styles/tailwind-lite.css +1 -1
  152. package/styles/tailwind.css +1 -1
  153. package/styles/tailwind3-lite.css +1 -1
  154. package/styles/tailwind3.css +1 -1
  155. package/styles/toolbar/_layout.scss +1 -1
  156. package/styles/treeview/_bigger.scss +2 -2
  157. package/styles/treeview/_bootstrap5.3-definition.scss +1 -0
  158. package/styles/treeview/_layout.scss +3 -0
  159. package/styles/treeview/bootstrap5.3.css +8 -0
  160. package/styles/treeview/fluent2.css +3 -0
  161. package/styles/treeview/material3-dark.css +0 -6
  162. package/styles/treeview/material3.css +0 -6
package/package.json CHANGED
@@ -1,21 +1,70 @@
1
1
  {
2
- "name": "@syncfusion/ej2-navigations",
3
- "version": "30.2.7",
4
- "description": "A package of Essential JS 2 navigation components such as Tree-view, Tab, Toolbar, Context-menu, and Accordion which is used to navigate from one page to another",
5
- "author": "Syncfusion Inc.",
6
- "license": "SEE LICENSE IN license",
7
- "main": "./dist/ej2-navigations.umd.min.js",
8
- "module": "./index.js",
9
- "es2015": "./dist/es6/ej2-navigations.es5.js",
2
+ "_from": "@syncfusion/ej2-navigations@*",
3
+ "_id": "@syncfusion/ej2-navigations@22.43.0",
4
+ "_inBundle": false,
5
+ "_integrity": "sha512-hIsVz6PwAltc6dPX5lGialsxGYlqFLNnosIi+NFwgfmXNtyKfcf8ubgfdCYoLOwkgqnmhBDnWoz6X7JGp2GiHA==",
6
+ "_location": "/@syncfusion/ej2-navigations",
7
+ "_phantomChildren": {},
8
+ "_requested": {
9
+ "type": "range",
10
+ "registry": true,
11
+ "raw": "@syncfusion/ej2-navigations@*",
12
+ "name": "@syncfusion/ej2-navigations",
13
+ "escapedName": "@syncfusion%2fej2-navigations",
14
+ "scope": "@syncfusion",
15
+ "rawSpec": "*",
16
+ "saveSpec": null,
17
+ "fetchSpec": "*"
18
+ },
19
+ "_requiredBy": [
20
+ "/",
21
+ "/@syncfusion/ej2",
22
+ "/@syncfusion/ej2-angular-navigations",
23
+ "/@syncfusion/ej2-charts",
24
+ "/@syncfusion/ej2-diagrams",
25
+ "/@syncfusion/ej2-documenteditor",
26
+ "/@syncfusion/ej2-dropdowns",
27
+ "/@syncfusion/ej2-filemanager",
28
+ "/@syncfusion/ej2-gantt",
29
+ "/@syncfusion/ej2-grid-chart",
30
+ "/@syncfusion/ej2-grids",
31
+ "/@syncfusion/ej2-image-editor",
32
+ "/@syncfusion/ej2-inplace-editor",
33
+ "/@syncfusion/ej2-interactive-chat",
34
+ "/@syncfusion/ej2-kanban",
35
+ "/@syncfusion/ej2-pdfviewer",
36
+ "/@syncfusion/ej2-pivotview",
37
+ "/@syncfusion/ej2-react-navigations",
38
+ "/@syncfusion/ej2-ribbon",
39
+ "/@syncfusion/ej2-richtexteditor",
40
+ "/@syncfusion/ej2-schedule",
41
+ "/@syncfusion/ej2-spreadsheet",
42
+ "/@syncfusion/ej2-vue-navigations"
43
+ ],
44
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-development/@syncfusion/ej2-navigations/-/ej2-navigations-22.43.0.tgz",
45
+ "_shasum": "8f387fde7c3b1cbd50727b705cbb4e8e19aa2f2a",
46
+ "_spec": "@syncfusion/ej2-navigations@*",
47
+ "_where": "D:\\SF3992\\WFH\\Nexus\\release",
48
+ "author": {
49
+ "name": "Syncfusion Inc."
50
+ },
51
+ "bugs": {
52
+ "url": "https://github.com/syncfusion/ej2-javascript-ui-controls/issues"
53
+ },
54
+ "bundleDependencies": false,
10
55
  "dependencies": {
11
- "@syncfusion/ej2-base": "~30.2.6",
12
- "@syncfusion/ej2-buttons": "~30.2.4",
13
- "@syncfusion/ej2-data": "~30.2.4",
14
- "@syncfusion/ej2-inputs": "~30.2.6",
15
- "@syncfusion/ej2-lists": "~30.2.4",
16
- "@syncfusion/ej2-popups": "~30.2.4"
56
+ "@syncfusion/ej2-base": "~31.1.17",
57
+ "@syncfusion/ej2-buttons": "~31.1.17",
58
+ "@syncfusion/ej2-data": "~31.1.17",
59
+ "@syncfusion/ej2-inputs": "~31.1.17",
60
+ "@syncfusion/ej2-lists": "~31.1.17",
61
+ "@syncfusion/ej2-popups": "~31.1.17"
17
62
  },
63
+ "deprecated": false,
64
+ "description": "A package of Essential JS 2 navigation components such as Tree-view, Tab, Toolbar, Context-menu, and Accordion which is used to navigate from one page to another",
18
65
  "devDependencies": {},
66
+ "es2015": "./dist/es6/ej2-navigations.es5.js",
67
+ "homepage": "https://www.syncfusion.com/javascript-ui-controls",
19
68
  "keywords": [
20
69
  "ej2",
21
70
  "syncfusion",
@@ -105,11 +154,15 @@
105
154
  "trace page location",
106
155
  "list of breadcrumb links"
107
156
  ],
157
+ "license": "SEE LICENSE IN license",
158
+ "main": "./dist/ej2-navigations.umd.min.js",
159
+ "module": "./index.js",
160
+ "name": "@syncfusion/ej2-navigations",
108
161
  "repository": {
109
162
  "type": "git",
110
- "url": "https://github.com/syncfusion/ej2-javascript-ui-controls.git"
163
+ "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
111
164
  },
112
165
  "typings": "index.d.ts",
113
- "sideEffects": false,
114
- "homepage": "https://www.syncfusion.com/javascript-ui-controls"
166
+ "version": "31.1.17",
167
+ "sideEffects": false
115
168
  }
@@ -1,4 +1,4 @@
1
- import { attributes, getUniqueID, Collection, NotifyPropertyChanges, INotifyPropertyChanged, Property, isNullOrUndefined, addClass, removeClass } from '@syncfusion/ej2-base';import { getZindexPartial } from '@syncfusion/ej2-popups';import { MenuBase, MenuItem } from '../common/menu-base';import { MenuItemModel } from './../common/menu-base-model';
1
+ import { attributes, getUniqueID, Collection, NotifyPropertyChanges, INotifyPropertyChanged, Property, removeClass, isNullOrUndefined, addClass } from '@syncfusion/ej2-base';import { getZindexPartial } from '@syncfusion/ej2-popups';import { MenuBase, MenuItem } from '../common/menu-base';import { MenuItemModel } from './../common/menu-base-model';
2
2
  import {MenuBaseModel} from "../common/menu-base-model";
3
3
 
4
4
  /**
@@ -19,7 +19,7 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
19
19
  };
20
20
  /* eslint-disable @typescript-eslint/triple-slash-reference */
21
21
  /// <reference path='../common/menu-base-model.d.ts'/>
22
- import { attributes, getUniqueID, Collection, NotifyPropertyChanges, Property, isNullOrUndefined, addClass, removeClass } from '@syncfusion/ej2-base';
22
+ import { attributes, getUniqueID, Collection, NotifyPropertyChanges, Property, removeClass, isNullOrUndefined, addClass } from '@syncfusion/ej2-base';
23
23
  import { getZindexPartial } from '@syncfusion/ej2-popups';
24
24
  import { MenuBase, MenuItem } from '../common/menu-base';
25
25
  var CONTEXTMENUTEMPLATE = 'e-contextmenu-template';
@@ -32,7 +32,7 @@ $acrdn-item-nested-panel-item-select-margin: 2px !default;
32
32
  $acrdn-item-overflow: hidden !default;
33
33
  $acrdn-item-hover-focus-hdr-con-text-decoration: underline !default;
34
34
  $acrdn-item-hdr-border-radius: 4px !default;
35
- $acrdn-item-tgl-icon-display: none !default;
35
+ $acrdn-item-tgl-icon-display: table !default;
36
36
  $acrdn-item-arrow-icon-font-size: 12px !default;
37
37
  $acrdn-opacity: .5 !default;
38
38
  $acrdn-nrml-header-padding: 0 30px 0 15px !default;
@@ -36,7 +36,7 @@ $acrdn-item-nested-panel-item-select-margin: 2px !default;
36
36
  $acrdn-item-overflow: hidden !default;
37
37
  $acrdn-item-hover-focus-hdr-con-text-decoration: underline !default;
38
38
  $acrdn-item-hdr-border-radius: 4px !default;
39
- $acrdn-item-tgl-icon-display: none !default;
39
+ $acrdn-item-tgl-icon-display: table !default;
40
40
  $acrdn-item-arrow-icon-font-size: 12px !default;
41
41
  $acrdn-opacity: .5 !default;
42
42
  $acrdn-nrml-header-padding: 0 30px 0 15px !default;
@@ -76,7 +76,7 @@
76
76
  line-height: 39px;
77
77
  }
78
78
  .e-accordion .e-acrdn-item .e-acrdn-header .e-toggle-icon {
79
- display: none;
79
+ display: table;
80
80
  font-size: 12px;
81
81
  height: 40px;
82
82
  min-height: 40px;
@@ -76,7 +76,7 @@
76
76
  line-height: 39px;
77
77
  }
78
78
  .e-accordion .e-acrdn-item .e-acrdn-header .e-toggle-icon {
79
- display: none;
79
+ display: table;
80
80
  font-size: 12px;
81
81
  height: 40px;
82
82
  min-height: 40px;
@@ -718,7 +718,7 @@
718
718
  .e-hscroll {
719
719
  display: block;
720
720
  position: relative;
721
- width: inherit;
721
+ width: 100%;
722
722
  }
723
723
  .e-hscroll.e-rtl.e-scroll-device {
724
724
  padding-left: 40px;
package/styles/bds.css CHANGED
@@ -979,7 +979,7 @@
979
979
  .e-hscroll {
980
980
  display: block;
981
981
  position: relative;
982
- width: inherit;
982
+ width: 100%;
983
983
  }
984
984
  .e-hscroll.e-rtl.e-scroll-device {
985
985
  padding-left: 40px;
@@ -636,7 +636,7 @@
636
636
  .e-hscroll {
637
637
  display: block;
638
638
  position: relative;
639
- width: inherit;
639
+ width: 100%;
640
640
  }
641
641
  .e-hscroll.e-rtl.e-scroll-device {
642
642
  padding-left: 50px;
@@ -2003,7 +2003,7 @@
2003
2003
  line-height: 39px;
2004
2004
  }
2005
2005
  .e-accordion .e-acrdn-item .e-acrdn-header .e-toggle-icon {
2006
- display: none;
2006
+ display: table;
2007
2007
  font-size: 12px;
2008
2008
  height: 40px;
2009
2009
  min-height: 40px;
@@ -843,7 +843,7 @@
843
843
  .e-hscroll {
844
844
  display: block;
845
845
  position: relative;
846
- width: inherit;
846
+ width: 100%;
847
847
  }
848
848
  .e-hscroll.e-rtl.e-scroll-device {
849
849
  padding-left: 50px;
@@ -2528,7 +2528,7 @@
2528
2528
  line-height: 39px;
2529
2529
  }
2530
2530
  .e-accordion .e-acrdn-item .e-acrdn-header .e-toggle-icon {
2531
- display: none;
2531
+ display: table;
2532
2532
  font-size: 12px;
2533
2533
  height: 40px;
2534
2534
  min-height: 40px;
@@ -637,7 +637,7 @@
637
637
  .e-hscroll {
638
638
  display: block;
639
639
  position: relative;
640
- width: inherit;
640
+ width: 100%;
641
641
  }
642
642
  .e-hscroll.e-rtl.e-scroll-device {
643
643
  padding-left: 50px;
@@ -2005,7 +2005,7 @@
2005
2005
  line-height: 39px;
2006
2006
  }
2007
2007
  .e-accordion .e-acrdn-item .e-acrdn-header .e-toggle-icon {
2008
- display: none;
2008
+ display: table;
2009
2009
  font-size: 12px;
2010
2010
  height: 40px;
2011
2011
  min-height: 40px;
@@ -844,7 +844,7 @@
844
844
  .e-hscroll {
845
845
  display: block;
846
846
  position: relative;
847
- width: inherit;
847
+ width: 100%;
848
848
  }
849
849
  .e-hscroll.e-rtl.e-scroll-device {
850
850
  padding-left: 50px;
@@ -2530,7 +2530,7 @@
2530
2530
  line-height: 39px;
2531
2531
  }
2532
2532
  .e-accordion .e-acrdn-item .e-acrdn-header .e-toggle-icon {
2533
- display: none;
2533
+ display: table;
2534
2534
  font-size: 12px;
2535
2535
  height: 40px;
2536
2536
  min-height: 40px;
@@ -637,7 +637,7 @@
637
637
  .e-hscroll {
638
638
  display: block;
639
639
  position: relative;
640
- width: inherit;
640
+ width: 100%;
641
641
  }
642
642
  .e-hscroll.e-rtl.e-scroll-device {
643
643
  padding-left: 50px;
@@ -844,7 +844,7 @@
844
844
  .e-hscroll {
845
845
  display: block;
846
846
  position: relative;
847
- width: inherit;
847
+ width: 100%;
848
848
  }
849
849
  .e-hscroll.e-rtl.e-scroll-device {
850
850
  padding-left: 50px;
@@ -667,7 +667,7 @@
667
667
  .e-hscroll {
668
668
  display: block;
669
669
  position: relative;
670
- width: inherit;
670
+ width: 100%;
671
671
  }
672
672
  .e-hscroll.e-rtl.e-scroll-device {
673
673
  padding-left: 40px;
@@ -886,7 +886,7 @@
886
886
  .e-hscroll {
887
887
  display: block;
888
888
  position: relative;
889
- width: inherit;
889
+ width: 100%;
890
890
  }
891
891
  .e-hscroll.e-rtl.e-scroll-device {
892
892
  padding-left: 40px;
@@ -667,7 +667,7 @@
667
667
  .e-hscroll {
668
668
  display: block;
669
669
  position: relative;
670
- width: inherit;
670
+ width: 100%;
671
671
  }
672
672
  .e-hscroll.e-rtl.e-scroll-device {
673
673
  padding-left: 40px;
@@ -671,7 +671,7 @@
671
671
  .e-hscroll {
672
672
  display: block;
673
673
  position: relative;
674
- width: inherit;
674
+ width: 100%;
675
675
  }
676
676
  .e-hscroll.e-rtl.e-scroll-device {
677
677
  padding-left: 40px;
@@ -890,7 +890,7 @@
890
890
  .e-hscroll {
891
891
  display: block;
892
892
  position: relative;
893
- width: inherit;
893
+ width: 100%;
894
894
  }
895
895
  .e-hscroll.e-rtl.e-scroll-device {
896
896
  padding-left: 40px;
@@ -8712,6 +8712,14 @@
8712
8712
  .e-treeview.e-bigger .e-list-img + .e-list-img {
8713
8713
  margin: 0 0 0 12px;
8714
8714
  }
8715
+ .e-bigger .e-treeview .e-icon-collapsible,
8716
+ .e-bigger .e-treeview .e-icon-expandable,
8717
+ .e-treeview.e-bigger .e-icon-collapsible,
8718
+ .e-treeview.e-bigger .e-icon-expandable {
8719
+ height: 24px;
8720
+ margin: 0 0 0 -24px;
8721
+ width: 24px;
8722
+ }
8715
8723
  .e-bigger .e-treeview .e-icon-collapsible::before,
8716
8724
  .e-bigger .e-treeview .e-icon-expandable::before,
8717
8725
  .e-treeview.e-bigger .e-icon-collapsible::before,
@@ -886,7 +886,7 @@
886
886
  .e-hscroll {
887
887
  display: block;
888
888
  position: relative;
889
- width: inherit;
889
+ width: 100%;
890
890
  }
891
891
  .e-hscroll.e-rtl.e-scroll-device {
892
892
  padding-left: 40px;
@@ -636,7 +636,7 @@
636
636
  .e-hscroll {
637
637
  display: block;
638
638
  position: relative;
639
- width: inherit;
639
+ width: 100%;
640
640
  }
641
641
  .e-hscroll.e-rtl.e-scroll-device {
642
642
  padding-left: 50px;
@@ -843,7 +843,7 @@
843
843
  .e-hscroll {
844
844
  display: block;
845
845
  position: relative;
846
- width: inherit;
846
+ width: 100%;
847
847
  }
848
848
  .e-hscroll.e-rtl.e-scroll-device {
849
849
  padding-left: 50px;
@@ -636,7 +636,7 @@
636
636
  .e-hscroll {
637
637
  display: block;
638
638
  position: relative;
639
- width: inherit;
639
+ width: 100%;
640
640
  }
641
641
  .e-hscroll.e-rtl.e-scroll-device {
642
642
  padding-left: 50px;
package/styles/fabric.css CHANGED
@@ -843,7 +843,7 @@
843
843
  .e-hscroll {
844
844
  display: block;
845
845
  position: relative;
846
- width: inherit;
846
+ width: 100%;
847
847
  }
848
848
  .e-hscroll.e-rtl.e-scroll-device {
849
849
  padding-left: 50px;
@@ -661,7 +661,7 @@
661
661
  .e-hscroll {
662
662
  display: block;
663
663
  position: relative;
664
- width: inherit;
664
+ width: 100%;
665
665
  }
666
666
  .e-hscroll.e-rtl.e-scroll-device {
667
667
  padding-left: 40px;
@@ -868,7 +868,7 @@
868
868
  .e-hscroll {
869
869
  display: block;
870
870
  position: relative;
871
- width: inherit;
871
+ width: 100%;
872
872
  }
873
873
  .e-hscroll.e-rtl.e-scroll-device {
874
874
  padding-left: 40px;
@@ -661,7 +661,7 @@
661
661
  .e-hscroll {
662
662
  display: block;
663
663
  position: relative;
664
- width: inherit;
664
+ width: 100%;
665
665
  }
666
666
  .e-hscroll.e-rtl.e-scroll-device {
667
667
  padding-left: 40px;
package/styles/fluent.css CHANGED
@@ -868,7 +868,7 @@
868
868
  .e-hscroll {
869
869
  display: block;
870
870
  position: relative;
871
- width: inherit;
871
+ width: 100%;
872
872
  }
873
873
  .e-hscroll.e-rtl.e-scroll-device {
874
874
  padding-left: 40px;
@@ -704,7 +704,7 @@
704
704
  .e-hscroll {
705
705
  display: block;
706
706
  position: relative;
707
- width: inherit;
707
+ width: 100%;
708
708
  }
709
709
  .e-hscroll.e-rtl.e-scroll-device {
710
710
  padding-left: 40px;
@@ -6555,6 +6555,9 @@
6555
6555
  .e-treeview .e-checkbox-wrapper .e-frame {
6556
6556
  margin-right: 0;
6557
6557
  }
6558
+ .e-treeview .e-list-item:last-child:not(.e-level-1) {
6559
+ padding-bottom: 0;
6560
+ }
6558
6561
  .e-treeview .e-ul {
6559
6562
  margin: 0;
6560
6563
  padding: 0 0 0 12px;
@@ -929,7 +929,7 @@
929
929
  .e-hscroll {
930
930
  display: block;
931
931
  position: relative;
932
- width: inherit;
932
+ width: 100%;
933
933
  }
934
934
  .e-hscroll.e-rtl.e-scroll-device {
935
935
  padding-left: 40px;
@@ -8480,6 +8480,9 @@
8480
8480
  .e-treeview .e-checkbox-wrapper .e-frame {
8481
8481
  margin-right: 0;
8482
8482
  }
8483
+ .e-treeview .e-list-item:last-child:not(.e-level-1) {
8484
+ padding-bottom: 0;
8485
+ }
8483
8486
  .e-treeview .e-ul {
8484
8487
  margin: 0;
8485
8488
  padding: 0 0 0 12px;
@@ -5,7 +5,7 @@
5
5
  #{&}.e-hscroll {
6
6
  display: block;
7
7
  position: relative;
8
- width: inherit;
8
+ width: 100%;
9
9
 
10
10
  &.e-rtl {
11
11
 
@@ -57,7 +57,7 @@
57
57
  .e-hscroll {
58
58
  display: block;
59
59
  position: relative;
60
- width: inherit;
60
+ width: 100%;
61
61
  }
62
62
  .e-hscroll.e-rtl.e-scroll-device {
63
63
  padding-left: 40px;
@@ -30,7 +30,7 @@
30
30
  .e-hscroll {
31
31
  display: block;
32
32
  position: relative;
33
- width: inherit;
33
+ width: 100%;
34
34
  }
35
35
  .e-hscroll.e-rtl.e-scroll-device {
36
36
  padding-left: 50px;
@@ -31,7 +31,7 @@
31
31
  .e-hscroll {
32
32
  display: block;
33
33
  position: relative;
34
- width: inherit;
34
+ width: 100%;
35
35
  }
36
36
  .e-hscroll.e-rtl.e-scroll-device {
37
37
  padding-left: 50px;
@@ -31,7 +31,7 @@
31
31
  .e-hscroll {
32
32
  display: block;
33
33
  position: relative;
34
- width: inherit;
34
+ width: 100%;
35
35
  }
36
36
  .e-hscroll.e-rtl.e-scroll-device {
37
37
  padding-left: 50px;
@@ -53,7 +53,7 @@
53
53
  .e-hscroll {
54
54
  display: block;
55
55
  position: relative;
56
- width: inherit;
56
+ width: 100%;
57
57
  }
58
58
  .e-hscroll.e-rtl.e-scroll-device {
59
59
  padding-left: 40px;
@@ -57,7 +57,7 @@
57
57
  .e-hscroll {
58
58
  display: block;
59
59
  position: relative;
60
- width: inherit;
60
+ width: 100%;
61
61
  }
62
62
  .e-hscroll.e-rtl.e-scroll-device {
63
63
  padding-left: 40px;
@@ -53,7 +53,7 @@
53
53
  .e-hscroll {
54
54
  display: block;
55
55
  position: relative;
56
- width: inherit;
56
+ width: 100%;
57
57
  }
58
58
  .e-hscroll.e-rtl.e-scroll-device {
59
59
  padding-left: 40px;
@@ -30,7 +30,7 @@
30
30
  .e-hscroll {
31
31
  display: block;
32
32
  position: relative;
33
- width: inherit;
33
+ width: 100%;
34
34
  }
35
35
  .e-hscroll.e-rtl.e-scroll-device {
36
36
  padding-left: 50px;
@@ -30,7 +30,7 @@
30
30
  .e-hscroll {
31
31
  display: block;
32
32
  position: relative;
33
- width: inherit;
33
+ width: 100%;
34
34
  }
35
35
  .e-hscroll.e-rtl.e-scroll-device {
36
36
  padding-left: 50px;
@@ -53,7 +53,7 @@
53
53
  .e-hscroll {
54
54
  display: block;
55
55
  position: relative;
56
- width: inherit;
56
+ width: 100%;
57
57
  }
58
58
  .e-hscroll.e-rtl.e-scroll-device {
59
59
  padding-left: 40px;
@@ -53,7 +53,7 @@
53
53
  .e-hscroll {
54
54
  display: block;
55
55
  position: relative;
56
- width: inherit;
56
+ width: 100%;
57
57
  }
58
58
  .e-hscroll.e-rtl.e-scroll-device {
59
59
  padding-left: 40px;
@@ -59,7 +59,7 @@
59
59
  .e-hscroll {
60
60
  display: block;
61
61
  position: relative;
62
- width: inherit;
62
+ width: 100%;
63
63
  }
64
64
  .e-hscroll.e-rtl.e-scroll-device {
65
65
  padding-left: 40px;
@@ -30,7 +30,7 @@
30
30
  .e-hscroll {
31
31
  display: block;
32
32
  position: relative;
33
- width: inherit;
33
+ width: 100%;
34
34
  }
35
35
  .e-hscroll.e-rtl.e-scroll-device {
36
36
  padding-left: 50px;
@@ -30,7 +30,7 @@
30
30
  .e-hscroll {
31
31
  display: block;
32
32
  position: relative;
33
- width: inherit;
33
+ width: 100%;
34
34
  }
35
35
  .e-hscroll.e-rtl.e-scroll-device {
36
36
  padding-left: 50px;
@@ -52,7 +52,7 @@
52
52
  .e-hscroll {
53
53
  display: block;
54
54
  position: relative;
55
- width: inherit;
55
+ width: 100%;
56
56
  }
57
57
  .e-hscroll.e-rtl.e-scroll-device {
58
58
  padding-left: 50px;
@@ -53,7 +53,7 @@
53
53
  .e-hscroll {
54
54
  display: block;
55
55
  position: relative;
56
- width: inherit;
56
+ width: 100%;
57
57
  }
58
58
  .e-hscroll.e-rtl.e-scroll-device {
59
59
  padding-left: 50px;
@@ -55,7 +55,7 @@
55
55
  .e-hscroll {
56
56
  display: block;
57
57
  position: relative;
58
- width: inherit;
58
+ width: 100%;
59
59
  }
60
60
  .e-hscroll.e-rtl.e-scroll-device {
61
61
  padding-left: 50px;