@syncfusion/ej2-angular-navigations 32.1.24-ngcc → 32.1.24

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 (440) hide show
  1. package/CHANGELOG.md +3114 -0
  2. package/README.md +10 -3
  3. package/esm2020/public_api.mjs +2 -0
  4. package/esm2020/src/accordion/accordion-all.module.mjs +23 -0
  5. package/esm2020/src/accordion/accordion.component.mjs +77 -0
  6. package/esm2020/src/accordion/accordion.module.mjs +34 -0
  7. package/esm2020/src/accordion/items.directive.mjs +72 -0
  8. package/esm2020/src/appbar/appbar-all.module.mjs +23 -0
  9. package/esm2020/src/appbar/appbar.component.mjs +59 -0
  10. package/esm2020/src/appbar/appbar.module.mjs +25 -0
  11. package/esm2020/src/breadcrumb/breadcrumb-all.module.mjs +23 -0
  12. package/esm2020/src/breadcrumb/breadcrumb.component.mjs +77 -0
  13. package/esm2020/src/breadcrumb/breadcrumb.module.mjs +34 -0
  14. package/esm2020/src/breadcrumb/items.directive.mjs +58 -0
  15. package/esm2020/src/carousel/carousel-all.module.mjs +23 -0
  16. package/esm2020/src/carousel/carousel.component.mjs +95 -0
  17. package/esm2020/src/carousel/carousel.module.mjs +34 -0
  18. package/esm2020/src/carousel/items.directive.mjs +66 -0
  19. package/esm2020/src/context-menu/contextmenu-all.module.mjs +23 -0
  20. package/esm2020/src/context-menu/contextmenu.component.mjs +60 -0
  21. package/esm2020/src/context-menu/contextmenu.module.mjs +25 -0
  22. package/esm2020/src/index.mjs +42 -0
  23. package/esm2020/src/menu/items.directive.mjs +46 -0
  24. package/esm2020/src/menu/menu-all.module.mjs +23 -0
  25. package/esm2020/src/menu/menu.component.mjs +71 -0
  26. package/esm2020/src/menu/menu.module.mjs +34 -0
  27. package/esm2020/src/sidebar/sidebar-all.module.mjs +23 -0
  28. package/esm2020/src/sidebar/sidebar.component.mjs +59 -0
  29. package/esm2020/src/sidebar/sidebar.module.mjs +25 -0
  30. package/esm2020/src/stepper/stepper-all.module.mjs +23 -0
  31. package/esm2020/src/stepper/stepper.component.mjs +77 -0
  32. package/esm2020/src/stepper/stepper.module.mjs +34 -0
  33. package/esm2020/src/stepper/steps.directive.mjs +58 -0
  34. package/esm2020/src/tab/items.directive.mjs +78 -0
  35. package/esm2020/src/tab/tab-all.module.mjs +23 -0
  36. package/esm2020/src/tab/tab.component.mjs +64 -0
  37. package/esm2020/src/tab/tab.module.mjs +34 -0
  38. package/esm2020/src/toolbar/items.directive.mjs +66 -0
  39. package/esm2020/src/toolbar/toolbar-all.module.mjs +23 -0
  40. package/esm2020/src/toolbar/toolbar.component.mjs +64 -0
  41. package/esm2020/src/toolbar/toolbar.module.mjs +34 -0
  42. package/esm2020/src/treeview/treeview-all.module.mjs +23 -0
  43. package/esm2020/src/treeview/treeview.component.mjs +66 -0
  44. package/esm2020/src/treeview/treeview.module.mjs +25 -0
  45. package/esm2020/syncfusion-ej2-angular-navigations.mjs +5 -0
  46. package/fesm2015/syncfusion-ej2-angular-navigations.mjs +1615 -0
  47. package/fesm2015/syncfusion-ej2-angular-navigations.mjs.map +1 -0
  48. package/fesm2020/syncfusion-ej2-angular-navigations.mjs +1615 -0
  49. package/fesm2020/syncfusion-ej2-angular-navigations.mjs.map +1 -0
  50. package/package.json +28 -46
  51. package/public_api.d.ts +1 -1
  52. package/src/accordion/accordion-all.module.d.ts +11 -5
  53. package/src/accordion/accordion.component.d.ts +57 -54
  54. package/src/accordion/accordion.module.d.ts +12 -5
  55. package/src/accordion/items.directive.d.ts +80 -75
  56. package/src/appbar/appbar-all.module.d.ts +11 -5
  57. package/src/appbar/appbar.component.d.ts +32 -29
  58. package/src/appbar/appbar.module.d.ts +11 -5
  59. package/src/breadcrumb/breadcrumb-all.module.d.ts +11 -5
  60. package/src/breadcrumb/breadcrumb.component.d.ts +49 -46
  61. package/src/breadcrumb/breadcrumb.module.d.ts +12 -5
  62. package/src/breadcrumb/items.directive.d.ts +56 -51
  63. package/src/carousel/carousel-all.module.d.ts +11 -5
  64. package/src/carousel/carousel.component.d.ts +81 -78
  65. package/src/carousel/carousel.module.d.ts +12 -5
  66. package/src/carousel/items.directive.d.ts +55 -50
  67. package/src/context-menu/contextmenu-all.module.d.ts +11 -5
  68. package/src/context-menu/contextmenu.component.d.ts +38 -35
  69. package/src/context-menu/contextmenu.module.d.ts +11 -5
  70. package/src/index.d.ts +41 -41
  71. package/src/menu/items.directive.d.ts +55 -50
  72. package/src/menu/menu-all.module.d.ts +11 -5
  73. package/src/menu/menu.component.d.ts +46 -43
  74. package/src/menu/menu.module.d.ts +12 -5
  75. package/src/sidebar/sidebar-all.module.d.ts +11 -5
  76. package/src/sidebar/sidebar.component.d.ts +36 -33
  77. package/src/sidebar/sidebar.module.d.ts +11 -5
  78. package/src/stepper/stepper-all.module.d.ts +11 -5
  79. package/src/stepper/stepper.component.d.ts +60 -57
  80. package/src/stepper/stepper.module.d.ts +12 -5
  81. package/src/stepper/steps.directive.d.ts +81 -76
  82. package/src/tab/items.directive.d.ts +82 -77
  83. package/src/tab/tab-all.module.d.ts +11 -5
  84. package/src/tab/tab.component.d.ts +44 -41
  85. package/src/tab/tab.module.d.ts +12 -5
  86. package/src/toolbar/items.directive.d.ts +147 -142
  87. package/src/toolbar/toolbar-all.module.d.ts +11 -5
  88. package/src/toolbar/toolbar.component.d.ts +38 -35
  89. package/src/toolbar/toolbar.module.d.ts +12 -5
  90. package/src/treeview/treeview-all.module.d.ts +11 -5
  91. package/src/treeview/treeview.component.d.ts +65 -62
  92. package/src/treeview/treeview.module.d.ts +11 -5
  93. package/styles/accordion/bds.scss +1 -1
  94. package/styles/accordion/bootstrap-dark.scss +1 -1
  95. package/styles/accordion/bootstrap.scss +1 -1
  96. package/styles/accordion/bootstrap4.scss +1 -1
  97. package/styles/accordion/bootstrap5-dark.scss +1 -1
  98. package/styles/accordion/bootstrap5.3.scss +1 -1
  99. package/styles/accordion/bootstrap5.scss +1 -1
  100. package/styles/accordion/fabric-dark.scss +1 -1
  101. package/styles/accordion/fabric.scss +1 -1
  102. package/styles/accordion/fluent-dark.scss +1 -1
  103. package/styles/accordion/fluent.scss +1 -1
  104. package/styles/accordion/fluent2.scss +1 -1
  105. package/styles/accordion/highcontrast-light.scss +1 -1
  106. package/styles/accordion/highcontrast.scss +1 -1
  107. package/styles/accordion/material-dark.scss +1 -1
  108. package/styles/accordion/material.scss +1 -1
  109. package/styles/accordion/material3-dark.scss +1 -2
  110. package/styles/accordion/material3.scss +1 -2
  111. package/styles/accordion/tailwind-dark.scss +1 -1
  112. package/styles/accordion/tailwind.scss +1 -1
  113. package/styles/accordion/tailwind3.scss +1 -1
  114. package/styles/appbar/bds.scss +1 -1
  115. package/styles/appbar/bootstrap-dark.scss +1 -1
  116. package/styles/appbar/bootstrap.scss +1 -1
  117. package/styles/appbar/bootstrap4.scss +1 -1
  118. package/styles/appbar/bootstrap5-dark.scss +1 -1
  119. package/styles/appbar/bootstrap5.3.scss +1 -1
  120. package/styles/appbar/bootstrap5.scss +1 -1
  121. package/styles/appbar/fabric-dark.scss +1 -1
  122. package/styles/appbar/fabric.scss +1 -1
  123. package/styles/appbar/fluent-dark.scss +1 -1
  124. package/styles/appbar/fluent.scss +1 -1
  125. package/styles/appbar/fluent2.scss +1 -1
  126. package/styles/appbar/highcontrast-light.scss +1 -1
  127. package/styles/appbar/highcontrast.scss +1 -1
  128. package/styles/appbar/material-dark.scss +1 -1
  129. package/styles/appbar/material.scss +1 -1
  130. package/styles/appbar/material3-dark.scss +1 -2
  131. package/styles/appbar/material3.scss +1 -2
  132. package/styles/appbar/tailwind-dark.scss +1 -1
  133. package/styles/appbar/tailwind.scss +1 -1
  134. package/styles/appbar/tailwind3.scss +1 -1
  135. package/styles/bds-lite.scss +1 -1
  136. package/styles/bds.scss +14 -14
  137. package/styles/bootstrap-dark-lite.scss +1 -1
  138. package/styles/bootstrap-dark.scss +14 -14
  139. package/styles/bootstrap-lite.scss +1 -1
  140. package/styles/bootstrap.scss +14 -14
  141. package/styles/bootstrap4-lite.scss +1 -1
  142. package/styles/bootstrap4.scss +14 -14
  143. package/styles/bootstrap5-dark-lite.scss +1 -1
  144. package/styles/bootstrap5-dark.scss +14 -14
  145. package/styles/bootstrap5-lite.scss +1 -1
  146. package/styles/bootstrap5.3-lite.scss +1 -1
  147. package/styles/bootstrap5.3.scss +14 -14
  148. package/styles/bootstrap5.scss +14 -14
  149. package/styles/breadcrumb/bds.scss +1 -1
  150. package/styles/breadcrumb/bootstrap-dark.scss +1 -1
  151. package/styles/breadcrumb/bootstrap.scss +1 -1
  152. package/styles/breadcrumb/bootstrap4.scss +1 -1
  153. package/styles/breadcrumb/bootstrap5-dark.scss +1 -1
  154. package/styles/breadcrumb/bootstrap5.3.scss +1 -1
  155. package/styles/breadcrumb/bootstrap5.scss +1 -1
  156. package/styles/breadcrumb/fabric-dark.scss +1 -1
  157. package/styles/breadcrumb/fabric.scss +1 -1
  158. package/styles/breadcrumb/fluent-dark.scss +1 -1
  159. package/styles/breadcrumb/fluent.scss +1 -1
  160. package/styles/breadcrumb/fluent2.scss +1 -1
  161. package/styles/breadcrumb/highcontrast-light.scss +1 -1
  162. package/styles/breadcrumb/highcontrast.scss +1 -1
  163. package/styles/breadcrumb/material-dark.scss +1 -1
  164. package/styles/breadcrumb/material.scss +1 -1
  165. package/styles/breadcrumb/material3-dark.scss +1 -2
  166. package/styles/breadcrumb/material3.scss +1 -2
  167. package/styles/breadcrumb/tailwind-dark.scss +1 -1
  168. package/styles/breadcrumb/tailwind.scss +1 -1
  169. package/styles/breadcrumb/tailwind3.scss +1 -1
  170. package/styles/carousel/bds.scss +1 -1
  171. package/styles/carousel/bootstrap-dark.scss +1 -1
  172. package/styles/carousel/bootstrap.scss +1 -1
  173. package/styles/carousel/bootstrap4.scss +1 -1
  174. package/styles/carousel/bootstrap5-dark.scss +1 -1
  175. package/styles/carousel/bootstrap5.3.scss +1 -1
  176. package/styles/carousel/bootstrap5.scss +1 -1
  177. package/styles/carousel/fabric-dark.scss +1 -1
  178. package/styles/carousel/fabric.scss +1 -1
  179. package/styles/carousel/fluent-dark.scss +1 -1
  180. package/styles/carousel/fluent.scss +1 -1
  181. package/styles/carousel/fluent2.scss +1 -1
  182. package/styles/carousel/highcontrast-light.scss +1 -1
  183. package/styles/carousel/highcontrast.scss +1 -1
  184. package/styles/carousel/material-dark.scss +1 -1
  185. package/styles/carousel/material.scss +1 -1
  186. package/styles/carousel/material3-dark.scss +1 -2
  187. package/styles/carousel/material3.scss +1 -2
  188. package/styles/carousel/tailwind-dark.scss +1 -1
  189. package/styles/carousel/tailwind.scss +1 -1
  190. package/styles/carousel/tailwind3.scss +1 -1
  191. package/styles/context-menu/bds.scss +1 -1
  192. package/styles/context-menu/bootstrap-dark.scss +1 -1
  193. package/styles/context-menu/bootstrap.scss +1 -1
  194. package/styles/context-menu/bootstrap4.scss +1 -1
  195. package/styles/context-menu/bootstrap5-dark.scss +1 -1
  196. package/styles/context-menu/bootstrap5.3.scss +1 -1
  197. package/styles/context-menu/bootstrap5.scss +1 -1
  198. package/styles/context-menu/fabric-dark.scss +1 -1
  199. package/styles/context-menu/fabric.scss +1 -1
  200. package/styles/context-menu/fluent-dark.scss +1 -1
  201. package/styles/context-menu/fluent.scss +1 -1
  202. package/styles/context-menu/fluent2.scss +1 -1
  203. package/styles/context-menu/highcontrast-light.scss +1 -1
  204. package/styles/context-menu/highcontrast.scss +1 -1
  205. package/styles/context-menu/material-dark.scss +1 -1
  206. package/styles/context-menu/material.scss +1 -1
  207. package/styles/context-menu/material3-dark.scss +1 -2
  208. package/styles/context-menu/material3.scss +1 -2
  209. package/styles/context-menu/tailwind-dark.scss +1 -1
  210. package/styles/context-menu/tailwind.scss +1 -1
  211. package/styles/context-menu/tailwind3.scss +1 -1
  212. package/styles/fabric-dark-lite.scss +1 -1
  213. package/styles/fabric-dark.scss +14 -14
  214. package/styles/fabric-lite.scss +1 -1
  215. package/styles/fabric.scss +14 -14
  216. package/styles/fluent-dark-lite.scss +1 -1
  217. package/styles/fluent-dark.scss +14 -14
  218. package/styles/fluent-lite.scss +1 -1
  219. package/styles/fluent.scss +14 -14
  220. package/styles/fluent2-lite.scss +1 -1
  221. package/styles/fluent2.scss +14 -14
  222. package/styles/h-scroll/bds.scss +1 -1
  223. package/styles/h-scroll/bootstrap-dark.scss +1 -1
  224. package/styles/h-scroll/bootstrap.scss +1 -1
  225. package/styles/h-scroll/bootstrap4.scss +1 -1
  226. package/styles/h-scroll/bootstrap5-dark.scss +1 -1
  227. package/styles/h-scroll/bootstrap5.3.scss +1 -1
  228. package/styles/h-scroll/bootstrap5.scss +1 -1
  229. package/styles/h-scroll/fabric-dark.scss +1 -1
  230. package/styles/h-scroll/fabric.scss +1 -1
  231. package/styles/h-scroll/fluent-dark.scss +1 -1
  232. package/styles/h-scroll/fluent.scss +1 -1
  233. package/styles/h-scroll/fluent2.scss +1 -1
  234. package/styles/h-scroll/highcontrast-light.scss +1 -1
  235. package/styles/h-scroll/highcontrast.scss +1 -1
  236. package/styles/h-scroll/material-dark.scss +1 -1
  237. package/styles/h-scroll/material.scss +1 -1
  238. package/styles/h-scroll/material3-dark.scss +1 -2
  239. package/styles/h-scroll/material3.scss +1 -2
  240. package/styles/h-scroll/tailwind-dark.scss +1 -1
  241. package/styles/h-scroll/tailwind.scss +1 -1
  242. package/styles/h-scroll/tailwind3.scss +1 -1
  243. package/styles/highcontrast-light-lite.scss +1 -1
  244. package/styles/highcontrast-light.scss +14 -14
  245. package/styles/highcontrast-lite.scss +1 -1
  246. package/styles/highcontrast.scss +14 -14
  247. package/styles/material-dark-lite.scss +1 -1
  248. package/styles/material-dark.scss +14 -14
  249. package/styles/material-lite.scss +1 -1
  250. package/styles/material.scss +14 -14
  251. package/styles/material3-dark-lite.scss +1 -1
  252. package/styles/material3-dark.scss +14 -15
  253. package/styles/material3-lite.scss +1 -1
  254. package/styles/material3.scss +14 -15
  255. package/styles/menu/bds.scss +1 -1
  256. package/styles/menu/bootstrap-dark.scss +1 -1
  257. package/styles/menu/bootstrap.scss +1 -1
  258. package/styles/menu/bootstrap4.scss +1 -1
  259. package/styles/menu/bootstrap5-dark.scss +1 -1
  260. package/styles/menu/bootstrap5.3.scss +1 -1
  261. package/styles/menu/bootstrap5.scss +1 -1
  262. package/styles/menu/fabric-dark.scss +1 -1
  263. package/styles/menu/fabric.scss +1 -1
  264. package/styles/menu/fluent-dark.scss +1 -1
  265. package/styles/menu/fluent.scss +1 -1
  266. package/styles/menu/fluent2.scss +1 -1
  267. package/styles/menu/highcontrast-light.scss +1 -1
  268. package/styles/menu/highcontrast.scss +1 -1
  269. package/styles/menu/material-dark.scss +1 -1
  270. package/styles/menu/material.scss +1 -1
  271. package/styles/menu/material3-dark.scss +1 -2
  272. package/styles/menu/material3.scss +1 -2
  273. package/styles/menu/tailwind-dark.scss +1 -1
  274. package/styles/menu/tailwind.scss +1 -1
  275. package/styles/menu/tailwind3.scss +1 -1
  276. package/styles/pager/bds.scss +1 -1
  277. package/styles/pager/bootstrap-dark.scss +1 -1
  278. package/styles/pager/bootstrap.scss +1 -1
  279. package/styles/pager/bootstrap4.scss +1 -1
  280. package/styles/pager/bootstrap5-dark.scss +1 -1
  281. package/styles/pager/bootstrap5.3.scss +1 -1
  282. package/styles/pager/bootstrap5.scss +1 -1
  283. package/styles/pager/fabric-dark.scss +1 -1
  284. package/styles/pager/fabric.scss +1 -1
  285. package/styles/pager/fluent-dark.scss +1 -1
  286. package/styles/pager/fluent.scss +1 -1
  287. package/styles/pager/fluent2.scss +1 -1
  288. package/styles/pager/highcontrast-light.scss +1 -1
  289. package/styles/pager/highcontrast.scss +1 -1
  290. package/styles/pager/material-dark.scss +1 -1
  291. package/styles/pager/material.scss +1 -1
  292. package/styles/pager/material3-dark.scss +1 -2
  293. package/styles/pager/material3.scss +1 -2
  294. package/styles/pager/tailwind-dark.scss +1 -1
  295. package/styles/pager/tailwind.scss +1 -1
  296. package/styles/pager/tailwind3.scss +1 -1
  297. package/styles/sidebar/bds.scss +1 -1
  298. package/styles/sidebar/bootstrap-dark.scss +1 -1
  299. package/styles/sidebar/bootstrap.scss +1 -1
  300. package/styles/sidebar/bootstrap4.scss +1 -1
  301. package/styles/sidebar/bootstrap5-dark.scss +1 -1
  302. package/styles/sidebar/bootstrap5.3.scss +1 -1
  303. package/styles/sidebar/bootstrap5.scss +1 -1
  304. package/styles/sidebar/fabric-dark.scss +1 -1
  305. package/styles/sidebar/fabric.scss +1 -1
  306. package/styles/sidebar/fluent-dark.scss +1 -1
  307. package/styles/sidebar/fluent.scss +1 -1
  308. package/styles/sidebar/fluent2.scss +1 -1
  309. package/styles/sidebar/highcontrast-light.scss +1 -1
  310. package/styles/sidebar/highcontrast.scss +1 -1
  311. package/styles/sidebar/material-dark.scss +1 -1
  312. package/styles/sidebar/material.scss +1 -1
  313. package/styles/sidebar/material3-dark.scss +1 -2
  314. package/styles/sidebar/material3.scss +1 -2
  315. package/styles/sidebar/tailwind-dark.scss +1 -1
  316. package/styles/sidebar/tailwind.scss +1 -1
  317. package/styles/sidebar/tailwind3.scss +1 -1
  318. package/styles/stepper/bds.scss +1 -1
  319. package/styles/stepper/bootstrap-dark.scss +1 -1
  320. package/styles/stepper/bootstrap.scss +1 -1
  321. package/styles/stepper/bootstrap4.scss +1 -1
  322. package/styles/stepper/bootstrap5-dark.scss +1 -1
  323. package/styles/stepper/bootstrap5.3.scss +1 -1
  324. package/styles/stepper/bootstrap5.scss +1 -1
  325. package/styles/stepper/fabric-dark.scss +1 -1
  326. package/styles/stepper/fabric.scss +1 -1
  327. package/styles/stepper/fluent-dark.scss +1 -1
  328. package/styles/stepper/fluent.scss +1 -1
  329. package/styles/stepper/fluent2.scss +1 -1
  330. package/styles/stepper/highcontrast-light.scss +1 -1
  331. package/styles/stepper/highcontrast.scss +1 -1
  332. package/styles/stepper/material-dark.scss +1 -1
  333. package/styles/stepper/material.scss +1 -1
  334. package/styles/stepper/material3-dark.scss +1 -2
  335. package/styles/stepper/material3.scss +1 -2
  336. package/styles/stepper/tailwind-dark.scss +1 -1
  337. package/styles/stepper/tailwind.scss +1 -1
  338. package/styles/stepper/tailwind3.scss +1 -1
  339. package/styles/tab/bds.scss +1 -1
  340. package/styles/tab/bootstrap-dark.scss +1 -1
  341. package/styles/tab/bootstrap.scss +1 -1
  342. package/styles/tab/bootstrap4.scss +1 -1
  343. package/styles/tab/bootstrap5-dark.scss +1 -1
  344. package/styles/tab/bootstrap5.3.scss +1 -1
  345. package/styles/tab/bootstrap5.scss +1 -1
  346. package/styles/tab/fabric-dark.scss +1 -1
  347. package/styles/tab/fabric.scss +1 -1
  348. package/styles/tab/fluent-dark.scss +1 -1
  349. package/styles/tab/fluent.scss +1 -1
  350. package/styles/tab/fluent2.scss +1 -1
  351. package/styles/tab/highcontrast-light.scss +1 -1
  352. package/styles/tab/highcontrast.scss +1 -1
  353. package/styles/tab/material-dark.scss +1 -1
  354. package/styles/tab/material.scss +1 -1
  355. package/styles/tab/material3-dark.scss +1 -2
  356. package/styles/tab/material3.scss +1 -2
  357. package/styles/tab/tailwind-dark.scss +1 -1
  358. package/styles/tab/tailwind.scss +1 -1
  359. package/styles/tab/tailwind3.scss +1 -1
  360. package/styles/tailwind-dark-lite.scss +1 -1
  361. package/styles/tailwind-dark.scss +14 -14
  362. package/styles/tailwind-lite.scss +1 -1
  363. package/styles/tailwind.scss +14 -14
  364. package/styles/tailwind3-lite.scss +1 -1
  365. package/styles/tailwind3.scss +14 -14
  366. package/styles/toolbar/bds.scss +1 -1
  367. package/styles/toolbar/bootstrap-dark.scss +1 -1
  368. package/styles/toolbar/bootstrap.scss +1 -1
  369. package/styles/toolbar/bootstrap4.scss +1 -1
  370. package/styles/toolbar/bootstrap5-dark.scss +1 -1
  371. package/styles/toolbar/bootstrap5.3.scss +1 -1
  372. package/styles/toolbar/bootstrap5.scss +1 -1
  373. package/styles/toolbar/fabric-dark.scss +1 -1
  374. package/styles/toolbar/fabric.scss +1 -1
  375. package/styles/toolbar/fluent-dark.scss +1 -1
  376. package/styles/toolbar/fluent.scss +1 -1
  377. package/styles/toolbar/fluent2.scss +1 -1
  378. package/styles/toolbar/highcontrast-light.scss +1 -1
  379. package/styles/toolbar/highcontrast.scss +1 -1
  380. package/styles/toolbar/material-dark.scss +1 -1
  381. package/styles/toolbar/material.scss +1 -1
  382. package/styles/toolbar/material3-dark.scss +1 -2
  383. package/styles/toolbar/material3.scss +1 -2
  384. package/styles/toolbar/tailwind-dark.scss +1 -1
  385. package/styles/toolbar/tailwind.scss +1 -1
  386. package/styles/toolbar/tailwind3.scss +1 -1
  387. package/styles/treeview/bds.scss +1 -1
  388. package/styles/treeview/bootstrap-dark.scss +1 -1
  389. package/styles/treeview/bootstrap.scss +1 -1
  390. package/styles/treeview/bootstrap4.scss +1 -1
  391. package/styles/treeview/bootstrap5-dark.scss +1 -1
  392. package/styles/treeview/bootstrap5.3.scss +1 -1
  393. package/styles/treeview/bootstrap5.scss +1 -1
  394. package/styles/treeview/fabric-dark.scss +1 -1
  395. package/styles/treeview/fabric.scss +1 -1
  396. package/styles/treeview/fluent-dark.scss +1 -1
  397. package/styles/treeview/fluent.scss +1 -1
  398. package/styles/treeview/fluent2.scss +1 -1
  399. package/styles/treeview/highcontrast-light.scss +1 -1
  400. package/styles/treeview/highcontrast.scss +1 -1
  401. package/styles/treeview/material-dark.scss +1 -1
  402. package/styles/treeview/material.scss +1 -1
  403. package/styles/treeview/material3-dark.scss +1 -2
  404. package/styles/treeview/material3.scss +1 -2
  405. package/styles/treeview/tailwind-dark.scss +1 -1
  406. package/styles/treeview/tailwind.scss +1 -1
  407. package/styles/treeview/tailwind3.scss +1 -1
  408. package/styles/v-scroll/bds.scss +1 -1
  409. package/styles/v-scroll/bootstrap-dark.scss +1 -1
  410. package/styles/v-scroll/bootstrap.scss +1 -1
  411. package/styles/v-scroll/bootstrap4.scss +1 -1
  412. package/styles/v-scroll/bootstrap5-dark.scss +1 -1
  413. package/styles/v-scroll/bootstrap5.3.scss +1 -1
  414. package/styles/v-scroll/bootstrap5.scss +1 -1
  415. package/styles/v-scroll/fabric-dark.scss +1 -1
  416. package/styles/v-scroll/fabric.scss +1 -1
  417. package/styles/v-scroll/fluent-dark.scss +1 -1
  418. package/styles/v-scroll/fluent.scss +1 -1
  419. package/styles/v-scroll/fluent2.scss +1 -1
  420. package/styles/v-scroll/highcontrast-light.scss +1 -1
  421. package/styles/v-scroll/highcontrast.scss +1 -1
  422. package/styles/v-scroll/material-dark.scss +1 -1
  423. package/styles/v-scroll/material.scss +1 -1
  424. package/styles/v-scroll/material3-dark.scss +1 -2
  425. package/styles/v-scroll/material3.scss +1 -2
  426. package/styles/v-scroll/tailwind-dark.scss +1 -1
  427. package/styles/v-scroll/tailwind.scss +1 -1
  428. package/styles/v-scroll/tailwind3.scss +1 -1
  429. package/syncfusion-ej2-angular-navigations.d.ts +5 -0
  430. package/@syncfusion/ej2-angular-navigations.es5.js +0 -2247
  431. package/@syncfusion/ej2-angular-navigations.es5.js.map +0 -1
  432. package/@syncfusion/ej2-angular-navigations.js +0 -2070
  433. package/@syncfusion/ej2-angular-navigations.js.map +0 -1
  434. package/LICENSE +0 -10
  435. package/dist/ej2-angular-navigations.umd.js +0 -2356
  436. package/dist/ej2-angular-navigations.umd.js.map +0 -1
  437. package/dist/ej2-angular-navigations.umd.min.js +0 -11
  438. package/dist/ej2-angular-navigations.umd.min.js.map +0 -1
  439. package/ej2-angular-navigations.d.ts +0 -15
  440. package/ej2-angular-navigations.metadata.json +0 -1
@@ -1,78 +1,81 @@
1
- import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
2
- import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
- import { Carousel } from '@syncfusion/ej2-navigations';
4
- import { CarouselItemsDirective } from './items.directive';
5
- export declare const inputs: string[];
6
- export declare const outputs: string[];
7
- export declare const twoWays: string[];
8
- /**
9
- * Represents the EJ2 Angular Carousel Component.
10
- * ```html
11
- * <ejs-carousel [items]='carouselItems'></ejs-carousel>
12
- * ```
13
- */
14
- export declare class CarouselComponent extends Carousel implements IComponentBase {
15
- private ngEle;
16
- private srenderer;
17
- private viewContainerRef;
18
- private injector;
19
- context: any;
20
- tagObjects: any;
21
- slideChanged: any;
22
- slideChanging: any;
23
- selectedIndexChange: any;
24
- childItems: QueryList<CarouselItemsDirective>;
25
- tags: string[];
26
- /**
27
- * Accepts the template for indicator buttons.
28
- * @default null
29
- * @angulartype string | object
30
- * @reacttype string | function | JSX.Element
31
- * @vuetype string | function
32
- * @asptype string
33
- */
34
- indicatorsTemplate: any;
35
- /**
36
- * Accepts the template for next navigation button.
37
- * @default null
38
- * @angulartype string | object
39
- * @reacttype string | function | JSX.Element
40
- * @vuetype string | function
41
- * @asptype string
42
- */
43
- nextButtonTemplate: any;
44
- /**
45
- * Accepts the template for previous navigation button.
46
- * @default null
47
- * @angulartype string | object
48
- * @reacttype string | function | JSX.Element
49
- * @vuetype string | function
50
- * @asptype string
51
- */
52
- previousButtonTemplate: any;
53
- /**
54
- * Accepts the template for play/pause button.
55
- * @default null
56
- * @angulartype string | object
57
- * @reacttype string | function | JSX.Element
58
- * @vuetype string | function
59
- * @asptype string
60
- */
61
- playButtonTemplate: any;
62
- /**
63
- * Specifies the template option for carousel items.
64
- * @default null
65
- * @angulartype string | object
66
- * @reacttype string | function | JSX.Element
67
- * @vuetype string | function
68
- * @asptype string
69
- */
70
- itemTemplate: any;
71
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
72
- ngOnInit(): void;
73
- ngAfterViewInit(): void;
74
- ngOnDestroy(): void;
75
- ngAfterContentChecked(): void;
76
- registerEvents: (eventList: string[]) => void;
77
- addTwoWay: (propList: string[]) => void;
78
- }
1
+ import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
2
+ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
+ import { Carousel } from '@syncfusion/ej2-navigations';
4
+ import { CarouselItemsDirective } from './items.directive';
5
+ import * as i0 from "@angular/core";
6
+ export declare const inputs: string[];
7
+ export declare const outputs: string[];
8
+ export declare const twoWays: string[];
9
+ /**
10
+ * Represents the EJ2 Angular Carousel Component.
11
+ * ```html
12
+ * <ejs-carousel [items]='carouselItems'></ejs-carousel>
13
+ * ```
14
+ */
15
+ export declare class CarouselComponent extends Carousel implements IComponentBase {
16
+ private ngEle;
17
+ private srenderer;
18
+ private viewContainerRef;
19
+ private injector;
20
+ context: any;
21
+ tagObjects: any;
22
+ slideChanged: any;
23
+ slideChanging: any;
24
+ selectedIndexChange: any;
25
+ childItems: QueryList<CarouselItemsDirective>;
26
+ tags: string[];
27
+ /**
28
+ * Accepts the template for indicator buttons.
29
+ * @default null
30
+ * @angulartype string | object
31
+ * @reacttype string | function | JSX.Element
32
+ * @vuetype string | function
33
+ * @asptype string
34
+ */
35
+ indicatorsTemplate: any;
36
+ /**
37
+ * Accepts the template for next navigation button.
38
+ * @default null
39
+ * @angulartype string | object
40
+ * @reacttype string | function | JSX.Element
41
+ * @vuetype string | function
42
+ * @asptype string
43
+ */
44
+ nextButtonTemplate: any;
45
+ /**
46
+ * Accepts the template for previous navigation button.
47
+ * @default null
48
+ * @angulartype string | object
49
+ * @reacttype string | function | JSX.Element
50
+ * @vuetype string | function
51
+ * @asptype string
52
+ */
53
+ previousButtonTemplate: any;
54
+ /**
55
+ * Accepts the template for play/pause button.
56
+ * @default null
57
+ * @angulartype string | object
58
+ * @reacttype string | function | JSX.Element
59
+ * @vuetype string | function
60
+ * @asptype string
61
+ */
62
+ playButtonTemplate: any;
63
+ /**
64
+ * Specifies the template option for carousel items.
65
+ * @default null
66
+ * @angulartype string | object
67
+ * @reacttype string | function | JSX.Element
68
+ * @vuetype string | function
69
+ * @asptype string
70
+ */
71
+ itemTemplate: any;
72
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
73
+ ngOnInit(): void;
74
+ ngAfterViewInit(): void;
75
+ ngOnDestroy(): void;
76
+ ngAfterContentChecked(): void;
77
+ registerEvents: (eventList: string[]) => void;
78
+ addTwoWay: (propList: string[]) => void;
79
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarouselComponent, never>;
80
+ static ɵcmp: i0.ɵɵComponentDeclaration<CarouselComponent, "ejs-carousel", never, { "allowKeyboardInteraction": "allowKeyboardInteraction"; "animationEffect": "animationEffect"; "autoPlay": "autoPlay"; "buttonsVisibility": "buttonsVisibility"; "cssClass": "cssClass"; "dataSource": "dataSource"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "enableTouchSwipe": "enableTouchSwipe"; "height": "height"; "htmlAttributes": "htmlAttributes"; "indicatorsTemplate": "indicatorsTemplate"; "indicatorsType": "indicatorsType"; "interval": "interval"; "itemTemplate": "itemTemplate"; "items": "items"; "locale": "locale"; "loop": "loop"; "nextButtonTemplate": "nextButtonTemplate"; "partialVisible": "partialVisible"; "pauseOnHover": "pauseOnHover"; "playButtonTemplate": "playButtonTemplate"; "previousButtonTemplate": "previousButtonTemplate"; "selectedIndex": "selectedIndex"; "showIndicators": "showIndicators"; "showPlayButton": "showPlayButton"; "swipeMode": "swipeMode"; "width": "width"; }, { "slideChanged": "slideChanged"; "slideChanging": "slideChanging"; "selectedIndexChange": "selectedIndexChange"; }, ["indicatorsTemplate", "nextButtonTemplate", "previousButtonTemplate", "playButtonTemplate", "itemTemplate", "childItems"], never>;
81
+ }
@@ -1,5 +1,12 @@
1
- /**
2
- * NgModule definition for the Carousel component.
3
- */
4
- export declare class CarouselModule {
5
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./carousel.component";
3
+ import * as i2 from "./items.directive";
4
+ import * as i3 from "@angular/common";
5
+ /**
6
+ * NgModule definition for the Carousel component.
7
+ */
8
+ export declare class CarouselModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarouselModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CarouselModule, [typeof i1.CarouselComponent, typeof i2.CarouselItemDirective, typeof i2.CarouselItemsDirective], [typeof i3.CommonModule], [typeof i1.CarouselComponent, typeof i2.CarouselItemDirective, typeof i2.CarouselItemsDirective]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<CarouselModule>;
12
+ }
@@ -1,50 +1,55 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- /**
4
- * `e-carousel-item` directive represent a item of the Angular Carousel.
5
- * It must be contained in a Carousel component(`ejs-carousel`).
6
- * ```html
7
- * <ejs-carousel>
8
- * <e-carousel-items>
9
- * <e-carousel-item template='#item1'></e-carousel-item>
10
- * <e-carousel-item template='#item2'></e-carousel-item>
11
- * </e-carousel-items>
12
- * </ejs-carousel>
13
- * ```
14
- */
15
- export declare class CarouselItemDirective extends ComplexBase<CarouselItemDirective> {
16
- private viewContainerRef;
17
- directivePropList: any;
18
- /**
19
- * Accepts single/multiple classes (separated by a space) to be used for individual carousel item customization.
20
- * @default null
21
- */
22
- cssClass: any;
23
- /**
24
- * Accepts HTML attributes/custom attributes to add in individual carousel item.
25
- * @default null
26
- */
27
- htmlAttributes: any;
28
- /**
29
- * Accepts the interval duration in milliseconds for individual carousel item transition.
30
- * @default null
31
- */
32
- interval: any;
33
- /**
34
- * Accepts the template for individual carousel item.
35
- * @default null
36
- * @angulartype string | object
37
- * @reacttype string | function | JSX.Element
38
- * @vuetype string | function
39
- * @asptype string
40
- */
41
- template: any;
42
- constructor(viewContainerRef: ViewContainerRef);
43
- }
44
- /**
45
- * CarouselItem Array Directive
46
- * @private
47
- */
48
- export declare class CarouselItemsDirective extends ArrayBase<CarouselItemsDirective> {
49
- constructor();
50
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * `e-carousel-item` directive represent a item of the Angular Carousel.
6
+ * It must be contained in a Carousel component(`ejs-carousel`).
7
+ * ```html
8
+ * <ejs-carousel>
9
+ * <e-carousel-items>
10
+ * <e-carousel-item template='#item1'></e-carousel-item>
11
+ * <e-carousel-item template='#item2'></e-carousel-item>
12
+ * </e-carousel-items>
13
+ * </ejs-carousel>
14
+ * ```
15
+ */
16
+ export declare class CarouselItemDirective extends ComplexBase<CarouselItemDirective> {
17
+ private viewContainerRef;
18
+ directivePropList: any;
19
+ /**
20
+ * Accepts single/multiple classes (separated by a space) to be used for individual carousel item customization.
21
+ * @default null
22
+ */
23
+ cssClass: any;
24
+ /**
25
+ * Accepts HTML attributes/custom attributes to add in individual carousel item.
26
+ * @default null
27
+ */
28
+ htmlAttributes: any;
29
+ /**
30
+ * Accepts the interval duration in milliseconds for individual carousel item transition.
31
+ * @default null
32
+ */
33
+ interval: any;
34
+ /**
35
+ * Accepts the template for individual carousel item.
36
+ * @default null
37
+ * @angulartype string | object
38
+ * @reacttype string | function | JSX.Element
39
+ * @vuetype string | function
40
+ * @asptype string
41
+ */
42
+ template: any;
43
+ constructor(viewContainerRef: ViewContainerRef);
44
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarouselItemDirective, never>;
45
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CarouselItemDirective, "ejs-carousel>e-carousel-items>e-carousel-item", never, { "cssClass": "cssClass"; "htmlAttributes": "htmlAttributes"; "interval": "interval"; "template": "template"; }, {}, ["template"]>;
46
+ }
47
+ /**
48
+ * CarouselItem Array Directive
49
+ * @private
50
+ */
51
+ export declare class CarouselItemsDirective extends ArrayBase<CarouselItemsDirective> {
52
+ constructor();
53
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarouselItemsDirective, never>;
54
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CarouselItemsDirective, "ejs-carousel>e-carousel-items", never, {}, {}, ["children"]>;
55
+ }
@@ -1,5 +1,11 @@
1
- /**
2
- * NgModule definition for the ContextMenu component with providers.
3
- */
4
- export declare class ContextMenuAllModule {
5
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "./contextmenu.module";
4
+ /**
5
+ * NgModule definition for the ContextMenu component with providers.
6
+ */
7
+ export declare class ContextMenuAllModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContextMenuAllModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ContextMenuAllModule, never, [typeof i1.CommonModule, typeof i2.ContextMenuModule], [typeof i2.ContextMenuModule]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<ContextMenuAllModule>;
11
+ }
@@ -1,35 +1,38 @@
1
- import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
2
- import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
- import { ContextMenu } from '@syncfusion/ej2-navigations';
4
- export declare const inputs: string[];
5
- export declare const outputs: string[];
6
- export declare const twoWays: string[];
7
- /**
8
- * Represents the EJ2 Angular ContextMenu Component.
9
- * ```html
10
- * <div id='target'>Right click / Touch hold to open the ContextMenu</div>
11
- * <ejs-contextmenu target='#target' [items]='menuItems'></ejs-contextmenu>
12
- * ```
13
- */
14
- export declare class ContextMenuComponent extends ContextMenu implements IComponentBase {
15
- private ngEle;
16
- private srenderer;
17
- private viewContainerRef;
18
- private injector;
19
- context: any;
20
- tagObjects: any;
21
- beforeClose: any;
22
- beforeItemRender: any;
23
- beforeOpen: any;
24
- created: any;
25
- onClose: any;
26
- onOpen: any;
27
- select: any;
28
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
29
- ngOnInit(): void;
30
- ngAfterViewInit(): void;
31
- ngOnDestroy(): void;
32
- ngAfterContentChecked(): void;
33
- registerEvents: (eventList: string[]) => void;
34
- addTwoWay: (propList: string[]) => void;
35
- }
1
+ import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
2
+ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
+ import { ContextMenu } from '@syncfusion/ej2-navigations';
4
+ import * as i0 from "@angular/core";
5
+ export declare const inputs: string[];
6
+ export declare const outputs: string[];
7
+ export declare const twoWays: string[];
8
+ /**
9
+ * Represents the EJ2 Angular ContextMenu Component.
10
+ * ```html
11
+ * <div id='target'>Right click / Touch hold to open the ContextMenu</div>
12
+ * <ejs-contextmenu target='#target' [items]='menuItems'></ejs-contextmenu>
13
+ * ```
14
+ */
15
+ export declare class ContextMenuComponent extends ContextMenu implements IComponentBase {
16
+ private ngEle;
17
+ private srenderer;
18
+ private viewContainerRef;
19
+ private injector;
20
+ context: any;
21
+ tagObjects: any;
22
+ beforeClose: any;
23
+ beforeItemRender: any;
24
+ beforeOpen: any;
25
+ created: any;
26
+ onClose: any;
27
+ onOpen: any;
28
+ select: any;
29
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
30
+ ngOnInit(): void;
31
+ ngAfterViewInit(): void;
32
+ ngOnDestroy(): void;
33
+ ngAfterContentChecked(): void;
34
+ registerEvents: (eventList: string[]) => void;
35
+ addTwoWay: (propList: string[]) => void;
36
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContextMenuComponent, never>;
37
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContextMenuComponent, "ejs-contextmenu", never, { "animationSettings": "animationSettings"; "cssClass": "cssClass"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "enableScrolling": "enableScrolling"; "fields": "fields"; "filter": "filter"; "hoverDelay": "hoverDelay"; "itemTemplate": "itemTemplate"; "items": "items"; "locale": "locale"; "showItemOnClick": "showItemOnClick"; "target": "target"; "template": "template"; }, { "beforeClose": "beforeClose"; "beforeItemRender": "beforeItemRender"; "beforeOpen": "beforeOpen"; "created": "created"; "onClose": "onClose"; "onOpen": "onOpen"; "select": "select"; }, never, never>;
38
+ }
@@ -1,5 +1,11 @@
1
- /**
2
- * NgModule definition for the ContextMenu component.
3
- */
4
- export declare class ContextMenuModule {
5
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./contextmenu.component";
3
+ import * as i2 from "@angular/common";
4
+ /**
5
+ * NgModule definition for the ContextMenu component.
6
+ */
7
+ export declare class ContextMenuModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContextMenuModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ContextMenuModule, [typeof i1.ContextMenuComponent], [typeof i2.CommonModule], [typeof i1.ContextMenuComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<ContextMenuModule>;
11
+ }
package/src/index.d.ts CHANGED
@@ -1,41 +1,41 @@
1
- export { AccordionItemDirective, AccordionItemsDirective } from './accordion/items.directive';
2
- export { AccordionComponent } from './accordion/accordion.component';
3
- export { AccordionModule } from './accordion/accordion.module';
4
- export { AccordionAllModule } from './accordion/accordion-all.module';
5
- export { ItemDirective, ItemsDirective } from './toolbar/items.directive';
6
- export { ToolbarComponent } from './toolbar/toolbar.component';
7
- export { ToolbarModule } from './toolbar/toolbar.module';
8
- export { ToolbarAllModule } from './toolbar/toolbar-all.module';
9
- export { ContextMenuComponent } from './context-menu/contextmenu.component';
10
- export { ContextMenuModule } from './context-menu/contextmenu.module';
11
- export { ContextMenuAllModule } from './context-menu/contextmenu-all.module';
12
- export { BreadcrumbItemDirective, BreadcrumbItemsDirective } from './breadcrumb/items.directive';
13
- export { BreadcrumbComponent } from './breadcrumb/breadcrumb.component';
14
- export { BreadcrumbModule } from './breadcrumb/breadcrumb.module';
15
- export { BreadcrumbAllModule } from './breadcrumb/breadcrumb-all.module';
16
- export { CarouselItemDirective, CarouselItemsDirective } from './carousel/items.directive';
17
- export { CarouselComponent } from './carousel/carousel.component';
18
- export { CarouselModule } from './carousel/carousel.module';
19
- export { CarouselAllModule } from './carousel/carousel-all.module';
20
- export { TabItemDirective, TabItemsDirective } from './tab/items.directive';
21
- export { TabComponent } from './tab/tab.component';
22
- export { TabModule } from './tab/tab.module';
23
- export { TabAllModule } from './tab/tab-all.module';
24
- export { TreeViewComponent } from './treeview/treeview.component';
25
- export { TreeViewModule } from './treeview/treeview.module';
26
- export { TreeViewAllModule } from './treeview/treeview-all.module';
27
- export { SidebarComponent } from './sidebar/sidebar.component';
28
- export { SidebarModule } from './sidebar/sidebar.module';
29
- export { SidebarAllModule } from './sidebar/sidebar-all.module';
30
- export { MenuItemDirective, MenuItemsDirective } from './menu/items.directive';
31
- export { MenuComponent } from './menu/menu.component';
32
- export { MenuModule } from './menu/menu.module';
33
- export { MenuAllModule } from './menu/menu-all.module';
34
- export { AppBarComponent } from './appbar/appbar.component';
35
- export { AppBarModule } from './appbar/appbar.module';
36
- export { AppBarAllModule } from './appbar/appbar-all.module';
37
- export { StepDirective, StepsDirective } from './stepper/steps.directive';
38
- export { StepperComponent } from './stepper/stepper.component';
39
- export { StepperModule } from './stepper/stepper.module';
40
- export { StepperAllModule } from './stepper/stepper-all.module';
41
- export * from '@syncfusion/ej2-navigations';
1
+ export { AccordionItemDirective, AccordionItemsDirective } from './accordion/items.directive';
2
+ export { AccordionComponent } from './accordion/accordion.component';
3
+ export { AccordionModule } from './accordion/accordion.module';
4
+ export { AccordionAllModule } from './accordion/accordion-all.module';
5
+ export { ItemDirective, ItemsDirective } from './toolbar/items.directive';
6
+ export { ToolbarComponent } from './toolbar/toolbar.component';
7
+ export { ToolbarModule } from './toolbar/toolbar.module';
8
+ export { ToolbarAllModule } from './toolbar/toolbar-all.module';
9
+ export { ContextMenuComponent } from './context-menu/contextmenu.component';
10
+ export { ContextMenuModule } from './context-menu/contextmenu.module';
11
+ export { ContextMenuAllModule } from './context-menu/contextmenu-all.module';
12
+ export { BreadcrumbItemDirective, BreadcrumbItemsDirective } from './breadcrumb/items.directive';
13
+ export { BreadcrumbComponent } from './breadcrumb/breadcrumb.component';
14
+ export { BreadcrumbModule } from './breadcrumb/breadcrumb.module';
15
+ export { BreadcrumbAllModule } from './breadcrumb/breadcrumb-all.module';
16
+ export { CarouselItemDirective, CarouselItemsDirective } from './carousel/items.directive';
17
+ export { CarouselComponent } from './carousel/carousel.component';
18
+ export { CarouselModule } from './carousel/carousel.module';
19
+ export { CarouselAllModule } from './carousel/carousel-all.module';
20
+ export { TabItemDirective, TabItemsDirective } from './tab/items.directive';
21
+ export { TabComponent } from './tab/tab.component';
22
+ export { TabModule } from './tab/tab.module';
23
+ export { TabAllModule } from './tab/tab-all.module';
24
+ export { TreeViewComponent } from './treeview/treeview.component';
25
+ export { TreeViewModule } from './treeview/treeview.module';
26
+ export { TreeViewAllModule } from './treeview/treeview-all.module';
27
+ export { SidebarComponent } from './sidebar/sidebar.component';
28
+ export { SidebarModule } from './sidebar/sidebar.module';
29
+ export { SidebarAllModule } from './sidebar/sidebar-all.module';
30
+ export { MenuItemDirective, MenuItemsDirective } from './menu/items.directive';
31
+ export { MenuComponent } from './menu/menu.component';
32
+ export { MenuModule } from './menu/menu.module';
33
+ export { MenuAllModule } from './menu/menu-all.module';
34
+ export { AppBarComponent } from './appbar/appbar.component';
35
+ export { AppBarModule } from './appbar/appbar.module';
36
+ export { AppBarAllModule } from './appbar/appbar-all.module';
37
+ export { StepDirective, StepsDirective } from './stepper/steps.directive';
38
+ export { StepperComponent } from './stepper/stepper.component';
39
+ export { StepperModule } from './stepper/stepper.module';
40
+ export { StepperAllModule } from './stepper/stepper-all.module';
41
+ export * from '@syncfusion/ej2-navigations';
@@ -1,50 +1,55 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- export declare class MenuItemDirective extends ComplexBase<MenuItemDirective> {
4
- private viewContainerRef;
5
- directivePropList: any;
6
- /**
7
- * Specifies the htmlAttributes property to support adding custom attributes to the menu items in the menu component.
8
- * @default null
9
- */
10
- htmlAttributes: any;
11
- /**
12
- * Defines class/multiple classes separated by a space for the menu Item that is used to include an icon.
13
- * Menu Item can include font icon and sprite image.
14
- * @default null
15
- */
16
- iconCss: any;
17
- /**
18
- * Specifies the id for menu item.
19
- * @default ''
20
- */
21
- id: any;
22
- /**
23
- * Specifies the sub menu items that is the array of MenuItem model.
24
- * @default []
25
- */
26
- items: any;
27
- /**
28
- * Specifies separator between the menu items. Separator are either horizontal or vertical lines used to group menu items.
29
- * @default false
30
- */
31
- separator: any;
32
- /**
33
- * Specifies text for menu item.
34
- * @default ''
35
- */
36
- text: any;
37
- /**
38
- * Specifies url for menu item that creates the anchor link to navigate to the url provided.
39
- * @default ''
40
- */
41
- url: any;
42
- constructor(viewContainerRef: ViewContainerRef);
43
- }
44
- /**
45
- * MenuItem Array Directive
46
- * @private
47
- */
48
- export declare class MenuItemsDirective extends ArrayBase<MenuItemsDirective> {
49
- constructor();
50
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ import * as i0 from "@angular/core";
4
+ export declare class MenuItemDirective extends ComplexBase<MenuItemDirective> {
5
+ private viewContainerRef;
6
+ directivePropList: any;
7
+ /**
8
+ * Specifies the htmlAttributes property to support adding custom attributes to the menu items in the menu component.
9
+ * @default null
10
+ */
11
+ htmlAttributes: any;
12
+ /**
13
+ * Defines class/multiple classes separated by a space for the menu Item that is used to include an icon.
14
+ * Menu Item can include font icon and sprite image.
15
+ * @default null
16
+ */
17
+ iconCss: any;
18
+ /**
19
+ * Specifies the id for menu item.
20
+ * @default ''
21
+ */
22
+ id: any;
23
+ /**
24
+ * Specifies the sub menu items that is the array of MenuItem model.
25
+ * @default []
26
+ */
27
+ items: any;
28
+ /**
29
+ * Specifies separator between the menu items. Separator are either horizontal or vertical lines used to group menu items.
30
+ * @default false
31
+ */
32
+ separator: any;
33
+ /**
34
+ * Specifies text for menu item.
35
+ * @default ''
36
+ */
37
+ text: any;
38
+ /**
39
+ * Specifies url for menu item that creates the anchor link to navigate to the url provided.
40
+ * @default ''
41
+ */
42
+ url: any;
43
+ constructor(viewContainerRef: ViewContainerRef);
44
+ static ɵfac: i0.ɵɵFactoryDeclaration<MenuItemDirective, never>;
45
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MenuItemDirective, "ejs-menu>e-menu-items>e-menu-item>", never, { "htmlAttributes": "htmlAttributes"; "iconCss": "iconCss"; "id": "id"; "items": "items"; "separator": "separator"; "text": "text"; "url": "url"; }, {}, never>;
46
+ }
47
+ /**
48
+ * MenuItem Array Directive
49
+ * @private
50
+ */
51
+ export declare class MenuItemsDirective extends ArrayBase<MenuItemsDirective> {
52
+ constructor();
53
+ static ɵfac: i0.ɵɵFactoryDeclaration<MenuItemsDirective, never>;
54
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MenuItemsDirective, "ejs-menu>e-menu-items", never, {}, {}, ["children"]>;
55
+ }
@@ -1,5 +1,11 @@
1
- /**
2
- * NgModule definition for the Menu component with providers.
3
- */
4
- export declare class MenuAllModule {
5
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "./menu.module";
4
+ /**
5
+ * NgModule definition for the Menu component with providers.
6
+ */
7
+ export declare class MenuAllModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<MenuAllModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MenuAllModule, never, [typeof i1.CommonModule, typeof i2.MenuModule], [typeof i2.MenuModule]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<MenuAllModule>;
11
+ }