@acorex/components 5.0.5 → 5.0.9

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 (498) hide show
  1. package/acorex-components.d.ts +5 -0
  2. package/bundles/acorex-components.umd.js +7633 -0
  3. package/bundles/acorex-components.umd.js.map +1 -0
  4. package/esm2015/acorex-components.js +5 -0
  5. package/esm2015/lib/alert/alert-button.component.js +52 -0
  6. package/esm2015/lib/alert/alert-contnet.component.js +21 -0
  7. package/esm2015/lib/alert/alert-footer.component.js +27 -0
  8. package/esm2015/lib/alert/alert-suffix.component.js +27 -0
  9. package/esm2015/lib/alert/alert-title.component.js +23 -0
  10. package/esm2015/lib/alert/alert.component.js +130 -0
  11. package/esm2015/lib/alert/alert.module.js +43 -0
  12. package/esm2015/lib/alert/index.js +8 -0
  13. package/esm2015/lib/avatar/avatar.component.js +55 -0
  14. package/esm2015/lib/avatar/avatar.module.js +21 -0
  15. package/esm2015/lib/avatar/index.js +3 -0
  16. package/esm2015/lib/badge/badge.component.js +34 -0
  17. package/esm2015/lib/badge/badge.module.js +21 -0
  18. package/esm2015/lib/badge/index.js +3 -0
  19. package/esm2015/lib/base/common.module.js +18 -0
  20. package/esm2015/lib/base/custom-cdk-overlay.service.js +47 -0
  21. package/esm2015/lib/base/drawing.class.js +11 -0
  22. package/esm2015/lib/base/events.class.js +53 -0
  23. package/esm2015/lib/base/index.js +7 -0
  24. package/esm2015/lib/base/mixin/base-components.class.js +86 -0
  25. package/esm2015/lib/base/mixin/button-mixin.class.js +129 -0
  26. package/esm2015/lib/base/mixin/clickable-mixin.class.js +24 -0
  27. package/esm2015/lib/base/mixin/constratctor.js +2 -0
  28. package/esm2015/lib/base/mixin/datalist-component.class.js +97 -0
  29. package/esm2015/lib/base/mixin/dropdown-mixin.class.js +36 -0
  30. package/esm2015/lib/base/mixin/index.js +3 -0
  31. package/esm2015/lib/base/mixin/interactive-mixin.class.js +77 -0
  32. package/esm2015/lib/base/mixin/loading-mixin.class.js +18 -0
  33. package/esm2015/lib/base/mixin/mixin.class.js +22 -0
  34. package/esm2015/lib/base/mixin/selection-component.class.js +158 -0
  35. package/esm2015/lib/base/mixin/sizable-mixin.class.js +18 -0
  36. package/esm2015/lib/base/mixin/textbox-mixin.class.js +38 -0
  37. package/esm2015/lib/base/mixin/value-mixin.class.js +190 -0
  38. package/esm2015/lib/base/overlay.service.js +91 -0
  39. package/esm2015/lib/base/responsive.directive.js +34 -0
  40. package/esm2015/lib/base/styles.class.js +4 -0
  41. package/esm2015/lib/button/button-group.component.js +131 -0
  42. package/esm2015/lib/button/button-item.class.js +2 -0
  43. package/esm2015/lib/button/button-item.component.js +81 -0
  44. package/esm2015/lib/button/button.component.js +73 -0
  45. package/esm2015/lib/button/button.module.js +33 -0
  46. package/esm2015/lib/button/index.js +6 -0
  47. package/esm2015/lib/calendar/calendar.component.js +287 -0
  48. package/esm2015/lib/calendar/calendar.module.js +25 -0
  49. package/esm2015/lib/calendar/index.js +3 -0
  50. package/esm2015/lib/carousel/carousel-arrows.component.js +53 -0
  51. package/esm2015/lib/carousel/carousel-item.component.js +21 -0
  52. package/esm2015/lib/carousel/carousel-pager.component.js +74 -0
  53. package/esm2015/lib/carousel/carousel-splidejs.class.js +82 -0
  54. package/esm2015/lib/carousel/carousel.class.js +10 -0
  55. package/esm2015/lib/carousel/carousel.component.js +246 -0
  56. package/esm2015/lib/carousel/carousel.module.js +24 -0
  57. package/esm2015/lib/carousel/index.js +7 -0
  58. package/esm2015/lib/checkbox/checkbox.component.js +59 -0
  59. package/esm2015/lib/checkbox/checkbox.module.js +20 -0
  60. package/esm2015/lib/checkbox/index.js +3 -0
  61. package/esm2015/lib/datalist/datalist.component.js +81 -0
  62. package/esm2015/lib/datalist/datalist.module.js +22 -0
  63. package/esm2015/lib/datalist/index.js +3 -0
  64. package/esm2015/lib/datepicker/datepicker.component.js +80 -0
  65. package/esm2015/lib/datepicker/datepicker.module.js +23 -0
  66. package/esm2015/lib/datepicker/index.js +3 -0
  67. package/esm2015/lib/decorators/content.component.js +26 -0
  68. package/esm2015/lib/decorators/decorators.module.js +23 -0
  69. package/esm2015/lib/decorators/index.js +5 -0
  70. package/esm2015/lib/decorators/prefix.component.js +26 -0
  71. package/esm2015/lib/decorators/suffix.component.js +26 -0
  72. package/esm2015/lib/dialog/dialog.class.js +2 -0
  73. package/esm2015/lib/dialog/dialog.component.js +45 -0
  74. package/esm2015/lib/dialog/dialog.module.js +26 -0
  75. package/esm2015/lib/dialog/dialog.service.js +146 -0
  76. package/esm2015/lib/dialog/index.js +5 -0
  77. package/esm2015/lib/drawer/drawer-container.component.js +73 -0
  78. package/esm2015/lib/drawer/drawer-content.component.js +27 -0
  79. package/esm2015/lib/drawer/drawer.component.js +145 -0
  80. package/esm2015/lib/drawer/drawer.module.js +23 -0
  81. package/esm2015/lib/drawer/index.js +5 -0
  82. package/esm2015/lib/dropdown/dropdown-base.class.js +98 -0
  83. package/esm2015/lib/dropdown/dropdown-panel.component.js +84 -0
  84. package/esm2015/lib/dropdown/dropdown.component.js +32 -0
  85. package/esm2015/lib/dropdown/dropdown.module.js +25 -0
  86. package/esm2015/lib/dropdown/index.js +4 -0
  87. package/esm2015/lib/form/form-field.component.js +20 -0
  88. package/esm2015/lib/form/form-field.module.js +21 -0
  89. package/esm2015/lib/form/form-hint.component.js +20 -0
  90. package/esm2015/lib/form/form.component.js +51 -0
  91. package/esm2015/lib/form/index.js +5 -0
  92. package/esm2015/lib/icon/icon.component.js +28 -0
  93. package/esm2015/lib/icon/icon.module.js +21 -0
  94. package/esm2015/lib/icon/index.js +3 -0
  95. package/esm2015/lib/input-mask/index.js +3 -0
  96. package/esm2015/lib/input-mask/input-mask.component.js +42 -0
  97. package/esm2015/lib/input-mask/input-mask.module.js +23 -0
  98. package/esm2015/lib/label/index.js +3 -0
  99. package/esm2015/lib/label/label.component.js +20 -0
  100. package/esm2015/lib/label/label.module.js +21 -0
  101. package/esm2015/lib/loading/index.js +6 -0
  102. package/esm2015/lib/loading/loading-spinner.component.js +32 -0
  103. package/esm2015/lib/loading/loading.component.js +54 -0
  104. package/esm2015/lib/loading/loading.directive.js +67 -0
  105. package/esm2015/lib/loading/loading.module.js +35 -0
  106. package/esm2015/lib/loading/loading.service.js +155 -0
  107. package/esm2015/lib/number-box/index.js +3 -0
  108. package/esm2015/lib/number-box/number-box.component.js +289 -0
  109. package/esm2015/lib/number-box/number-box.module.js +32 -0
  110. package/esm2015/lib/page/base-page.class.js +67 -0
  111. package/esm2015/lib/page/index.js +5 -0
  112. package/esm2015/lib/page/page-footer.component.js +28 -0
  113. package/esm2015/lib/page/page.component.js +33 -0
  114. package/esm2015/lib/page/page.module.js +18 -0
  115. package/esm2015/lib/password-box/index.js +3 -0
  116. package/esm2015/lib/password-box/password-box.component.js +74 -0
  117. package/esm2015/lib/password-box/password-box.module.js +35 -0
  118. package/esm2015/lib/popover/index.js +3 -0
  119. package/esm2015/lib/popover/popover.component.js +220 -0
  120. package/esm2015/lib/popover/popover.module.js +19 -0
  121. package/esm2015/lib/popup/index.js +4 -0
  122. package/esm2015/lib/popup/popup.component.js +105 -0
  123. package/esm2015/lib/popup/popup.module.js +26 -0
  124. package/esm2015/lib/popup/popup.service.js +94 -0
  125. package/esm2015/lib/radio/index.js +3 -0
  126. package/esm2015/lib/radio/radio.component.js +22 -0
  127. package/esm2015/lib/radio/radio.module.js +21 -0
  128. package/esm2015/lib/range-slider/index.js +3 -0
  129. package/esm2015/lib/range-slider/range-slider.component.js +22 -0
  130. package/esm2015/lib/range-slider/range-slider.module.js +21 -0
  131. package/esm2015/lib/selectbox/index.js +3 -0
  132. package/esm2015/lib/selectbox/selectbox.component.js +201 -0
  133. package/esm2015/lib/selectbox/selectbox.module.js +25 -0
  134. package/esm2015/lib/selection-list/index.js +3 -0
  135. package/esm2015/lib/selection-list/selection-list.component.js +47 -0
  136. package/esm2015/lib/selection-list/selection-list.module.js +21 -0
  137. package/esm2015/lib/side-menu/index.js +3 -0
  138. package/esm2015/lib/side-menu/side-menu.component.js +21 -0
  139. package/esm2015/lib/side-menu/side-menu.module.js +21 -0
  140. package/esm2015/lib/switch/index.js +3 -0
  141. package/esm2015/lib/switch/switch.component.js +30 -0
  142. package/esm2015/lib/switch/switch.module.js +21 -0
  143. package/esm2015/lib/tabs/index.js +8 -0
  144. package/esm2015/lib/tabs/tab-content.directive.js +29 -0
  145. package/esm2015/lib/tabs/tab-item.component.js +91 -0
  146. package/esm2015/lib/tabs/tab-strip.component.js +69 -0
  147. package/esm2015/lib/tabs/tab-view.component.js +45 -0
  148. package/esm2015/lib/tabs/tab.component.js +58 -0
  149. package/esm2015/lib/tabs/tabs.class.js +4 -0
  150. package/esm2015/lib/tabs/tabs.component.js +67 -0
  151. package/esm2015/lib/tabs/tabs.module.js +25 -0
  152. package/esm2015/lib/textbox/index.js +3 -0
  153. package/esm2015/lib/textbox/textbox.component.js +62 -0
  154. package/esm2015/lib/textbox/textbox.module.js +43 -0
  155. package/esm2015/lib/time-box/index.js +3 -0
  156. package/esm2015/lib/time-box/time-box.component.js +134 -0
  157. package/esm2015/lib/time-box/time-box.module.js +32 -0
  158. package/esm2015/lib/toast/index.js +5 -0
  159. package/esm2015/lib/toast/toast.class.js +2 -0
  160. package/esm2015/lib/toast/toast.component.js +50 -0
  161. package/esm2015/lib/toast/toast.module.js +22 -0
  162. package/esm2015/lib/toast/toast.service.js +114 -0
  163. package/esm2015/lib/tooltip/index.js +4 -0
  164. package/esm2015/lib/tooltip/tooltip.component.js +45 -0
  165. package/esm2015/lib/tooltip/tooltip.directive.js +86 -0
  166. package/esm2015/lib/tooltip/tooltip.module.js +23 -0
  167. package/esm2015/lib/validation/index.js +3 -0
  168. package/esm2015/lib/validation/validation-rule.widget.js +113 -0
  169. package/esm2015/lib/validation/validation.class.js +2 -0
  170. package/esm2015/lib/validation/validation.module.js +32 -0
  171. package/esm2015/public-api.js +42 -0
  172. package/fesm2015/acorex-components.js +6537 -0
  173. package/fesm2015/acorex-components.js.map +1 -0
  174. package/lib/alert/alert-button.component.d.ts +13 -0
  175. package/lib/alert/alert-contnet.component.d.ts +5 -0
  176. package/lib/alert/alert-footer.component.d.ts +5 -0
  177. package/lib/alert/alert-suffix.component.d.ts +5 -0
  178. package/lib/alert/alert-title.component.d.ts +5 -0
  179. package/lib/alert/alert.component.d.ts +46 -0
  180. package/lib/alert/alert.module.d.ts +13 -0
  181. package/{src/lib/alert/index.ts → lib/alert/index.d.ts} +0 -0
  182. package/lib/avatar/avatar.component.d.ts +20 -0
  183. package/lib/avatar/avatar.module.d.ts +8 -0
  184. package/{src/lib/avatar/index.ts → lib/avatar/index.d.ts} +0 -0
  185. package/lib/badge/badge.component.d.ts +11 -0
  186. package/lib/badge/badge.module.d.ts +8 -0
  187. package/lib/badge/index.d.ts +2 -0
  188. package/lib/base/common.module.d.ts +7 -0
  189. package/lib/base/custom-cdk-overlay.service.d.ts +19 -0
  190. package/{src/lib/base/drawing.class.ts → lib/base/drawing.class.d.ts} +1 -12
  191. package/{src/lib/base/events.class.ts → lib/base/events.class.d.ts} +11 -20
  192. package/{src/lib/base/index.ts → lib/base/index.d.ts} +0 -0
  193. package/lib/base/mixin/base-components.class.d.ts +86 -0
  194. package/lib/base/mixin/button-mixin.class.d.ts +82 -0
  195. package/lib/base/mixin/clickable-mixin.class.d.ts +43 -0
  196. package/lib/base/mixin/constratctor.d.ts +4 -0
  197. package/lib/base/mixin/datalist-component.class.d.ts +55 -0
  198. package/lib/base/mixin/dropdown-mixin.class.d.ts +48 -0
  199. package/{src/lib/base/mixin/index.ts → lib/base/mixin/index.d.ts} +1 -1
  200. package/lib/base/mixin/interactive-mixin.class.d.ts +65 -0
  201. package/lib/base/mixin/loading-mixin.class.d.ts +47 -0
  202. package/lib/base/mixin/mixin.class.d.ts +607 -0
  203. package/lib/base/mixin/selection-component.class.d.ts +56 -0
  204. package/lib/base/mixin/sizable-mixin.class.d.ts +41 -0
  205. package/lib/base/mixin/textbox-mixin.class.d.ts +59 -0
  206. package/lib/base/mixin/value-mixin.class.d.ts +71 -0
  207. package/lib/base/overlay.service.d.ts +31 -0
  208. package/lib/base/responsive.directive.d.ts +10 -0
  209. package/lib/base/styles.class.d.ts +17 -0
  210. package/lib/button/button-group.component.d.ts +36 -0
  211. package/{src/lib/button/button-item.class.ts → lib/button/button-item.class.d.ts} +4 -6
  212. package/lib/button/button-item.component.d.ts +94 -0
  213. package/lib/button/button.component.d.ts +21 -0
  214. package/lib/button/button.module.d.ts +12 -0
  215. package/{src/lib/button/index.ts → lib/button/index.d.ts} +1 -1
  216. package/lib/calendar/calendar.component.d.ts +56 -0
  217. package/lib/calendar/calendar.module.d.ts +12 -0
  218. package/{src/lib/calendar/index.ts → lib/calendar/index.d.ts} +0 -0
  219. package/lib/carousel/carousel-arrows.component.d.ts +14 -0
  220. package/lib/carousel/carousel-item.component.d.ts +8 -0
  221. package/lib/carousel/carousel-pager.component.d.ts +22 -0
  222. package/lib/carousel/carousel-splidejs.class.d.ts +18 -0
  223. package/{src/lib/carousel/carousel.class.ts → lib/carousel/carousel.class.d.ts} +13 -32
  224. package/lib/carousel/carousel.component.d.ts +62 -0
  225. package/lib/carousel/carousel.module.d.ts +11 -0
  226. package/{src/lib/carousel/index.ts → lib/carousel/index.d.ts} +0 -0
  227. package/lib/checkbox/checkbox.component.d.ts +13 -0
  228. package/lib/checkbox/checkbox.module.d.ts +9 -0
  229. package/{src/lib/checkbox/index.ts → lib/checkbox/index.d.ts} +1 -1
  230. package/lib/datalist/datalist.component.d.ts +25 -0
  231. package/lib/datalist/datalist.module.d.ts +9 -0
  232. package/{src/lib/datalist/index.ts → lib/datalist/index.d.ts} +0 -0
  233. package/lib/datepicker/datepicker.component.d.ts +18 -0
  234. package/lib/datepicker/datepicker.module.d.ts +10 -0
  235. package/{src/lib/datepicker/index.ts → lib/datepicker/index.d.ts} +0 -0
  236. package/lib/decorators/content.component.d.ts +8 -0
  237. package/lib/decorators/decorators.module.d.ts +10 -0
  238. package/{src/lib/decorators/index.ts → lib/decorators/index.d.ts} +1 -0
  239. package/lib/decorators/prefix.component.d.ts +8 -0
  240. package/lib/decorators/suffix.component.d.ts +8 -0
  241. package/{src/lib/dialog/dialog.class.ts → lib/dialog/dialog.class.d.ts} +1 -2
  242. package/lib/dialog/dialog.component.d.ts +15 -0
  243. package/lib/dialog/dialog.module.d.ts +13 -0
  244. package/lib/dialog/dialog.service.d.ts +36 -0
  245. package/{src/lib/dialog/index.ts → lib/dialog/index.d.ts} +0 -0
  246. package/lib/drawer/drawer-container.component.d.ts +13 -0
  247. package/lib/drawer/drawer-content.component.d.ts +8 -0
  248. package/lib/drawer/drawer.component.d.ts +30 -0
  249. package/lib/drawer/drawer.module.d.ts +10 -0
  250. package/{src/lib/drawer/index.ts → lib/drawer/index.d.ts} +0 -0
  251. package/lib/dropdown/dropdown-base.class.d.ts +94 -0
  252. package/lib/dropdown/dropdown-panel.component.d.ts +28 -0
  253. package/lib/dropdown/dropdown.component.d.ts +13 -0
  254. package/lib/dropdown/dropdown.module.d.ts +14 -0
  255. package/{src/lib/dropdown/index.ts → lib/dropdown/index.d.ts} +1 -1
  256. package/lib/form/form-field.component.d.ts +8 -0
  257. package/lib/form/form-field.module.d.ts +10 -0
  258. package/lib/form/form-hint.component.d.ts +8 -0
  259. package/lib/form/form.component.d.ts +13 -0
  260. package/{src/lib/form/index.ts → lib/form/index.d.ts} +1 -1
  261. package/lib/icon/icon.component.d.ts +10 -0
  262. package/lib/icon/icon.module.d.ts +8 -0
  263. package/{src/lib/icon/index.ts → lib/icon/index.d.ts} +0 -0
  264. package/{src/lib/input-mask/index.ts → lib/input-mask/index.d.ts} +0 -0
  265. package/lib/input-mask/input-mask.component.d.ts +14 -0
  266. package/lib/input-mask/input-mask.module.d.ts +9 -0
  267. package/{src/lib/label/index.ts → lib/label/index.d.ts} +1 -1
  268. package/lib/label/label.component.d.ts +8 -0
  269. package/lib/label/label.module.d.ts +8 -0
  270. package/{src/lib/loading/index.ts → lib/loading/index.d.ts} +0 -0
  271. package/lib/loading/loading-spinner.component.d.ts +5 -0
  272. package/lib/loading/loading.component.d.ts +19 -0
  273. package/lib/loading/loading.directive.d.ts +22 -0
  274. package/lib/loading/loading.module.d.ts +13 -0
  275. package/lib/loading/loading.service.d.ts +48 -0
  276. package/{src/lib/number-box/index.ts → lib/number-box/index.d.ts} +0 -0
  277. package/lib/number-box/number-box.component.d.ts +69 -0
  278. package/lib/number-box/number-box.module.d.ts +11 -0
  279. package/lib/page/base-page.class.d.ts +37 -0
  280. package/{src/lib/page/index.ts → lib/page/index.d.ts} +0 -1
  281. package/lib/page/page-footer.component.d.ts +7 -0
  282. package/lib/page/page.component.d.ts +13 -0
  283. package/lib/page/page.module.d.ts +7 -0
  284. package/lib/password-box/index.d.ts +2 -0
  285. package/lib/password-box/password-box.component.d.ts +24 -0
  286. package/lib/password-box/password-box.module.d.ts +12 -0
  287. package/{src/lib/popover/index.ts → lib/popover/index.d.ts} +1 -2
  288. package/lib/popover/popover.component.d.ts +44 -0
  289. package/lib/popover/popover.module.d.ts +8 -0
  290. package/{src/lib/popup/index.ts → lib/popup/index.d.ts} +0 -0
  291. package/lib/popup/popup.component.d.ts +34 -0
  292. package/lib/popup/popup.module.d.ts +12 -0
  293. package/lib/popup/popup.service.d.ts +37 -0
  294. package/lib/radio/index.d.ts +2 -0
  295. package/lib/radio/radio.component.d.ts +8 -0
  296. package/lib/radio/radio.module.d.ts +8 -0
  297. package/{src/lib/range-slider/index.ts → lib/range-slider/index.d.ts} +0 -0
  298. package/lib/range-slider/range-slider.component.d.ts +8 -0
  299. package/lib/range-slider/range-slider.module.d.ts +8 -0
  300. package/{src/lib/selectbox/index.ts → lib/selectbox/index.d.ts} +1 -1
  301. package/lib/selectbox/selectbox.component.d.ts +29 -0
  302. package/lib/selectbox/selectbox.module.d.ts +14 -0
  303. package/{src/lib/selection-list/index.ts → lib/selection-list/index.d.ts} +1 -1
  304. package/lib/selection-list/selection-list.component.d.ts +10 -0
  305. package/lib/selection-list/selection-list.module.d.ts +10 -0
  306. package/{src/lib/side-menu/index.ts → lib/side-menu/index.d.ts} +0 -0
  307. package/lib/side-menu/side-menu.component.d.ts +8 -0
  308. package/lib/side-menu/side-menu.module.d.ts +8 -0
  309. package/{src/lib/switch/index.ts → lib/switch/index.d.ts} +1 -1
  310. package/lib/switch/switch.component.d.ts +9 -0
  311. package/lib/switch/switch.module.d.ts +9 -0
  312. package/{src/lib/tabs/index.ts → lib/tabs/index.d.ts} +3 -1
  313. package/lib/tabs/tab-content.directive.d.ts +11 -0
  314. package/lib/tabs/tab-item.component.d.ts +17 -0
  315. package/lib/tabs/tab-strip.component.d.ts +19 -0
  316. package/lib/tabs/tab-view.component.d.ts +14 -0
  317. package/lib/tabs/tab.component.d.ts +18 -0
  318. package/{src/lib/tabs/tabs.class.ts → lib/tabs/tabs.class.d.ts} +5 -8
  319. package/lib/tabs/tabs.component.d.ts +17 -0
  320. package/lib/tabs/tabs.module.d.ts +12 -0
  321. package/{src/lib/textbox/index.ts → lib/textbox/index.d.ts} +1 -1
  322. package/lib/textbox/textbox.component.d.ts +19 -0
  323. package/lib/textbox/textbox.module.d.ts +13 -0
  324. package/{src/lib/time-box/index.ts → lib/time-box/index.d.ts} +0 -0
  325. package/lib/time-box/time-box.component.d.ts +29 -0
  326. package/lib/time-box/time-box.module.d.ts +11 -0
  327. package/{src/lib/toast/index.ts → lib/toast/index.d.ts} +0 -0
  328. package/{src/lib/toast/toast.class.ts → lib/toast/toast.class.d.ts} +1 -4
  329. package/lib/toast/toast.component.d.ts +16 -0
  330. package/lib/toast/toast.module.d.ts +9 -0
  331. package/lib/toast/toast.service.d.ts +18 -0
  332. package/{src/lib/tooltip/index.ts → lib/tooltip/index.d.ts} +0 -0
  333. package/lib/tooltip/tooltip.component.d.ts +10 -0
  334. package/lib/tooltip/tooltip.directive.d.ts +18 -0
  335. package/lib/tooltip/tooltip.module.d.ts +10 -0
  336. package/{src/lib/validation/index.ts → lib/validation/index.d.ts} +1 -1
  337. package/lib/validation/validation-rule.widget.d.ts +25 -0
  338. package/lib/validation/validation.class.d.ts +17 -0
  339. package/lib/validation/validation.module.d.ts +9 -0
  340. package/package.json +19 -12
  341. package/{src/public-api.ts → public-api.d.ts} +5 -3
  342. package/karma.conf.js +0 -44
  343. package/ng-package.json +0 -11
  344. package/src/lib/alert/alert-button.component.ts +0 -45
  345. package/src/lib/alert/alert-contnet.component.ts +0 -14
  346. package/src/lib/alert/alert-footer.component.ts +0 -16
  347. package/src/lib/alert/alert-suffix.component.ts +0 -16
  348. package/src/lib/alert/alert-title.component.ts +0 -14
  349. package/src/lib/alert/alert.component.html +0 -13
  350. package/src/lib/alert/alert.component.ts +0 -139
  351. package/src/lib/alert/alert.module.ts +0 -26
  352. package/src/lib/avatar/avatar.component.html +0 -2
  353. package/src/lib/avatar/avatar.component.ts +0 -64
  354. package/src/lib/avatar/avatar.module.ts +0 -14
  355. package/src/lib/base/common.module.ts +0 -13
  356. package/src/lib/base/custom-cdk-overlay.service.ts +0 -83
  357. package/src/lib/base/mixin/base-components.class.ts +0 -112
  358. package/src/lib/base/mixin/button-mixin.class.ts +0 -145
  359. package/src/lib/base/mixin/clickable-mixin.class.ts +0 -33
  360. package/src/lib/base/mixin/constratctor.ts +0 -3
  361. package/src/lib/base/mixin/datalist-component.class.ts +0 -105
  362. package/src/lib/base/mixin/dropdown-mixin.class.ts +0 -55
  363. package/src/lib/base/mixin/interactive-mixin.class.ts +0 -83
  364. package/src/lib/base/mixin/loading-mixin.class.ts +0 -32
  365. package/src/lib/base/mixin/mixin.class.ts +0 -70
  366. package/src/lib/base/mixin/page-component.class.ts +0 -15
  367. package/src/lib/base/mixin/selection-component.class.ts +0 -185
  368. package/src/lib/base/mixin/sizable-mixin.class.ts +0 -30
  369. package/src/lib/base/mixin/textbox-mixin.class.ts +0 -51
  370. package/src/lib/base/mixin/value-mixin.class.ts +0 -215
  371. package/src/lib/base/overlay.service.ts +0 -117
  372. package/src/lib/base/responsive.directive.ts +0 -31
  373. package/src/lib/base/styles.class.ts +0 -24
  374. package/src/lib/button/button-group.component.html +0 -2
  375. package/src/lib/button/button-group.component.ts +0 -142
  376. package/src/lib/button/button-item.component.ts +0 -79
  377. package/src/lib/button/button.component.html +0 -18
  378. package/src/lib/button/button.component.ts +0 -71
  379. package/src/lib/button/button.module.ts +0 -23
  380. package/src/lib/calendar/calendar.component.html +0 -74
  381. package/src/lib/calendar/calendar.component.ts +0 -60
  382. package/src/lib/calendar/calendar.module.ts +0 -17
  383. package/src/lib/carousel/carousel-arrows.component.ts +0 -46
  384. package/src/lib/carousel/carousel-item.component.ts +0 -19
  385. package/src/lib/carousel/carousel-pager.component.ts +0 -83
  386. package/src/lib/carousel/carousel-splidejs.class.ts +0 -104
  387. package/src/lib/carousel/carousel.component.html +0 -11
  388. package/src/lib/carousel/carousel.component.ts +0 -273
  389. package/src/lib/carousel/carousel.module.ts +0 -19
  390. package/src/lib/checkbox/checkbox.component.html +0 -15
  391. package/src/lib/checkbox/checkbox.component.ts +0 -43
  392. package/src/lib/checkbox/checkbox.module.ts +0 -11
  393. package/src/lib/datalist/datalist.component.html +0 -35
  394. package/src/lib/datalist/datalist.component.ts +0 -86
  395. package/src/lib/datalist/datalist.module.ts +0 -17
  396. package/src/lib/datapager/datapager-base.component.ts +0 -29
  397. package/src/lib/datapager/datapager-dots-selector.component.ts +0 -0
  398. package/src/lib/datapager/datapager-info.component.ts +0 -64
  399. package/src/lib/datapager/datapager-input-selector.component.ts +0 -54
  400. package/src/lib/datapager/datapager-next-buttons.components.ts +0 -52
  401. package/src/lib/datapager/datapager-numeric-selector.component.ts +0 -94
  402. package/src/lib/datapager/datapager-pagesize-dropdown.component.ts +0 -77
  403. package/src/lib/datapager/datapager-prev-buttons.component.ts +0 -50
  404. package/src/lib/datapager/datapager.component.html +0 -19
  405. package/src/lib/datapager/datapager.component.ts +0 -146
  406. package/src/lib/datapager/datapager.module.ts +0 -32
  407. package/src/lib/datapager/index.ts +0 -8
  408. package/src/lib/datepicker/datepicker.component.html +0 -11
  409. package/src/lib/datepicker/datepicker.component.ts +0 -86
  410. package/src/lib/datepicker/datepicker.module.ts +0 -16
  411. package/src/lib/decorators/decorators.module.ts +0 -15
  412. package/src/lib/decorators/prefix.component.ts +0 -23
  413. package/src/lib/decorators/suffix.component.ts +0 -25
  414. package/src/lib/dialog/dialog.component.html +0 -22
  415. package/src/lib/dialog/dialog.component.ts +0 -48
  416. package/src/lib/dialog/dialog.module.ts +0 -19
  417. package/src/lib/dialog/dialog.service.ts +0 -154
  418. package/src/lib/drawer/drawer-container.component.ts +0 -69
  419. package/src/lib/drawer/drawer-content.component.ts +0 -24
  420. package/src/lib/drawer/drawer.component.ts +0 -156
  421. package/src/lib/drawer/drawer.module.ts +0 -16
  422. package/src/lib/dropdown/dropdown-base.class.ts +0 -107
  423. package/src/lib/dropdown/dropdown-panel.component.html +0 -15
  424. package/src/lib/dropdown/dropdown-panel.component.ts +0 -105
  425. package/src/lib/dropdown/dropdown.component.html +0 -19
  426. package/src/lib/dropdown/dropdown.component.ts +0 -31
  427. package/src/lib/dropdown/dropdown.module.ts +0 -17
  428. package/src/lib/form/form-field.component.ts +0 -18
  429. package/src/lib/form/form-field.module.ts +0 -14
  430. package/src/lib/form/form-hint.component.ts +0 -18
  431. package/src/lib/form/form.component.ts +0 -54
  432. package/src/lib/icon/icon.component.ts +0 -27
  433. package/src/lib/icon/icon.module.ts +0 -14
  434. package/src/lib/input-mask/input-mask.component.ts +0 -43
  435. package/src/lib/input-mask/input-mask.module.ts +0 -15
  436. package/src/lib/label/label.component.html +0 -3
  437. package/src/lib/label/label.component.ts +0 -16
  438. package/src/lib/label/label.module.ts +0 -14
  439. package/src/lib/loading/loading-spinner.component.ts +0 -17
  440. package/src/lib/loading/loading.component.ts +0 -55
  441. package/src/lib/loading/loading.directive.ts +0 -86
  442. package/src/lib/loading/loading.module.ts +0 -32
  443. package/src/lib/loading/loading.service.ts +0 -172
  444. package/src/lib/number-box/number-box.component.html +0 -15
  445. package/src/lib/number-box/number-box.component.ts +0 -297
  446. package/src/lib/number-box/number-box.module.ts +0 -22
  447. package/src/lib/page/base-page.class.ts +0 -80
  448. package/src/lib/page/page-footer.component.ts +0 -19
  449. package/src/lib/page/page.component.ts +0 -32
  450. package/src/lib/page/page.module.ts +0 -11
  451. package/src/lib/popover/popover.component.html +0 -3
  452. package/src/lib/popover/popover.component.ts +0 -229
  453. package/src/lib/popover/popover.module.ts +0 -11
  454. package/src/lib/popup/popup.component.html +0 -25
  455. package/src/lib/popup/popup.component.ts +0 -118
  456. package/src/lib/popup/popup.module.ts +0 -19
  457. package/src/lib/popup/popup.service.ts +0 -112
  458. package/src/lib/range-slider/range-slider.component.html +0 -1
  459. package/src/lib/range-slider/range-slider.component.ts +0 -21
  460. package/src/lib/range-slider/range-slider.module.ts +0 -14
  461. package/src/lib/selectbox/selectbox.component.html +0 -63
  462. package/src/lib/selectbox/selectbox.component.ts +0 -211
  463. package/src/lib/selectbox/selectbox.module.ts +0 -15
  464. package/src/lib/selection-list/selection-list.component.html +0 -31
  465. package/src/lib/selection-list/selection-list.component.ts +0 -56
  466. package/src/lib/selection-list/selection-list.module.ts +0 -13
  467. package/src/lib/side-menu/side-menu.component.html +0 -2
  468. package/src/lib/side-menu/side-menu.component.ts +0 -20
  469. package/src/lib/side-menu/side-menu.module.ts +0 -14
  470. package/src/lib/switch/switch.component.html +0 -8
  471. package/src/lib/switch/switch.component.ts +0 -25
  472. package/src/lib/switch/switch.module.ts +0 -15
  473. package/src/lib/tabs/tab-strip.component.html +0 -20
  474. package/src/lib/tabs/tab-strip.component.ts +0 -71
  475. package/src/lib/tabs/tab-view.component.html +0 -8
  476. package/src/lib/tabs/tab-view.component.ts +0 -50
  477. package/src/lib/tabs/tab.component.ts +0 -56
  478. package/src/lib/tabs/tabs.module.ts +0 -16
  479. package/src/lib/textbox/textbox.component.html +0 -20
  480. package/src/lib/textbox/textbox.component.ts +0 -64
  481. package/src/lib/textbox/textbox.module.ts +0 -24
  482. package/src/lib/time-box/time-box.component.html +0 -14
  483. package/src/lib/time-box/time-box.component.ts +0 -145
  484. package/src/lib/time-box/time-box.module.ts +0 -22
  485. package/src/lib/toast/toast.component.html +0 -12
  486. package/src/lib/toast/toast.component.ts +0 -57
  487. package/src/lib/toast/toast.module.ts +0 -15
  488. package/src/lib/toast/toast.service.ts +0 -122
  489. package/src/lib/tooltip/tooltip.component.html +0 -6
  490. package/src/lib/tooltip/tooltip.component.ts +0 -36
  491. package/src/lib/tooltip/tooltip.directive.ts +0 -93
  492. package/src/lib/tooltip/tooltip.module.ts +0 -16
  493. package/src/lib/validation/validation-rule.widget.ts +0 -120
  494. package/src/lib/validation/validation.class.ts +0 -23
  495. package/src/lib/validation/validation.module.ts +0 -26
  496. package/tsconfig.lib.json +0 -20
  497. package/tsconfig.lib.prod.json +0 -10
  498. package/tsconfig.spec.json +0 -17
@@ -0,0 +1,62 @@
1
+ import { ElementRef, ChangeDetectorRef, NgZone, EventEmitter } from '@angular/core';
2
+ import { AXBaseComponentMixin, AXValueChangedEvent } from '../base';
3
+ import { AXCarousel, AXCarouselCore } from './carousel.class';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AXCarouselComponent extends AXBaseComponentMixin implements AXCarousel {
6
+ private zone;
7
+ private core;
8
+ constructor(elementRef: ElementRef, zone: NgZone, cdr: ChangeDetectorRef, core: AXCarouselCore);
9
+ onOptionsChanged: EventEmitter<void>;
10
+ onSlideChanged: EventEmitter<AXValueChangedEvent<number>>;
11
+ pageSizeChange: EventEmitter<number>;
12
+ private _pageSize;
13
+ get pageSize(): number;
14
+ set pageSize(v: number);
15
+ gap: number;
16
+ autoplayChange: EventEmitter<boolean>;
17
+ private _autoplay;
18
+ get autoplay(): boolean;
19
+ set autoplay(v: boolean);
20
+ intervalChange: EventEmitter<number>;
21
+ private _interval;
22
+ get interval(): number;
23
+ set interval(v: number);
24
+ paddingChange: EventEmitter<number | string>;
25
+ private _padding;
26
+ get padding(): number | string;
27
+ set padding(v: number | string);
28
+ centeredChange: EventEmitter<boolean>;
29
+ private _centered;
30
+ get centered(): boolean;
31
+ set centered(v: boolean);
32
+ verticalChange: EventEmitter<boolean>;
33
+ private _vertical;
34
+ get vertical(): boolean;
35
+ set vertical(v: boolean);
36
+ loopChange: EventEmitter<boolean>;
37
+ private _loop;
38
+ get loop(): boolean;
39
+ set loop(v: boolean);
40
+ rewindChange: EventEmitter<boolean>;
41
+ private _rewind;
42
+ get rewind(): boolean;
43
+ set rewind(v: boolean);
44
+ private _visibleIndex;
45
+ get visibleIndex(): number;
46
+ set visibleIndex(v: number);
47
+ onItemsChanged: EventEmitter<AXValueChangedEvent<HTMLDivElement[]>>;
48
+ private _items;
49
+ get items(): HTMLDivElement[];
50
+ set items(v: HTMLDivElement[]);
51
+ onViewInit(): void;
52
+ next(): void;
53
+ last(): void;
54
+ prev(): void;
55
+ first(): void;
56
+ goToSlide(index: number): void;
57
+ goToPage(index: number): void;
58
+ get host(): HTMLDivElement;
59
+ onDestroy(): void;
60
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXCarouselComponent, never>;
61
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXCarouselComponent, "ax-carousel", never, { "pageSize": "pageSize"; "gap": "gap"; "autoplay": "autoplay"; "interval": "interval"; "padding": "padding"; "centered": "centered"; "vertical": "vertical"; "loop": "loop"; "rewind": "rewind"; }, { "onOptionsChanged": "onOptionsChanged"; "onSlideChanged": "onSlideChanged"; "pageSizeChange": "pageSizeChange"; "autoplayChange": "autoplayChange"; "intervalChange": "intervalChange"; "paddingChange": "paddingChange"; "centeredChange": "centeredChange"; "verticalChange": "verticalChange"; "loopChange": "loopChange"; "rewindChange": "rewindChange"; "onItemsChanged": "onItemsChanged"; }, never, ["ax-carousel-item", "ax-carousel-arrows", "ax-carousel-pager"]>;
62
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./carousel.component";
3
+ import * as i2 from "./carousel-item.component";
4
+ import * as i3 from "./carousel-arrows.component";
5
+ import * as i4 from "./carousel-pager.component";
6
+ import * as i5 from "@angular/common";
7
+ export declare class AXCarouselModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXCarouselModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXCarouselModule, [typeof i1.AXCarouselComponent, typeof i2.AXCarouselItemComponent, typeof i3.AXCarouselArrowsComponent, typeof i4.AXCarouselPagerComponent], [typeof i5.CommonModule], [typeof i1.AXCarouselComponent, typeof i2.AXCarouselItemComponent, typeof i3.AXCarouselArrowsComponent, typeof i4.AXCarouselPagerComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<AXCarouselModule>;
11
+ }
@@ -0,0 +1,13 @@
1
+ import { ChangeDetectorRef, ElementRef, QueryList } from '@angular/core';
2
+ import { AXBaseValueComponentMixin } from '../base';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AXCheckBoxComponent extends AXBaseValueComponentMixin {
5
+ _hint: QueryList<ElementRef>;
6
+ _label: QueryList<ElementRef>;
7
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
8
+ onInit(): void;
9
+ _onValueChanging(value: any): any;
10
+ _handleOnClickEvent(e: MouseEvent): boolean;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXCheckBoxComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXCheckBoxComponent, "ax-check-box", never, { "disabled": "disabled"; "tabIndex": "tabIndex"; "readonly": "readonly"; "allowNull": "allowNull"; "value": "value"; "debounceTime": "debounceTime"; "name": "name"; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; }, ["_hint", "_label"], ["ax-label", "ax-form-hint", "ax-validation-rule"]>;
13
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./checkbox.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/forms";
5
+ export declare class AXCheckBoxModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXCheckBoxModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXCheckBoxModule, [typeof i1.AXCheckBoxComponent], [typeof i2.CommonModule, typeof i3.FormsModule], [typeof i1.AXCheckBoxComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<AXCheckBoxModule>;
9
+ }
@@ -1,2 +1,2 @@
1
1
  export * from './checkbox.component';
2
- export * from './checkbox.module';
2
+ export * from './checkbox.module';
@@ -0,0 +1,25 @@
1
+ import { ElementRef, ChangeDetectorRef, TemplateRef } from '@angular/core';
2
+ import { AXBaseSelectionValueMixin } from '../base';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AXDataListComponent extends AXBaseSelectionValueMixin {
5
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
6
+ _container: ElementRef<HTMLDivElement>;
7
+ _contentItemTemplate: TemplateRef<any>;
8
+ private _itemTemplate;
9
+ get itemTemplate(): TemplateRef<any>;
10
+ set itemTemplate(v: TemplateRef<any>);
11
+ _contentEmptyTemplate: TemplateRef<any>;
12
+ private _emptyTemplate;
13
+ get emptyTemplate(): TemplateRef<any>;
14
+ set emptyTemplate(v: TemplateRef<any>);
15
+ _contentloadingTemplate: TemplateRef<any>;
16
+ private _loadingTemplate;
17
+ get loadingTemplate(): TemplateRef<any>;
18
+ set loadingTemplate(v: TemplateRef<any>);
19
+ _handleOnItemClick(e: MouseEvent, item: any): void;
20
+ _handleListScroll(e: Event): void;
21
+ private _checkForLoadData;
22
+ _onDataLoaded(): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXDataListComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXDataListComponent, "ax-datalist", never, { "disabled": "disabled"; "readonly": "readonly"; "tabIndex": "tabIndex"; "size": "size"; "value": "value"; "items": "items"; "pageSize": "pageSize"; "itemTemplate": "itemTemplate"; "emptyTemplate": "emptyTemplate"; "loadingTemplate": "loadingTemplate"; }, { "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; }, ["_contentItemTemplate", "_contentEmptyTemplate", "_contentloadingTemplate"], never>;
25
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./datalist.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../button/button.module";
5
+ export declare class AXDataListModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXDataListModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXDataListModule, [typeof i1.AXDataListComponent], [typeof i2.CommonModule, typeof i3.AXButtonModule], [typeof i1.AXDataListComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<AXDataListModule>;
9
+ }
@@ -0,0 +1,18 @@
1
+ import { ElementRef, ChangeDetectorRef } from '@angular/core';
2
+ import { AXBaseTextBoxMixin } from '../base/mixin/mixin.class';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AXDatepickerComponent extends AXBaseTextBoxMixin {
5
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
6
+ dayItems: number[];
7
+ yearItems: number[];
8
+ monthItems: string[];
9
+ _showDays: boolean;
10
+ _showsMonths: boolean;
11
+ _showYears: boolean;
12
+ showMonths(): void;
13
+ showYears(): void;
14
+ showDays(): void;
15
+ createYears(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXDatepickerComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXDatepickerComponent, "ax-date-picker", never, { "disabled": "disabled"; "readonly": "readonly"; "tabIndex": "tabIndex"; "cssClass": "cssClass"; "size": "size"; "placeholder": "placeholder"; "maxLength": "maxLength"; "allowNull": "allowNull"; "debounceTime": "debounceTime"; "value": "value"; "name": "name"; }, { "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; }, never, ["ax-prefix", "ax-suffix"]>;
18
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./datepicker.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../calendar/calendar.module";
5
+ import * as i4 from "../dropdown/dropdown.module";
6
+ export declare class AXDatepickerModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXDatepickerModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXDatepickerModule, [typeof i1.AXDatepickerComponent], [typeof i2.CommonModule, typeof i3.AXCalendarModule, typeof i4.AXDropdownModule], [typeof i1.AXDatepickerComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<AXDatepickerModule>;
10
+ }
@@ -0,0 +1,8 @@
1
+ import { ElementRef, ChangeDetectorRef } from '@angular/core';
2
+ import { AXBaseComponentMixin } from '../base';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AXDecoratorContentComponent extends AXBaseComponentMixin {
5
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXDecoratorContentComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXDecoratorContentComponent, "ax-content", never, {}, {}, never, ["*"]>;
8
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./prefix.component";
3
+ import * as i2 from "./suffix.component";
4
+ import * as i3 from "./content.component";
5
+ import * as i4 from "@angular/common";
6
+ export declare class AXEditorDecoratorModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXEditorDecoratorModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXEditorDecoratorModule, [typeof i1.AXDecoratorPrefixComponent, typeof i2.AXDecoratorSuffixComponent, typeof i3.AXDecoratorContentComponent], [typeof i4.CommonModule], [typeof i1.AXDecoratorPrefixComponent, typeof i2.AXDecoratorSuffixComponent, typeof i3.AXDecoratorContentComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<AXEditorDecoratorModule>;
10
+ }
@@ -1,3 +1,4 @@
1
1
  export * from './prefix.component';
2
2
  export * from './suffix.component';
3
+ export * from './content.component';
3
4
  export * from './decorators.module';
@@ -0,0 +1,8 @@
1
+ import { ElementRef, ChangeDetectorRef } from '@angular/core';
2
+ import { AXBaseComponentMixin } from '../base';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AXDecoratorPrefixComponent extends AXBaseComponentMixin {
5
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXDecoratorPrefixComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXDecoratorPrefixComponent, "ax-prefix", never, {}, {}, never, ["ax-button,ax-loading,ax-icon,ax-badge"]>;
8
+ }
@@ -0,0 +1,8 @@
1
+ import { ElementRef, ChangeDetectorRef } from '@angular/core';
2
+ import { AXBaseComponentMixin } from '../base';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AXDecoratorSuffixComponent extends AXBaseComponentMixin {
5
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXDecoratorSuffixComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXDecoratorSuffixComponent, "ax-suffix", never, {}, {}, never, ["ax-button,ax-icon,ax-badge"]>;
8
+ }
@@ -1,6 +1,5 @@
1
1
  import { AXStyleColorType } from "../base/styles.class";
2
2
  import { AXButtonItem } from "../button";
3
-
4
3
  export interface AXDialogOptions {
5
4
  title: string;
6
5
  content: string;
@@ -10,4 +9,4 @@ export interface AXDialogOptions {
10
9
  }
11
10
  export interface AXDialogRef {
12
11
  close(): void;
13
- }
12
+ }
@@ -0,0 +1,15 @@
1
+ import { ElementRef, ChangeDetectorRef } from '@angular/core';
2
+ import { AXBaseComponentMixin } from '../base';
3
+ import { AXButtonItem } from '../button';
4
+ import { AXDialogOptions } from './dialog.class';
5
+ import * as i0 from "@angular/core";
6
+ export declare class AXDialogComponent extends AXBaseComponentMixin {
7
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
8
+ options: AXDialogOptions;
9
+ _icon: string;
10
+ close: () => void;
11
+ onInit(): void;
12
+ _handleButtonClick(button: AXButtonItem): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXDialogComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXDialogComponent, "ax-dialog", never, {}, {}, never, never>;
15
+ }
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./dialog.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/cdk/drag-drop";
5
+ import * as i4 from "@angular/cdk/a11y";
6
+ import * as i5 from "../button/button.module";
7
+ import * as i6 from "../page/page.module";
8
+ import * as i7 from "../decorators/decorators.module";
9
+ export declare class AXDialogModule {
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXDialogModule, never>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXDialogModule, [typeof i1.AXDialogComponent], [typeof i2.CommonModule, typeof i3.DragDropModule, typeof i4.A11yModule, typeof i5.AXButtonModule, typeof i6.AXPageModule, typeof i7.AXEditorDecoratorModule], [typeof i1.AXDialogComponent]>;
12
+ static ɵinj: i0.ɵɵInjectorDeclaration<AXDialogModule>;
13
+ }
@@ -0,0 +1,36 @@
1
+ import { Overlay, ScrollStrategyOptions } from '@angular/cdk/overlay';
2
+ import { Injector } from '@angular/core';
3
+ import { AXStyleColorType } from '../base/styles.class';
4
+ import { AXDialogOptions } from './dialog.class';
5
+ import * as i0 from "@angular/core";
6
+ /**
7
+ * The Button is a component which detects user interaction and triggers a corresponding event
8
+ *
9
+ * @category Components
10
+ */
11
+ export declare class AXDialogService {
12
+ private overlayService;
13
+ private parentInjector;
14
+ private sso;
15
+ /**
16
+ * @ignore
17
+ */
18
+ constructor(overlayService: Overlay, parentInjector: Injector, sso: ScrollStrategyOptions);
19
+ /**
20
+ * Show an alert box with 'Okay' button.
21
+ */
22
+ alert(title: string, content: string, type?: AXStyleColorType): Promise<void>;
23
+ /**
24
+ * Show a confirm box with 'Okay' & 'Cancel' buttons.
25
+ */
26
+ confirm(title: string, content: string, type?: AXStyleColorType): Promise<void>;
27
+ /**
28
+ * Show a custom dialog box.
29
+ */
30
+ show(options: AXDialogOptions): Promise<{
31
+ name: string;
32
+ }>;
33
+ private open;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXDialogService, never>;
35
+ static ɵprov: i0.ɵɵInjectableDeclaration<AXDialogService>;
36
+ }
@@ -0,0 +1,13 @@
1
+ import { ElementRef, ChangeDetectorRef, NgZone, QueryList } from '@angular/core';
2
+ import { AXBaseComponentMixin } from '../base';
3
+ import { AXDrawerComponent } from './drawer.component';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AXDrawerContainerComponent extends AXBaseComponentMixin {
6
+ private zone;
7
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, zone: NgZone);
8
+ drawers: QueryList<AXDrawerComponent>;
9
+ onViewInit(): void;
10
+ private _updateWidth;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXDrawerContainerComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXDrawerContainerComponent, "ax-drawer-container", never, { "rtl": "rtl"; }, {}, ["drawers"], ["ax-drawer[location='start']", "ax-drawer-content", "ax-drawer[location='end']"]>;
13
+ }
@@ -0,0 +1,8 @@
1
+ import { ElementRef, ChangeDetectorRef } from '@angular/core';
2
+ import { AXBaseComponentMixin } from '../base';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AXDrawerContentComponent extends AXBaseComponentMixin {
5
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXDrawerContentComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXDrawerContentComponent, "ax-drawer-content", never, {}, {}, never, ["*"]>;
8
+ }
@@ -0,0 +1,30 @@
1
+ import { ElementRef, ChangeDetectorRef, NgZone, EventEmitter } from '@angular/core';
2
+ import { AXBaseComponentMixin, AXEvent } from '../base';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AXDrawerComponent extends AXBaseComponentMixin {
5
+ private elementRef;
6
+ private zone;
7
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, zone: NgZone);
8
+ onChanged: EventEmitter<AXEvent>;
9
+ mode: 'push' | 'overlay';
10
+ _currentMode: 'push' | 'overlay';
11
+ location: 'start' | 'end';
12
+ private _backdrop;
13
+ private _collapsed;
14
+ get collapsed(): boolean;
15
+ set collapsed(v: boolean);
16
+ onInit(): void;
17
+ private _updateClass;
18
+ onViewInit(): void;
19
+ toggle(): void;
20
+ _handleWindowsResize(e: UIEvent): void;
21
+ _detectSize(): void;
22
+ private _emitChange;
23
+ private _setOverlayMode;
24
+ private _setPushMode;
25
+ private _addBackdrop;
26
+ private _removeBackdrop;
27
+ private _handleBackfropClick;
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXDrawerComponent, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXDrawerComponent, "ax-drawer", never, { "mode": "mode"; "location": "location"; "collapsed": "collapsed"; }, { "onChanged": "onChanged"; }, never, ["*"]>;
30
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./drawer.component";
3
+ import * as i2 from "./drawer-container.component";
4
+ import * as i3 from "./drawer-content.component";
5
+ import * as i4 from "@angular/common";
6
+ export declare class AXDrawerModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXDrawerModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXDrawerModule, [typeof i1.AXDrawerComponent, typeof i2.AXDrawerContainerComponent, typeof i3.AXDrawerContentComponent], [typeof i4.CommonModule], [typeof i1.AXDrawerComponent, typeof i2.AXDrawerContainerComponent, typeof i3.AXDrawerContentComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<AXDrawerModule>;
10
+ }
@@ -0,0 +1,94 @@
1
+ import { EventEmitter } from "@angular/core";
2
+ import { AXBaseComponent, AXConnectedPosition, AXEvent } from "../base";
3
+ import { AXPopoverComponent } from "../popover";
4
+ import * as i0 from "@angular/core";
5
+ export declare const AXBaseDropdownMixin: {
6
+ new (...args: any[]): {
7
+ size: import("../base").AXElementSize;
8
+ _onInternalInit(): void;
9
+ id: string;
10
+ rtl: boolean;
11
+ cssClass: string;
12
+ cssStyle: string;
13
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
14
+ _cdr: import("@angular/core").ChangeDetectorRef;
15
+ _isInited: boolean;
16
+ _isRendered: boolean;
17
+ ngOnInit(): void;
18
+ ngAfterViewInit(): void;
19
+ ngOnDestroy(): void;
20
+ _getHostElement<T = HTMLElement>(): T;
21
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
22
+ _onInternalViewInit(): void;
23
+ _onInternalDestroy(): void;
24
+ onInit(): void;
25
+ onRenderCssClass(): void;
26
+ onViewInit(): void;
27
+ onDestroy(): void;
28
+ onOptionChanging(option: {
29
+ name: string;
30
+ value?: any;
31
+ }): any;
32
+ onOptionChanged(option: {
33
+ name: string;
34
+ oldValue?: any;
35
+ newValue?: any;
36
+ }): void;
37
+ };
38
+ } & (abstract new (...args: any[]) => {
39
+ "__#5@#disabled": boolean;
40
+ disabled: boolean;
41
+ "__#5@#tabIndex": number;
42
+ tabIndex: number;
43
+ onFocus: EventEmitter<import("../base").AXFocusEvent>;
44
+ _emitOnFocusEvent(e: FocusEvent): void;
45
+ onBlur: EventEmitter<import("../base").AXFocusEvent>;
46
+ _emitOnBlurEvent(e: FocusEvent): void;
47
+ focus(): void;
48
+ id: string;
49
+ rtl: boolean;
50
+ cssClass: string;
51
+ cssStyle: string;
52
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
53
+ _cdr: import("@angular/core").ChangeDetectorRef;
54
+ _isInited: boolean;
55
+ _isRendered: boolean;
56
+ ngOnInit(): void;
57
+ ngAfterViewInit(): void;
58
+ ngOnDestroy(): void;
59
+ _getHostElement<T = HTMLElement>(): T;
60
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
61
+ _onInternalInit(): void;
62
+ _onInternalViewInit(): void;
63
+ _onInternalDestroy(): void;
64
+ onInit(): void;
65
+ onRenderCssClass(): void;
66
+ onViewInit(): void;
67
+ onDestroy(): void;
68
+ onOptionChanging(option: {
69
+ name: string;
70
+ value?: any;
71
+ }): any;
72
+ onOptionChanged(option: {
73
+ name: string;
74
+ oldValue?: any;
75
+ newValue?: any;
76
+ }): void;
77
+ }) & typeof AXBaseComponent;
78
+ export declare abstract class AXBaseDropDownComponent extends AXBaseDropdownMixin {
79
+ fitParent: boolean;
80
+ dropdownWidth: number;
81
+ onOpened: EventEmitter<AXEvent>;
82
+ onClosed: EventEmitter<AXEvent>;
83
+ protected abstract popover: AXPopoverComponent;
84
+ position: AXConnectedPosition[];
85
+ _emitOnOpenedEvent(): void;
86
+ _emitOnClosedEvent(): void;
87
+ onViewInit(): void;
88
+ toggle(): void;
89
+ close(): void;
90
+ open(): void;
91
+ get isOpen(): boolean;
92
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXBaseDropDownComponent, never>;
93
+ static ɵprov: i0.ɵɵInjectableDeclaration<AXBaseDropDownComponent>;
94
+ }
@@ -0,0 +1,28 @@
1
+ import { ElementRef, ChangeDetectorRef, QueryList, EventEmitter } from '@angular/core';
2
+ import { Subscription } from 'rxjs';
3
+ import { AXButtonClickEvent, AXClickEvent } from '../base';
4
+ import { AXButtonComponent, AXButtonItem, AXButtonItemComponent } from '../button';
5
+ import { AXPopoverComponent } from '../popover';
6
+ import { AXBaseDropDownComponent } from './dropdown-base.class';
7
+ import * as i0 from "@angular/core";
8
+ export declare class AXDropdownPanelComponent extends AXBaseDropDownComponent {
9
+ _parent: AXButtonComponent;
10
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, _parent: AXButtonComponent);
11
+ _contentButtons: QueryList<AXButtonItemComponent>;
12
+ _viewButtons: QueryList<AXButtonItemComponent>;
13
+ onItemClick: EventEmitter<AXButtonClickEvent>;
14
+ protected popover: AXPopoverComponent;
15
+ private _items;
16
+ get items(): AXButtonItem[];
17
+ set items(v: AXButtonItem[]);
18
+ _needBorder: boolean;
19
+ _subs: Subscription[];
20
+ _target: HTMLElement;
21
+ private _getAllButtons;
22
+ onViewInit(): void;
23
+ onDestroy(): void;
24
+ _emitOnItemClickEvent(e: AXClickEvent, item: AXButtonItemComponent): void;
25
+ private _handleOnItemClick;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXDropdownPanelComponent, [null, null, { optional: true; }]>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXDropdownPanelComponent, "ax-dropdown-panel", never, { "items": "items"; }, { "onItemClick": "onItemClick"; }, ["_contentButtons"], ["[panel],ax-button-item"]>;
28
+ }
@@ -0,0 +1,13 @@
1
+ import { ChangeDetectorRef, ElementRef } from '@angular/core';
2
+ import { AXBaseComponent } from '../base';
3
+ import { AXPopoverComponent } from '../popover';
4
+ import { AXBaseDropDownComponent } from './dropdown-base.class';
5
+ import * as i0 from "@angular/core";
6
+ export declare class AXDropdownComponent extends AXBaseDropDownComponent {
7
+ protected popover: AXPopoverComponent;
8
+ _target: AXBaseComponent;
9
+ constructor(_elementRef: ElementRef, _cdr: ChangeDetectorRef);
10
+ _handleArrowClickEvent(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXDropdownComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXDropdownComponent, "ax-drop-down", never, { "disabled": "disabled"; "tabIndex": "tabIndex"; "size": "size"; "fitParent": "fitParent"; }, {}, never, ["ax-prefix", "[input]", "ax-suffix", "[panel]"]>;
13
+ }
@@ -0,0 +1,14 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./dropdown.component";
3
+ import * as i2 from "./dropdown-panel.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "../button/button.module";
6
+ import * as i5 from "@angular/cdk/overlay";
7
+ import * as i6 from "../icon/icon.module";
8
+ import * as i7 from "../decorators/decorators.module";
9
+ import * as i8 from "../popover/popover.module";
10
+ export declare class AXDropdownModule {
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXDropdownModule, never>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXDropdownModule, [typeof i1.AXDropdownComponent, typeof i2.AXDropdownPanelComponent], [typeof i3.CommonModule, typeof i4.AXButtonModule, typeof i5.OverlayModule, typeof i6.AXIconModule, typeof i7.AXEditorDecoratorModule, typeof i8.AXPopoverModule], [typeof i1.AXDropdownComponent, typeof i2.AXDropdownPanelComponent]>;
13
+ static ɵinj: i0.ɵɵInjectorDeclaration<AXDropdownModule>;
14
+ }
@@ -1,3 +1,3 @@
1
1
  export * from './dropdown.component';
2
2
  export * from './dropdown-panel.component';
3
- export * from './dropdown.module';
3
+ export * from './dropdown.module';
@@ -0,0 +1,8 @@
1
+ import { ChangeDetectorRef, ElementRef } from '@angular/core';
2
+ import { AXBaseComponentMixin } from '../base/mixin/mixin.class';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AXFormFieldComponent extends AXBaseComponentMixin {
5
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXFormFieldComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXFormFieldComponent, "ax-form-field", never, {}, {}, never, ["*"]>;
8
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./form-field.component";
3
+ import * as i2 from "./form.component";
4
+ import * as i3 from "./form-hint.component";
5
+ import * as i4 from "@angular/common";
6
+ export declare class AXFormModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXFormModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXFormModule, [typeof i1.AXFormFieldComponent, typeof i2.AXFormComponent, typeof i3.AXFormHintComponent], [typeof i4.CommonModule], [typeof i1.AXFormFieldComponent, typeof i2.AXFormComponent, typeof i3.AXFormHintComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<AXFormModule>;
10
+ }
@@ -0,0 +1,8 @@
1
+ import { ChangeDetectorRef, ElementRef } from '@angular/core';
2
+ import { AXBaseComponentMixin } from '../base/mixin/mixin.class';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AXFormHintComponent extends AXBaseComponentMixin {
5
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXFormHintComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXFormHintComponent, "ax-form-hint", never, {}, {}, never, ["*"]>;
8
+ }
@@ -0,0 +1,13 @@
1
+ import { ChangeDetectorRef, ElementRef } from '@angular/core';
2
+ import { AXBaseComponentMixin } from '../base/mixin/mixin.class';
3
+ import { AXValidationResult } from '../validation/validation.class';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AXFormComponent extends AXBaseComponentMixin {
6
+ private cdr;
7
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
8
+ _getComponenets(): Element[];
9
+ validate(): Promise<AXValidationResult>;
10
+ clear(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXFormComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXFormComponent, "ax-form", never, {}, {}, never, ["*"]>;
13
+ }
@@ -1,4 +1,4 @@
1
1
  export * from './form-field.component';
2
2
  export * from './form-hint.component';
3
3
  export * from './form.component';
4
- export * from './form-field.module';
4
+ export * from './form-field.module';
@@ -0,0 +1,10 @@
1
+ import { ElementRef, ChangeDetectorRef } from '@angular/core';
2
+ import { AXSizableComponentMixin } from '../base';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AXIconComponent extends AXSizableComponentMixin {
5
+ icon: string;
6
+ private get __iconClass();
7
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXIconComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXIconComponent, "ax-icon", never, { "icon": "icon"; }, {}, never, never>;
10
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./icon.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class AXIconModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXIconModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXIconModule, [typeof i1.AXIconComponent], [typeof i2.CommonModule], [typeof i1.AXIconComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<AXIconModule>;
8
+ }
File without changes