@syncfusion/ej2-angular-navigations 20.2.48-ngcc → 20.2.49

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 (967) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/accordion/accordion-all.module.mjs +23 -0
  3. package/esm2020/src/accordion/accordion.component.mjs +77 -0
  4. package/esm2020/src/accordion/accordion.module.mjs +34 -0
  5. package/esm2020/src/accordion/items.directive.mjs +72 -0
  6. package/esm2020/src/breadcrumb/breadcrumb-all.module.mjs +23 -0
  7. package/esm2020/src/breadcrumb/breadcrumb.component.mjs +77 -0
  8. package/esm2020/src/breadcrumb/breadcrumb.module.mjs +34 -0
  9. package/esm2020/src/breadcrumb/items.directive.mjs +58 -0
  10. package/esm2020/src/carousel/carousel-all.module.mjs +23 -0
  11. package/esm2020/src/carousel/carousel.component.mjs +95 -0
  12. package/esm2020/src/carousel/carousel.module.mjs +34 -0
  13. package/esm2020/src/carousel/items.directive.mjs +66 -0
  14. package/esm2020/src/context-menu/contextmenu-all.module.mjs +23 -0
  15. package/esm2020/src/context-menu/contextmenu.component.mjs +60 -0
  16. package/esm2020/src/context-menu/contextmenu.module.mjs +25 -0
  17. package/esm2020/src/index.mjs +35 -0
  18. package/esm2020/src/menu/items.directive.mjs +46 -0
  19. package/esm2020/src/menu/menu-all.module.mjs +23 -0
  20. package/esm2020/src/menu/menu.component.mjs +71 -0
  21. package/esm2020/src/menu/menu.module.mjs +34 -0
  22. package/esm2020/src/sidebar/sidebar-all.module.mjs +23 -0
  23. package/esm2020/src/sidebar/sidebar.component.mjs +59 -0
  24. package/esm2020/src/sidebar/sidebar.module.mjs +25 -0
  25. package/esm2020/src/tab/items.directive.mjs +78 -0
  26. package/esm2020/src/tab/tab-all.module.mjs +23 -0
  27. package/esm2020/src/tab/tab.component.mjs +64 -0
  28. package/esm2020/src/tab/tab.module.mjs +34 -0
  29. package/esm2020/src/toolbar/items.directive.mjs +66 -0
  30. package/esm2020/src/toolbar/toolbar-all.module.mjs +23 -0
  31. package/esm2020/src/toolbar/toolbar.component.mjs +64 -0
  32. package/esm2020/src/toolbar/toolbar.module.mjs +34 -0
  33. package/esm2020/src/treeview/treeview-all.module.mjs +23 -0
  34. package/esm2020/src/treeview/treeview.component.mjs +66 -0
  35. package/esm2020/src/treeview/treeview.module.mjs +25 -0
  36. package/esm2020/syncfusion-ej2-angular-navigations.mjs +5 -0
  37. package/fesm2015/syncfusion-ej2-angular-navigations.mjs +1352 -0
  38. package/fesm2015/syncfusion-ej2-angular-navigations.mjs.map +1 -0
  39. package/fesm2020/syncfusion-ej2-angular-navigations.mjs +1352 -0
  40. package/fesm2020/syncfusion-ej2-angular-navigations.mjs.map +1 -0
  41. package/package.json +28 -14
  42. package/src/accordion/accordion-all.module.d.ts +6 -0
  43. package/src/accordion/accordion.component.d.ts +3 -0
  44. package/src/accordion/accordion.module.d.ts +7 -0
  45. package/src/accordion/items.directive.d.ts +5 -0
  46. package/src/breadcrumb/breadcrumb-all.module.d.ts +6 -0
  47. package/src/breadcrumb/breadcrumb.component.d.ts +3 -0
  48. package/src/breadcrumb/breadcrumb.module.d.ts +7 -0
  49. package/src/breadcrumb/items.directive.d.ts +5 -0
  50. package/src/carousel/carousel-all.module.d.ts +6 -0
  51. package/src/carousel/carousel.component.d.ts +3 -0
  52. package/src/carousel/carousel.module.d.ts +7 -0
  53. package/src/carousel/items.directive.d.ts +5 -0
  54. package/src/context-menu/contextmenu-all.module.d.ts +6 -0
  55. package/src/context-menu/contextmenu.component.d.ts +3 -0
  56. package/src/context-menu/contextmenu.module.d.ts +6 -0
  57. package/src/menu/items.directive.d.ts +5 -0
  58. package/src/menu/menu-all.module.d.ts +6 -0
  59. package/src/menu/menu.component.d.ts +3 -0
  60. package/src/menu/menu.module.d.ts +7 -0
  61. package/src/sidebar/sidebar-all.module.d.ts +6 -0
  62. package/src/sidebar/sidebar.component.d.ts +3 -0
  63. package/src/sidebar/sidebar.module.d.ts +6 -0
  64. package/src/tab/items.directive.d.ts +5 -0
  65. package/src/tab/tab-all.module.d.ts +6 -0
  66. package/src/tab/tab.component.d.ts +3 -0
  67. package/src/tab/tab.module.d.ts +7 -0
  68. package/src/toolbar/items.directive.d.ts +5 -0
  69. package/src/toolbar/toolbar-all.module.d.ts +6 -0
  70. package/src/toolbar/toolbar.component.d.ts +3 -0
  71. package/src/toolbar/toolbar.module.d.ts +7 -0
  72. package/src/treeview/treeview-all.module.d.ts +6 -0
  73. package/src/treeview/treeview.component.d.ts +3 -0
  74. package/src/treeview/treeview.module.d.ts +6 -0
  75. package/styles/accordion/_all.scss +2 -0
  76. package/styles/accordion/_bootstrap-dark-definition.scss +72 -0
  77. package/styles/accordion/_bootstrap-definition.scss +80 -0
  78. package/styles/accordion/_bootstrap4-definition.scss +86 -0
  79. package/styles/accordion/_bootstrap5-dark-definition.scss +1 -0
  80. package/styles/accordion/_bootstrap5-definition.scss +85 -0
  81. package/styles/accordion/_fabric-dark-definition.scss +79 -0
  82. package/styles/accordion/_fabric-definition.scss +83 -0
  83. package/styles/accordion/_fluent-dark-definition.scss +1 -0
  84. package/styles/accordion/_fluent-definition.scss +85 -0
  85. package/styles/accordion/_fusionnew-definition.scss +85 -0
  86. package/styles/accordion/_highcontrast-definition.scss +110 -0
  87. package/styles/accordion/_highcontrast-light-definition.scss +108 -0
  88. package/styles/accordion/_layout.scss +417 -0
  89. package/styles/accordion/_material-dark-definition.scss +79 -0
  90. package/styles/accordion/_material-definition.scss +76 -0
  91. package/styles/accordion/_material3-definition.scss +85 -0
  92. package/styles/accordion/_tailwind-dark-definition.scss +1 -0
  93. package/styles/accordion/_tailwind-definition.scss +83 -0
  94. package/styles/accordion/_theme.scss +548 -0
  95. package/styles/accordion/bootstrap-dark.scss +4 -1
  96. package/styles/accordion/bootstrap.scss +4 -1
  97. package/styles/accordion/bootstrap4.scss +4 -1
  98. package/styles/accordion/bootstrap5-dark.scss +4 -1
  99. package/styles/accordion/bootstrap5.scss +4 -1
  100. package/styles/accordion/fabric-dark.scss +4 -1
  101. package/styles/accordion/fabric.scss +4 -1
  102. package/styles/accordion/fluent-dark.scss +4 -1
  103. package/styles/accordion/fluent.scss +4 -1
  104. package/styles/accordion/highcontrast-light.scss +4 -1
  105. package/styles/accordion/highcontrast.scss +4 -1
  106. package/styles/accordion/icons/_bootstrap-dark.scss +17 -0
  107. package/styles/accordion/icons/_bootstrap.scss +17 -0
  108. package/styles/accordion/icons/_bootstrap4.scss +17 -0
  109. package/styles/accordion/icons/_bootstrap5-dark.scss +1 -0
  110. package/styles/accordion/icons/_bootstrap5.scss +18 -0
  111. package/styles/accordion/icons/_fabric-dark.scss +17 -0
  112. package/styles/accordion/icons/_fabric.scss +17 -0
  113. package/styles/accordion/icons/_fluent-dark.scss +1 -0
  114. package/styles/accordion/icons/_fluent.scss +18 -0
  115. package/styles/accordion/icons/_fusionnew.scss +18 -0
  116. package/styles/accordion/icons/_highcontrast-light.scss +17 -0
  117. package/styles/accordion/icons/_highcontrast.scss +17 -0
  118. package/styles/accordion/icons/_material-dark.scss +17 -0
  119. package/styles/accordion/icons/_material.scss +17 -0
  120. package/styles/accordion/icons/_material3.scss +18 -0
  121. package/styles/accordion/icons/_tailwind-dark.scss +1 -0
  122. package/styles/accordion/icons/_tailwind.scss +18 -0
  123. package/styles/accordion/material-dark.scss +4 -1
  124. package/styles/accordion/material.scss +4 -1
  125. package/styles/accordion/tailwind-dark.scss +4 -1
  126. package/styles/accordion/tailwind.scss +4 -1
  127. package/styles/breadcrumb/_all.scss +2 -0
  128. package/styles/breadcrumb/_bootstrap-dark-definition.scss +55 -0
  129. package/styles/breadcrumb/_bootstrap-definition.scss +54 -0
  130. package/styles/breadcrumb/_bootstrap4-definition.scss +54 -0
  131. package/styles/breadcrumb/_bootstrap5-dark-definition.scss +1 -0
  132. package/styles/breadcrumb/_bootstrap5-definition.scss +59 -0
  133. package/styles/breadcrumb/_fabric-dark-definition.scss +59 -0
  134. package/styles/breadcrumb/_fabric-definition.scss +59 -0
  135. package/styles/breadcrumb/_fluent-dark-definition.scss +1 -0
  136. package/styles/breadcrumb/_fluent-definition.scss +62 -0
  137. package/styles/breadcrumb/_fusionnew-definition.scss +59 -0
  138. package/styles/breadcrumb/_highcontrast-definition.scss +61 -0
  139. package/styles/breadcrumb/_highcontrast-light-definition.scss +61 -0
  140. package/styles/breadcrumb/_layout.scss +490 -0
  141. package/styles/breadcrumb/_material-dark-definition.scss +50 -0
  142. package/styles/breadcrumb/_material-definition.scss +50 -0
  143. package/styles/breadcrumb/_material3-definition.scss +59 -0
  144. package/styles/breadcrumb/_tailwind-dark-definition.scss +1 -0
  145. package/styles/breadcrumb/_tailwind-definition.scss +60 -0
  146. package/styles/breadcrumb/_theme.scss +159 -0
  147. package/styles/breadcrumb/bootstrap-dark.scss +4 -1
  148. package/styles/breadcrumb/bootstrap.scss +4 -1
  149. package/styles/breadcrumb/bootstrap4.scss +4 -1
  150. package/styles/breadcrumb/bootstrap5-dark.scss +4 -1
  151. package/styles/breadcrumb/bootstrap5.scss +4 -1
  152. package/styles/breadcrumb/fabric-dark.scss +4 -1
  153. package/styles/breadcrumb/fabric.scss +4 -1
  154. package/styles/breadcrumb/fluent-dark.scss +4 -1
  155. package/styles/breadcrumb/fluent.scss +4 -1
  156. package/styles/breadcrumb/highcontrast-light.scss +4 -1
  157. package/styles/breadcrumb/highcontrast.scss +4 -1
  158. package/styles/breadcrumb/icons/_bootstrap-dark.scss +14 -0
  159. package/styles/breadcrumb/icons/_bootstrap.scss +14 -0
  160. package/styles/breadcrumb/icons/_bootstrap4.scss +14 -0
  161. package/styles/breadcrumb/icons/_bootstrap5-dark.scss +1 -0
  162. package/styles/breadcrumb/icons/_bootstrap5.scss +25 -0
  163. package/styles/breadcrumb/icons/_fabric-dark.scss +14 -0
  164. package/styles/breadcrumb/icons/_fabric.scss +14 -0
  165. package/styles/breadcrumb/icons/_fluent-dark.scss +1 -0
  166. package/styles/breadcrumb/icons/_fluent.scss +25 -0
  167. package/styles/breadcrumb/icons/_fusionnew.scss +25 -0
  168. package/styles/breadcrumb/icons/_highcontrast-light.scss +14 -0
  169. package/styles/breadcrumb/icons/_highcontrast.scss +14 -0
  170. package/styles/breadcrumb/icons/_material-dark.scss +25 -0
  171. package/styles/breadcrumb/icons/_material.scss +25 -0
  172. package/styles/breadcrumb/icons/_material3.scss +25 -0
  173. package/styles/breadcrumb/icons/_tailwind-dark.scss +25 -0
  174. package/styles/breadcrumb/icons/_tailwind.scss +25 -0
  175. package/styles/breadcrumb/material-dark.scss +4 -1
  176. package/styles/breadcrumb/material.scss +4 -1
  177. package/styles/breadcrumb/tailwind-dark.scss +4 -1
  178. package/styles/breadcrumb/tailwind.scss +4 -1
  179. package/styles/carousel/_all.scss +2 -0
  180. package/styles/carousel/_bootstrap-dark-definition.scss +22 -0
  181. package/styles/carousel/_bootstrap-definition.scss +22 -0
  182. package/styles/carousel/_bootstrap4-definition.scss +22 -0
  183. package/styles/carousel/_bootstrap5-dark-definition.scss +1 -0
  184. package/styles/carousel/_bootstrap5-definition.scss +22 -0
  185. package/styles/carousel/_fabric-dark-definition.scss +22 -0
  186. package/styles/carousel/_fabric-definition.scss +22 -0
  187. package/styles/carousel/_fluent-dark-definition.scss +1 -0
  188. package/styles/carousel/_fluent-definition.scss +22 -0
  189. package/styles/carousel/_fusionnew-definition.scss +22 -0
  190. package/styles/carousel/_highcontrast-definition.scss +22 -0
  191. package/styles/carousel/_highcontrast-light-definition.scss +22 -0
  192. package/styles/carousel/_layout.scss +179 -0
  193. package/styles/carousel/_material-dark-definition.scss +22 -0
  194. package/styles/carousel/_material-definition.scss +22 -0
  195. package/styles/carousel/_material3-definition.scss +22 -0
  196. package/styles/carousel/_tailwind-dark-definition.scss +1 -0
  197. package/styles/carousel/_tailwind-definition.scss +22 -0
  198. package/styles/carousel/_theme.scss +56 -0
  199. package/styles/carousel/bootstrap-dark.scss +5 -1
  200. package/styles/carousel/bootstrap.scss +5 -1
  201. package/styles/carousel/bootstrap4.scss +5 -1
  202. package/styles/carousel/bootstrap5-dark.scss +5 -1
  203. package/styles/carousel/bootstrap5.scss +5 -1
  204. package/styles/carousel/fabric-dark.scss +5 -1
  205. package/styles/carousel/fabric.scss +5 -1
  206. package/styles/carousel/fluent-dark.scss +5 -1
  207. package/styles/carousel/fluent.scss +5 -1
  208. package/styles/carousel/highcontrast-light.scss +5 -1
  209. package/styles/carousel/highcontrast.scss +5 -1
  210. package/styles/carousel/icons/_bootstrap-dark.scss +30 -0
  211. package/styles/carousel/icons/_bootstrap.scss +30 -0
  212. package/styles/carousel/icons/_bootstrap4.scss +30 -0
  213. package/styles/carousel/icons/_bootstrap5-dark.scss +1 -0
  214. package/styles/carousel/icons/_bootstrap5.scss +30 -0
  215. package/styles/carousel/icons/_fabric-dark.scss +30 -0
  216. package/styles/carousel/icons/_fabric.scss +30 -0
  217. package/styles/carousel/icons/_fluent-dark.scss +1 -0
  218. package/styles/carousel/icons/_fluent.scss +30 -0
  219. package/styles/carousel/icons/_fusionnew.scss +30 -0
  220. package/styles/carousel/icons/_highcontrast-light.scss +30 -0
  221. package/styles/carousel/icons/_highcontrast.scss +30 -0
  222. package/styles/carousel/icons/_material-dark.scss +30 -0
  223. package/styles/carousel/icons/_material.scss +30 -0
  224. package/styles/carousel/icons/_material3.scss +30 -0
  225. package/styles/carousel/icons/_tailwind-dark.scss +1 -0
  226. package/styles/carousel/icons/_tailwind.scss +30 -0
  227. package/styles/carousel/material-dark.scss +5 -1
  228. package/styles/carousel/material.scss +5 -1
  229. package/styles/carousel/tailwind-dark.scss +5 -1
  230. package/styles/carousel/tailwind.scss +5 -1
  231. package/styles/context-menu/_all.scss +2 -0
  232. package/styles/context-menu/_bootstrap-dark-definition.scss +52 -0
  233. package/styles/context-menu/_bootstrap-definition.scss +50 -0
  234. package/styles/context-menu/_bootstrap4-definition.scss +50 -0
  235. package/styles/context-menu/_bootstrap5-dark-definition.scss +1 -0
  236. package/styles/context-menu/_bootstrap5-definition.scss +52 -0
  237. package/styles/context-menu/_fabric-dark-definition.scss +52 -0
  238. package/styles/context-menu/_fabric-definition.scss +50 -0
  239. package/styles/context-menu/_fluent-dark-definition.scss +1 -0
  240. package/styles/context-menu/_fluent-definition.scss +52 -0
  241. package/styles/context-menu/_fusionnew-definition.scss +52 -0
  242. package/styles/context-menu/_highcontrast-definition.scss +50 -0
  243. package/styles/context-menu/_highcontrast-light-definition.scss +52 -0
  244. package/styles/context-menu/_layout-mixin.scss +169 -0
  245. package/styles/context-menu/_layout.scss +149 -0
  246. package/styles/context-menu/_material-dark-definition.scss +52 -0
  247. package/styles/context-menu/_material-definition.scss +50 -0
  248. package/styles/context-menu/_material3-definition.scss +52 -0
  249. package/styles/context-menu/_tailwind-dark-definition.scss +1 -0
  250. package/styles/context-menu/_tailwind-definition.scss +53 -0
  251. package/styles/context-menu/_theme-mixin.scss +59 -0
  252. package/styles/context-menu/_theme.scss +49 -0
  253. package/styles/context-menu/bootstrap-dark.scss +7 -1
  254. package/styles/context-menu/bootstrap.scss +7 -1
  255. package/styles/context-menu/bootstrap4.scss +7 -1
  256. package/styles/context-menu/bootstrap5-dark.scss +7 -1
  257. package/styles/context-menu/bootstrap5.scss +7 -1
  258. package/styles/context-menu/fabric-dark.scss +7 -1
  259. package/styles/context-menu/fabric.scss +7 -1
  260. package/styles/context-menu/fluent-dark.scss +7 -1
  261. package/styles/context-menu/fluent.scss +7 -1
  262. package/styles/context-menu/highcontrast-light.scss +7 -1
  263. package/styles/context-menu/highcontrast.scss +7 -1
  264. package/styles/context-menu/icons/_bootstrap-dark.scss +32 -0
  265. package/styles/context-menu/icons/_bootstrap.scss +32 -0
  266. package/styles/context-menu/icons/_bootstrap4.scss +32 -0
  267. package/styles/context-menu/icons/_bootstrap5-dark.scss +1 -0
  268. package/styles/context-menu/icons/_bootstrap5.scss +32 -0
  269. package/styles/context-menu/icons/_fabric-dark.scss +32 -0
  270. package/styles/context-menu/icons/_fabric.scss +32 -0
  271. package/styles/context-menu/icons/_fluent-dark.scss +1 -0
  272. package/styles/context-menu/icons/_fluent.scss +32 -0
  273. package/styles/context-menu/icons/_fusionnew.scss +32 -0
  274. package/styles/context-menu/icons/_highcontrast-light.scss +32 -0
  275. package/styles/context-menu/icons/_highcontrast.scss +32 -0
  276. package/styles/context-menu/icons/_material-dark.scss +32 -0
  277. package/styles/context-menu/icons/_material.scss +32 -0
  278. package/styles/context-menu/icons/_material3.scss +32 -0
  279. package/styles/context-menu/icons/_tailwind-dark.scss +32 -0
  280. package/styles/context-menu/icons/_tailwind.scss +32 -0
  281. package/styles/context-menu/material-dark.scss +7 -1
  282. package/styles/context-menu/material.scss +7 -1
  283. package/styles/context-menu/tailwind-dark.scss +7 -1
  284. package/styles/context-menu/tailwind.scss +7 -1
  285. package/styles/h-scroll/_all.scss +2 -0
  286. package/styles/h-scroll/_bootstrap-dark-definition.scss +49 -0
  287. package/styles/h-scroll/_bootstrap-definition.scss +50 -0
  288. package/styles/h-scroll/_bootstrap4-definition.scss +49 -0
  289. package/styles/h-scroll/_bootstrap5-dark-definition.scss +1 -0
  290. package/styles/h-scroll/_bootstrap5-definition.scss +78 -0
  291. package/styles/h-scroll/_fabric-dark-definition.scss +50 -0
  292. package/styles/h-scroll/_fabric-definition.scss +48 -0
  293. package/styles/h-scroll/_fluent-dark-definition.scss +1 -0
  294. package/styles/h-scroll/_fluent-definition.scss +78 -0
  295. package/styles/h-scroll/_fusionnew-definition.scss +78 -0
  296. package/styles/h-scroll/_highcontrast-definition.scss +52 -0
  297. package/styles/h-scroll/_highcontrast-light-definition.scss +54 -0
  298. package/styles/h-scroll/_layout.scss +202 -0
  299. package/styles/h-scroll/_material-dark-definition.scss +77 -0
  300. package/styles/h-scroll/_material-definition.scss +77 -0
  301. package/styles/h-scroll/_material3-definition.scss +78 -0
  302. package/styles/h-scroll/_tailwind-dark-definition.scss +1 -0
  303. package/styles/h-scroll/_tailwind-definition.scss +78 -0
  304. package/styles/h-scroll/_theme.scss +162 -0
  305. package/styles/h-scroll/bootstrap-dark.scss +4 -1
  306. package/styles/h-scroll/bootstrap.scss +4 -1
  307. package/styles/h-scroll/bootstrap4.scss +4 -1
  308. package/styles/h-scroll/bootstrap5-dark.scss +4 -1
  309. package/styles/h-scroll/bootstrap5.scss +4 -1
  310. package/styles/h-scroll/fabric-dark.scss +4 -1
  311. package/styles/h-scroll/fabric.scss +4 -1
  312. package/styles/h-scroll/fluent-dark.scss +4 -1
  313. package/styles/h-scroll/fluent.scss +4 -1
  314. package/styles/h-scroll/highcontrast-light.scss +4 -1
  315. package/styles/h-scroll/highcontrast.scss +4 -1
  316. package/styles/h-scroll/icons/_bootstrap-dark.scss +50 -0
  317. package/styles/h-scroll/icons/_bootstrap.scss +50 -0
  318. package/styles/h-scroll/icons/_bootstrap4.scss +50 -0
  319. package/styles/h-scroll/icons/_bootstrap5-dark.scss +1 -0
  320. package/styles/h-scroll/icons/_bootstrap5.scss +49 -0
  321. package/styles/h-scroll/icons/_fabric-dark.scss +49 -0
  322. package/styles/h-scroll/icons/_fabric.scss +49 -0
  323. package/styles/h-scroll/icons/_fluent-dark.scss +1 -0
  324. package/styles/h-scroll/icons/_fluent.scss +49 -0
  325. package/styles/h-scroll/icons/_fusionnew.scss +49 -0
  326. package/styles/h-scroll/icons/_highcontrast-light.scss +49 -0
  327. package/styles/h-scroll/icons/_highcontrast.scss +49 -0
  328. package/styles/h-scroll/icons/_material-dark.scss +49 -0
  329. package/styles/h-scroll/icons/_material.scss +49 -0
  330. package/styles/h-scroll/icons/_material3.scss +49 -0
  331. package/styles/h-scroll/icons/_tailwind-dark.scss +1 -0
  332. package/styles/h-scroll/icons/_tailwind.scss +49 -0
  333. package/styles/h-scroll/material-dark.scss +4 -1
  334. package/styles/h-scroll/material.scss +4 -1
  335. package/styles/h-scroll/tailwind-dark.scss +4 -1
  336. package/styles/h-scroll/tailwind.scss +4 -1
  337. package/styles/menu/_all.scss +2 -0
  338. package/styles/menu/_bootstrap-dark-definition.scss +63 -0
  339. package/styles/menu/_bootstrap-definition.scss +65 -0
  340. package/styles/menu/_bootstrap4-definition.scss +64 -0
  341. package/styles/menu/_bootstrap5-dark-definition.scss +1 -0
  342. package/styles/menu/_bootstrap5-definition.scss +67 -0
  343. package/styles/menu/_fabric-dark-definition.scss +63 -0
  344. package/styles/menu/_fabric-definition.scss +64 -0
  345. package/styles/menu/_fluent-dark-definition.scss +1 -0
  346. package/styles/menu/_fluent-definition.scss +68 -0
  347. package/styles/menu/_fusionnew-definition.scss +67 -0
  348. package/styles/menu/_highcontrast-definition.scss +65 -0
  349. package/styles/menu/_highcontrast-light-definition.scss +61 -0
  350. package/styles/menu/_layout.scss +708 -0
  351. package/styles/menu/_material-dark-definition.scss +63 -0
  352. package/styles/menu/_material-definition.scss +64 -0
  353. package/styles/menu/_material3-definition.scss +67 -0
  354. package/styles/menu/_tailwind-dark-definition.scss +1 -0
  355. package/styles/menu/_tailwind-definition.scss +67 -0
  356. package/styles/menu/_theme.scss +261 -0
  357. package/styles/menu/bootstrap-dark.scss +8 -1
  358. package/styles/menu/bootstrap.scss +8 -1
  359. package/styles/menu/bootstrap4.scss +8 -1
  360. package/styles/menu/bootstrap5-dark.scss +8 -1
  361. package/styles/menu/bootstrap5.scss +8 -1
  362. package/styles/menu/fabric-dark.scss +8 -1
  363. package/styles/menu/fabric.scss +8 -1
  364. package/styles/menu/fluent-dark.scss +8 -1
  365. package/styles/menu/fluent.scss +8 -1
  366. package/styles/menu/highcontrast-light.scss +8 -1
  367. package/styles/menu/highcontrast.scss +8 -1
  368. package/styles/menu/icons/_bootstrap-dark.scss +133 -0
  369. package/styles/menu/icons/_bootstrap.scss +133 -0
  370. package/styles/menu/icons/_bootstrap4.scss +133 -0
  371. package/styles/menu/icons/_bootstrap5-dark.scss +1 -0
  372. package/styles/menu/icons/_bootstrap5.scss +133 -0
  373. package/styles/menu/icons/_fabric-dark.scss +133 -0
  374. package/styles/menu/icons/_fabric.scss +133 -0
  375. package/styles/menu/icons/_fluent-dark.scss +1 -0
  376. package/styles/menu/icons/_fluent.scss +133 -0
  377. package/styles/menu/icons/_fusionnew.scss +133 -0
  378. package/styles/menu/icons/_highcontrast-light.scss +133 -0
  379. package/styles/menu/icons/_highcontrast.scss +133 -0
  380. package/styles/menu/icons/_material-dark.scss +133 -0
  381. package/styles/menu/icons/_material.scss +133 -0
  382. package/styles/menu/icons/_material3.scss +133 -0
  383. package/styles/menu/icons/_tailwind-dark.scss +133 -0
  384. package/styles/menu/icons/_tailwind.scss +133 -0
  385. package/styles/menu/material-dark.scss +8 -1
  386. package/styles/menu/material.scss +8 -1
  387. package/styles/menu/tailwind-dark.scss +8 -1
  388. package/styles/menu/tailwind.scss +8 -1
  389. package/styles/pager/_all.scss +2 -0
  390. package/styles/pager/_bootstrap-dark-definition.scss +132 -0
  391. package/styles/pager/_bootstrap-definition.scss +132 -0
  392. package/styles/pager/_bootstrap4-definition.scss +131 -0
  393. package/styles/pager/_bootstrap5-dark-definition.scss +1 -0
  394. package/styles/pager/_bootstrap5-definition.scss +146 -0
  395. package/styles/pager/_fabric-dark-definition.scss +131 -0
  396. package/styles/pager/_fabric-definition.scss +130 -0
  397. package/styles/pager/_fluent-dark-definition.scss +1 -0
  398. package/styles/pager/_fluent-definition.scss +133 -0
  399. package/styles/pager/_fusionnew-definition.scss +146 -0
  400. package/styles/pager/_highcontrast-definition.scss +130 -0
  401. package/styles/pager/_highcontrast-light-definition.scss +130 -0
  402. package/styles/pager/_layout.scss +899 -0
  403. package/styles/pager/_material-dark-definition.scss +132 -0
  404. package/styles/pager/_material-definition.scss +131 -0
  405. package/styles/pager/_material3-definition.scss +146 -0
  406. package/styles/pager/_tailwind-dark-definition.scss +1 -0
  407. package/styles/pager/_tailwind-definition.scss +132 -0
  408. package/styles/pager/_theme.scss +153 -0
  409. package/styles/pager/bootstrap-dark.scss +4 -1
  410. package/styles/pager/bootstrap.scss +4 -1
  411. package/styles/pager/bootstrap4.scss +4 -1
  412. package/styles/pager/bootstrap5-dark.scss +4 -1
  413. package/styles/pager/bootstrap5.scss +4 -1
  414. package/styles/pager/fabric-dark.scss +4 -1
  415. package/styles/pager/fabric.scss +4 -1
  416. package/styles/pager/fluent-dark.scss +4 -1
  417. package/styles/pager/fluent.scss +4 -1
  418. package/styles/pager/highcontrast-light.scss +4 -1
  419. package/styles/pager/highcontrast.scss +4 -1
  420. package/styles/pager/icons/_bootstrap-dark.scss +50 -0
  421. package/styles/pager/icons/_bootstrap.scss +49 -0
  422. package/styles/pager/icons/_bootstrap4.scss +49 -0
  423. package/styles/pager/icons/_bootstrap5-dark.scss +1 -0
  424. package/styles/pager/icons/_bootstrap5.scss +50 -0
  425. package/styles/pager/icons/_fabric-dark.scss +50 -0
  426. package/styles/pager/icons/_fabric.scss +50 -0
  427. package/styles/pager/icons/_fluent-dark.scss +1 -0
  428. package/styles/pager/icons/_fluent.scss +50 -0
  429. package/styles/pager/icons/_fusionnew.scss +50 -0
  430. package/styles/pager/icons/_highcontrast-light.scss +50 -0
  431. package/styles/pager/icons/_highcontrast.scss +41 -0
  432. package/styles/pager/icons/_material-dark.scss +50 -0
  433. package/styles/pager/icons/_material.scss +41 -0
  434. package/styles/pager/icons/_material3.scss +50 -0
  435. package/styles/pager/icons/_tailwind-dark.scss +1 -0
  436. package/styles/pager/icons/_tailwind.scss +50 -0
  437. package/styles/pager/material-dark.scss +4 -1
  438. package/styles/pager/material.scss +4 -1
  439. package/styles/pager/tailwind-dark.scss +4 -1
  440. package/styles/pager/tailwind.scss +4 -1
  441. package/styles/sidebar/_all.scss +3 -0
  442. package/styles/sidebar/_bootstrap-dark-definition.scss +4 -0
  443. package/styles/sidebar/_bootstrap-definition.scss +4 -0
  444. package/styles/sidebar/_bootstrap4-definition.scss +4 -0
  445. package/styles/sidebar/_bootstrap5-dark-definition.scss +1 -0
  446. package/styles/sidebar/_bootstrap5-definition.scss +5 -0
  447. package/styles/sidebar/_fabric-dark-definition.scss +4 -0
  448. package/styles/sidebar/_fabric-definition.scss +6 -0
  449. package/styles/sidebar/_fluent-dark-definition.scss +1 -0
  450. package/styles/sidebar/_fluent-definition.scss +5 -0
  451. package/styles/sidebar/_fusionnew-definition.scss +5 -0
  452. package/styles/sidebar/_highcontrast-definition.scss +4 -0
  453. package/styles/sidebar/_highcontrast-light-definition.scss +4 -0
  454. package/styles/sidebar/_icons.scss +1 -0
  455. package/{schematics/generators/accordion-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css → styles/sidebar/_layout.scss} +0 -0
  456. package/styles/sidebar/_material-dark-definition.scss +4 -0
  457. package/styles/sidebar/_material-definition.scss +6 -0
  458. package/styles/sidebar/_material3-definition.scss +5 -0
  459. package/styles/sidebar/_tailwind-dark-definition.scss +1 -0
  460. package/styles/sidebar/_tailwind-definition.scss +5 -0
  461. package/styles/sidebar/_theme.scss +191 -0
  462. package/styles/sidebar/bootstrap-dark.scss +3 -1
  463. package/styles/sidebar/bootstrap.scss +3 -1
  464. package/styles/sidebar/bootstrap4.scss +3 -1
  465. package/styles/sidebar/bootstrap5-dark.scss +3 -1
  466. package/styles/sidebar/bootstrap5.scss +3 -1
  467. package/styles/sidebar/fabric-dark.scss +3 -1
  468. package/styles/sidebar/fabric.scss +3 -1
  469. package/styles/sidebar/fluent-dark.scss +3 -1
  470. package/styles/sidebar/fluent.scss +3 -1
  471. package/styles/sidebar/highcontrast-light.scss +3 -1
  472. package/styles/sidebar/highcontrast.scss +3 -1
  473. package/styles/sidebar/material-dark.scss +3 -1
  474. package/styles/sidebar/material.scss +3 -1
  475. package/styles/sidebar/tailwind-dark.scss +3 -1
  476. package/styles/sidebar/tailwind.scss +3 -1
  477. package/styles/tab/_all.scss +2 -0
  478. package/styles/tab/_bootstrap-dark-definition.scss +397 -0
  479. package/styles/tab/_bootstrap-definition.scss +407 -0
  480. package/styles/tab/_bootstrap4-definition.scss +411 -0
  481. package/styles/tab/_bootstrap5-dark-definition.scss +1 -0
  482. package/styles/tab/_bootstrap5-definition.scss +401 -0
  483. package/styles/tab/_fabric-dark-definition.scss +406 -0
  484. package/styles/tab/_fabric-definition.scss +422 -0
  485. package/styles/tab/_fluent-dark-definition.scss +1 -0
  486. package/styles/tab/_fluent-definition.scss +409 -0
  487. package/styles/tab/_fusionnew-definition.scss +401 -0
  488. package/styles/tab/_highcontrast-definition.scss +446 -0
  489. package/styles/tab/_highcontrast-light-definition.scss +435 -0
  490. package/styles/tab/_icons.scss +43 -0
  491. package/styles/tab/_layout.scss +4115 -0
  492. package/styles/tab/_material-dark-definition.scss +418 -0
  493. package/styles/tab/_material-definition.scss +428 -0
  494. package/styles/tab/_material3-definition.scss +401 -0
  495. package/styles/tab/_tailwind-dark-definition.scss +1 -0
  496. package/styles/tab/_tailwind-definition.scss +431 -0
  497. package/styles/tab/_theme.scss +2026 -0
  498. package/styles/tab/bootstrap-dark.scss +5 -1
  499. package/styles/tab/bootstrap.scss +5 -1
  500. package/styles/tab/bootstrap4.scss +5 -1
  501. package/styles/tab/bootstrap5-dark.scss +5 -1
  502. package/styles/tab/bootstrap5.scss +5 -1
  503. package/styles/tab/fabric-dark.scss +5 -1
  504. package/styles/tab/fabric.scss +5 -1
  505. package/styles/tab/fluent-dark.scss +5 -1
  506. package/styles/tab/fluent.scss +5 -1
  507. package/styles/tab/highcontrast-light.scss +5 -1
  508. package/styles/tab/highcontrast.scss +5 -1
  509. package/styles/tab/icons/_bootstrap-dark.scss +140 -0
  510. package/styles/tab/icons/_bootstrap.scss +140 -0
  511. package/styles/tab/icons/_bootstrap4.scss +140 -0
  512. package/styles/tab/icons/_bootstrap5-dark.scss +1 -0
  513. package/styles/tab/icons/_bootstrap5.scss +141 -0
  514. package/styles/tab/icons/_fabric-dark.scss +140 -0
  515. package/styles/tab/icons/_fabric.scss +140 -0
  516. package/styles/tab/icons/_fluent-dark.scss +1 -0
  517. package/styles/tab/icons/_fluent.scss +141 -0
  518. package/styles/tab/icons/_fusionnew.scss +141 -0
  519. package/styles/tab/icons/_highcontrast-light.scss +140 -0
  520. package/styles/tab/icons/_highcontrast.scss +140 -0
  521. package/styles/tab/icons/_material-dark.scss +140 -0
  522. package/styles/tab/icons/_material.scss +140 -0
  523. package/styles/tab/icons/_material3.scss +141 -0
  524. package/styles/tab/icons/_tailwind-dark.scss +1 -0
  525. package/styles/tab/icons/_tailwind.scss +141 -0
  526. package/styles/tab/material-dark.scss +5 -1
  527. package/styles/tab/material.scss +5 -1
  528. package/styles/tab/tailwind-dark.scss +5 -1
  529. package/styles/tab/tailwind.scss +5 -1
  530. package/styles/toolbar/_all.scss +2 -0
  531. package/styles/toolbar/_bootstrap-dark-definition.scss +142 -0
  532. package/styles/toolbar/_bootstrap-definition.scss +141 -0
  533. package/styles/toolbar/_bootstrap4-definition.scss +146 -0
  534. package/styles/toolbar/_bootstrap5-dark-definition.scss +1 -0
  535. package/styles/toolbar/_bootstrap5-definition.scss +162 -0
  536. package/styles/toolbar/_fabric-dark-definition.scss +161 -0
  537. package/styles/toolbar/_fabric-definition.scss +147 -0
  538. package/styles/toolbar/_fluent-dark-definition.scss +1 -0
  539. package/styles/toolbar/_fluent-definition.scss +150 -0
  540. package/styles/toolbar/_fusionnew-definition.scss +162 -0
  541. package/styles/toolbar/_highcontrast-definition.scss +157 -0
  542. package/styles/toolbar/_highcontrast-light-definition.scss +172 -0
  543. package/styles/toolbar/_layout.scss +1468 -0
  544. package/styles/toolbar/_material-dark-definition.scss +186 -0
  545. package/styles/toolbar/_material-definition.scss +171 -0
  546. package/styles/toolbar/_material3-definition.scss +162 -0
  547. package/styles/toolbar/_tailwind-dark-definition.scss +1 -0
  548. package/styles/toolbar/_tailwind-definition.scss +150 -0
  549. package/styles/toolbar/_theme.scss +553 -0
  550. package/styles/toolbar/bootstrap-dark.scss +8 -1
  551. package/styles/toolbar/bootstrap.scss +8 -1
  552. package/styles/toolbar/bootstrap4.scss +8 -1
  553. package/styles/toolbar/bootstrap5-dark.scss +8 -1
  554. package/styles/toolbar/bootstrap5.scss +8 -1
  555. package/styles/toolbar/fabric-dark.scss +8 -1
  556. package/styles/toolbar/fabric.scss +8 -1
  557. package/styles/toolbar/fluent-dark.scss +8 -1
  558. package/styles/toolbar/fluent.scss +8 -1
  559. package/styles/toolbar/highcontrast-light.scss +8 -1
  560. package/styles/toolbar/highcontrast.scss +8 -1
  561. package/styles/toolbar/icons/_bootstrap-dark.scss +16 -0
  562. package/styles/toolbar/icons/_bootstrap.scss +16 -0
  563. package/styles/toolbar/icons/_bootstrap4.scss +16 -0
  564. package/styles/toolbar/icons/_bootstrap5-dark.scss +1 -0
  565. package/styles/toolbar/icons/_bootstrap5.scss +17 -0
  566. package/styles/toolbar/icons/_fabric-dark.scss +16 -0
  567. package/styles/toolbar/icons/_fabric.scss +16 -0
  568. package/styles/toolbar/icons/_fluent-dark.scss +1 -0
  569. package/styles/toolbar/icons/_fluent.scss +17 -0
  570. package/styles/toolbar/icons/_fusionnew.scss +17 -0
  571. package/styles/toolbar/icons/_highcontrast-light.scss +16 -0
  572. package/styles/toolbar/icons/_highcontrast.scss +16 -0
  573. package/styles/toolbar/icons/_material-dark.scss +16 -0
  574. package/styles/toolbar/icons/_material.scss +16 -0
  575. package/styles/toolbar/icons/_material3.scss +17 -0
  576. package/styles/toolbar/icons/_tailwind-dark.scss +1 -0
  577. package/styles/toolbar/icons/_tailwind.scss +17 -0
  578. package/styles/toolbar/material-dark.scss +8 -1
  579. package/styles/toolbar/material.scss +8 -1
  580. package/styles/toolbar/tailwind-dark.scss +8 -1
  581. package/styles/toolbar/tailwind.scss +8 -1
  582. package/styles/treeview/_all.scss +2 -0
  583. package/styles/treeview/_bootstrap-dark-definition.scss +118 -0
  584. package/styles/treeview/_bootstrap-definition.scss +113 -0
  585. package/styles/treeview/_bootstrap4-definition.scss +141 -0
  586. package/styles/treeview/_bootstrap5-dark-definition.scss +1 -0
  587. package/styles/treeview/_bootstrap5-definition.scss +120 -0
  588. package/styles/treeview/_fabric-dark-definition.scss +116 -0
  589. package/styles/treeview/_fabric-definition.scss +112 -0
  590. package/styles/treeview/_fluent-dark-definition.scss +1 -0
  591. package/styles/treeview/_fluent-definition.scss +120 -0
  592. package/styles/treeview/_fusionnew-definition.scss +120 -0
  593. package/styles/treeview/_highcontrast-definition.scss +118 -0
  594. package/styles/treeview/_highcontrast-light-definition.scss +123 -0
  595. package/styles/treeview/_layout.scss +1034 -0
  596. package/styles/treeview/_material-dark-definition.scss +114 -0
  597. package/styles/treeview/_material-definition.scss +112 -0
  598. package/styles/treeview/_material3-definition.scss +120 -0
  599. package/styles/treeview/_tailwind-dark-definition.scss +1 -0
  600. package/styles/treeview/_tailwind-definition.scss +124 -0
  601. package/styles/treeview/_theme.scss +361 -0
  602. package/styles/treeview/bootstrap-dark.scss +6 -1
  603. package/styles/treeview/bootstrap.scss +6 -1
  604. package/styles/treeview/bootstrap4.scss +6 -1
  605. package/styles/treeview/bootstrap5-dark.scss +6 -1
  606. package/styles/treeview/bootstrap5.scss +6 -1
  607. package/styles/treeview/fabric-dark.scss +6 -1
  608. package/styles/treeview/fabric.scss +6 -1
  609. package/styles/treeview/fluent-dark.scss +6 -1
  610. package/styles/treeview/fluent.scss +6 -1
  611. package/styles/treeview/highcontrast-light.scss +6 -1
  612. package/styles/treeview/highcontrast.scss +6 -1
  613. package/styles/treeview/icons/_bootstrap-dark.scss +39 -0
  614. package/styles/treeview/icons/_bootstrap.scss +39 -0
  615. package/styles/treeview/icons/_bootstrap4.scss +40 -0
  616. package/styles/treeview/icons/_bootstrap5-dark.scss +1 -0
  617. package/styles/treeview/icons/_bootstrap5.scss +43 -0
  618. package/styles/treeview/icons/_fabric-dark.scss +43 -0
  619. package/styles/treeview/icons/_fabric.scss +43 -0
  620. package/styles/treeview/icons/_fluent-dark.scss +1 -0
  621. package/styles/treeview/icons/_fluent.scss +43 -0
  622. package/styles/treeview/icons/_fusionnew.scss +43 -0
  623. package/styles/treeview/icons/_highcontrast-light.scss +43 -0
  624. package/styles/treeview/icons/_highcontrast.scss +43 -0
  625. package/styles/treeview/icons/_material-dark.scss +43 -0
  626. package/styles/treeview/icons/_material.scss +43 -0
  627. package/styles/treeview/icons/_material3.scss +43 -0
  628. package/styles/treeview/icons/_tailwind-dark.scss +43 -0
  629. package/styles/treeview/icons/_tailwind.scss +43 -0
  630. package/styles/treeview/material-dark.scss +6 -1
  631. package/styles/treeview/material.scss +6 -1
  632. package/styles/treeview/tailwind-dark.scss +6 -1
  633. package/styles/treeview/tailwind.scss +6 -1
  634. package/styles/v-scroll/_all.scss +2 -0
  635. package/styles/v-scroll/_bootstrap-dark-definition.scss +50 -0
  636. package/styles/v-scroll/_bootstrap-definition.scss +49 -0
  637. package/styles/v-scroll/_bootstrap4-definition.scss +49 -0
  638. package/styles/v-scroll/_bootstrap5-dark-definition.scss +1 -0
  639. package/styles/v-scroll/_bootstrap5-definition.scss +49 -0
  640. package/styles/v-scroll/_fabric-dark-definition.scss +51 -0
  641. package/styles/v-scroll/_fabric-definition.scss +50 -0
  642. package/styles/v-scroll/_fluent-dark-definition.scss +1 -0
  643. package/styles/v-scroll/_fluent-definition.scss +49 -0
  644. package/styles/v-scroll/_fusionnew-definition.scss +49 -0
  645. package/styles/v-scroll/_highcontrast-definition.scss +51 -0
  646. package/styles/v-scroll/_highcontrast-light-definition.scss +52 -0
  647. package/styles/v-scroll/_layout.scss +162 -0
  648. package/styles/v-scroll/_material-dark-definition.scss +78 -0
  649. package/styles/v-scroll/_material-definition.scss +77 -0
  650. package/styles/v-scroll/_material3-definition.scss +49 -0
  651. package/styles/v-scroll/_tailwind-dark-definition.scss +1 -0
  652. package/styles/v-scroll/_tailwind-definition.scss +49 -0
  653. package/styles/v-scroll/_theme.scss +133 -0
  654. package/styles/v-scroll/bootstrap-dark.scss +4 -1
  655. package/styles/v-scroll/bootstrap.scss +4 -1
  656. package/styles/v-scroll/bootstrap4.scss +4 -1
  657. package/styles/v-scroll/bootstrap5-dark.scss +4 -1
  658. package/styles/v-scroll/bootstrap5.scss +4 -1
  659. package/styles/v-scroll/fabric-dark.scss +4 -1
  660. package/styles/v-scroll/fabric.scss +4 -1
  661. package/styles/v-scroll/fluent-dark.scss +4 -1
  662. package/styles/v-scroll/fluent.scss +4 -1
  663. package/styles/v-scroll/highcontrast-light.scss +4 -1
  664. package/styles/v-scroll/highcontrast.scss +4 -1
  665. package/styles/v-scroll/icons/_bootstrap-dark.scss +27 -0
  666. package/styles/v-scroll/icons/_bootstrap.scss +27 -0
  667. package/styles/v-scroll/icons/_bootstrap4.scss +27 -0
  668. package/styles/v-scroll/icons/_bootstrap5-dark.scss +1 -0
  669. package/styles/v-scroll/icons/_bootstrap5.scss +27 -0
  670. package/styles/v-scroll/icons/_fabric-dark.scss +26 -0
  671. package/styles/v-scroll/icons/_fabric.scss +26 -0
  672. package/styles/v-scroll/icons/_fluent-dark.scss +1 -0
  673. package/styles/v-scroll/icons/_fluent.scss +27 -0
  674. package/styles/v-scroll/icons/_fusionnew.scss +27 -0
  675. package/styles/v-scroll/icons/_highcontrast-light.scss +26 -0
  676. package/styles/v-scroll/icons/_highcontrast.scss +26 -0
  677. package/styles/v-scroll/icons/_material-dark.scss +26 -0
  678. package/styles/v-scroll/icons/_material.scss +26 -0
  679. package/styles/v-scroll/icons/_material3.scss +27 -0
  680. package/styles/v-scroll/icons/_tailwind-dark.scss +1 -0
  681. package/styles/v-scroll/icons/_tailwind.scss +27 -0
  682. package/styles/v-scroll/material-dark.scss +4 -1
  683. package/styles/v-scroll/material.scss +4 -1
  684. package/styles/v-scroll/tailwind-dark.scss +4 -1
  685. package/styles/v-scroll/tailwind.scss +4 -1
  686. package/syncfusion-ej2-angular-navigations.d.ts +5 -0
  687. package/@syncfusion/ej2-angular-navigations.es5.js +0 -1880
  688. package/@syncfusion/ej2-angular-navigations.es5.js.map +0 -1
  689. package/@syncfusion/ej2-angular-navigations.js +0 -1729
  690. package/@syncfusion/ej2-angular-navigations.js.map +0 -1
  691. package/CHANGELOG.md +0 -1773
  692. package/dist/ej2-angular-navigations.umd.js +0 -1967
  693. package/dist/ej2-angular-navigations.umd.js.map +0 -1
  694. package/dist/ej2-angular-navigations.umd.min.js +0 -11
  695. package/dist/ej2-angular-navigations.umd.min.js.map +0 -1
  696. package/ej2-angular-navigations.d.ts +0 -13
  697. package/ej2-angular-navigations.metadata.json +0 -1
  698. package/postinstall/tagchange.js +0 -18
  699. package/schematics/collection.json +0 -155
  700. package/schematics/generators/accordion-default/index.d.ts +0 -3
  701. package/schematics/generators/accordion-default/index.js +0 -8
  702. package/schematics/generators/accordion-default/sample-details.d.ts +0 -5
  703. package/schematics/generators/accordion-default/sample-details.js +0 -7
  704. package/schematics/generators/accordion-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -49
  705. package/schematics/generators/accordion-default/schema.d.ts +0 -3
  706. package/schematics/generators/accordion-default/schema.js +0 -2
  707. package/schematics/generators/accordion-default/schema.json +0 -125
  708. package/schematics/generators/accordion-html-template/index.d.ts +0 -3
  709. package/schematics/generators/accordion-html-template/index.js +0 -8
  710. package/schematics/generators/accordion-html-template/sample-details.d.ts +0 -5
  711. package/schematics/generators/accordion-html-template/sample-details.js +0 -7
  712. package/schematics/generators/accordion-html-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -57
  713. package/schematics/generators/accordion-html-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -50
  714. package/schematics/generators/accordion-html-template/schema.d.ts +0 -3
  715. package/schematics/generators/accordion-html-template/schema.js +0 -2
  716. package/schematics/generators/accordion-html-template/schema.json +0 -125
  717. package/schematics/generators/accordion-multiple-expand/index.d.ts +0 -3
  718. package/schematics/generators/accordion-multiple-expand/index.js +0 -8
  719. package/schematics/generators/accordion-multiple-expand/sample-details.d.ts +0 -5
  720. package/schematics/generators/accordion-multiple-expand/sample-details.js +0 -7
  721. package/schematics/generators/accordion-multiple-expand/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  722. package/schematics/generators/accordion-multiple-expand/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -49
  723. package/schematics/generators/accordion-multiple-expand/schema.d.ts +0 -3
  724. package/schematics/generators/accordion-multiple-expand/schema.js +0 -2
  725. package/schematics/generators/accordion-multiple-expand/schema.json +0 -125
  726. package/schematics/generators/accordion-nested/index.d.ts +0 -3
  727. package/schematics/generators/accordion-nested/index.js +0 -8
  728. package/schematics/generators/accordion-nested/sample-details.d.ts +0 -5
  729. package/schematics/generators/accordion-nested/sample-details.js +0 -7
  730. package/schematics/generators/accordion-nested/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  731. package/schematics/generators/accordion-nested/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -104
  732. package/schematics/generators/accordion-nested/schema.d.ts +0 -3
  733. package/schematics/generators/accordion-nested/schema.js +0 -2
  734. package/schematics/generators/accordion-nested/schema.json +0 -125
  735. package/schematics/generators/contextmenu-default/index.d.ts +0 -3
  736. package/schematics/generators/contextmenu-default/index.js +0 -8
  737. package/schematics/generators/contextmenu-default/sample-details.d.ts +0 -5
  738. package/schematics/generators/contextmenu-default/sample-details.js +0 -7
  739. package/schematics/generators/contextmenu-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -65
  740. package/schematics/generators/contextmenu-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -6
  741. package/schematics/generators/contextmenu-default/schema.d.ts +0 -3
  742. package/schematics/generators/contextmenu-default/schema.js +0 -2
  743. package/schematics/generators/contextmenu-default/schema.json +0 -125
  744. package/schematics/generators/menu-default/index.d.ts +0 -3
  745. package/schematics/generators/menu-default/index.js +0 -8
  746. package/schematics/generators/menu-default/sample-details.d.ts +0 -5
  747. package/schematics/generators/menu-default/sample-details.js +0 -7
  748. package/schematics/generators/menu-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -52
  749. package/schematics/generators/menu-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  750. package/schematics/generators/menu-default/schema.d.ts +0 -3
  751. package/schematics/generators/menu-default/schema.js +0 -2
  752. package/schematics/generators/menu-default/schema.json +0 -125
  753. package/schematics/generators/sidebar-backdrop/index.d.ts +0 -3
  754. package/schematics/generators/sidebar-backdrop/index.js +0 -8
  755. package/schematics/generators/sidebar-backdrop/sample-details.d.ts +0 -5
  756. package/schematics/generators/sidebar-backdrop/sample-details.js +0 -7
  757. package/schematics/generators/sidebar-backdrop/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -74
  758. package/schematics/generators/sidebar-backdrop/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -17
  759. package/schematics/generators/sidebar-backdrop/schema.d.ts +0 -3
  760. package/schematics/generators/sidebar-backdrop/schema.js +0 -2
  761. package/schematics/generators/sidebar-backdrop/schema.json +0 -125
  762. package/schematics/generators/sidebar-dock/index.d.ts +0 -3
  763. package/schematics/generators/sidebar-dock/index.js +0 -8
  764. package/schematics/generators/sidebar-dock/sample-details.d.ts +0 -5
  765. package/schematics/generators/sidebar-dock/sample-details.js +0 -7
  766. package/schematics/generators/sidebar-dock/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -170
  767. package/schematics/generators/sidebar-dock/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -41
  768. package/schematics/generators/sidebar-dock/schema.d.ts +0 -3
  769. package/schematics/generators/sidebar-dock/schema.js +0 -2
  770. package/schematics/generators/sidebar-dock/schema.json +0 -125
  771. package/schematics/generators/sidebar-target/index.d.ts +0 -3
  772. package/schematics/generators/sidebar-target/index.js +0 -8
  773. package/schematics/generators/sidebar-target/sample-details.d.ts +0 -5
  774. package/schematics/generators/sidebar-target/sample-details.js +0 -7
  775. package/schematics/generators/sidebar-target/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -91
  776. package/schematics/generators/sidebar-target/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -20
  777. package/schematics/generators/sidebar-target/schema.d.ts +0 -3
  778. package/schematics/generators/sidebar-target/schema.js +0 -2
  779. package/schematics/generators/sidebar-target/schema.json +0 -125
  780. package/schematics/generators/sidebar-types/index.d.ts +0 -3
  781. package/schematics/generators/sidebar-types/index.js +0 -8
  782. package/schematics/generators/sidebar-types/sample-details.d.ts +0 -5
  783. package/schematics/generators/sidebar-types/sample-details.js +0 -7
  784. package/schematics/generators/sidebar-types/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -134
  785. package/schematics/generators/sidebar-types/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -37
  786. package/schematics/generators/sidebar-types/schema.d.ts +0 -3
  787. package/schematics/generators/sidebar-types/schema.js +0 -2
  788. package/schematics/generators/sidebar-types/schema.json +0 -125
  789. package/schematics/generators/tab-html-template/index.d.ts +0 -3
  790. package/schematics/generators/tab-html-template/index.js +0 -8
  791. package/schematics/generators/tab-html-template/sample-details.d.ts +0 -5
  792. package/schematics/generators/tab-html-template/sample-details.js +0 -7
  793. package/schematics/generators/tab-html-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
  794. package/schematics/generators/tab-html-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -42
  795. package/schematics/generators/tab-html-template/schema.d.ts +0 -3
  796. package/schematics/generators/tab-html-template/schema.js +0 -2
  797. package/schematics/generators/tab-html-template/schema.json +0 -125
  798. package/schematics/generators/tab-icon/index.d.ts +0 -3
  799. package/schematics/generators/tab-icon/index.js +0 -8
  800. package/schematics/generators/tab-icon/sample-details.d.ts +0 -5
  801. package/schematics/generators/tab-icon/sample-details.js +0 -7
  802. package/schematics/generators/tab-icon/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -37
  803. package/schematics/generators/tab-icon/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -45
  804. package/schematics/generators/tab-icon/schema.d.ts +0 -3
  805. package/schematics/generators/tab-icon/schema.js +0 -2
  806. package/schematics/generators/tab-icon/schema.json +0 -125
  807. package/schematics/generators/tab-nested/index.d.ts +0 -3
  808. package/schematics/generators/tab-nested/index.js +0 -8
  809. package/schematics/generators/tab-nested/sample-details.d.ts +0 -5
  810. package/schematics/generators/tab-nested/sample-details.js +0 -7
  811. package/schematics/generators/tab-nested/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
  812. package/schematics/generators/tab-nested/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -71
  813. package/schematics/generators/tab-nested/schema.d.ts +0 -3
  814. package/schematics/generators/tab-nested/schema.js +0 -2
  815. package/schematics/generators/tab-nested/schema.json +0 -125
  816. package/schematics/generators/tab-popup/index.d.ts +0 -3
  817. package/schematics/generators/tab-popup/index.js +0 -8
  818. package/schematics/generators/tab-popup/sample-details.d.ts +0 -5
  819. package/schematics/generators/tab-popup/sample-details.js +0 -7
  820. package/schematics/generators/tab-popup/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
  821. package/schematics/generators/tab-popup/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -118
  822. package/schematics/generators/tab-popup/schema.d.ts +0 -3
  823. package/schematics/generators/tab-popup/schema.js +0 -2
  824. package/schematics/generators/tab-popup/schema.json +0 -125
  825. package/schematics/generators/tab-scrollable/index.d.ts +0 -3
  826. package/schematics/generators/tab-scrollable/index.js +0 -8
  827. package/schematics/generators/tab-scrollable/sample-details.d.ts +0 -5
  828. package/schematics/generators/tab-scrollable/sample-details.js +0 -7
  829. package/schematics/generators/tab-scrollable/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
  830. package/schematics/generators/tab-scrollable/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -118
  831. package/schematics/generators/tab-scrollable/schema.d.ts +0 -3
  832. package/schematics/generators/tab-scrollable/schema.js +0 -2
  833. package/schematics/generators/tab-scrollable/schema.json +0 -125
  834. package/schematics/generators/tab-vertical/index.d.ts +0 -3
  835. package/schematics/generators/tab-vertical/index.js +0 -8
  836. package/schematics/generators/tab-vertical/sample-details.d.ts +0 -5
  837. package/schematics/generators/tab-vertical/sample-details.js +0 -7
  838. package/schematics/generators/tab-vertical/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
  839. package/schematics/generators/tab-vertical/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -118
  840. package/schematics/generators/tab-vertical/schema.d.ts +0 -3
  841. package/schematics/generators/tab-vertical/schema.js +0 -2
  842. package/schematics/generators/tab-vertical/schema.json +0 -125
  843. package/schematics/generators/toolbar-alignment/index.d.ts +0 -3
  844. package/schematics/generators/toolbar-alignment/index.js +0 -8
  845. package/schematics/generators/toolbar-alignment/sample-details.d.ts +0 -5
  846. package/schematics/generators/toolbar-alignment/sample-details.js +0 -7
  847. package/schematics/generators/toolbar-alignment/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -97
  848. package/schematics/generators/toolbar-alignment/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -48
  849. package/schematics/generators/toolbar-alignment/schema.d.ts +0 -3
  850. package/schematics/generators/toolbar-alignment/schema.js +0 -2
  851. package/schematics/generators/toolbar-alignment/schema.json +0 -125
  852. package/schematics/generators/toolbar-extended/index.d.ts +0 -3
  853. package/schematics/generators/toolbar-extended/index.js +0 -8
  854. package/schematics/generators/toolbar-extended/sample-details.d.ts +0 -5
  855. package/schematics/generators/toolbar-extended/sample-details.js +0 -7
  856. package/schematics/generators/toolbar-extended/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -125
  857. package/schematics/generators/toolbar-extended/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -33
  858. package/schematics/generators/toolbar-extended/schema.d.ts +0 -3
  859. package/schematics/generators/toolbar-extended/schema.js +0 -2
  860. package/schematics/generators/toolbar-extended/schema.json +0 -125
  861. package/schematics/generators/toolbar-html-template/index.d.ts +0 -3
  862. package/schematics/generators/toolbar-html-template/index.js +0 -8
  863. package/schematics/generators/toolbar-html-template/sample-details.d.ts +0 -5
  864. package/schematics/generators/toolbar-html-template/sample-details.js +0 -7
  865. package/schematics/generators/toolbar-html-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  866. package/schematics/generators/toolbar-html-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -16
  867. package/schematics/generators/toolbar-html-template/schema.d.ts +0 -3
  868. package/schematics/generators/toolbar-html-template/schema.js +0 -2
  869. package/schematics/generators/toolbar-html-template/schema.json +0 -125
  870. package/schematics/generators/toolbar-multi-row/index.d.ts +0 -3
  871. package/schematics/generators/toolbar-multi-row/index.js +0 -8
  872. package/schematics/generators/toolbar-multi-row/sample-details.d.ts +0 -5
  873. package/schematics/generators/toolbar-multi-row/sample-details.js +0 -7
  874. package/schematics/generators/toolbar-multi-row/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -125
  875. package/schematics/generators/toolbar-multi-row/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -33
  876. package/schematics/generators/toolbar-multi-row/schema.d.ts +0 -3
  877. package/schematics/generators/toolbar-multi-row/schema.js +0 -2
  878. package/schematics/generators/toolbar-multi-row/schema.json +0 -125
  879. package/schematics/generators/toolbar-popup/index.d.ts +0 -3
  880. package/schematics/generators/toolbar-popup/index.js +0 -8
  881. package/schematics/generators/toolbar-popup/sample-details.d.ts +0 -5
  882. package/schematics/generators/toolbar-popup/sample-details.js +0 -7
  883. package/schematics/generators/toolbar-popup/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -125
  884. package/schematics/generators/toolbar-popup/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -33
  885. package/schematics/generators/toolbar-popup/schema.d.ts +0 -3
  886. package/schematics/generators/toolbar-popup/schema.js +0 -2
  887. package/schematics/generators/toolbar-popup/schema.json +0 -125
  888. package/schematics/generators/toolbar-scrollable/index.d.ts +0 -3
  889. package/schematics/generators/toolbar-scrollable/index.js +0 -8
  890. package/schematics/generators/toolbar-scrollable/sample-details.d.ts +0 -5
  891. package/schematics/generators/toolbar-scrollable/sample-details.js +0 -7
  892. package/schematics/generators/toolbar-scrollable/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -125
  893. package/schematics/generators/toolbar-scrollable/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -33
  894. package/schematics/generators/toolbar-scrollable/schema.d.ts +0 -3
  895. package/schematics/generators/toolbar-scrollable/schema.js +0 -2
  896. package/schematics/generators/toolbar-scrollable/schema.json +0 -125
  897. package/schematics/generators/treeview-checkbox/index.d.ts +0 -3
  898. package/schematics/generators/treeview-checkbox/index.js +0 -8
  899. package/schematics/generators/treeview-checkbox/sample-details.d.ts +0 -5
  900. package/schematics/generators/treeview-checkbox/sample-details.js +0 -7
  901. package/schematics/generators/treeview-checkbox/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -6
  902. package/schematics/generators/treeview-checkbox/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  903. package/schematics/generators/treeview-checkbox/schema.d.ts +0 -3
  904. package/schematics/generators/treeview-checkbox/schema.js +0 -2
  905. package/schematics/generators/treeview-checkbox/schema.json +0 -125
  906. package/schematics/generators/treeview-default/index.d.ts +0 -3
  907. package/schematics/generators/treeview-default/index.js +0 -8
  908. package/schematics/generators/treeview-default/sample-details.d.ts +0 -5
  909. package/schematics/generators/treeview-default/sample-details.js +0 -7
  910. package/schematics/generators/treeview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -6
  911. package/schematics/generators/treeview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  912. package/schematics/generators/treeview-default/schema.d.ts +0 -3
  913. package/schematics/generators/treeview-default/schema.js +0 -2
  914. package/schematics/generators/treeview-default/schema.json +0 -125
  915. package/schematics/generators/treeview-draganddrop/index.d.ts +0 -3
  916. package/schematics/generators/treeview-draganddrop/index.js +0 -8
  917. package/schematics/generators/treeview-draganddrop/sample-details.d.ts +0 -5
  918. package/schematics/generators/treeview-draganddrop/sample-details.js +0 -7
  919. package/schematics/generators/treeview-draganddrop/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -6
  920. package/schematics/generators/treeview-draganddrop/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  921. package/schematics/generators/treeview-draganddrop/schema.d.ts +0 -3
  922. package/schematics/generators/treeview-draganddrop/schema.js +0 -2
  923. package/schematics/generators/treeview-draganddrop/schema.json +0 -125
  924. package/schematics/generators/treeview-multiselection/index.d.ts +0 -3
  925. package/schematics/generators/treeview-multiselection/index.js +0 -8
  926. package/schematics/generators/treeview-multiselection/sample-details.d.ts +0 -5
  927. package/schematics/generators/treeview-multiselection/sample-details.js +0 -7
  928. package/schematics/generators/treeview-multiselection/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -6
  929. package/schematics/generators/treeview-multiselection/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  930. package/schematics/generators/treeview-multiselection/schema.d.ts +0 -3
  931. package/schematics/generators/treeview-multiselection/schema.js +0 -2
  932. package/schematics/generators/treeview-multiselection/schema.json +0 -125
  933. package/schematics/generators/treeview-nodeediting/index.d.ts +0 -3
  934. package/schematics/generators/treeview-nodeediting/index.js +0 -8
  935. package/schematics/generators/treeview-nodeediting/sample-details.d.ts +0 -5
  936. package/schematics/generators/treeview-nodeediting/sample-details.js +0 -7
  937. package/schematics/generators/treeview-nodeediting/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -6
  938. package/schematics/generators/treeview-nodeediting/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  939. package/schematics/generators/treeview-nodeediting/schema.d.ts +0 -3
  940. package/schematics/generators/treeview-nodeediting/schema.js +0 -2
  941. package/schematics/generators/treeview-nodeediting/schema.json +0 -125
  942. package/schematics/generators/treeview-remotedata/index.d.ts +0 -3
  943. package/schematics/generators/treeview-remotedata/index.js +0 -8
  944. package/schematics/generators/treeview-remotedata/sample-details.d.ts +0 -5
  945. package/schematics/generators/treeview-remotedata/sample-details.js +0 -7
  946. package/schematics/generators/treeview-remotedata/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -12
  947. package/schematics/generators/treeview-remotedata/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -8
  948. package/schematics/generators/treeview-remotedata/schema.d.ts +0 -3
  949. package/schematics/generators/treeview-remotedata/schema.js +0 -2
  950. package/schematics/generators/treeview-remotedata/schema.json +0 -125
  951. package/schematics/generators/treeview-treetemplate/index.d.ts +0 -3
  952. package/schematics/generators/treeview-treetemplate/index.js +0 -8
  953. package/schematics/generators/treeview-treetemplate/sample-details.d.ts +0 -5
  954. package/schematics/generators/treeview-treetemplate/sample-details.js +0 -7
  955. package/schematics/generators/treeview-treetemplate/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -16
  956. package/schematics/generators/treeview-treetemplate/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -21
  957. package/schematics/generators/treeview-treetemplate/schema.d.ts +0 -3
  958. package/schematics/generators/treeview-treetemplate/schema.js +0 -2
  959. package/schematics/generators/treeview-treetemplate/schema.json +0 -125
  960. package/schematics/ng-add/index.d.ts +0 -3
  961. package/schematics/ng-add/index.js +0 -9
  962. package/schematics/ng-add/schema.d.ts +0 -13
  963. package/schematics/ng-add/schema.js +0 -2
  964. package/schematics/ng-add/schema.json +0 -34
  965. package/schematics/tsconfig.json +0 -25
  966. package/schematics/utils/lib-details.d.ts +0 -4
  967. package/schematics/utils/lib-details.js +0 -6
@@ -0,0 +1,43 @@
1
+
2
+ @include export-module('treeview-fabric-icons') {
3
+ /*! TreeView icons */
4
+ .e-treeview {
5
+
6
+ .e-list-item {
7
+
8
+ div.e-icons::before {
9
+ content: '\e22e';
10
+ }
11
+ }
12
+
13
+ .e-sibling::before {
14
+ content: '';
15
+ }
16
+
17
+ .e-popup {
18
+
19
+ .e-icons::before {
20
+ content: '\e930';
21
+ }
22
+ }
23
+
24
+ &.e-drag-item {
25
+
26
+ .e-icons.e-drop-in::before {
27
+ content: '\e22c';
28
+ }
29
+
30
+ .e-icons.e-drop-out::before {
31
+ content: '\e22b';
32
+ }
33
+
34
+ .e-icons.e-drop-next::before {
35
+ content: '\e22d';
36
+ }
37
+
38
+ .e-icons.e-no-drop::before {
39
+ content: '\e22a';
40
+ }
41
+ }
42
+ }
43
+ }
@@ -0,0 +1 @@
1
+ @import './fluent.scss';
@@ -0,0 +1,43 @@
1
+
2
+ @include export-module('treeview-fluent-icons') {
3
+ /*! TreeView icons */
4
+ .e-treeview {
5
+
6
+ .e-list-item {
7
+
8
+ div.e-icons::before {
9
+ content: '\e75c';
10
+ }
11
+ }
12
+
13
+ .e-sibling::before {
14
+ content: '';
15
+ }
16
+
17
+ .e-popup {
18
+
19
+ .e-icons::before {
20
+ content: '\e76a';
21
+ }
22
+ }
23
+
24
+ &.e-drag-item {
25
+
26
+ .e-icons.e-drop-in::before {
27
+ content: '\e768';
28
+ }
29
+
30
+ .e-icons.e-drop-out::before {
31
+ content: '\e839';
32
+ }
33
+
34
+ .e-icons.e-drop-next::before {
35
+ content: '\e736';
36
+ }
37
+
38
+ .e-icons.e-no-drop::before {
39
+ content: '\e839';
40
+ }
41
+ }
42
+ }
43
+ }
@@ -0,0 +1,43 @@
1
+
2
+ @include export-module('treeview-fusionnew-icons') {
3
+ /*! TreeView icons */
4
+ .e-treeview {
5
+
6
+ .e-list-item {
7
+
8
+ div.e-icons::before {
9
+ content: '\e75c';
10
+ }
11
+ }
12
+
13
+ .e-sibling::before {
14
+ content: '';
15
+ }
16
+
17
+ .e-popup {
18
+
19
+ .e-icons::before {
20
+ content: '\e76a';
21
+ }
22
+ }
23
+
24
+ &.e-drag-item {
25
+
26
+ .e-icons.e-drop-in::before {
27
+ content: '\e768';
28
+ }
29
+
30
+ .e-icons.e-drop-out::before {
31
+ content: '\e839';
32
+ }
33
+
34
+ .e-icons.e-drop-next::before {
35
+ content: '\e736';
36
+ }
37
+
38
+ .e-icons.e-no-drop::before {
39
+ content: '\e839';
40
+ }
41
+ }
42
+ }
43
+ }
@@ -0,0 +1,43 @@
1
+
2
+ @include export-module('treeview-highcontrast-light-icons') {
3
+ /*! TreeView icons */
4
+ .e-treeview {
5
+
6
+ .e-list-item {
7
+
8
+ div.e-icons::before {
9
+ content: '\e22e';
10
+ }
11
+ }
12
+
13
+ .e-sibling::before {
14
+ content: '';
15
+ }
16
+
17
+ .e-popup {
18
+
19
+ .e-icons::before {
20
+ content: '\e930';
21
+ }
22
+ }
23
+
24
+ &.e-drag-item {
25
+
26
+ .e-icons.e-drop-in::before {
27
+ content: '\e22c';
28
+ }
29
+
30
+ .e-icons.e-drop-out::before {
31
+ content: '\e22b';
32
+ }
33
+
34
+ .e-icons.e-drop-next::before {
35
+ content: '\e22d';
36
+ }
37
+
38
+ .e-icons.e-no-drop::before {
39
+ content: '\e22a';
40
+ }
41
+ }
42
+ }
43
+ }
@@ -0,0 +1,43 @@
1
+
2
+ @include export-module('treeview-highcontrast-icons') {
3
+ /*! TreeView icons */
4
+ .e-treeview {
5
+
6
+ .e-list-item {
7
+
8
+ div.e-icons::before {
9
+ content: '\e22e';
10
+ }
11
+ }
12
+
13
+ .e-sibling::before {
14
+ content: '';
15
+ }
16
+
17
+ .e-popup {
18
+
19
+ .e-icons::before {
20
+ content: '\e930';
21
+ }
22
+ }
23
+
24
+ &.e-drag-item {
25
+
26
+ .e-icons.e-drop-in::before {
27
+ content: '\e22c';
28
+ }
29
+
30
+ .e-icons.e-drop-out::before {
31
+ content: '\e22b';
32
+ }
33
+
34
+ .e-icons.e-drop-next::before {
35
+ content: '\e22d';
36
+ }
37
+
38
+ .e-icons.e-no-drop::before {
39
+ content: '\e22a';
40
+ }
41
+ }
42
+ }
43
+ }
@@ -0,0 +1,43 @@
1
+
2
+ @include export-module('treeview-material-dark-icons') {
3
+ /*! TreeView icons */
4
+ .e-treeview {
5
+
6
+ .e-list-item {
7
+
8
+ div.e-icons::before {
9
+ content: '\e22f';
10
+ }
11
+ }
12
+
13
+ .e-sibling::before {
14
+ content: '';
15
+ }
16
+
17
+ .e-popup {
18
+
19
+ .e-icons::before {
20
+ content: '\e930';
21
+ }
22
+ }
23
+
24
+ &.e-drag-item {
25
+
26
+ .e-icons.e-drop-in::before {
27
+ content: '\e22c';
28
+ }
29
+
30
+ .e-icons.e-drop-out::before {
31
+ content: '\e22b';
32
+ }
33
+
34
+ .e-icons.e-drop-next::before {
35
+ content: '\e22d';
36
+ }
37
+
38
+ .e-icons.e-no-drop::before {
39
+ content: '\e22a';
40
+ }
41
+ }
42
+ }
43
+ }
@@ -0,0 +1,43 @@
1
+
2
+ @include export-module('treeview-material-icons') {
3
+ /*! TreeView icons */
4
+ .e-treeview {
5
+
6
+ .e-list-item {
7
+
8
+ div.e-icons::before {
9
+ content: '\e22f';
10
+ }
11
+ }
12
+
13
+ .e-sibling::before {
14
+ content: '';
15
+ }
16
+
17
+ .e-popup {
18
+
19
+ .e-icons::before {
20
+ content: '\e930';
21
+ }
22
+ }
23
+
24
+ &.e-drag-item {
25
+
26
+ .e-icons.e-drop-in::before {
27
+ content: '\e22c';
28
+ }
29
+
30
+ .e-icons.e-drop-out::before {
31
+ content: '\e22b';
32
+ }
33
+
34
+ .e-icons.e-drop-next::before {
35
+ content: '\e22d';
36
+ }
37
+
38
+ .e-icons.e-no-drop::before {
39
+ content: '\e22a';
40
+ }
41
+ }
42
+ }
43
+ }
@@ -0,0 +1,43 @@
1
+
2
+ @include export-module('treeview-material3-icons') {
3
+ /*! TreeView icons */
4
+ .e-treeview {
5
+
6
+ .e-list-item {
7
+
8
+ div.e-icons::before {
9
+ content: '\e75c';
10
+ }
11
+ }
12
+
13
+ .e-sibling::before {
14
+ content: '';
15
+ }
16
+
17
+ .e-popup {
18
+
19
+ .e-icons::before {
20
+ content: '\e76a';
21
+ }
22
+ }
23
+
24
+ &.e-drag-item {
25
+
26
+ .e-icons.e-drop-in::before {
27
+ content: '\e768';
28
+ }
29
+
30
+ .e-icons.e-drop-out::before {
31
+ content: '\e839';
32
+ }
33
+
34
+ .e-icons.e-drop-next::before {
35
+ content: '\e736';
36
+ }
37
+
38
+ .e-icons.e-no-drop::before {
39
+ content: '\e839';
40
+ }
41
+ }
42
+ }
43
+ }
@@ -0,0 +1,43 @@
1
+
2
+ @include export-module('treeview-tailwind-dark-icons') {
3
+ /*! TreeView icons */
4
+ .e-treeview {
5
+
6
+ .e-list-item {
7
+
8
+ div.e-icons::before {
9
+ content: '\e75c';
10
+ }
11
+ }
12
+
13
+ .e-sibling::before {
14
+ content: '';
15
+ }
16
+
17
+ .e-popup {
18
+
19
+ .e-icons::before {
20
+ content: '\e76a';
21
+ }
22
+ }
23
+
24
+ &.e-drag-item {
25
+
26
+ .e-icons.e-drop-in::before {
27
+ content: '\e768';
28
+ }
29
+
30
+ .e-icons.e-drop-out::before {
31
+ content: '\e839';
32
+ }
33
+
34
+ .e-icons.e-drop-next::before {
35
+ content: '\e736';
36
+ }
37
+
38
+ .e-icons.e-no-drop::before {
39
+ content: '\e839';
40
+ }
41
+ }
42
+ }
43
+ }
@@ -0,0 +1,43 @@
1
+
2
+ @include export-module('treeview-tailwind-icons') {
3
+ /*! TreeView icons */
4
+ .e-treeview {
5
+
6
+ .e-list-item {
7
+
8
+ div.e-icons::before {
9
+ content: '\e75c';
10
+ }
11
+ }
12
+
13
+ .e-sibling::before {
14
+ content: '';
15
+ }
16
+
17
+ .e-popup {
18
+
19
+ .e-icons::before {
20
+ content: '\e76a';
21
+ }
22
+ }
23
+
24
+ &.e-drag-item {
25
+
26
+ .e-icons.e-drop-in::before {
27
+ content: '\e768';
28
+ }
29
+
30
+ .e-icons.e-drop-out::before {
31
+ content: '\e839';
32
+ }
33
+
34
+ .e-icons.e-drop-next::before {
35
+ content: '\e736';
36
+ }
37
+
38
+ .e-icons.e-no-drop::before {
39
+ content: '\e839';
40
+ }
41
+ }
42
+ }
43
+ }
@@ -1 +1,6 @@
1
- @import 'ej2-navigations/styles/treeview/material-dark.scss';
1
+ @import 'ej2-base/styles/material-dark-definition.scss';
2
+ @import 'ej2-inputs/styles/input/material-dark-definition.scss';
3
+ @import 'ej2-buttons/styles/check-box/material-dark-definition.scss';
4
+ @import 'material-dark-definition.scss';
5
+ @import 'icons/material-dark.scss';
6
+ @import 'all.scss';
@@ -1 +1,6 @@
1
- @import 'ej2-navigations/styles/treeview/material.scss';
1
+ @import 'ej2-base/styles/material-definition.scss';
2
+ @import 'ej2-inputs/styles/input/material-definition.scss';
3
+ @import 'ej2-buttons/styles/check-box/material-definition.scss';
4
+ @import 'material-definition.scss';
5
+ @import 'icons/material.scss';
6
+ @import 'all.scss';
@@ -1 +1,6 @@
1
- @import 'ej2-navigations/styles/treeview/tailwind-dark.scss';
1
+ @import 'ej2-base/styles/tailwind-dark-definition.scss';
2
+ @import 'ej2-inputs/styles/input/tailwind-dark-definition.scss';
3
+ @import 'ej2-buttons/styles/check-box/tailwind-dark-definition.scss';
4
+ @import 'tailwind-dark-definition.scss';
5
+ @import 'icons/tailwind-dark.scss';
6
+ @import 'all.scss';
@@ -1 +1,6 @@
1
- @import 'ej2-navigations/styles/treeview/tailwind.scss';
1
+ @import 'ej2-base/styles/tailwind-definition.scss';
2
+ @import 'ej2-inputs/styles/input/tailwind-definition.scss';
3
+ @import 'ej2-buttons/styles/check-box/tailwind-definition.scss';
4
+ @import 'tailwind-definition.scss';
5
+ @import 'icons/tailwind.scss';
6
+ @import 'all.scss';
@@ -0,0 +1,2 @@
1
+ @import 'layout.scss';
2
+ @import 'theme.scss';
@@ -0,0 +1,50 @@
1
+ //default
2
+ $vscroll-skin: 'bootstrap' !default;
3
+ $vscroll-nav-nrml-height: 40px !default;
4
+ $vscroll-hover-font: $hover-font-color !default;
5
+ $vscroll-active-font-color: $active-font-color !default;
6
+ $vscroll-border-size: $border-size !default;
7
+ $vscroll-border-type: solid !default;
8
+
9
+ $vscroll-default-bg: $grey-f8 !default;
10
+ $vscroll-nav-nrml-minheight: 40px !default;
11
+ $vscroll-nav-bgr-minheight: 50px !default;
12
+ $vscroll-nav-nrml-width: 40px !default;
13
+ $vscroll-nav-bgr-width: 50px !default;
14
+ $vscroll-nrml-padding: 0 $vscroll-nav-nrml-width !default;
15
+ $vscroll-bgr-padding: $vscroll-nav-bgr-width 0 !default;
16
+ $vscroll-box-shadow: none !default;
17
+ $vscroll-overlay-opacity: .5 !default;
18
+ $vscroll-overlay-bg: $grey-white !default;
19
+ $vscroll-overlay-start: rgba($vscroll-overlay-bg, 0) !default;
20
+ $vscroll-overlay-end: rgba($vscroll-overlay-bg, 1) !default;
21
+ $vscroll-right-bg: linear-gradient(-270deg, $vscroll-overlay-start 0%, $vscroll-overlay-end 100%) !default;
22
+ $vscroll-left-bg: linear-gradient(-270deg, $vscroll-overlay-end 0%, $vscroll-overlay-start 100%) !default;
23
+
24
+ $vscroll-device-arrow-box-shadow: -4px 0 8px 0 rgba($shadow, .06) !default;
25
+ $vscroll-device-arrow-rtl-box-shadow: 4px 0 8px 0 rgba($shadow, .06) !default;
26
+ $vscroll-device-arrow-bg: $grey-f8 !default;
27
+ $vscroll-device-arrow-border-size: 1px !default;
28
+ $vscroll-device-arrow-border-color: $grey-cc !default;
29
+ $vscroll-device-arrow-color: $brand-primary !default;
30
+ $vscroll-device-arrow-size: 14px !default;
31
+ $vscroll-device-arrow-width: 52px !default;
32
+
33
+ $vscroll-default-icon-color: $grey-light-font !default;
34
+ $vscroll-hover-bg: $grey-e6 !default;
35
+ $vscroll-press-bg: $grey-e6 !default;
36
+ $vscroll-default-border: $grey-cc !default;
37
+ $vscroll-focus-border: 0 !default;
38
+ $vscroll-active-border: 0 !default;
39
+ $vscroll-hover-border: 0 !default;
40
+ $vscroll-hover-border-color: transparent !default;
41
+ $vscroll-active-box-shadow: inset 0 3px 5px rgba(0 , 0 , 0 , .125) !default;
42
+
43
+ @mixin vscroll-btn-animation {
44
+ content: '';
45
+ }
46
+
47
+ @mixin vscroll-btn-animation-after {
48
+ content: '';
49
+ }
50
+ //enddefault
@@ -0,0 +1,49 @@
1
+ /*! component's theme wise override definitions and variables */
2
+ $vscroll-skin: 'bootstrap' !default;
3
+ $vscroll-nav-nrml-height: 40px !default;
4
+ $vscroll-hover-font: $hover-font-color !default;
5
+ $vscroll-active-font-color: $active-font-color !default;
6
+ $vscroll-border-size: $border-size !default;
7
+ $vscroll-border-type: solid !default;
8
+
9
+ $vscroll-default-bg: $grey-f8 !default;
10
+ $vscroll-nav-nrml-minheight: 40px !default;
11
+ $vscroll-nav-bgr-minheight: 50px !default;
12
+ $vscroll-nav-nrml-width: 40px !default;
13
+ $vscroll-nav-bgr-width: 50px !default;
14
+ $vscroll-nrml-padding: 0 $vscroll-nav-nrml-width !default;
15
+ $vscroll-bgr-padding: $vscroll-nav-bgr-width 0 !default;
16
+ $vscroll-box-shadow: none !default;
17
+ $vscroll-overlay-opacity: .5 !default;
18
+ $vscroll-overlay-bg: $grey-white !default;
19
+ $vscroll-overlay-start: rgba($vscroll-overlay-bg, 0) !default;
20
+ $vscroll-overlay-end: rgba($vscroll-overlay-bg, 1) !default;
21
+ $vscroll-right-bg: linear-gradient(-270deg, $vscroll-overlay-start 0%, $vscroll-overlay-end 100%) !default;
22
+ $vscroll-left-bg: linear-gradient(-270deg, $vscroll-overlay-end 0%, $vscroll-overlay-start 100%) !default;
23
+
24
+ $vscroll-device-arrow-box-shadow: -4px 0 8px 0 rgba($shadow, .06) !default;
25
+ $vscroll-device-arrow-rtl-box-shadow: 4px 0 8px 0 rgba($shadow, .06) !default;
26
+ $vscroll-device-arrow-bg: $grey-f8 !default;
27
+ $vscroll-device-arrow-border-size: 1px !default;
28
+ $vscroll-device-arrow-border-color: $grey-cc !default;
29
+ $vscroll-device-arrow-color: $brand-primary !default;
30
+ $vscroll-device-arrow-size: 14px !default;
31
+ $vscroll-device-arrow-width: 52px !default;
32
+
33
+ $vscroll-default-icon-color: $grey-light-font !default;
34
+ $vscroll-hover-bg: $grey-e6 !default;
35
+ $vscroll-press-bg: $grey-e6 !default;
36
+ $vscroll-default-border: $grey-cc !default;
37
+ $vscroll-focus-border: 0 !default;
38
+ $vscroll-active-border: 0 !default;
39
+ $vscroll-hover-border: 0 !default;
40
+ $vscroll-hover-border-color: transparent !default;
41
+ $vscroll-active-box-shadow: inset 0 3px 5px rgba(0 , 0 , 0 , .125) !default;
42
+
43
+ @mixin vscroll-btn-animation {
44
+ content: '';
45
+ }
46
+
47
+ @mixin vscroll-btn-animation-after {
48
+ content: '';
49
+ }
@@ -0,0 +1,49 @@
1
+ /*! component's theme wise override definitions and variables */
2
+ $vscroll-skin: 'bootstrap4' !default;
3
+ $vscroll-nav-nrml-height: 40px !default;
4
+ $vscroll-hover-font: $primary-font !default;
5
+ $vscroll-active-font-color: $primary-font !default;
6
+ $vscroll-border-size: 1px !default;
7
+ $vscroll-border-type: solid !default;
8
+
9
+ $vscroll-default-bg: #f8f8f8 !default;
10
+ $vscroll-nav-nrml-minheight: 40px !default;
11
+ $vscroll-nav-bgr-minheight: 50px !default;
12
+ $vscroll-nav-nrml-width: 40px !default;
13
+ $vscroll-nav-bgr-width: 50px !default;
14
+ $vscroll-nrml-padding: 0 $vscroll-nav-nrml-width !default;
15
+ $vscroll-bgr-padding: $vscroll-nav-bgr-width 0 !default;
16
+ $vscroll-box-shadow: none !default;
17
+ $vscroll-overlay-opacity: .5 !default;
18
+ $vscroll-overlay-bg: $primary-font !default;
19
+ $vscroll-overlay-start: rgba($vscroll-overlay-bg, 0) !default;
20
+ $vscroll-overlay-end: rgba($vscroll-overlay-bg, 1) !default;
21
+ $vscroll-right-bg: linear-gradient(-270deg, $vscroll-overlay-start 0%, $vscroll-overlay-end 100%) !default;
22
+ $vscroll-left-bg: linear-gradient(-270deg, $vscroll-overlay-end 0%, $vscroll-overlay-start 100%) !default;
23
+
24
+ $vscroll-device-arrow-box-shadow: -4px 0 8px 0 rgba($gray-600, .06) !default;
25
+ $vscroll-device-arrow-rtl-box-shadow: 4px 0 8px 0 rgba($gray-600, .06) !default;
26
+ $vscroll-device-arrow-bg: #f8f8f8 !default;
27
+ $vscroll-device-arrow-border-size: 1px !default;
28
+ $vscroll-device-arrow-border-color: #ccc !default;
29
+ $vscroll-device-arrow-color: #317ab9 !default;
30
+ $vscroll-device-arrow-size: 14px !default;
31
+ $vscroll-device-arrow-width: 52px !default;
32
+
33
+ $vscroll-default-icon-color: #333 !default;
34
+ $vscroll-hover-bg: #e6e6e6 !default;
35
+ $vscroll-press-bg: #e6e6e6 !default;
36
+ $vscroll-default-border: #ccc !default;
37
+ $vscroll-focus-border: 0 !default;
38
+ $vscroll-active-border: 0 !default;
39
+ $vscroll-hover-border: 0 !default;
40
+ $vscroll-hover-border-color: transparent !default;
41
+ $vscroll-active-box-shadow: inset 0 3px 5px rgba(0 , 0 , 0 , .125) !default;
42
+
43
+ @mixin vscroll-btn-animation {
44
+ content: '';
45
+ }
46
+
47
+ @mixin vscroll-btn-animation-after {
48
+ content: '';
49
+ }
@@ -0,0 +1 @@
1
+ @import './bootstrap5-definition.scss';
@@ -0,0 +1,49 @@
1
+ /*! component's theme wise override definitions and variables */
2
+ $vscroll-skin: 'bootstrap5' !default;
3
+ $vscroll-nav-nrml-height: 38px !default;
4
+ $vscroll-hover-font: $content-text-color-alt2 !default;
5
+ $vscroll-active-font-color: $content-text-color-alt2 !default;
6
+ $vscroll-border-size: 1px !default;
7
+ $vscroll-border-type: solid !default;
8
+
9
+ $vscroll-default-bg: $content-bg-color-alt2 !default;
10
+ $vscroll-nav-nrml-minheight: 38px !default;
11
+ $vscroll-nav-bgr-minheight: 48px !default;
12
+ $vscroll-nav-nrml-width: 28px !default;
13
+ $vscroll-nav-bgr-width: 48px !default;
14
+ $vscroll-nrml-padding: 0 $vscroll-nav-nrml-width !default;
15
+ $vscroll-bgr-padding: $vscroll-nav-bgr-width 0 !default;
16
+ $vscroll-box-shadow: none !default;
17
+ $vscroll-overlay-opacity: .5 !default;
18
+ $vscroll-overlay-bg: $content-bg-color-alt2 !default;
19
+ $vscroll-overlay-start: rgba($vscroll-overlay-bg, 0) !default;
20
+ $vscroll-overlay-end: rgba($vscroll-overlay-bg, 1) !default;
21
+ $vscroll-right-bg: linear-gradient(-270deg, $vscroll-overlay-start 0%, $vscroll-overlay-end 100%) !default;
22
+ $vscroll-left-bg: linear-gradient(-270deg, $vscroll-overlay-end 0%, $vscroll-overlay-start 100%) !default;
23
+
24
+ $vscroll-device-arrow-box-shadow: $shadow !default;
25
+ $vscroll-device-arrow-rtl-box-shadow: $shadow !default;
26
+ $vscroll-device-arrow-bg: $content-bg-color-alt2 !default;
27
+ $vscroll-device-arrow-border-size: 1px !default;
28
+ $vscroll-device-arrow-border-color: $icon-color !default;
29
+ $vscroll-device-arrow-color: $icon-color !default;
30
+ $vscroll-device-arrow-size: 14px !default;
31
+ $vscroll-device-arrow-width: 48px !default;
32
+
33
+ $vscroll-default-icon-color: $icon-color !default;
34
+ $vscroll-hover-bg: $content-bg-color-alt3 !default;
35
+ $vscroll-press-bg: $content-bg-color-alt3 !default;
36
+ $vscroll-default-border: $icon-color !default;
37
+ $vscroll-focus-border: 0 !default;
38
+ $vscroll-active-border: 0 !default;
39
+ $vscroll-hover-border: 0 !default;
40
+ $vscroll-hover-border-color: transparent !default;
41
+ $vscroll-active-box-shadow: inset 0 3px 5px rgba(0 , 0 , 0 , .125) !default;
42
+
43
+ @mixin vscroll-btn-animation {
44
+ content: '';
45
+ }
46
+
47
+ @mixin vscroll-btn-animation-after {
48
+ content: '';
49
+ }