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

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 +3112 -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 -2347
  436. package/dist/ej2-angular-navigations.umd.js.map +0 -1
  437. package/dist/ej2-angular-navigations.umd.min.js +0 -2
  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,2347 +0,0 @@
1
- (function (global, factory) {
2
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@syncfusion/ej2-angular-base'), require('@syncfusion/ej2-navigations'), require('@angular/common')) :
3
- typeof define === 'function' && define.amd ? define(['exports', '@angular/core', '@syncfusion/ej2-angular-base', '@syncfusion/ej2-navigations', '@angular/common'], factory) :
4
- (factory((global['ej2-angular-navigations'] = {}),global.ng.core,global.ej2.angular.base,global.ej2.navigations,global.ng.common));
5
- }(this, (function (exports,core,ej2AngularBase,ej2Navigations,common) { 'use strict';
6
-
7
- var __extends = (this && this.__extends) || (function () {
8
- var extendStatics = Object.setPrototypeOf ||
9
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
10
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
11
- return function (d, b) {
12
- extendStatics(d, b);
13
- function __() { this.constructor = d; }
14
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
- };
16
- })();
17
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
18
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
19
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
20
- r = Reflect.decorate(decorators, target, key, desc);
21
- else
22
- for (var i = decorators.length - 1; i >= 0; i--)
23
- if (d = decorators[i])
24
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
25
- return c > 3 && r && Object.defineProperty(target, key, r), r;
26
- };
27
- var __metadata = (this && this.__metadata) || function (k, v) {
28
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
29
- return Reflect.metadata(k, v);
30
- };
31
- var input = ['content', 'cssClass', 'disabled', 'expanded', 'header', 'iconCss', 'id', 'visible'];
32
- var outputs = [];
33
- /**
34
- * 'e-accordionitem' directive represent a item of the Angular Accordion.
35
- * It must be contained in a Accordion component(`ejs-accordion`).
36
- * ```html
37
- * <ejs-accordion>
38
- * <e-accordionitems>
39
- * <e-accordionitem header='Header1'></e-accordionitem>
40
- * <e-accordionitem header='Header2' content='Content2'></e-accordionitem>
41
- * </e-accordionitems>
42
- * </ejs-accordion>
43
- * ```
44
- */
45
- var AccordionItemDirective = /** @class */ (function (_super) {
46
- __extends(AccordionItemDirective, _super);
47
- /**
48
- * @param {?} viewContainerRef
49
- */
50
- function AccordionItemDirective(viewContainerRef) {
51
- var _this = _super.call(this) || this;
52
- _this.viewContainerRef = viewContainerRef;
53
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
54
- _this.registerEvents(outputs);
55
- _this.directivePropList = input;
56
- return _this;
57
- }
58
- return AccordionItemDirective;
59
- }(ej2AngularBase.ComplexBase));
60
- AccordionItemDirective.decorators = [
61
- { type: core.Directive, args: [{
62
- selector: 'e-accordionitems>e-accordionitem',
63
- inputs: input,
64
- outputs: outputs,
65
- queries: {}
66
- },] },
67
- ];
68
- /**
69
- * @nocollapse
70
- */
71
- AccordionItemDirective.ctorParameters = function () { return [
72
- { type: core.ViewContainerRef, },
73
- ]; };
74
- AccordionItemDirective.propDecorators = {
75
- 'header': [{ type: core.ContentChild, args: ['header',] },],
76
- 'content': [{ type: core.ContentChild, args: ['content',] },],
77
- };
78
- __decorate([
79
- ej2AngularBase.Template(),
80
- __metadata("design:type", Object)
81
- ], AccordionItemDirective.prototype, "header", void 0);
82
- __decorate([
83
- ej2AngularBase.Template(),
84
- __metadata("design:type", Object)
85
- ], AccordionItemDirective.prototype, "content", void 0);
86
- /**
87
- * AccordionItem Array Directive
88
- */
89
- var AccordionItemsDirective = /** @class */ (function (_super) {
90
- __extends(AccordionItemsDirective, _super);
91
- function AccordionItemsDirective() {
92
- return _super.call(this, 'items') || this;
93
- }
94
- return AccordionItemsDirective;
95
- }(ej2AngularBase.ArrayBase));
96
- AccordionItemsDirective.decorators = [
97
- { type: core.Directive, args: [{
98
- selector: 'ejs-accordion>e-accordionitems',
99
- queries: {
100
- children: new core.ContentChildren(AccordionItemDirective)
101
- },
102
- },] },
103
- ];
104
- /**
105
- * @nocollapse
106
- */
107
- AccordionItemsDirective.ctorParameters = function () { return []; };
108
- var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
109
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
110
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
111
- r = Reflect.decorate(decorators, target, key, desc);
112
- else
113
- for (var i = decorators.length - 1; i >= 0; i--)
114
- if (d = decorators[i])
115
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
116
- return c > 3 && r && Object.defineProperty(target, key, r), r;
117
- };
118
- var __metadata$1 = (this && this.__metadata) || function (k, v) {
119
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
120
- return Reflect.metadata(k, v);
121
- };
122
- var inputs = ['animation', 'dataSource', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'expandMode', 'expandedIndices', 'headerTemplate', 'height', 'itemTemplate', 'items', 'locale', 'width'];
123
- var outputs$1 = ['clicked', 'created', 'destroyed', 'expanded', 'expanding', 'expandedIndicesChange'];
124
- var twoWays = ['expandedIndices'];
125
- /**
126
- * Represents the Angular Accordion Component.
127
- * ```html
128
- * <ejs-accordion></ejs-accordion>
129
- * ```
130
- */
131
- exports.AccordionComponent = /** @class */ (function (_super) {
132
- __extends(AccordionComponent, _super);
133
- /**
134
- * @param {?} ngEle
135
- * @param {?} srenderer
136
- * @param {?} viewContainerRef
137
- * @param {?} injector
138
- */
139
- function AccordionComponent(ngEle, srenderer, viewContainerRef, injector) {
140
- var _this = _super.call(this) || this;
141
- _this.ngEle = ngEle;
142
- _this.srenderer = srenderer;
143
- _this.viewContainerRef = viewContainerRef;
144
- _this.injector = injector;
145
- _this.tags = ['items'];
146
- _this.element = _this.ngEle.nativeElement;
147
- _this.injectedModules = _this.injectedModules || [];
148
- _this.registerEvents(outputs$1);
149
- _this.addTwoWay.call(_this, twoWays);
150
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
151
- _this.containerContext = new ej2AngularBase.ComponentBase();
152
- return _this;
153
- }
154
- /**
155
- * @return {?}
156
- */
157
- AccordionComponent.prototype.ngOnInit = function () {
158
- this.containerContext.ngOnInit(this);
159
- };
160
- /**
161
- * @return {?}
162
- */
163
- AccordionComponent.prototype.ngAfterViewInit = function () {
164
- this.containerContext.ngAfterViewInit(this);
165
- };
166
- /**
167
- * @return {?}
168
- */
169
- AccordionComponent.prototype.ngOnDestroy = function () {
170
- this.containerContext.ngOnDestroy(this);
171
- };
172
- /**
173
- * @return {?}
174
- */
175
- AccordionComponent.prototype.ngAfterContentChecked = function () {
176
- this.tagObjects[0].instance = this.childItems;
177
- this.containerContext.ngAfterContentChecked(this);
178
- };
179
- return AccordionComponent;
180
- }(ej2Navigations.Accordion));
181
- exports.AccordionComponent.decorators = [
182
- { type: core.Component, args: [{
183
- selector: 'ejs-accordion',
184
- inputs: inputs,
185
- outputs: outputs$1,
186
- template: "<ng-content select='div'></ng-content>",
187
- changeDetection: core.ChangeDetectionStrategy.OnPush,
188
- queries: {
189
- childItems: new core.ContentChild(AccordionItemsDirective)
190
- }
191
- },] },
192
- ];
193
- /**
194
- * @nocollapse
195
- */
196
- exports.AccordionComponent.ctorParameters = function () { return [
197
- { type: core.ElementRef, },
198
- { type: core.Renderer2, },
199
- { type: core.ViewContainerRef, },
200
- { type: core.Injector, },
201
- ]; };
202
- exports.AccordionComponent.propDecorators = {
203
- 'headerTemplate': [{ type: core.ContentChild, args: ['headerTemplate',] },],
204
- 'itemTemplate': [{ type: core.ContentChild, args: ['itemTemplate',] },],
205
- };
206
- __decorate$1([
207
- ej2AngularBase.Template(),
208
- __metadata$1("design:type", Object)
209
- ], exports.AccordionComponent.prototype, "headerTemplate", void 0);
210
- __decorate$1([
211
- ej2AngularBase.Template(),
212
- __metadata$1("design:type", Object)
213
- ], exports.AccordionComponent.prototype, "itemTemplate", void 0);
214
- exports.AccordionComponent = __decorate$1([
215
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
216
- __metadata$1("design:paramtypes", [core.ElementRef,
217
- core.Renderer2,
218
- core.ViewContainerRef,
219
- core.Injector])
220
- ], exports.AccordionComponent);
221
- /**
222
- * NgModule definition for the Accordion component.
223
- */
224
- var AccordionModule = /** @class */ (function () {
225
- function AccordionModule() {
226
- }
227
- return AccordionModule;
228
- }());
229
- AccordionModule.decorators = [
230
- { type: core.NgModule, args: [{
231
- imports: [common.CommonModule],
232
- declarations: [
233
- exports.AccordionComponent,
234
- AccordionItemDirective,
235
- AccordionItemsDirective
236
- ],
237
- exports: [
238
- exports.AccordionComponent,
239
- AccordionItemDirective,
240
- AccordionItemsDirective
241
- ]
242
- },] },
243
- ];
244
- /**
245
- * @nocollapse
246
- */
247
- AccordionModule.ctorParameters = function () { return []; };
248
- /**
249
- * NgModule definition for the Accordion component with providers.
250
- */
251
- var AccordionAllModule = /** @class */ (function () {
252
- function AccordionAllModule() {
253
- }
254
- return AccordionAllModule;
255
- }());
256
- AccordionAllModule.decorators = [
257
- { type: core.NgModule, args: [{
258
- imports: [common.CommonModule, AccordionModule],
259
- exports: [
260
- AccordionModule
261
- ],
262
- providers: []
263
- },] },
264
- ];
265
- /**
266
- * @nocollapse
267
- */
268
- AccordionAllModule.ctorParameters = function () { return []; };
269
- var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
270
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
271
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
272
- r = Reflect.decorate(decorators, target, key, desc);
273
- else
274
- for (var i = decorators.length - 1; i >= 0; i--)
275
- if (d = decorators[i])
276
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
277
- return c > 3 && r && Object.defineProperty(target, key, r), r;
278
- };
279
- var __metadata$2 = (this && this.__metadata) || function (k, v) {
280
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
281
- return Reflect.metadata(k, v);
282
- };
283
- var input$1 = ['align', 'cssClass', 'disabled', 'htmlAttributes', 'id', 'overflow', 'prefixIcon', 'showAlwaysInPopup', 'showTextOn', 'suffixIcon', 'tabIndex', 'template', 'text', 'tooltipText', 'type', 'visible', 'width'];
284
- var outputs$2 = ['click'];
285
- /**
286
- * 'e-item' directive represent a item of the Angular Toolbar.
287
- * It must be contained in a Toolbar component(`ejs-toolbar`).
288
- * ```html
289
- * <ejs-toolbar>
290
- * <e-items>
291
- * <e-item text='Cut'></e-item>
292
- * <e-item text='Copy'></e-item>
293
- * </e-items>
294
- * </ejs-toolbar>
295
- * ```
296
- */
297
- var ItemDirective = /** @class */ (function (_super) {
298
- __extends(ItemDirective, _super);
299
- /**
300
- * @param {?} viewContainerRef
301
- */
302
- function ItemDirective(viewContainerRef) {
303
- var _this = _super.call(this) || this;
304
- _this.viewContainerRef = viewContainerRef;
305
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
306
- _this.registerEvents(outputs$2);
307
- _this.directivePropList = input$1;
308
- return _this;
309
- }
310
- return ItemDirective;
311
- }(ej2AngularBase.ComplexBase));
312
- ItemDirective.decorators = [
313
- { type: core.Directive, args: [{
314
- selector: 'e-items>e-item',
315
- inputs: input$1,
316
- outputs: outputs$2,
317
- queries: {}
318
- },] },
319
- ];
320
- /**
321
- * @nocollapse
322
- */
323
- ItemDirective.ctorParameters = function () { return [
324
- { type: core.ViewContainerRef, },
325
- ]; };
326
- ItemDirective.propDecorators = {
327
- 'template': [{ type: core.ContentChild, args: ['template',] },],
328
- };
329
- __decorate$2([
330
- ej2AngularBase.Template(),
331
- __metadata$2("design:type", Object)
332
- ], ItemDirective.prototype, "template", void 0);
333
- /**
334
- * Item Array Directive
335
- */
336
- var ItemsDirective = /** @class */ (function (_super) {
337
- __extends(ItemsDirective, _super);
338
- function ItemsDirective() {
339
- return _super.call(this, 'items') || this;
340
- }
341
- return ItemsDirective;
342
- }(ej2AngularBase.ArrayBase));
343
- ItemsDirective.decorators = [
344
- { type: core.Directive, args: [{
345
- selector: 'ejs-toolbar>e-items',
346
- queries: {
347
- children: new core.ContentChildren(ItemDirective)
348
- },
349
- },] },
350
- ];
351
- /**
352
- * @nocollapse
353
- */
354
- ItemsDirective.ctorParameters = function () { return []; };
355
- var __decorate$3 = (this && this.__decorate) || function (decorators, target, key, desc) {
356
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
357
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
358
- r = Reflect.decorate(decorators, target, key, desc);
359
- else
360
- for (var i = decorators.length - 1; i >= 0; i--)
361
- if (d = decorators[i])
362
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
363
- return c > 3 && r && Object.defineProperty(target, key, r), r;
364
- };
365
- var __metadata$3 = (this && this.__metadata) || function (k, v) {
366
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
367
- return Reflect.metadata(k, v);
368
- };
369
- var inputs$1 = ['allowKeyboard', 'cssClass', 'enableCollision', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'height', 'items', 'locale', 'overflowMode', 'scrollStep', 'width'];
370
- var outputs$3 = ['beforeCreate', 'clicked', 'created', 'destroyed', 'keyDown'];
371
- var twoWays$1 = [''];
372
- /**
373
- * Represents the Angular Toolbar Component.
374
- * ```html
375
- * <ejs-toolbar></ejs-toolbar>
376
- * ```
377
- */
378
- exports.ToolbarComponent = /** @class */ (function (_super) {
379
- __extends(ToolbarComponent, _super);
380
- /**
381
- * @param {?} ngEle
382
- * @param {?} srenderer
383
- * @param {?} viewContainerRef
384
- * @param {?} injector
385
- */
386
- function ToolbarComponent(ngEle, srenderer, viewContainerRef, injector) {
387
- var _this = _super.call(this) || this;
388
- _this.ngEle = ngEle;
389
- _this.srenderer = srenderer;
390
- _this.viewContainerRef = viewContainerRef;
391
- _this.injector = injector;
392
- _this.tags = ['items'];
393
- _this.element = _this.ngEle.nativeElement;
394
- _this.injectedModules = _this.injectedModules || [];
395
- _this.registerEvents(outputs$3);
396
- _this.addTwoWay.call(_this, twoWays$1);
397
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
398
- _this.containerContext = new ej2AngularBase.ComponentBase();
399
- return _this;
400
- }
401
- /**
402
- * @return {?}
403
- */
404
- ToolbarComponent.prototype.ngOnInit = function () {
405
- this.containerContext.ngOnInit(this);
406
- };
407
- /**
408
- * @return {?}
409
- */
410
- ToolbarComponent.prototype.ngAfterViewInit = function () {
411
- this.containerContext.ngAfterViewInit(this);
412
- };
413
- /**
414
- * @return {?}
415
- */
416
- ToolbarComponent.prototype.ngOnDestroy = function () {
417
- this.containerContext.ngOnDestroy(this);
418
- };
419
- /**
420
- * @return {?}
421
- */
422
- ToolbarComponent.prototype.ngAfterContentChecked = function () {
423
- this.tagObjects[0].instance = this.childItems;
424
- this.containerContext.ngAfterContentChecked(this);
425
- };
426
- return ToolbarComponent;
427
- }(ej2Navigations.Toolbar));
428
- exports.ToolbarComponent.decorators = [
429
- { type: core.Component, args: [{
430
- selector: 'ejs-toolbar',
431
- inputs: inputs$1,
432
- outputs: outputs$3,
433
- template: "<ng-content select='div'></ng-content>",
434
- changeDetection: core.ChangeDetectionStrategy.OnPush,
435
- queries: {
436
- childItems: new core.ContentChild(ItemsDirective)
437
- }
438
- },] },
439
- ];
440
- /**
441
- * @nocollapse
442
- */
443
- exports.ToolbarComponent.ctorParameters = function () { return [
444
- { type: core.ElementRef, },
445
- { type: core.Renderer2, },
446
- { type: core.ViewContainerRef, },
447
- { type: core.Injector, },
448
- ]; };
449
- exports.ToolbarComponent = __decorate$3([
450
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
451
- __metadata$3("design:paramtypes", [core.ElementRef,
452
- core.Renderer2,
453
- core.ViewContainerRef,
454
- core.Injector])
455
- ], exports.ToolbarComponent);
456
- /**
457
- * NgModule definition for the Toolbar component.
458
- */
459
- var ToolbarModule = /** @class */ (function () {
460
- function ToolbarModule() {
461
- }
462
- return ToolbarModule;
463
- }());
464
- ToolbarModule.decorators = [
465
- { type: core.NgModule, args: [{
466
- imports: [common.CommonModule],
467
- declarations: [
468
- exports.ToolbarComponent,
469
- ItemDirective,
470
- ItemsDirective
471
- ],
472
- exports: [
473
- exports.ToolbarComponent,
474
- ItemDirective,
475
- ItemsDirective
476
- ]
477
- },] },
478
- ];
479
- /**
480
- * @nocollapse
481
- */
482
- ToolbarModule.ctorParameters = function () { return []; };
483
- /**
484
- * NgModule definition for the Toolbar component with providers.
485
- */
486
- var ToolbarAllModule = /** @class */ (function () {
487
- function ToolbarAllModule() {
488
- }
489
- return ToolbarAllModule;
490
- }());
491
- ToolbarAllModule.decorators = [
492
- { type: core.NgModule, args: [{
493
- imports: [common.CommonModule, ToolbarModule],
494
- exports: [
495
- ToolbarModule
496
- ],
497
- providers: []
498
- },] },
499
- ];
500
- /**
501
- * @nocollapse
502
- */
503
- ToolbarAllModule.ctorParameters = function () { return []; };
504
- var __decorate$4 = (this && this.__decorate) || function (decorators, target, key, desc) {
505
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
506
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
507
- r = Reflect.decorate(decorators, target, key, desc);
508
- else
509
- for (var i = decorators.length - 1; i >= 0; i--)
510
- if (d = decorators[i])
511
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
512
- return c > 3 && r && Object.defineProperty(target, key, r), r;
513
- };
514
- var __metadata$4 = (this && this.__metadata) || function (k, v) {
515
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
516
- return Reflect.metadata(k, v);
517
- };
518
- var inputs$2 = ['animationSettings', 'cssClass', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enableScrolling', 'fields', 'filter', 'hoverDelay', 'itemTemplate', 'items', 'locale', 'showItemOnClick', 'target', 'template'];
519
- var outputs$4 = ['beforeClose', 'beforeItemRender', 'beforeOpen', 'created', 'onClose', 'onOpen', 'select'];
520
- var twoWays$2 = [''];
521
- /**
522
- * Represents the EJ2 Angular ContextMenu Component.
523
- * ```html
524
- * <div id='target'>Right click / Touch hold to open the ContextMenu</div>
525
- * <ejs-contextmenu target='#target' [items]='menuItems'></ejs-contextmenu>
526
- * ```
527
- */
528
- exports.ContextMenuComponent = /** @class */ (function (_super) {
529
- __extends(ContextMenuComponent, _super);
530
- /**
531
- * @param {?} ngEle
532
- * @param {?} srenderer
533
- * @param {?} viewContainerRef
534
- * @param {?} injector
535
- */
536
- function ContextMenuComponent(ngEle, srenderer, viewContainerRef, injector) {
537
- var _this = _super.call(this) || this;
538
- _this.ngEle = ngEle;
539
- _this.srenderer = srenderer;
540
- _this.viewContainerRef = viewContainerRef;
541
- _this.injector = injector;
542
- _this.element = _this.ngEle.nativeElement;
543
- _this.injectedModules = _this.injectedModules || [];
544
- _this.registerEvents(outputs$4);
545
- _this.addTwoWay.call(_this, twoWays$2);
546
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
547
- _this.context = new ej2AngularBase.ComponentBase();
548
- return _this;
549
- }
550
- /**
551
- * @return {?}
552
- */
553
- ContextMenuComponent.prototype.ngOnInit = function () {
554
- this.context.ngOnInit(this);
555
- };
556
- /**
557
- * @return {?}
558
- */
559
- ContextMenuComponent.prototype.ngAfterViewInit = function () {
560
- this.context.ngAfterViewInit(this);
561
- };
562
- /**
563
- * @return {?}
564
- */
565
- ContextMenuComponent.prototype.ngOnDestroy = function () {
566
- this.context.ngOnDestroy(this);
567
- };
568
- /**
569
- * @return {?}
570
- */
571
- ContextMenuComponent.prototype.ngAfterContentChecked = function () {
572
- this.context.ngAfterContentChecked(this);
573
- };
574
- return ContextMenuComponent;
575
- }(ej2Navigations.ContextMenu));
576
- exports.ContextMenuComponent.decorators = [
577
- { type: core.Component, args: [{
578
- selector: 'ejs-contextmenu',
579
- inputs: inputs$2,
580
- outputs: outputs$4,
581
- template: '',
582
- changeDetection: core.ChangeDetectionStrategy.OnPush,
583
- queries: {}
584
- },] },
585
- ];
586
- /**
587
- * @nocollapse
588
- */
589
- exports.ContextMenuComponent.ctorParameters = function () { return [
590
- { type: core.ElementRef, },
591
- { type: core.Renderer2, },
592
- { type: core.ViewContainerRef, },
593
- { type: core.Injector, },
594
- ]; };
595
- exports.ContextMenuComponent = __decorate$4([
596
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
597
- __metadata$4("design:paramtypes", [core.ElementRef,
598
- core.Renderer2,
599
- core.ViewContainerRef,
600
- core.Injector])
601
- ], exports.ContextMenuComponent);
602
- /**
603
- * NgModule definition for the ContextMenu component.
604
- */
605
- var ContextMenuModule = /** @class */ (function () {
606
- function ContextMenuModule() {
607
- }
608
- return ContextMenuModule;
609
- }());
610
- ContextMenuModule.decorators = [
611
- { type: core.NgModule, args: [{
612
- imports: [common.CommonModule],
613
- declarations: [
614
- exports.ContextMenuComponent
615
- ],
616
- exports: [
617
- exports.ContextMenuComponent
618
- ]
619
- },] },
620
- ];
621
- /**
622
- * @nocollapse
623
- */
624
- ContextMenuModule.ctorParameters = function () { return []; };
625
- /**
626
- * NgModule definition for the ContextMenu component with providers.
627
- */
628
- var ContextMenuAllModule = /** @class */ (function () {
629
- function ContextMenuAllModule() {
630
- }
631
- return ContextMenuAllModule;
632
- }());
633
- ContextMenuAllModule.decorators = [
634
- { type: core.NgModule, args: [{
635
- imports: [common.CommonModule, ContextMenuModule],
636
- exports: [
637
- ContextMenuModule
638
- ],
639
- providers: []
640
- },] },
641
- ];
642
- /**
643
- * @nocollapse
644
- */
645
- ContextMenuAllModule.ctorParameters = function () { return []; };
646
- var input$2 = ['disabled', 'iconCss', 'id', 'text', 'url'];
647
- var outputs$5 = [];
648
- /**
649
- * `e-breadcrumb-item` directive represent a item of the Angular Breadcrumb.
650
- * It must be contained in a Breadcrumb component(`ejs-breadcrumb`).
651
- * ```html
652
- * <ejs-breadcrumb>
653
- * <e-breadcrumb-items>
654
- * <e-breadcrumb-item text='Home' url='/'></e-breadcrumb-item>
655
- * <e-breadcrumb-item text='Index' url='./index'></e-breadcrumb-item>
656
- * </e-breadcrumb-items>
657
- * </ejs-breadcrumb>
658
- * ```
659
- */
660
- var BreadcrumbItemDirective = /** @class */ (function (_super) {
661
- __extends(BreadcrumbItemDirective, _super);
662
- /**
663
- * @param {?} viewContainerRef
664
- */
665
- function BreadcrumbItemDirective(viewContainerRef) {
666
- var _this = _super.call(this) || this;
667
- _this.viewContainerRef = viewContainerRef;
668
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
669
- _this.registerEvents(outputs$5);
670
- _this.directivePropList = input$2;
671
- return _this;
672
- }
673
- return BreadcrumbItemDirective;
674
- }(ej2AngularBase.ComplexBase));
675
- BreadcrumbItemDirective.decorators = [
676
- { type: core.Directive, args: [{
677
- selector: 'ejs-breadcrumb>e-breadcrumb-items>e-breadcrumb-item',
678
- inputs: input$2,
679
- outputs: outputs$5,
680
- queries: {}
681
- },] },
682
- ];
683
- /**
684
- * @nocollapse
685
- */
686
- BreadcrumbItemDirective.ctorParameters = function () { return [
687
- { type: core.ViewContainerRef, },
688
- ]; };
689
- /**
690
- * BreadcrumbItem Array Directive
691
- */
692
- var BreadcrumbItemsDirective = /** @class */ (function (_super) {
693
- __extends(BreadcrumbItemsDirective, _super);
694
- function BreadcrumbItemsDirective() {
695
- return _super.call(this, 'items') || this;
696
- }
697
- return BreadcrumbItemsDirective;
698
- }(ej2AngularBase.ArrayBase));
699
- BreadcrumbItemsDirective.decorators = [
700
- { type: core.Directive, args: [{
701
- selector: 'ejs-breadcrumb>e-breadcrumb-items',
702
- queries: {
703
- children: new core.ContentChildren(BreadcrumbItemDirective)
704
- },
705
- },] },
706
- ];
707
- /**
708
- * @nocollapse
709
- */
710
- BreadcrumbItemsDirective.ctorParameters = function () { return []; };
711
- var __decorate$5 = (this && this.__decorate) || function (decorators, target, key, desc) {
712
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
713
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
714
- r = Reflect.decorate(decorators, target, key, desc);
715
- else
716
- for (var i = decorators.length - 1; i >= 0; i--)
717
- if (d = decorators[i])
718
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
719
- return c > 3 && r && Object.defineProperty(target, key, r), r;
720
- };
721
- var __metadata$5 = (this && this.__metadata) || function (k, v) {
722
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
723
- return Reflect.metadata(k, v);
724
- };
725
- var inputs$3 = ['activeItem', 'cssClass', 'disabled', 'enableActiveItemNavigation', 'enableNavigation', 'enablePersistence', 'enableRtl', 'itemTemplate', 'items', 'locale', 'maxItems', 'overflowMode', 'separatorTemplate', 'url'];
726
- var outputs$6 = ['beforeItemRender', 'created', 'itemClick', 'activeItemChange'];
727
- var twoWays$3 = ['activeItem'];
728
- /**
729
- * Represents the EJ2 Angular Breadcrumb Component.
730
- * ```html
731
- * <ejs-breadcrumb [items]='breadcrumbItems'></ejs-breadcrumb>
732
- * ```
733
- */
734
- exports.BreadcrumbComponent = /** @class */ (function (_super) {
735
- __extends(BreadcrumbComponent, _super);
736
- /**
737
- * @param {?} ngEle
738
- * @param {?} srenderer
739
- * @param {?} viewContainerRef
740
- * @param {?} injector
741
- */
742
- function BreadcrumbComponent(ngEle, srenderer, viewContainerRef, injector) {
743
- var _this = _super.call(this) || this;
744
- _this.ngEle = ngEle;
745
- _this.srenderer = srenderer;
746
- _this.viewContainerRef = viewContainerRef;
747
- _this.injector = injector;
748
- _this.tags = ['items'];
749
- _this.element = _this.ngEle.nativeElement;
750
- _this.injectedModules = _this.injectedModules || [];
751
- _this.registerEvents(outputs$6);
752
- _this.addTwoWay.call(_this, twoWays$3);
753
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
754
- _this.context = new ej2AngularBase.ComponentBase();
755
- return _this;
756
- }
757
- /**
758
- * @return {?}
759
- */
760
- BreadcrumbComponent.prototype.ngOnInit = function () {
761
- this.context.ngOnInit(this);
762
- };
763
- /**
764
- * @return {?}
765
- */
766
- BreadcrumbComponent.prototype.ngAfterViewInit = function () {
767
- this.context.ngAfterViewInit(this);
768
- };
769
- /**
770
- * @return {?}
771
- */
772
- BreadcrumbComponent.prototype.ngOnDestroy = function () {
773
- this.context.ngOnDestroy(this);
774
- };
775
- /**
776
- * @return {?}
777
- */
778
- BreadcrumbComponent.prototype.ngAfterContentChecked = function () {
779
- this.tagObjects[0].instance = this.childItems;
780
- this.context.ngAfterContentChecked(this);
781
- };
782
- return BreadcrumbComponent;
783
- }(ej2Navigations.Breadcrumb));
784
- exports.BreadcrumbComponent.decorators = [
785
- { type: core.Component, args: [{
786
- selector: 'ejs-breadcrumb',
787
- inputs: inputs$3,
788
- outputs: outputs$6,
789
- template: '',
790
- changeDetection: core.ChangeDetectionStrategy.OnPush,
791
- queries: {
792
- childItems: new core.ContentChild(BreadcrumbItemsDirective)
793
- }
794
- },] },
795
- ];
796
- /**
797
- * @nocollapse
798
- */
799
- exports.BreadcrumbComponent.ctorParameters = function () { return [
800
- { type: core.ElementRef, },
801
- { type: core.Renderer2, },
802
- { type: core.ViewContainerRef, },
803
- { type: core.Injector, },
804
- ]; };
805
- exports.BreadcrumbComponent.propDecorators = {
806
- 'separatorTemplate': [{ type: core.ContentChild, args: ['separatorTemplate',] },],
807
- 'itemTemplate': [{ type: core.ContentChild, args: ['itemTemplate',] },],
808
- };
809
- __decorate$5([
810
- ej2AngularBase.Template(),
811
- __metadata$5("design:type", Object)
812
- ], exports.BreadcrumbComponent.prototype, "separatorTemplate", void 0);
813
- __decorate$5([
814
- ej2AngularBase.Template(),
815
- __metadata$5("design:type", Object)
816
- ], exports.BreadcrumbComponent.prototype, "itemTemplate", void 0);
817
- exports.BreadcrumbComponent = __decorate$5([
818
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
819
- __metadata$5("design:paramtypes", [core.ElementRef,
820
- core.Renderer2,
821
- core.ViewContainerRef,
822
- core.Injector])
823
- ], exports.BreadcrumbComponent);
824
- /**
825
- * NgModule definition for the Breadcrumb component.
826
- */
827
- var BreadcrumbModule = /** @class */ (function () {
828
- function BreadcrumbModule() {
829
- }
830
- return BreadcrumbModule;
831
- }());
832
- BreadcrumbModule.decorators = [
833
- { type: core.NgModule, args: [{
834
- imports: [common.CommonModule],
835
- declarations: [
836
- exports.BreadcrumbComponent,
837
- BreadcrumbItemDirective,
838
- BreadcrumbItemsDirective
839
- ],
840
- exports: [
841
- exports.BreadcrumbComponent,
842
- BreadcrumbItemDirective,
843
- BreadcrumbItemsDirective
844
- ]
845
- },] },
846
- ];
847
- /**
848
- * @nocollapse
849
- */
850
- BreadcrumbModule.ctorParameters = function () { return []; };
851
- /**
852
- * NgModule definition for the Breadcrumb component with providers.
853
- */
854
- var BreadcrumbAllModule = /** @class */ (function () {
855
- function BreadcrumbAllModule() {
856
- }
857
- return BreadcrumbAllModule;
858
- }());
859
- BreadcrumbAllModule.decorators = [
860
- { type: core.NgModule, args: [{
861
- imports: [common.CommonModule, BreadcrumbModule],
862
- exports: [
863
- BreadcrumbModule
864
- ],
865
- providers: []
866
- },] },
867
- ];
868
- /**
869
- * @nocollapse
870
- */
871
- BreadcrumbAllModule.ctorParameters = function () { return []; };
872
- var __decorate$6 = (this && this.__decorate) || function (decorators, target, key, desc) {
873
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
874
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
875
- r = Reflect.decorate(decorators, target, key, desc);
876
- else
877
- for (var i = decorators.length - 1; i >= 0; i--)
878
- if (d = decorators[i])
879
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
880
- return c > 3 && r && Object.defineProperty(target, key, r), r;
881
- };
882
- var __metadata$6 = (this && this.__metadata) || function (k, v) {
883
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
884
- return Reflect.metadata(k, v);
885
- };
886
- var input$3 = ['cssClass', 'htmlAttributes', 'interval', 'template'];
887
- var outputs$7 = [];
888
- /**
889
- * `e-carousel-item` directive represent a item of the Angular Carousel.
890
- * It must be contained in a Carousel component(`ejs-carousel`).
891
- * ```html
892
- * <ejs-carousel>
893
- * <e-carousel-items>
894
- * <e-carousel-item template='#item1'></e-carousel-item>
895
- * <e-carousel-item template='#item2'></e-carousel-item>
896
- * </e-carousel-items>
897
- * </ejs-carousel>
898
- * ```
899
- */
900
- var CarouselItemDirective = /** @class */ (function (_super) {
901
- __extends(CarouselItemDirective, _super);
902
- /**
903
- * @param {?} viewContainerRef
904
- */
905
- function CarouselItemDirective(viewContainerRef) {
906
- var _this = _super.call(this) || this;
907
- _this.viewContainerRef = viewContainerRef;
908
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
909
- _this.registerEvents(outputs$7);
910
- _this.directivePropList = input$3;
911
- return _this;
912
- }
913
- return CarouselItemDirective;
914
- }(ej2AngularBase.ComplexBase));
915
- CarouselItemDirective.decorators = [
916
- { type: core.Directive, args: [{
917
- selector: 'ejs-carousel>e-carousel-items>e-carousel-item',
918
- inputs: input$3,
919
- outputs: outputs$7,
920
- queries: {}
921
- },] },
922
- ];
923
- /**
924
- * @nocollapse
925
- */
926
- CarouselItemDirective.ctorParameters = function () { return [
927
- { type: core.ViewContainerRef, },
928
- ]; };
929
- CarouselItemDirective.propDecorators = {
930
- 'template': [{ type: core.ContentChild, args: ['template',] },],
931
- };
932
- __decorate$6([
933
- ej2AngularBase.Template(),
934
- __metadata$6("design:type", Object)
935
- ], CarouselItemDirective.prototype, "template", void 0);
936
- /**
937
- * CarouselItem Array Directive
938
- */
939
- var CarouselItemsDirective = /** @class */ (function (_super) {
940
- __extends(CarouselItemsDirective, _super);
941
- function CarouselItemsDirective() {
942
- return _super.call(this, 'items') || this;
943
- }
944
- return CarouselItemsDirective;
945
- }(ej2AngularBase.ArrayBase));
946
- CarouselItemsDirective.decorators = [
947
- { type: core.Directive, args: [{
948
- selector: 'ejs-carousel>e-carousel-items',
949
- queries: {
950
- children: new core.ContentChildren(CarouselItemDirective)
951
- },
952
- },] },
953
- ];
954
- /**
955
- * @nocollapse
956
- */
957
- CarouselItemsDirective.ctorParameters = function () { return []; };
958
- var __decorate$7 = (this && this.__decorate) || function (decorators, target, key, desc) {
959
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
960
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
961
- r = Reflect.decorate(decorators, target, key, desc);
962
- else
963
- for (var i = decorators.length - 1; i >= 0; i--)
964
- if (d = decorators[i])
965
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
966
- return c > 3 && r && Object.defineProperty(target, key, r), r;
967
- };
968
- var __metadata$7 = (this && this.__metadata) || function (k, v) {
969
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
970
- return Reflect.metadata(k, v);
971
- };
972
- var inputs$4 = ['allowKeyboardInteraction', 'animationEffect', 'autoPlay', 'buttonsVisibility', 'cssClass', 'dataSource', 'enablePersistence', 'enableRtl', 'enableTouchSwipe', 'height', 'htmlAttributes', 'indicatorsTemplate', 'indicatorsType', 'interval', 'itemTemplate', 'items', 'locale', 'loop', 'nextButtonTemplate', 'partialVisible', 'pauseOnHover', 'playButtonTemplate', 'previousButtonTemplate', 'selectedIndex', 'showIndicators', 'showPlayButton', 'swipeMode', 'width'];
973
- var outputs$8 = ['slideChanged', 'slideChanging', 'selectedIndexChange'];
974
- var twoWays$4 = ['selectedIndex'];
975
- /**
976
- * Represents the EJ2 Angular Carousel Component.
977
- * ```html
978
- * <ejs-carousel [items]='carouselItems'></ejs-carousel>
979
- * ```
980
- */
981
- exports.CarouselComponent = /** @class */ (function (_super) {
982
- __extends(CarouselComponent, _super);
983
- /**
984
- * @param {?} ngEle
985
- * @param {?} srenderer
986
- * @param {?} viewContainerRef
987
- * @param {?} injector
988
- */
989
- function CarouselComponent(ngEle, srenderer, viewContainerRef, injector) {
990
- var _this = _super.call(this) || this;
991
- _this.ngEle = ngEle;
992
- _this.srenderer = srenderer;
993
- _this.viewContainerRef = viewContainerRef;
994
- _this.injector = injector;
995
- _this.tags = ['items'];
996
- _this.element = _this.ngEle.nativeElement;
997
- _this.injectedModules = _this.injectedModules || [];
998
- _this.registerEvents(outputs$8);
999
- _this.addTwoWay.call(_this, twoWays$4);
1000
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
1001
- _this.context = new ej2AngularBase.ComponentBase();
1002
- return _this;
1003
- }
1004
- /**
1005
- * @return {?}
1006
- */
1007
- CarouselComponent.prototype.ngOnInit = function () {
1008
- this.context.ngOnInit(this);
1009
- };
1010
- /**
1011
- * @return {?}
1012
- */
1013
- CarouselComponent.prototype.ngAfterViewInit = function () {
1014
- this.context.ngAfterViewInit(this);
1015
- };
1016
- /**
1017
- * @return {?}
1018
- */
1019
- CarouselComponent.prototype.ngOnDestroy = function () {
1020
- this.context.ngOnDestroy(this);
1021
- };
1022
- /**
1023
- * @return {?}
1024
- */
1025
- CarouselComponent.prototype.ngAfterContentChecked = function () {
1026
- this.tagObjects[0].instance = this.childItems;
1027
- this.context.ngAfterContentChecked(this);
1028
- };
1029
- return CarouselComponent;
1030
- }(ej2Navigations.Carousel));
1031
- exports.CarouselComponent.decorators = [
1032
- { type: core.Component, args: [{
1033
- selector: 'ejs-carousel',
1034
- inputs: inputs$4,
1035
- outputs: outputs$8,
1036
- template: '',
1037
- changeDetection: core.ChangeDetectionStrategy.OnPush,
1038
- queries: {
1039
- childItems: new core.ContentChild(CarouselItemsDirective)
1040
- }
1041
- },] },
1042
- ];
1043
- /**
1044
- * @nocollapse
1045
- */
1046
- exports.CarouselComponent.ctorParameters = function () { return [
1047
- { type: core.ElementRef, },
1048
- { type: core.Renderer2, },
1049
- { type: core.ViewContainerRef, },
1050
- { type: core.Injector, },
1051
- ]; };
1052
- exports.CarouselComponent.propDecorators = {
1053
- 'indicatorsTemplate': [{ type: core.ContentChild, args: ['indicatorsTemplate',] },],
1054
- 'nextButtonTemplate': [{ type: core.ContentChild, args: ['nextButtonTemplate',] },],
1055
- 'previousButtonTemplate': [{ type: core.ContentChild, args: ['previousButtonTemplate',] },],
1056
- 'playButtonTemplate': [{ type: core.ContentChild, args: ['playButtonTemplate',] },],
1057
- 'itemTemplate': [{ type: core.ContentChild, args: ['itemTemplate',] },],
1058
- };
1059
- __decorate$7([
1060
- ej2AngularBase.Template(),
1061
- __metadata$7("design:type", Object)
1062
- ], exports.CarouselComponent.prototype, "indicatorsTemplate", void 0);
1063
- __decorate$7([
1064
- ej2AngularBase.Template(),
1065
- __metadata$7("design:type", Object)
1066
- ], exports.CarouselComponent.prototype, "nextButtonTemplate", void 0);
1067
- __decorate$7([
1068
- ej2AngularBase.Template(),
1069
- __metadata$7("design:type", Object)
1070
- ], exports.CarouselComponent.prototype, "previousButtonTemplate", void 0);
1071
- __decorate$7([
1072
- ej2AngularBase.Template(),
1073
- __metadata$7("design:type", Object)
1074
- ], exports.CarouselComponent.prototype, "playButtonTemplate", void 0);
1075
- __decorate$7([
1076
- ej2AngularBase.Template(),
1077
- __metadata$7("design:type", Object)
1078
- ], exports.CarouselComponent.prototype, "itemTemplate", void 0);
1079
- exports.CarouselComponent = __decorate$7([
1080
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
1081
- __metadata$7("design:paramtypes", [core.ElementRef,
1082
- core.Renderer2,
1083
- core.ViewContainerRef,
1084
- core.Injector])
1085
- ], exports.CarouselComponent);
1086
- /**
1087
- * NgModule definition for the Carousel component.
1088
- */
1089
- var CarouselModule = /** @class */ (function () {
1090
- function CarouselModule() {
1091
- }
1092
- return CarouselModule;
1093
- }());
1094
- CarouselModule.decorators = [
1095
- { type: core.NgModule, args: [{
1096
- imports: [common.CommonModule],
1097
- declarations: [
1098
- exports.CarouselComponent,
1099
- CarouselItemDirective,
1100
- CarouselItemsDirective
1101
- ],
1102
- exports: [
1103
- exports.CarouselComponent,
1104
- CarouselItemDirective,
1105
- CarouselItemsDirective
1106
- ]
1107
- },] },
1108
- ];
1109
- /**
1110
- * @nocollapse
1111
- */
1112
- CarouselModule.ctorParameters = function () { return []; };
1113
- /**
1114
- * NgModule definition for the Carousel component with providers.
1115
- */
1116
- var CarouselAllModule = /** @class */ (function () {
1117
- function CarouselAllModule() {
1118
- }
1119
- return CarouselAllModule;
1120
- }());
1121
- CarouselAllModule.decorators = [
1122
- { type: core.NgModule, args: [{
1123
- imports: [common.CommonModule, CarouselModule],
1124
- exports: [
1125
- CarouselModule
1126
- ],
1127
- providers: []
1128
- },] },
1129
- ];
1130
- /**
1131
- * @nocollapse
1132
- */
1133
- CarouselAllModule.ctorParameters = function () { return []; };
1134
- var __decorate$8 = (this && this.__decorate) || function (decorators, target, key, desc) {
1135
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
1136
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
1137
- r = Reflect.decorate(decorators, target, key, desc);
1138
- else
1139
- for (var i = decorators.length - 1; i >= 0; i--)
1140
- if (d = decorators[i])
1141
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
1142
- return c > 3 && r && Object.defineProperty(target, key, r), r;
1143
- };
1144
- var __metadata$8 = (this && this.__metadata) || function (k, v) {
1145
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
1146
- return Reflect.metadata(k, v);
1147
- };
1148
- var input$4 = ['content', 'cssClass', 'disabled', 'header', 'headerTemplate', 'id', 'tabIndex', 'visible'];
1149
- var outputs$9 = [];
1150
- /**
1151
- * 'e-tabitem' directive represent a item of the Angular Tab.
1152
- * It must be contained in a Tab component(`ejs-tab`).
1153
- * ```html
1154
- * <ejs-tab>
1155
- * <e-tabitems>
1156
- * <e-tabitem [header]='Header 1' [content]='Content 1'></e-tabitem>
1157
- * <e-tabitem [header]='Header 2' [content]='Content 2'></e-tabitem>
1158
- * <e-tabitems>
1159
- * </ejs-tab>
1160
- * ```
1161
- */
1162
- var TabItemDirective = /** @class */ (function (_super) {
1163
- __extends(TabItemDirective, _super);
1164
- /**
1165
- * @param {?} viewContainerRef
1166
- */
1167
- function TabItemDirective(viewContainerRef) {
1168
- var _this = _super.call(this) || this;
1169
- _this.viewContainerRef = viewContainerRef;
1170
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
1171
- _this.registerEvents(outputs$9);
1172
- _this.directivePropList = input$4;
1173
- return _this;
1174
- }
1175
- return TabItemDirective;
1176
- }(ej2AngularBase.ComplexBase));
1177
- TabItemDirective.decorators = [
1178
- { type: core.Directive, args: [{
1179
- selector: 'e-tabitems>e-tabitem',
1180
- inputs: input$4,
1181
- outputs: outputs$9,
1182
- queries: {}
1183
- },] },
1184
- ];
1185
- /**
1186
- * @nocollapse
1187
- */
1188
- TabItemDirective.ctorParameters = function () { return [
1189
- { type: core.ViewContainerRef, },
1190
- ]; };
1191
- TabItemDirective.propDecorators = {
1192
- 'content': [{ type: core.ContentChild, args: ['content',] },],
1193
- 'header_text': [{ type: core.ContentChild, args: ['headerText',] },],
1194
- 'headerTemplate': [{ type: core.ContentChild, args: ['headerTemplate',] },],
1195
- };
1196
- __decorate$8([
1197
- ej2AngularBase.Template(),
1198
- __metadata$8("design:type", Object)
1199
- ], TabItemDirective.prototype, "content", void 0);
1200
- __decorate$8([
1201
- ej2AngularBase.Template(),
1202
- __metadata$8("design:type", Object)
1203
- ], TabItemDirective.prototype, "header_text", void 0);
1204
- __decorate$8([
1205
- ej2AngularBase.Template(),
1206
- __metadata$8("design:type", Object)
1207
- ], TabItemDirective.prototype, "headerTemplate", void 0);
1208
- /**
1209
- * TabItem Array Directive
1210
- */
1211
- var TabItemsDirective = /** @class */ (function (_super) {
1212
- __extends(TabItemsDirective, _super);
1213
- function TabItemsDirective() {
1214
- return _super.call(this, 'items') || this;
1215
- }
1216
- return TabItemsDirective;
1217
- }(ej2AngularBase.ArrayBase));
1218
- TabItemsDirective.decorators = [
1219
- { type: core.Directive, args: [{
1220
- selector: 'ejs-tab>e-tabitems',
1221
- queries: {
1222
- children: new core.ContentChildren(TabItemDirective)
1223
- },
1224
- },] },
1225
- ];
1226
- /**
1227
- * @nocollapse
1228
- */
1229
- TabItemsDirective.ctorParameters = function () { return []; };
1230
- var __decorate$9 = (this && this.__decorate) || function (decorators, target, key, desc) {
1231
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
1232
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
1233
- r = Reflect.decorate(decorators, target, key, desc);
1234
- else
1235
- for (var i = decorators.length - 1; i >= 0; i--)
1236
- if (d = decorators[i])
1237
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
1238
- return c > 3 && r && Object.defineProperty(target, key, r), r;
1239
- };
1240
- var __metadata$9 = (this && this.__metadata) || function (k, v) {
1241
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
1242
- return Reflect.metadata(k, v);
1243
- };
1244
- var inputs$5 = ['allowDragAndDrop', 'animation', 'clearTemplates', 'cssClass', 'dragArea', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'headerPlacement', 'height', 'heightAdjustMode', 'items', 'loadOn', 'locale', 'overflowMode', 'reorderActiveTab', 'scrollStep', 'selectedItem', 'showCloseButton', 'swipeMode', 'width'];
1245
- var outputs$10 = ['added', 'adding', 'created', 'destroyed', 'dragged', 'dragging', 'onDragStart', 'removed', 'removing', 'selected', 'selecting'];
1246
- var twoWays$5 = [''];
1247
- /**
1248
- * Represents the Angular Tab Component.
1249
- * ```html
1250
- * <ejs-tab></ejs-tab>
1251
- * ```
1252
- */
1253
- exports.TabComponent = /** @class */ (function (_super) {
1254
- __extends(TabComponent, _super);
1255
- /**
1256
- * @param {?} ngEle
1257
- * @param {?} srenderer
1258
- * @param {?} viewContainerRef
1259
- * @param {?} injector
1260
- */
1261
- function TabComponent(ngEle, srenderer, viewContainerRef, injector) {
1262
- var _this = _super.call(this) || this;
1263
- _this.ngEle = ngEle;
1264
- _this.srenderer = srenderer;
1265
- _this.viewContainerRef = viewContainerRef;
1266
- _this.injector = injector;
1267
- _this.tags = ['items'];
1268
- _this.element = _this.ngEle.nativeElement;
1269
- _this.injectedModules = _this.injectedModules || [];
1270
- _this.registerEvents(outputs$10);
1271
- _this.addTwoWay.call(_this, twoWays$5);
1272
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
1273
- _this.containerContext = new ej2AngularBase.ComponentBase();
1274
- return _this;
1275
- }
1276
- /**
1277
- * @return {?}
1278
- */
1279
- TabComponent.prototype.ngOnInit = function () {
1280
- this.containerContext.ngOnInit(this);
1281
- };
1282
- /**
1283
- * @return {?}
1284
- */
1285
- TabComponent.prototype.ngAfterViewInit = function () {
1286
- this.containerContext.ngAfterViewInit(this);
1287
- };
1288
- /**
1289
- * @return {?}
1290
- */
1291
- TabComponent.prototype.ngOnDestroy = function () {
1292
- this.containerContext.ngOnDestroy(this);
1293
- };
1294
- /**
1295
- * @return {?}
1296
- */
1297
- TabComponent.prototype.ngAfterContentChecked = function () {
1298
- this.tagObjects[0].instance = this.childItems;
1299
- this.containerContext.ngAfterContentChecked(this);
1300
- };
1301
- return TabComponent;
1302
- }(ej2Navigations.Tab));
1303
- exports.TabComponent.decorators = [
1304
- { type: core.Component, args: [{
1305
- selector: 'ejs-tab',
1306
- inputs: inputs$5,
1307
- outputs: outputs$10,
1308
- template: "<ng-content select='div'></ng-content>",
1309
- changeDetection: core.ChangeDetectionStrategy.OnPush,
1310
- queries: {
1311
- childItems: new core.ContentChild(TabItemsDirective)
1312
- }
1313
- },] },
1314
- ];
1315
- /**
1316
- * @nocollapse
1317
- */
1318
- exports.TabComponent.ctorParameters = function () { return [
1319
- { type: core.ElementRef, },
1320
- { type: core.Renderer2, },
1321
- { type: core.ViewContainerRef, },
1322
- { type: core.Injector, },
1323
- ]; };
1324
- exports.TabComponent = __decorate$9([
1325
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
1326
- __metadata$9("design:paramtypes", [core.ElementRef,
1327
- core.Renderer2,
1328
- core.ViewContainerRef,
1329
- core.Injector])
1330
- ], exports.TabComponent);
1331
- /**
1332
- * NgModule definition for the Tab component.
1333
- */
1334
- var TabModule = /** @class */ (function () {
1335
- function TabModule() {
1336
- }
1337
- return TabModule;
1338
- }());
1339
- TabModule.decorators = [
1340
- { type: core.NgModule, args: [{
1341
- imports: [common.CommonModule],
1342
- declarations: [
1343
- exports.TabComponent,
1344
- TabItemDirective,
1345
- TabItemsDirective
1346
- ],
1347
- exports: [
1348
- exports.TabComponent,
1349
- TabItemDirective,
1350
- TabItemsDirective
1351
- ]
1352
- },] },
1353
- ];
1354
- /**
1355
- * @nocollapse
1356
- */
1357
- TabModule.ctorParameters = function () { return []; };
1358
- /**
1359
- * NgModule definition for the Tab component with providers.
1360
- */
1361
- var TabAllModule = /** @class */ (function () {
1362
- function TabAllModule() {
1363
- }
1364
- return TabAllModule;
1365
- }());
1366
- TabAllModule.decorators = [
1367
- { type: core.NgModule, args: [{
1368
- imports: [common.CommonModule, TabModule],
1369
- exports: [
1370
- TabModule
1371
- ],
1372
- providers: []
1373
- },] },
1374
- ];
1375
- /**
1376
- * @nocollapse
1377
- */
1378
- TabAllModule.ctorParameters = function () { return []; };
1379
- var __decorate$10 = (this && this.__decorate) || function (decorators, target, key, desc) {
1380
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
1381
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
1382
- r = Reflect.decorate(decorators, target, key, desc);
1383
- else
1384
- for (var i = decorators.length - 1; i >= 0; i--)
1385
- if (d = decorators[i])
1386
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
1387
- return c > 3 && r && Object.defineProperty(target, key, r), r;
1388
- };
1389
- var __metadata$10 = (this && this.__metadata) || function (k, v) {
1390
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
1391
- return Reflect.metadata(k, v);
1392
- };
1393
- var inputs$6 = ['allowDragAndDrop', 'allowEditing', 'allowMultiSelection', 'allowTextWrap', 'animation', 'autoCheck', 'checkDisabledChildren', 'checkOnClick', 'checkedNodes', 'cssClass', 'disabled', 'dragArea', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'expandOn', 'expandedNodes', 'fields', 'fullRowNavigable', 'fullRowSelect', 'loadOnDemand', 'locale', 'nodeTemplate', 'selectedNodes', 'showCheckBox', 'sortOrder'];
1394
- var outputs$11 = ['actionFailure', 'created', 'dataBound', 'dataSourceChanged', 'destroyed', 'drawNode', 'keyPress', 'nodeChecked', 'nodeChecking', 'nodeClicked', 'nodeCollapsed', 'nodeCollapsing', 'nodeDragStart', 'nodeDragStop', 'nodeDragging', 'nodeDropped', 'nodeEdited', 'nodeEditing', 'nodeExpanded', 'nodeExpanding', 'nodeSelected', 'nodeSelecting'];
1395
- var twoWays$6 = [''];
1396
- /**
1397
- * TreeView component is used to represent the hierarchical data in tree like structure with advanced functions to perform edit, drag and drop, selection with check-box and more.
1398
- * ```html
1399
- * <ej-treeview allowDragAndDrop='true'></ej-treeview>
1400
- * ```
1401
- */
1402
- exports.TreeViewComponent = /** @class */ (function (_super) {
1403
- __extends(TreeViewComponent, _super);
1404
- /**
1405
- * @param {?} ngEle
1406
- * @param {?} srenderer
1407
- * @param {?} viewContainerRef
1408
- * @param {?} injector
1409
- */
1410
- function TreeViewComponent(ngEle, srenderer, viewContainerRef, injector) {
1411
- var _this = _super.call(this) || this;
1412
- _this.ngEle = ngEle;
1413
- _this.srenderer = srenderer;
1414
- _this.viewContainerRef = viewContainerRef;
1415
- _this.injector = injector;
1416
- _this.element = _this.ngEle.nativeElement;
1417
- _this.injectedModules = _this.injectedModules || [];
1418
- _this.registerEvents(outputs$11);
1419
- _this.addTwoWay.call(_this, twoWays$6);
1420
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
1421
- _this.context = new ej2AngularBase.ComponentBase();
1422
- return _this;
1423
- }
1424
- /**
1425
- * @return {?}
1426
- */
1427
- TreeViewComponent.prototype.ngOnInit = function () {
1428
- this.context.ngOnInit(this);
1429
- };
1430
- /**
1431
- * @return {?}
1432
- */
1433
- TreeViewComponent.prototype.ngAfterViewInit = function () {
1434
- this.context.ngAfterViewInit(this);
1435
- };
1436
- /**
1437
- * @return {?}
1438
- */
1439
- TreeViewComponent.prototype.ngOnDestroy = function () {
1440
- this.context.ngOnDestroy(this);
1441
- };
1442
- /**
1443
- * @return {?}
1444
- */
1445
- TreeViewComponent.prototype.ngAfterContentChecked = function () {
1446
- this.context.ngAfterContentChecked(this);
1447
- };
1448
- return TreeViewComponent;
1449
- }(ej2Navigations.TreeView));
1450
- exports.TreeViewComponent.decorators = [
1451
- { type: core.Component, args: [{
1452
- selector: 'ejs-treeview',
1453
- inputs: inputs$6,
1454
- outputs: outputs$11,
1455
- template: '',
1456
- changeDetection: core.ChangeDetectionStrategy.OnPush,
1457
- queries: {}
1458
- },] },
1459
- ];
1460
- /**
1461
- * @nocollapse
1462
- */
1463
- exports.TreeViewComponent.ctorParameters = function () { return [
1464
- { type: core.ElementRef, },
1465
- { type: core.Renderer2, },
1466
- { type: core.ViewContainerRef, },
1467
- { type: core.Injector, },
1468
- ]; };
1469
- exports.TreeViewComponent.propDecorators = {
1470
- 'nodeTemplate': [{ type: core.ContentChild, args: ['nodeTemplate',] },],
1471
- };
1472
- __decorate$10([
1473
- ej2AngularBase.Template(),
1474
- __metadata$10("design:type", Object)
1475
- ], exports.TreeViewComponent.prototype, "nodeTemplate", void 0);
1476
- exports.TreeViewComponent = __decorate$10([
1477
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
1478
- __metadata$10("design:paramtypes", [core.ElementRef,
1479
- core.Renderer2,
1480
- core.ViewContainerRef,
1481
- core.Injector])
1482
- ], exports.TreeViewComponent);
1483
- /**
1484
- * NgModule definition for the TreeView component.
1485
- */
1486
- var TreeViewModule = /** @class */ (function () {
1487
- function TreeViewModule() {
1488
- }
1489
- return TreeViewModule;
1490
- }());
1491
- TreeViewModule.decorators = [
1492
- { type: core.NgModule, args: [{
1493
- imports: [common.CommonModule],
1494
- declarations: [
1495
- exports.TreeViewComponent
1496
- ],
1497
- exports: [
1498
- exports.TreeViewComponent
1499
- ]
1500
- },] },
1501
- ];
1502
- /**
1503
- * @nocollapse
1504
- */
1505
- TreeViewModule.ctorParameters = function () { return []; };
1506
- /**
1507
- * NgModule definition for the TreeView component with providers.
1508
- */
1509
- var TreeViewAllModule = /** @class */ (function () {
1510
- function TreeViewAllModule() {
1511
- }
1512
- return TreeViewAllModule;
1513
- }());
1514
- TreeViewAllModule.decorators = [
1515
- { type: core.NgModule, args: [{
1516
- imports: [common.CommonModule, TreeViewModule],
1517
- exports: [
1518
- TreeViewModule
1519
- ],
1520
- providers: []
1521
- },] },
1522
- ];
1523
- /**
1524
- * @nocollapse
1525
- */
1526
- TreeViewAllModule.ctorParameters = function () { return []; };
1527
- var __decorate$11 = (this && this.__decorate) || function (decorators, target, key, desc) {
1528
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
1529
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
1530
- r = Reflect.decorate(decorators, target, key, desc);
1531
- else
1532
- for (var i = decorators.length - 1; i >= 0; i--)
1533
- if (d = decorators[i])
1534
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
1535
- return c > 3 && r && Object.defineProperty(target, key, r), r;
1536
- };
1537
- var __metadata$11 = (this && this.__metadata) || function (k, v) {
1538
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
1539
- return Reflect.metadata(k, v);
1540
- };
1541
- var inputs$7 = ['animate', 'closeOnDocumentClick', 'dockSize', 'enableDock', 'enableGestures', 'enablePersistence', 'enableRtl', 'height', 'isOpen', 'locale', 'mediaQuery', 'position', 'showBackdrop', 'target', 'type', 'width', 'zIndex'];
1542
- var outputs$12 = ['change', 'close', 'created', 'destroyed', 'open', 'isOpenChange'];
1543
- var twoWays$7 = ['isOpen'];
1544
- /**
1545
- * Represents the Essential JS 2 Angular Sidebar Component.
1546
- * ```html
1547
- * <ejs-sidebar></ejs-sidebar>
1548
- * ```
1549
- */
1550
- exports.SidebarComponent = /** @class */ (function (_super) {
1551
- __extends(SidebarComponent, _super);
1552
- /**
1553
- * @param {?} ngEle
1554
- * @param {?} srenderer
1555
- * @param {?} viewContainerRef
1556
- * @param {?} injector
1557
- */
1558
- function SidebarComponent(ngEle, srenderer, viewContainerRef, injector) {
1559
- var _this = _super.call(this) || this;
1560
- _this.ngEle = ngEle;
1561
- _this.srenderer = srenderer;
1562
- _this.viewContainerRef = viewContainerRef;
1563
- _this.injector = injector;
1564
- _this.element = _this.ngEle.nativeElement;
1565
- _this.injectedModules = _this.injectedModules || [];
1566
- _this.registerEvents(outputs$12);
1567
- _this.addTwoWay.call(_this, twoWays$7);
1568
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
1569
- _this.containerContext = new ej2AngularBase.ComponentBase();
1570
- return _this;
1571
- }
1572
- /**
1573
- * @return {?}
1574
- */
1575
- SidebarComponent.prototype.ngOnInit = function () {
1576
- this.containerContext.ngOnInit(this);
1577
- };
1578
- /**
1579
- * @return {?}
1580
- */
1581
- SidebarComponent.prototype.ngAfterViewInit = function () {
1582
- this.containerContext.ngAfterViewInit(this);
1583
- };
1584
- /**
1585
- * @return {?}
1586
- */
1587
- SidebarComponent.prototype.ngOnDestroy = function () {
1588
- this.containerContext.ngOnDestroy(this);
1589
- };
1590
- /**
1591
- * @return {?}
1592
- */
1593
- SidebarComponent.prototype.ngAfterContentChecked = function () {
1594
- this.containerContext.ngAfterContentChecked(this);
1595
- };
1596
- return SidebarComponent;
1597
- }(ej2Navigations.Sidebar));
1598
- exports.SidebarComponent.decorators = [
1599
- { type: core.Component, args: [{
1600
- selector: 'ejs-sidebar',
1601
- inputs: inputs$7,
1602
- outputs: outputs$12,
1603
- template: "<ng-content ></ng-content>",
1604
- changeDetection: core.ChangeDetectionStrategy.OnPush,
1605
- queries: {}
1606
- },] },
1607
- ];
1608
- /**
1609
- * @nocollapse
1610
- */
1611
- exports.SidebarComponent.ctorParameters = function () { return [
1612
- { type: core.ElementRef, },
1613
- { type: core.Renderer2, },
1614
- { type: core.ViewContainerRef, },
1615
- { type: core.Injector, },
1616
- ]; };
1617
- exports.SidebarComponent = __decorate$11([
1618
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
1619
- __metadata$11("design:paramtypes", [core.ElementRef,
1620
- core.Renderer2,
1621
- core.ViewContainerRef,
1622
- core.Injector])
1623
- ], exports.SidebarComponent);
1624
- /**
1625
- * NgModule definition for the Sidebar component.
1626
- */
1627
- var SidebarModule = /** @class */ (function () {
1628
- function SidebarModule() {
1629
- }
1630
- return SidebarModule;
1631
- }());
1632
- SidebarModule.decorators = [
1633
- { type: core.NgModule, args: [{
1634
- imports: [common.CommonModule],
1635
- declarations: [
1636
- exports.SidebarComponent
1637
- ],
1638
- exports: [
1639
- exports.SidebarComponent
1640
- ]
1641
- },] },
1642
- ];
1643
- /**
1644
- * @nocollapse
1645
- */
1646
- SidebarModule.ctorParameters = function () { return []; };
1647
- /**
1648
- * NgModule definition for the Sidebar component with providers.
1649
- */
1650
- var SidebarAllModule = /** @class */ (function () {
1651
- function SidebarAllModule() {
1652
- }
1653
- return SidebarAllModule;
1654
- }());
1655
- SidebarAllModule.decorators = [
1656
- { type: core.NgModule, args: [{
1657
- imports: [common.CommonModule, SidebarModule],
1658
- exports: [
1659
- SidebarModule
1660
- ],
1661
- providers: []
1662
- },] },
1663
- ];
1664
- /**
1665
- * @nocollapse
1666
- */
1667
- SidebarAllModule.ctorParameters = function () { return []; };
1668
- var input$5 = ['htmlAttributes', 'iconCss', 'id', 'items', 'separator', 'text', 'url'];
1669
- var outputs$13 = [];
1670
- var MenuItemDirective = /** @class */ (function (_super) {
1671
- __extends(MenuItemDirective, _super);
1672
- /**
1673
- * @param {?} viewContainerRef
1674
- */
1675
- function MenuItemDirective(viewContainerRef) {
1676
- var _this = _super.call(this) || this;
1677
- _this.viewContainerRef = viewContainerRef;
1678
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
1679
- _this.registerEvents(outputs$13);
1680
- _this.directivePropList = input$5;
1681
- return _this;
1682
- }
1683
- return MenuItemDirective;
1684
- }(ej2AngularBase.ComplexBase));
1685
- MenuItemDirective.decorators = [
1686
- { type: core.Directive, args: [{
1687
- selector: 'ejs-menu>e-menu-items>e-menu-item>',
1688
- inputs: input$5,
1689
- outputs: outputs$13,
1690
- queries: {}
1691
- },] },
1692
- ];
1693
- /**
1694
- * @nocollapse
1695
- */
1696
- MenuItemDirective.ctorParameters = function () { return [
1697
- { type: core.ViewContainerRef, },
1698
- ]; };
1699
- /**
1700
- * MenuItem Array Directive
1701
- */
1702
- var MenuItemsDirective = /** @class */ (function (_super) {
1703
- __extends(MenuItemsDirective, _super);
1704
- function MenuItemsDirective() {
1705
- return _super.call(this, 'items') || this;
1706
- }
1707
- return MenuItemsDirective;
1708
- }(ej2AngularBase.ArrayBase));
1709
- MenuItemsDirective.decorators = [
1710
- { type: core.Directive, args: [{
1711
- selector: 'ejs-menu>e-menu-items',
1712
- queries: {
1713
- children: new core.ContentChildren(MenuItemDirective)
1714
- },
1715
- },] },
1716
- ];
1717
- /**
1718
- * @nocollapse
1719
- */
1720
- MenuItemsDirective.ctorParameters = function () { return []; };
1721
- var __decorate$12 = (this && this.__decorate) || function (decorators, target, key, desc) {
1722
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
1723
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
1724
- r = Reflect.decorate(decorators, target, key, desc);
1725
- else
1726
- for (var i = decorators.length - 1; i >= 0; i--)
1727
- if (d = decorators[i])
1728
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
1729
- return c > 3 && r && Object.defineProperty(target, key, r), r;
1730
- };
1731
- var __metadata$12 = (this && this.__metadata) || function (k, v) {
1732
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
1733
- return Reflect.metadata(k, v);
1734
- };
1735
- var inputs$8 = ['animationSettings', 'cssClass', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enableScrolling', 'fields', 'filter', 'hamburgerMode', 'hoverDelay', 'items', 'locale', 'orientation', 'showItemOnClick', 'target', 'template', 'title'];
1736
- var outputs$14 = ['beforeClose', 'beforeItemRender', 'beforeOpen', 'created', 'onClose', 'onOpen', 'select'];
1737
- var twoWays$8 = [''];
1738
- /**
1739
- * Represents the EJ2 Angular Menu Component.
1740
- * ```html
1741
- * <ejs-menu [items]='menuItems'></ejs-menu>
1742
- * ```
1743
- */
1744
- exports.MenuComponent = /** @class */ (function (_super) {
1745
- __extends(MenuComponent, _super);
1746
- /**
1747
- * @param {?} ngEle
1748
- * @param {?} srenderer
1749
- * @param {?} viewContainerRef
1750
- * @param {?} injector
1751
- */
1752
- function MenuComponent(ngEle, srenderer, viewContainerRef, injector) {
1753
- var _this = _super.call(this) || this;
1754
- _this.ngEle = ngEle;
1755
- _this.srenderer = srenderer;
1756
- _this.viewContainerRef = viewContainerRef;
1757
- _this.injector = injector;
1758
- _this.tags = ['items'];
1759
- _this.element = _this.ngEle.nativeElement;
1760
- _this.injectedModules = _this.injectedModules || [];
1761
- _this.registerEvents(outputs$14);
1762
- _this.addTwoWay.call(_this, twoWays$8);
1763
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
1764
- _this.context = new ej2AngularBase.ComponentBase();
1765
- return _this;
1766
- }
1767
- /**
1768
- * @return {?}
1769
- */
1770
- MenuComponent.prototype.ngOnInit = function () {
1771
- this.context.ngOnInit(this);
1772
- };
1773
- /**
1774
- * @return {?}
1775
- */
1776
- MenuComponent.prototype.ngAfterViewInit = function () {
1777
- this.context.ngAfterViewInit(this);
1778
- };
1779
- /**
1780
- * @return {?}
1781
- */
1782
- MenuComponent.prototype.ngOnDestroy = function () {
1783
- this.context.ngOnDestroy(this);
1784
- };
1785
- /**
1786
- * @return {?}
1787
- */
1788
- MenuComponent.prototype.ngAfterContentChecked = function () {
1789
- this.tagObjects[0].instance = this.childItems;
1790
- this.context.ngAfterContentChecked(this);
1791
- };
1792
- return MenuComponent;
1793
- }(ej2Navigations.Menu));
1794
- exports.MenuComponent.decorators = [
1795
- { type: core.Component, args: [{
1796
- selector: 'ejs-menu',
1797
- inputs: inputs$8,
1798
- outputs: outputs$14,
1799
- template: '',
1800
- changeDetection: core.ChangeDetectionStrategy.OnPush,
1801
- queries: {
1802
- childItems: new core.ContentChild(MenuItemsDirective)
1803
- }
1804
- },] },
1805
- ];
1806
- /**
1807
- * @nocollapse
1808
- */
1809
- exports.MenuComponent.ctorParameters = function () { return [
1810
- { type: core.ElementRef, },
1811
- { type: core.Renderer2, },
1812
- { type: core.ViewContainerRef, },
1813
- { type: core.Injector, },
1814
- ]; };
1815
- exports.MenuComponent.propDecorators = {
1816
- 'template': [{ type: core.ContentChild, args: ['template',] },],
1817
- };
1818
- __decorate$12([
1819
- ej2AngularBase.Template(),
1820
- __metadata$12("design:type", Object)
1821
- ], exports.MenuComponent.prototype, "template", void 0);
1822
- exports.MenuComponent = __decorate$12([
1823
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
1824
- __metadata$12("design:paramtypes", [core.ElementRef,
1825
- core.Renderer2,
1826
- core.ViewContainerRef,
1827
- core.Injector])
1828
- ], exports.MenuComponent);
1829
- /**
1830
- * NgModule definition for the Menu component.
1831
- */
1832
- var MenuModule = /** @class */ (function () {
1833
- function MenuModule() {
1834
- }
1835
- return MenuModule;
1836
- }());
1837
- MenuModule.decorators = [
1838
- { type: core.NgModule, args: [{
1839
- imports: [common.CommonModule],
1840
- declarations: [
1841
- exports.MenuComponent,
1842
- MenuItemDirective,
1843
- MenuItemsDirective
1844
- ],
1845
- exports: [
1846
- exports.MenuComponent,
1847
- MenuItemDirective,
1848
- MenuItemsDirective
1849
- ]
1850
- },] },
1851
- ];
1852
- /**
1853
- * @nocollapse
1854
- */
1855
- MenuModule.ctorParameters = function () { return []; };
1856
- /**
1857
- * NgModule definition for the Menu component with providers.
1858
- */
1859
- var MenuAllModule = /** @class */ (function () {
1860
- function MenuAllModule() {
1861
- }
1862
- return MenuAllModule;
1863
- }());
1864
- MenuAllModule.decorators = [
1865
- { type: core.NgModule, args: [{
1866
- imports: [common.CommonModule, MenuModule],
1867
- exports: [
1868
- MenuModule
1869
- ],
1870
- providers: []
1871
- },] },
1872
- ];
1873
- /**
1874
- * @nocollapse
1875
- */
1876
- MenuAllModule.ctorParameters = function () { return []; };
1877
- var __decorate$13 = (this && this.__decorate) || function (decorators, target, key, desc) {
1878
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
1879
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
1880
- r = Reflect.decorate(decorators, target, key, desc);
1881
- else
1882
- for (var i = decorators.length - 1; i >= 0; i--)
1883
- if (d = decorators[i])
1884
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
1885
- return c > 3 && r && Object.defineProperty(target, key, r), r;
1886
- };
1887
- var __metadata$13 = (this && this.__metadata) || function (k, v) {
1888
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
1889
- return Reflect.metadata(k, v);
1890
- };
1891
- var inputs$9 = ['colorMode', 'cssClass', 'enablePersistence', 'enableRtl', 'htmlAttributes', 'isSticky', 'locale', 'mode', 'position'];
1892
- var outputs$15 = ['created', 'destroyed'];
1893
- var twoWays$9 = [''];
1894
- /**
1895
- * Represents the Essential JS 2 Angular AppBar Component.
1896
- * ```html
1897
- * <ejs-appbar></ejs-appbar>
1898
- * ```
1899
- */
1900
- exports.AppBarComponent = /** @class */ (function (_super) {
1901
- __extends(AppBarComponent, _super);
1902
- /**
1903
- * @param {?} ngEle
1904
- * @param {?} srenderer
1905
- * @param {?} viewContainerRef
1906
- * @param {?} injector
1907
- */
1908
- function AppBarComponent(ngEle, srenderer, viewContainerRef, injector) {
1909
- var _this = _super.call(this) || this;
1910
- _this.ngEle = ngEle;
1911
- _this.srenderer = srenderer;
1912
- _this.viewContainerRef = viewContainerRef;
1913
- _this.injector = injector;
1914
- _this.element = _this.ngEle.nativeElement;
1915
- _this.injectedModules = _this.injectedModules || [];
1916
- _this.registerEvents(outputs$15);
1917
- _this.addTwoWay.call(_this, twoWays$9);
1918
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
1919
- _this.containerContext = new ej2AngularBase.ComponentBase();
1920
- return _this;
1921
- }
1922
- /**
1923
- * @return {?}
1924
- */
1925
- AppBarComponent.prototype.ngOnInit = function () {
1926
- this.containerContext.ngOnInit(this);
1927
- };
1928
- /**
1929
- * @return {?}
1930
- */
1931
- AppBarComponent.prototype.ngAfterViewInit = function () {
1932
- this.containerContext.ngAfterViewInit(this);
1933
- };
1934
- /**
1935
- * @return {?}
1936
- */
1937
- AppBarComponent.prototype.ngOnDestroy = function () {
1938
- this.containerContext.ngOnDestroy(this);
1939
- };
1940
- /**
1941
- * @return {?}
1942
- */
1943
- AppBarComponent.prototype.ngAfterContentChecked = function () {
1944
- this.containerContext.ngAfterContentChecked(this);
1945
- };
1946
- return AppBarComponent;
1947
- }(ej2Navigations.AppBar));
1948
- exports.AppBarComponent.decorators = [
1949
- { type: core.Component, args: [{
1950
- selector: 'ejs-appbar',
1951
- inputs: inputs$9,
1952
- outputs: outputs$15,
1953
- template: "<ng-content ></ng-content>",
1954
- changeDetection: core.ChangeDetectionStrategy.OnPush,
1955
- queries: {}
1956
- },] },
1957
- ];
1958
- /**
1959
- * @nocollapse
1960
- */
1961
- exports.AppBarComponent.ctorParameters = function () { return [
1962
- { type: core.ElementRef, },
1963
- { type: core.Renderer2, },
1964
- { type: core.ViewContainerRef, },
1965
- { type: core.Injector, },
1966
- ]; };
1967
- exports.AppBarComponent = __decorate$13([
1968
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
1969
- __metadata$13("design:paramtypes", [core.ElementRef,
1970
- core.Renderer2,
1971
- core.ViewContainerRef,
1972
- core.Injector])
1973
- ], exports.AppBarComponent);
1974
- /**
1975
- * NgModule definition for the AppBar component.
1976
- */
1977
- var AppBarModule = /** @class */ (function () {
1978
- function AppBarModule() {
1979
- }
1980
- return AppBarModule;
1981
- }());
1982
- AppBarModule.decorators = [
1983
- { type: core.NgModule, args: [{
1984
- imports: [common.CommonModule],
1985
- declarations: [
1986
- exports.AppBarComponent
1987
- ],
1988
- exports: [
1989
- exports.AppBarComponent
1990
- ]
1991
- },] },
1992
- ];
1993
- /**
1994
- * @nocollapse
1995
- */
1996
- AppBarModule.ctorParameters = function () { return []; };
1997
- /**
1998
- * NgModule definition for the AppBar component with providers.
1999
- */
2000
- var AppBarAllModule = /** @class */ (function () {
2001
- function AppBarAllModule() {
2002
- }
2003
- return AppBarAllModule;
2004
- }());
2005
- AppBarAllModule.decorators = [
2006
- { type: core.NgModule, args: [{
2007
- imports: [common.CommonModule, AppBarModule],
2008
- exports: [
2009
- AppBarModule
2010
- ],
2011
- providers: []
2012
- },] },
2013
- ];
2014
- /**
2015
- * @nocollapse
2016
- */
2017
- AppBarAllModule.ctorParameters = function () { return []; };
2018
- var input$6 = ['cssClass', 'disabled', 'iconCss', 'isValid', 'label', 'optional', 'status', 'text'];
2019
- var outputs$16 = [];
2020
- /**
2021
- * 'e-step' directive represents a step of the Angular Stepper.
2022
- * It must be contained in a Stepper component(`ejs-stepper`).
2023
- * ```html
2024
- * <ejs-stepper>
2025
- * <e-steps>
2026
- * <e-step [iconCss]='e-icons e-folder' [text]='Step 1' />
2027
- * <e-step [iconCss]='e-icons e-folder' [text]='Step 2' />
2028
- * </e-steps>
2029
- * </ejs-stepper>
2030
- * ```
2031
- */
2032
- var StepDirective = /** @class */ (function (_super) {
2033
- __extends(StepDirective, _super);
2034
- /**
2035
- * @param {?} viewContainerRef
2036
- */
2037
- function StepDirective(viewContainerRef) {
2038
- var _this = _super.call(this) || this;
2039
- _this.viewContainerRef = viewContainerRef;
2040
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
2041
- _this.registerEvents(outputs$16);
2042
- _this.directivePropList = input$6;
2043
- return _this;
2044
- }
2045
- return StepDirective;
2046
- }(ej2AngularBase.ComplexBase));
2047
- StepDirective.decorators = [
2048
- { type: core.Directive, args: [{
2049
- selector: 'ejs-stepper>e-steps>e-step',
2050
- inputs: input$6,
2051
- outputs: outputs$16,
2052
- queries: {}
2053
- },] },
2054
- ];
2055
- /**
2056
- * @nocollapse
2057
- */
2058
- StepDirective.ctorParameters = function () { return [
2059
- { type: core.ViewContainerRef, },
2060
- ]; };
2061
- /**
2062
- * Step Array Directive
2063
- */
2064
- var StepsDirective = /** @class */ (function (_super) {
2065
- __extends(StepsDirective, _super);
2066
- function StepsDirective() {
2067
- return _super.call(this, 'steps') || this;
2068
- }
2069
- return StepsDirective;
2070
- }(ej2AngularBase.ArrayBase));
2071
- StepsDirective.decorators = [
2072
- { type: core.Directive, args: [{
2073
- selector: 'ejs-stepper>e-steps',
2074
- queries: {
2075
- children: new core.ContentChildren(StepDirective)
2076
- },
2077
- },] },
2078
- ];
2079
- /**
2080
- * @nocollapse
2081
- */
2082
- StepsDirective.ctorParameters = function () { return []; };
2083
- var __decorate$14 = (this && this.__decorate) || function (decorators, target, key, desc) {
2084
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
2085
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
2086
- r = Reflect.decorate(decorators, target, key, desc);
2087
- else
2088
- for (var i = decorators.length - 1; i >= 0; i--)
2089
- if (d = decorators[i])
2090
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
2091
- return c > 3 && r && Object.defineProperty(target, key, r), r;
2092
- };
2093
- var __metadata$14 = (this && this.__metadata) || function (k, v) {
2094
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
2095
- return Reflect.metadata(k, v);
2096
- };
2097
- var inputs$10 = ['activeStep', 'animation', 'cssClass', 'enablePersistence', 'enableRtl', 'labelPosition', 'linear', 'locale', 'orientation', 'readOnly', 'showTooltip', 'stepType', 'steps', 'template', 'tooltipTemplate'];
2098
- var outputs$17 = ['beforeStepRender', 'created', 'stepChanged', 'stepChanging', 'stepClick', 'activeStepChange'];
2099
- var twoWays$10 = ['activeStep'];
2100
- /**
2101
- * Represents the EJ2 Angular Stepper Component.
2102
- * ```html
2103
- * <nav ejs-stepper [steps]='stepItems'></nav>
2104
- * ```
2105
- */
2106
- exports.StepperComponent = /** @class */ (function (_super) {
2107
- __extends(StepperComponent, _super);
2108
- /**
2109
- * @param {?} ngEle
2110
- * @param {?} srenderer
2111
- * @param {?} viewContainerRef
2112
- * @param {?} injector
2113
- */
2114
- function StepperComponent(ngEle, srenderer, viewContainerRef, injector) {
2115
- var _this = _super.call(this) || this;
2116
- _this.ngEle = ngEle;
2117
- _this.srenderer = srenderer;
2118
- _this.viewContainerRef = viewContainerRef;
2119
- _this.injector = injector;
2120
- _this.tags = ['steps'];
2121
- _this.element = _this.ngEle.nativeElement;
2122
- _this.injectedModules = _this.injectedModules || [];
2123
- _this.registerEvents(outputs$17);
2124
- _this.addTwoWay.call(_this, twoWays$10);
2125
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
2126
- _this.containerContext = new ej2AngularBase.ComponentBase();
2127
- return _this;
2128
- }
2129
- /**
2130
- * @return {?}
2131
- */
2132
- StepperComponent.prototype.ngOnInit = function () {
2133
- this.containerContext.ngOnInit(this);
2134
- };
2135
- /**
2136
- * @return {?}
2137
- */
2138
- StepperComponent.prototype.ngAfterViewInit = function () {
2139
- this.containerContext.ngAfterViewInit(this);
2140
- };
2141
- /**
2142
- * @return {?}
2143
- */
2144
- StepperComponent.prototype.ngOnDestroy = function () {
2145
- this.containerContext.ngOnDestroy(this);
2146
- };
2147
- /**
2148
- * @return {?}
2149
- */
2150
- StepperComponent.prototype.ngAfterContentChecked = function () {
2151
- this.tagObjects[0].instance = this.childSteps;
2152
- this.containerContext.ngAfterContentChecked(this);
2153
- };
2154
- return StepperComponent;
2155
- }(ej2Navigations.Stepper));
2156
- exports.StepperComponent.decorators = [
2157
- { type: core.Component, args: [{
2158
- selector: 'ejs-stepper',
2159
- inputs: inputs$10,
2160
- outputs: outputs$17,
2161
- template: "<ng-content select='nav'></ng-content>",
2162
- changeDetection: core.ChangeDetectionStrategy.OnPush,
2163
- queries: {
2164
- childSteps: new core.ContentChild(StepsDirective)
2165
- }
2166
- },] },
2167
- ];
2168
- /**
2169
- * @nocollapse
2170
- */
2171
- exports.StepperComponent.ctorParameters = function () { return [
2172
- { type: core.ElementRef, },
2173
- { type: core.Renderer2, },
2174
- { type: core.ViewContainerRef, },
2175
- { type: core.Injector, },
2176
- ]; };
2177
- exports.StepperComponent.propDecorators = {
2178
- 'template': [{ type: core.ContentChild, args: ['template',] },],
2179
- 'tooltipTemplate': [{ type: core.ContentChild, args: ['tooltipTemplate',] },],
2180
- };
2181
- __decorate$14([
2182
- ej2AngularBase.Template(),
2183
- __metadata$14("design:type", Object)
2184
- ], exports.StepperComponent.prototype, "template", void 0);
2185
- __decorate$14([
2186
- ej2AngularBase.Template(),
2187
- __metadata$14("design:type", Object)
2188
- ], exports.StepperComponent.prototype, "tooltipTemplate", void 0);
2189
- exports.StepperComponent = __decorate$14([
2190
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
2191
- __metadata$14("design:paramtypes", [core.ElementRef,
2192
- core.Renderer2,
2193
- core.ViewContainerRef,
2194
- core.Injector])
2195
- ], exports.StepperComponent);
2196
- /**
2197
- * NgModule definition for the Stepper component.
2198
- */
2199
- var StepperModule = /** @class */ (function () {
2200
- function StepperModule() {
2201
- }
2202
- return StepperModule;
2203
- }());
2204
- StepperModule.decorators = [
2205
- { type: core.NgModule, args: [{
2206
- imports: [common.CommonModule],
2207
- declarations: [
2208
- exports.StepperComponent,
2209
- StepDirective,
2210
- StepsDirective
2211
- ],
2212
- exports: [
2213
- exports.StepperComponent,
2214
- StepDirective,
2215
- StepsDirective
2216
- ]
2217
- },] },
2218
- ];
2219
- /**
2220
- * @nocollapse
2221
- */
2222
- StepperModule.ctorParameters = function () { return []; };
2223
- /**
2224
- * NgModule definition for the Stepper component with providers.
2225
- */
2226
- var StepperAllModule = /** @class */ (function () {
2227
- function StepperAllModule() {
2228
- }
2229
- return StepperAllModule;
2230
- }());
2231
- StepperAllModule.decorators = [
2232
- { type: core.NgModule, args: [{
2233
- imports: [common.CommonModule, StepperModule],
2234
- exports: [
2235
- StepperModule
2236
- ],
2237
- providers: []
2238
- },] },
2239
- ];
2240
- /**
2241
- * @nocollapse
2242
- */
2243
- StepperAllModule.ctorParameters = function () { return []; };
2244
-
2245
- exports.AccordionItemDirective = AccordionItemDirective;
2246
- exports.AccordionItemsDirective = AccordionItemsDirective;
2247
- exports.AccordionModule = AccordionModule;
2248
- exports.AccordionAllModule = AccordionAllModule;
2249
- exports.ItemDirective = ItemDirective;
2250
- exports.ItemsDirective = ItemsDirective;
2251
- exports.ToolbarModule = ToolbarModule;
2252
- exports.ToolbarAllModule = ToolbarAllModule;
2253
- exports.ContextMenuModule = ContextMenuModule;
2254
- exports.ContextMenuAllModule = ContextMenuAllModule;
2255
- exports.BreadcrumbItemDirective = BreadcrumbItemDirective;
2256
- exports.BreadcrumbItemsDirective = BreadcrumbItemsDirective;
2257
- exports.BreadcrumbModule = BreadcrumbModule;
2258
- exports.BreadcrumbAllModule = BreadcrumbAllModule;
2259
- exports.CarouselItemDirective = CarouselItemDirective;
2260
- exports.CarouselItemsDirective = CarouselItemsDirective;
2261
- exports.CarouselModule = CarouselModule;
2262
- exports.CarouselAllModule = CarouselAllModule;
2263
- exports.TabItemDirective = TabItemDirective;
2264
- exports.TabItemsDirective = TabItemsDirective;
2265
- exports.TabModule = TabModule;
2266
- exports.TabAllModule = TabAllModule;
2267
- exports.TreeViewModule = TreeViewModule;
2268
- exports.TreeViewAllModule = TreeViewAllModule;
2269
- exports.SidebarModule = SidebarModule;
2270
- exports.SidebarAllModule = SidebarAllModule;
2271
- exports.MenuItemDirective = MenuItemDirective;
2272
- exports.MenuItemsDirective = MenuItemsDirective;
2273
- exports.MenuModule = MenuModule;
2274
- exports.MenuAllModule = MenuAllModule;
2275
- exports.AppBarModule = AppBarModule;
2276
- exports.AppBarAllModule = AppBarAllModule;
2277
- exports.StepDirective = StepDirective;
2278
- exports.StepsDirective = StepsDirective;
2279
- exports.StepperModule = StepperModule;
2280
- exports.StepperAllModule = StepperAllModule;
2281
- exports.ɵa = inputs;
2282
- exports.ɵb = outputs$1;
2283
- exports.ɵs = inputs$9;
2284
- exports.ɵt = outputs$15;
2285
- exports.ɵg = inputs$3;
2286
- exports.ɵh = outputs$6;
2287
- exports.ɵi = inputs$4;
2288
- exports.ɵj = outputs$8;
2289
- exports.ɵe = inputs$2;
2290
- exports.ɵf = outputs$4;
2291
- exports.ɵq = inputs$8;
2292
- exports.ɵr = outputs$14;
2293
- exports.ɵo = inputs$7;
2294
- exports.ɵp = outputs$12;
2295
- exports.ɵu = inputs$10;
2296
- exports.ɵv = outputs$17;
2297
- exports.ɵk = inputs$5;
2298
- exports.ɵl = outputs$10;
2299
- exports.ɵc = inputs$1;
2300
- exports.ɵd = outputs$3;
2301
- exports.ɵm = inputs$6;
2302
- exports.ɵn = outputs$11;
2303
- exports.MenuAnimationSettings = ej2Navigations.MenuAnimationSettings;
2304
- exports.MenuItem = ej2Navigations.MenuItem;
2305
- exports.FieldSettings = ej2Navigations.FieldSettings;
2306
- exports.HScroll = ej2Navigations.HScroll;
2307
- exports.VScroll = ej2Navigations.VScroll;
2308
- exports.addScrolling = ej2Navigations.addScrolling;
2309
- exports.destroyScroll = ej2Navigations.destroyScroll;
2310
- exports.Item = ej2Navigations.Item;
2311
- exports.Toolbar = ej2Navigations.Toolbar;
2312
- exports.AccordionActionSettings = ej2Navigations.AccordionActionSettings;
2313
- exports.AccordionAnimationSettings = ej2Navigations.AccordionAnimationSettings;
2314
- exports.AccordionItem = ej2Navigations.AccordionItem;
2315
- exports.Accordion = ej2Navigations.Accordion;
2316
- exports.ContextMenu = ej2Navigations.ContextMenu;
2317
- exports.Menu = ej2Navigations.Menu;
2318
- exports.TabActionSettings = ej2Navigations.TabActionSettings;
2319
- exports.TabAnimationSettings = ej2Navigations.TabAnimationSettings;
2320
- exports.Header = ej2Navigations.Header;
2321
- exports.TabItem = ej2Navigations.TabItem;
2322
- exports.Tab = ej2Navigations.Tab;
2323
- exports.FieldsSettings = ej2Navigations.FieldsSettings;
2324
- exports.ActionSettings = ej2Navigations.ActionSettings;
2325
- exports.NodeAnimationSettings = ej2Navigations.NodeAnimationSettings;
2326
- exports.TreeView = ej2Navigations.TreeView;
2327
- exports.Sidebar = ej2Navigations.Sidebar;
2328
- exports.BreadcrumbOverflowMode = ej2Navigations.BreadcrumbOverflowMode;
2329
- exports.BreadcrumbItem = ej2Navigations.BreadcrumbItem;
2330
- exports.Breadcrumb = ej2Navigations.Breadcrumb;
2331
- exports.CarouselSwipeMode = ej2Navigations.CarouselSwipeMode;
2332
- exports.CarouselItem = ej2Navigations.CarouselItem;
2333
- exports.Carousel = ej2Navigations.Carousel;
2334
- exports.AppBar = ej2Navigations.AppBar;
2335
- exports.StepStatus = ej2Navigations.StepStatus;
2336
- exports.Step = ej2Navigations.Step;
2337
- exports.StepperOrientation = ej2Navigations.StepperOrientation;
2338
- exports.StepperBase = ej2Navigations.StepperBase;
2339
- exports.StepperAnimationSettings = ej2Navigations.StepperAnimationSettings;
2340
- exports.StepLabelPosition = ej2Navigations.StepLabelPosition;
2341
- exports.StepType = ej2Navigations.StepType;
2342
- exports.Stepper = ej2Navigations.Stepper;
2343
-
2344
- Object.defineProperty(exports, '__esModule', { value: true });
2345
-
2346
- })));
2347
- //# sourceMappingURL=ej2-angular-navigations.umd.js.map