@acorex/components 4.0.24 → 5.0.4

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 (339) hide show
  1. package/README.md +24 -24
  2. package/acorex-components.d.ts +5 -4
  3. package/bundles/acorex-components.umd.js +6858 -6233
  4. package/bundles/acorex-components.umd.js.map +1 -1
  5. package/esm2015/acorex-components.js +5 -5
  6. package/esm2015/lib/alert/alert-button.component.js +52 -42
  7. package/esm2015/lib/alert/alert-contnet.component.js +21 -16
  8. package/esm2015/lib/alert/alert-footer.component.js +27 -18
  9. package/esm2015/lib/alert/alert-suffix.component.js +27 -18
  10. package/esm2015/lib/alert/alert-title.component.js +23 -16
  11. package/esm2015/lib/alert/alert.component.js +131 -87
  12. package/esm2015/lib/alert/alert.module.js +43 -28
  13. package/esm2015/lib/alert/index.js +8 -8
  14. package/esm2015/lib/avatar/avatar.component.js +55 -0
  15. package/esm2015/lib/avatar/avatar.module.js +21 -0
  16. package/esm2015/lib/avatar/index.js +3 -0
  17. package/esm2015/lib/base/common.module.js +18 -13
  18. package/esm2015/lib/base/custom-cdk-overlay.service.js +47 -56
  19. package/esm2015/lib/base/drawing.class.js +11 -11
  20. package/esm2015/lib/base/events.class.js +53 -19
  21. package/esm2015/lib/base/index.js +7 -7
  22. package/esm2015/lib/base/mixin/base-components.class.js +83 -72
  23. package/esm2015/lib/base/mixin/button-mixin.class.js +129 -36
  24. package/esm2015/lib/base/mixin/clickable-mixin.class.js +24 -17
  25. package/esm2015/lib/base/mixin/constratctor.js +2 -2
  26. package/esm2015/lib/base/mixin/datalist-component.class.js +97 -97
  27. package/esm2015/lib/base/mixin/dropdown-mixin.class.js +36 -36
  28. package/esm2015/lib/base/mixin/index.js +3 -3
  29. package/esm2015/lib/base/mixin/interactive-mixin.class.js +72 -47
  30. package/esm2015/lib/base/mixin/loading-mixin.class.js +18 -15
  31. package/esm2015/lib/base/mixin/mixin.class.js +23 -24
  32. package/esm2015/lib/base/mixin/selection-component.class.js +158 -158
  33. package/esm2015/lib/base/mixin/sizable-mixin.class.js +18 -19
  34. package/esm2015/lib/base/mixin/textbox-mixin.class.js +38 -19
  35. package/esm2015/lib/base/mixin/value-mixin.class.js +190 -172
  36. package/esm2015/lib/base/overlay.service.js +91 -96
  37. package/esm2015/lib/base/responsive.directive.js +34 -33
  38. package/esm2015/lib/base/styles.class.js +4 -4
  39. package/esm2015/lib/button/button-group.component.js +131 -71
  40. package/esm2015/lib/button/button-item.class.js +2 -2
  41. package/esm2015/lib/button/button-item.component.js +81 -35
  42. package/esm2015/lib/button/button.component.js +51 -34
  43. package/esm2015/lib/button/button.module.js +37 -24
  44. package/esm2015/lib/button/dropdown-button.component.js +200 -108
  45. package/esm2015/lib/button/index.js +7 -7
  46. package/esm2015/lib/calendar/calendar.component.js +59 -69
  47. package/esm2015/lib/calendar/calendar.module.js +24 -19
  48. package/esm2015/lib/calendar/index.js +3 -3
  49. package/esm2015/lib/carousel/carousel-arrows.component.js +53 -45
  50. package/esm2015/lib/carousel/carousel-item.component.js +21 -21
  51. package/esm2015/lib/carousel/carousel-pager.component.js +74 -71
  52. package/esm2015/lib/carousel/carousel-splidejs.class.js +82 -83
  53. package/esm2015/lib/carousel/carousel.class.js +10 -7
  54. package/esm2015/lib/carousel/carousel.component.js +246 -226
  55. package/esm2015/lib/carousel/carousel.module.js +24 -19
  56. package/esm2015/lib/carousel/index.js +7 -7
  57. package/esm2015/lib/checkbox/checkbox.component.js +40 -41
  58. package/esm2015/lib/checkbox/checkbox.module.js +20 -15
  59. package/esm2015/lib/checkbox/index.js +3 -3
  60. package/esm2015/lib/datalist/datalist.component.js +81 -71
  61. package/esm2015/lib/datalist/datalist.module.js +22 -17
  62. package/esm2015/lib/datalist/index.js +3 -3
  63. package/esm2015/lib/datepicker/datepicker.component.js +64 -62
  64. package/esm2015/lib/datepicker/datepicker.module.js +23 -18
  65. package/esm2015/lib/datepicker/index.js +3 -3
  66. package/esm2015/lib/decorators/decorators.module.js +22 -17
  67. package/esm2015/lib/decorators/index.js +4 -4
  68. package/esm2015/lib/decorators/prefix.component.js +27 -28
  69. package/esm2015/lib/decorators/suffix.component.js +35 -28
  70. package/esm2015/lib/dialog/dialog.class.js +2 -47
  71. package/esm2015/lib/dialog/dialog.component.js +45 -39
  72. package/esm2015/lib/dialog/dialog.module.js +26 -19
  73. package/esm2015/lib/dialog/dialog.service.js +127 -139
  74. package/esm2015/lib/dialog/index.js +5 -5
  75. package/esm2015/lib/drawer/drawer-container.component.js +73 -67
  76. package/esm2015/lib/drawer/drawer-content.component.js +27 -24
  77. package/esm2015/lib/drawer/drawer.component.js +145 -139
  78. package/esm2015/lib/drawer/drawer.module.js +23 -18
  79. package/esm2015/lib/drawer/index.js +5 -5
  80. package/esm2015/lib/dropdown/dropdown-panel.component.js +194 -0
  81. package/esm2015/lib/dropdown/dropdown.component.js +139 -127
  82. package/esm2015/lib/dropdown/dropdown.module.js +24 -15
  83. package/esm2015/lib/dropdown/index.js +4 -3
  84. package/esm2015/lib/form/form-field.component.js +20 -20
  85. package/esm2015/lib/form/form-field.module.js +21 -15
  86. package/esm2015/lib/form/form-hint.component.js +20 -0
  87. package/esm2015/lib/form/form.component.js +51 -51
  88. package/esm2015/lib/form/index.js +5 -4
  89. package/esm2015/lib/icon/icon.component.js +28 -28
  90. package/esm2015/lib/icon/icon.module.js +21 -16
  91. package/esm2015/lib/icon/index.js +3 -3
  92. package/esm2015/lib/input-mask/index.js +3 -3
  93. package/esm2015/lib/input-mask/input-mask.component.js +42 -35
  94. package/esm2015/lib/input-mask/input-mask.module.js +23 -17
  95. package/esm2015/lib/label/index.js +3 -3
  96. package/esm2015/lib/label/label.component.js +20 -20
  97. package/esm2015/lib/label/label.module.js +21 -16
  98. package/esm2015/lib/loading/index.js +6 -5
  99. package/esm2015/lib/loading/loading-spinner.component.js +32 -0
  100. package/esm2015/lib/loading/loading.component.js +54 -23
  101. package/esm2015/lib/loading/loading.directive.js +67 -70
  102. package/esm2015/lib/loading/loading.module.js +35 -18
  103. package/esm2015/lib/loading/loading.service.js +155 -157
  104. package/esm2015/lib/number-box/index.js +3 -3
  105. package/esm2015/lib/number-box/number-box.component.js +289 -242
  106. package/esm2015/lib/number-box/number-box.module.js +32 -24
  107. package/esm2015/lib/page/base-page.class.js +66 -84
  108. package/esm2015/lib/page/index.js +5 -3
  109. package/esm2015/lib/page/page-footer.component.js +32 -0
  110. package/esm2015/lib/page/page.component.js +33 -32
  111. package/esm2015/lib/page/page.module.js +18 -0
  112. package/esm2015/lib/popover/index.js +3 -0
  113. package/esm2015/lib/popover/popover.component.js +119 -0
  114. package/esm2015/lib/popover/popover.module.js +19 -0
  115. package/esm2015/lib/popup/index.js +4 -4
  116. package/esm2015/lib/popup/popup.component.js +97 -143
  117. package/esm2015/lib/popup/popup.module.js +26 -19
  118. package/esm2015/lib/popup/popup.service.js +94 -89
  119. package/esm2015/lib/range-slider/index.js +3 -0
  120. package/esm2015/lib/range-slider/range-slider.component.js +22 -0
  121. package/esm2015/lib/range-slider/range-slider.module.js +21 -0
  122. package/esm2015/lib/selectbox/index.js +3 -3
  123. package/esm2015/lib/selectbox/selectbox.component.js +193 -188
  124. package/esm2015/lib/selectbox/selectbox.module.js +21 -16
  125. package/esm2015/lib/selection-list/index.js +3 -3
  126. package/esm2015/lib/selection-list/selection-list.component.js +46 -46
  127. package/esm2015/lib/selection-list/selection-list.module.js +21 -16
  128. package/esm2015/lib/side-menu/index.js +3 -3
  129. package/esm2015/lib/side-menu/side-menu.component.js +21 -21
  130. package/esm2015/lib/side-menu/side-menu.module.js +21 -16
  131. package/esm2015/lib/switch/index.js +3 -3
  132. package/esm2015/lib/switch/switch.component.js +30 -29
  133. package/esm2015/lib/switch/switch.module.js +21 -16
  134. package/esm2015/lib/tabs/index.js +6 -6
  135. package/esm2015/lib/tabs/tab-strip.component.js +61 -57
  136. package/esm2015/lib/tabs/tab-view.component.js +46 -45
  137. package/esm2015/lib/tabs/tab.component.js +59 -48
  138. package/esm2015/lib/tabs/tabs.class.js +4 -4
  139. package/esm2015/lib/tabs/tabs.module.js +23 -18
  140. package/esm2015/lib/textbox/index.js +3 -3
  141. package/esm2015/lib/textbox/textbox.component.js +62 -46
  142. package/esm2015/lib/textbox/textbox.module.js +43 -24
  143. package/esm2015/lib/time-box/index.js +3 -3
  144. package/esm2015/lib/time-box/time-box.component.js +134 -127
  145. package/esm2015/lib/time-box/time-box.module.js +32 -24
  146. package/esm2015/lib/toast/index.js +5 -5
  147. package/esm2015/lib/toast/toast.class.js +2 -2
  148. package/esm2015/lib/toast/toast.component.js +50 -54
  149. package/esm2015/lib/toast/toast.module.js +22 -17
  150. package/esm2015/lib/toast/toast.service.js +114 -117
  151. package/esm2015/lib/tooltip/index.js +4 -4
  152. package/esm2015/lib/tooltip/tooltip.component.js +45 -37
  153. package/esm2015/lib/tooltip/tooltip.directive.js +86 -81
  154. package/esm2015/lib/tooltip/tooltip.module.js +23 -18
  155. package/esm2015/lib/validation/index.js +3 -3
  156. package/esm2015/lib/validation/validation-rule.widget.js +113 -110
  157. package/esm2015/lib/validation/validation.class.js +2 -2
  158. package/esm2015/lib/validation/validation.module.js +32 -28
  159. package/esm2015/public-api.js +39 -32
  160. package/fesm2015/acorex-components.js +5918 -5285
  161. package/fesm2015/acorex-components.js.map +1 -1
  162. package/lib/alert/alert-button.component.d.ts +13 -10
  163. package/lib/alert/alert-contnet.component.d.ts +5 -2
  164. package/lib/alert/alert-footer.component.d.ts +5 -2
  165. package/lib/alert/alert-suffix.component.d.ts +5 -2
  166. package/lib/alert/alert-title.component.d.ts +5 -2
  167. package/lib/alert/alert.component.d.ts +46 -16
  168. package/lib/alert/alert.module.d.ts +13 -2
  169. package/lib/alert/index.d.ts +7 -7
  170. package/lib/avatar/avatar.component.d.ts +20 -0
  171. package/lib/avatar/avatar.module.d.ts +8 -0
  172. package/lib/avatar/index.d.ts +2 -0
  173. package/lib/base/common.module.d.ts +7 -2
  174. package/lib/base/custom-cdk-overlay.service.d.ts +19 -14
  175. package/lib/base/drawing.class.d.ts +9 -9
  176. package/lib/base/events.class.d.ts +72 -28
  177. package/lib/base/index.d.ts +6 -6
  178. package/lib/base/mixin/base-components.class.d.ts +84 -51
  179. package/lib/base/mixin/button-mixin.class.d.ts +79 -34
  180. package/lib/base/mixin/clickable-mixin.class.d.ts +42 -29
  181. package/lib/base/mixin/constratctor.d.ts +4 -4
  182. package/lib/base/mixin/datalist-component.class.d.ts +54 -45
  183. package/lib/base/mixin/dropdown-mixin.class.d.ts +47 -38
  184. package/lib/base/mixin/index.d.ts +2 -2
  185. package/lib/base/mixin/interactive-mixin.class.d.ts +60 -34
  186. package/lib/base/mixin/loading-mixin.class.d.ts +46 -28
  187. package/lib/base/mixin/mixin.class.d.ts +814 -493
  188. package/lib/base/mixin/selection-component.class.d.ts +55 -46
  189. package/lib/base/mixin/sizable-mixin.class.d.ts +40 -28
  190. package/lib/base/mixin/textbox-mixin.class.d.ts +59 -33
  191. package/lib/base/mixin/value-mixin.class.d.ts +68 -50
  192. package/lib/base/overlay.service.d.ts +31 -28
  193. package/lib/base/responsive.directive.d.ts +10 -7
  194. package/lib/base/styles.class.d.ts +17 -6
  195. package/lib/button/button-group.component.d.ts +36 -19
  196. package/lib/button/button-item.class.d.ts +22 -17
  197. package/lib/button/button-item.component.d.ts +92 -16
  198. package/lib/button/button.component.d.ts +18 -6
  199. package/lib/button/button.module.d.ts +13 -2
  200. package/lib/button/dropdown-button.component.d.ts +234 -27
  201. package/lib/button/index.d.ts +6 -6
  202. package/lib/calendar/calendar.component.d.ts +16 -17
  203. package/lib/calendar/calendar.module.d.ts +11 -2
  204. package/lib/calendar/index.d.ts +2 -2
  205. package/lib/carousel/carousel-arrows.component.d.ts +14 -11
  206. package/lib/carousel/carousel-item.component.d.ts +8 -5
  207. package/lib/carousel/carousel-pager.component.d.ts +22 -19
  208. package/lib/carousel/carousel-splidejs.class.d.ts +18 -18
  209. package/lib/carousel/carousel.class.d.ts +48 -45
  210. package/lib/carousel/carousel.component.d.ts +62 -59
  211. package/lib/carousel/carousel.module.d.ts +11 -2
  212. package/lib/carousel/index.d.ts +6 -6
  213. package/lib/checkbox/checkbox.component.d.ts +12 -9
  214. package/lib/checkbox/checkbox.module.d.ts +9 -2
  215. package/lib/checkbox/index.d.ts +2 -2
  216. package/lib/datalist/datalist.component.d.ts +25 -22
  217. package/lib/datalist/datalist.module.d.ts +9 -2
  218. package/lib/datalist/index.d.ts +2 -2
  219. package/lib/datepicker/datepicker.component.d.ts +18 -15
  220. package/lib/datepicker/datepicker.module.d.ts +10 -2
  221. package/lib/datepicker/index.d.ts +2 -2
  222. package/lib/decorators/decorators.module.d.ts +9 -2
  223. package/lib/decorators/index.d.ts +3 -3
  224. package/lib/decorators/prefix.component.d.ts +8 -5
  225. package/lib/decorators/suffix.component.d.ts +8 -5
  226. package/lib/dialog/dialog.class.d.ts +12 -35
  227. package/lib/dialog/dialog.component.d.ts +15 -12
  228. package/lib/dialog/dialog.module.d.ts +13 -2
  229. package/lib/dialog/dialog.service.d.ts +18 -13
  230. package/lib/dialog/index.d.ts +4 -4
  231. package/lib/drawer/drawer-container.component.d.ts +13 -10
  232. package/lib/drawer/drawer-content.component.d.ts +8 -5
  233. package/lib/drawer/drawer.component.d.ts +30 -27
  234. package/lib/drawer/drawer.module.d.ts +10 -2
  235. package/lib/drawer/index.d.ts +4 -4
  236. package/lib/dropdown/dropdown-panel.component.d.ts +117 -0
  237. package/lib/dropdown/dropdown.component.d.ts +31 -22
  238. package/lib/dropdown/dropdown.module.d.ts +13 -2
  239. package/lib/dropdown/index.d.ts +3 -2
  240. package/lib/form/form-field.component.d.ts +8 -5
  241. package/lib/form/form-field.module.d.ts +10 -2
  242. package/lib/form/form-hint.component.d.ts +8 -0
  243. package/lib/form/form.component.d.ts +13 -10
  244. package/lib/form/index.d.ts +4 -3
  245. package/lib/icon/icon.component.d.ts +10 -7
  246. package/lib/icon/icon.module.d.ts +8 -2
  247. package/lib/icon/index.d.ts +2 -2
  248. package/lib/input-mask/index.d.ts +2 -2
  249. package/lib/input-mask/input-mask.component.d.ts +14 -11
  250. package/lib/input-mask/input-mask.module.d.ts +9 -2
  251. package/lib/label/index.d.ts +2 -2
  252. package/lib/label/label.component.d.ts +8 -5
  253. package/lib/label/label.module.d.ts +8 -2
  254. package/lib/loading/index.d.ts +5 -4
  255. package/lib/loading/loading-spinner.component.d.ts +5 -0
  256. package/lib/loading/loading.component.d.ts +19 -5
  257. package/lib/loading/loading.directive.d.ts +22 -19
  258. package/lib/loading/loading.module.d.ts +13 -2
  259. package/lib/loading/loading.service.d.ts +48 -45
  260. package/lib/number-box/index.d.ts +2 -2
  261. package/lib/number-box/number-box.component.d.ts +69 -31
  262. package/lib/number-box/number-box.module.d.ts +11 -2
  263. package/lib/page/base-page.class.d.ts +37 -40
  264. package/lib/page/index.d.ts +4 -2
  265. package/lib/page/page-footer.component.d.ts +7 -0
  266. package/lib/page/page.component.d.ts +13 -11
  267. package/lib/page/page.module.d.ts +7 -0
  268. package/lib/popover/index.d.ts +2 -0
  269. package/lib/popover/popover.component.d.ts +30 -0
  270. package/lib/popover/popover.module.d.ts +8 -0
  271. package/lib/popup/index.d.ts +3 -3
  272. package/lib/popup/popup.component.d.ts +33 -33
  273. package/lib/popup/popup.module.d.ts +12 -2
  274. package/lib/popup/popup.service.d.ts +37 -18
  275. package/lib/range-slider/index.d.ts +2 -0
  276. package/lib/range-slider/range-slider.component.d.ts +8 -0
  277. package/lib/range-slider/range-slider.module.d.ts +8 -0
  278. package/lib/selectbox/index.d.ts +2 -2
  279. package/lib/selectbox/selectbox.component.d.ts +28 -25
  280. package/lib/selectbox/selectbox.module.d.ts +10 -2
  281. package/lib/selection-list/index.d.ts +2 -2
  282. package/lib/selection-list/selection-list.component.d.ts +10 -7
  283. package/lib/selection-list/selection-list.module.d.ts +10 -2
  284. package/lib/side-menu/index.d.ts +2 -2
  285. package/lib/side-menu/side-menu.component.d.ts +8 -5
  286. package/lib/side-menu/side-menu.module.d.ts +8 -2
  287. package/lib/switch/index.d.ts +2 -2
  288. package/lib/switch/switch.component.d.ts +9 -6
  289. package/lib/switch/switch.module.d.ts +9 -2
  290. package/lib/tabs/index.d.ts +5 -5
  291. package/lib/tabs/tab-strip.component.d.ts +17 -14
  292. package/lib/tabs/tab-view.component.d.ts +14 -11
  293. package/lib/tabs/tab.component.d.ts +18 -15
  294. package/lib/tabs/tabs.class.d.ts +18 -18
  295. package/lib/tabs/tabs.module.d.ts +10 -2
  296. package/lib/textbox/index.d.ts +2 -2
  297. package/lib/textbox/textbox.component.d.ts +19 -8
  298. package/lib/textbox/textbox.module.d.ts +13 -2
  299. package/lib/time-box/index.d.ts +2 -2
  300. package/lib/time-box/time-box.component.d.ts +29 -26
  301. package/lib/time-box/time-box.module.d.ts +11 -2
  302. package/lib/toast/index.d.ts +4 -4
  303. package/lib/toast/toast.class.d.ts +14 -14
  304. package/lib/toast/toast.component.d.ts +16 -13
  305. package/lib/toast/toast.module.d.ts +9 -2
  306. package/lib/toast/toast.service.d.ts +18 -15
  307. package/lib/tooltip/index.d.ts +3 -3
  308. package/lib/tooltip/tooltip.component.d.ts +10 -7
  309. package/lib/tooltip/tooltip.directive.d.ts +18 -15
  310. package/lib/tooltip/tooltip.module.d.ts +10 -2
  311. package/lib/validation/index.d.ts +2 -2
  312. package/lib/validation/validation-rule.widget.d.ts +25 -22
  313. package/lib/validation/validation.class.d.ts +17 -17
  314. package/lib/validation/validation.module.d.ts +9 -3
  315. package/package.json +19 -21
  316. package/public-api.d.ts +37 -31
  317. package/acorex-components.metadata.json +0 -1
  318. package/bundles/acorex-components.umd.min.js +0 -16
  319. package/bundles/acorex-components.umd.min.js.map +0 -1
  320. package/esm2015/lib/datapager/datapager-base.component.js +0 -33
  321. package/esm2015/lib/datapager/datapager-info.component.js +0 -59
  322. package/esm2015/lib/datapager/datapager-input-selector.component.js +0 -51
  323. package/esm2015/lib/datapager/datapager-next-buttons.components.js +0 -51
  324. package/esm2015/lib/datapager/datapager-numeric-selector.component.js +0 -86
  325. package/esm2015/lib/datapager/datapager-pagesize-dropdown.component.js +0 -69
  326. package/esm2015/lib/datapager/datapager-prev-buttons.component.js +0 -47
  327. package/esm2015/lib/datapager/datapager.component.js +0 -122
  328. package/esm2015/lib/datapager/datapager.module.js +0 -32
  329. package/esm2015/lib/datapager/index.js +0 -9
  330. package/lib/datapager/datapager-base.component.d.ts +0 -12
  331. package/lib/datapager/datapager-info.component.d.ts +0 -24
  332. package/lib/datapager/datapager-input-selector.component.d.ts +0 -12
  333. package/lib/datapager/datapager-next-buttons.components.d.ts +0 -14
  334. package/lib/datapager/datapager-numeric-selector.component.d.ts +0 -17
  335. package/lib/datapager/datapager-pagesize-dropdown.component.d.ts +0 -17
  336. package/lib/datapager/datapager-prev-buttons.component.d.ts +0 -13
  337. package/lib/datapager/datapager.component.d.ts +0 -41
  338. package/lib/datapager/datapager.module.d.ts +0 -2
  339. package/lib/datapager/index.d.ts +0 -8
@@ -1,10 +1,13 @@
1
- import { ElementRef, ChangeDetectorRef } from '@angular/core';
2
- import { AXBaseClickableMixin } from '../base';
3
- export declare class AXAlertButtonComponent extends AXBaseClickableMixin {
4
- title: string;
5
- icon: string;
6
- constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
7
- _handleOnClick(e: any): void;
8
- _handleOnFocus(e: any): void;
9
- _handleOnBlur(e: any): void;
10
- }
1
+ import { ElementRef, ChangeDetectorRef } from '@angular/core';
2
+ import { AXBaseClickableMixin } from '../base';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AXAlertButtonComponent extends AXBaseClickableMixin {
5
+ title: string;
6
+ icon: string;
7
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
8
+ _handleOnClick(e: any): void;
9
+ _handleOnFocus(e: any): void;
10
+ _handleOnBlur(e: any): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXAlertButtonComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXAlertButtonComponent, "ax-alert-button", never, { "title": "title"; "icon": "icon"; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; "onClick": "onClick"; "selectedChange": "selectedChange"; "toggleableChange": "toggleableChange"; }, never, never>;
13
+ }
@@ -1,2 +1,5 @@
1
- export declare class AXAlertContentComponent {
2
- }
1
+ import * as i0 from "@angular/core";
2
+ export declare class AXAlertContentComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXAlertContentComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXAlertContentComponent, "ax-alert-content", never, {}, {}, never, ["*"]>;
5
+ }
@@ -1,2 +1,5 @@
1
- export declare class AXAlertFooterComponent {
2
- }
1
+ import * as i0 from "@angular/core";
2
+ export declare class AXAlertFooterComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXAlertFooterComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXAlertFooterComponent, "ax-alert-footer", never, {}, {}, never, ["ax-alert-button"]>;
5
+ }
@@ -1,2 +1,5 @@
1
- export declare class AXAlertSuffixComponent {
2
- }
1
+ import * as i0 from "@angular/core";
2
+ export declare class AXAlertSuffixComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXAlertSuffixComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXAlertSuffixComponent, "ax-alert-suffix", never, {}, {}, never, ["ax-alert-button"]>;
5
+ }
@@ -1,2 +1,5 @@
1
- export declare class AXAlertTitleComponent {
2
- }
1
+ import * as i0 from "@angular/core";
2
+ export declare class AXAlertTitleComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXAlertTitleComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXAlertTitleComponent, "ax-alert-title", never, {}, {}, never, ["*"]>;
5
+ }
@@ -1,16 +1,46 @@
1
- import { ElementRef, ChangeDetectorRef } from '@angular/core';
2
- import { AXBaseComponentMixin, AXStyleType } from '../base';
3
- export declare class AXAlertComponent extends AXBaseComponentMixin {
4
- #private;
5
- _icon: string;
6
- type: AXStyleType;
7
- timeOut: number;
8
- get visible(): boolean;
9
- set visible(v: boolean);
10
- constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
11
- onInit(): void;
12
- onViewInit(): void;
13
- dismiss(): void;
14
- hide(): void;
15
- show(): void;
16
- }
1
+ import { ElementRef, ChangeDetectorRef, EventEmitter } from '@angular/core';
2
+ import { AXBaseComponentMixin, AXStyleColorType } from '../base';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Regular description
6
+ *
7
+ * @category Components
8
+ */
9
+ export declare class AXAlertComponent extends AXBaseComponentMixin {
10
+ #private;
11
+ icon: string;
12
+ typeChange: EventEmitter<AXStyleColorType>;
13
+ private _type;
14
+ /**
15
+ * The Alert allows you to set different types of alerts
16
+ */
17
+ get type(): AXStyleColorType;
18
+ set type(v: AXStyleColorType);
19
+ get hostClass(): string;
20
+ timeOut: number;
21
+ /**
22
+ * set the visibility of the Alert
23
+ */
24
+ get visible(): boolean;
25
+ set visible(v: boolean);
26
+ /**
27
+ * @ignore
28
+ */
29
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
30
+ onInit(): void;
31
+ onViewInit(): void;
32
+ /**
33
+ * Remove the alert from the container
34
+ */
35
+ dismiss(): void;
36
+ /**
37
+ * Hide the alert
38
+ */
39
+ hide(): void;
40
+ /**
41
+ * Show the alert
42
+ */
43
+ show(): void;
44
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXAlertComponent, never>;
45
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXAlertComponent, "ax-alert", never, { "icon": "icon"; "type": "type"; "timeOut": "timeOut"; "visible": "visible"; }, { "typeChange": "typeChange"; }, never, ["ax-alert-title", "ax-alert-content", "ax-alert-footer", "ax-alert-suffix"]>;
46
+ }
@@ -1,2 +1,13 @@
1
- export declare class AXAlertModule {
2
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./alert.component";
3
+ import * as i2 from "./alert-contnet.component";
4
+ import * as i3 from "./alert-title.component";
5
+ import * as i4 from "./alert-button.component";
6
+ import * as i5 from "./alert-footer.component";
7
+ import * as i6 from "./alert-suffix.component";
8
+ import * as i7 from "@angular/common";
9
+ export declare class AXAlertModule {
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXAlertModule, never>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXAlertModule, [typeof i1.AXAlertComponent, typeof i2.AXAlertContentComponent, typeof i3.AXAlertTitleComponent, typeof i4.AXAlertButtonComponent, typeof i5.AXAlertFooterComponent, typeof i6.AXAlertSuffixComponent], [typeof i7.CommonModule], [typeof i1.AXAlertComponent, typeof i2.AXAlertContentComponent, typeof i3.AXAlertTitleComponent, typeof i4.AXAlertButtonComponent, typeof i5.AXAlertFooterComponent, typeof i6.AXAlertSuffixComponent]>;
12
+ static ɵinj: i0.ɵɵInjectorDeclaration<AXAlertModule>;
13
+ }
@@ -1,7 +1,7 @@
1
- export * from './alert.component';
2
- export * from './alert-title.component';
3
- export * from './alert-button.component';
4
- export * from './alert-contnet.component';
5
- export * from './alert-suffix.component';
6
- export * from './alert-footer.component';
7
- export * from './alert.module';
1
+ export * from './alert.component';
2
+ export * from './alert-title.component';
3
+ export * from './alert-button.component';
4
+ export * from './alert-contnet.component';
5
+ export * from './alert-suffix.component';
6
+ export * from './alert-footer.component';
7
+ export * from './alert.module';
@@ -0,0 +1,20 @@
1
+ import { ElementRef, ChangeDetectorRef } from '@angular/core';
2
+ import { AXSizableComponentMixin } from '../base';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AXAvatarComponent extends AXSizableComponentMixin {
5
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
6
+ private _image;
7
+ get image(): string;
8
+ set image(v: string);
9
+ private _title;
10
+ get title(): string;
11
+ set title(v: string);
12
+ private _icon;
13
+ get icon(): string;
14
+ set icon(v: string);
15
+ private _abbr;
16
+ get abbr(): string;
17
+ set abbr(v: string);
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXAvatarComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXAvatarComponent, "ax-avatar", never, { "rtl": "rtl"; "cssClass": "cssClass"; "cssStyle": "cssStyle"; "size": "size"; "image": "image"; "title": "title"; "icon": "icon"; "abbr": "abbr"; }, {}, never, never>;
20
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./avatar.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class AXAvatarModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXAvatarModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXAvatarModule, [typeof i1.AXAvatarComponent], [typeof i2.CommonModule], [typeof i1.AXAvatarComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<AXAvatarModule>;
8
+ }
@@ -0,0 +1,2 @@
1
+ export * from './avatar.component';
2
+ export * from './avatar.module';
@@ -1,2 +1,7 @@
1
- export declare class AXCommonModule {
2
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./responsive.directive";
3
+ export declare class AXCommonModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXCommonModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXCommonModule, [typeof i1.AXResponsiveDirective], never, [typeof i1.AXResponsiveDirective]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<AXCommonModule>;
7
+ }
@@ -1,14 +1,19 @@
1
- import { Overlay, OverlayKeyboardDispatcher, OverlayPositionBuilder, ScrollStrategyOptions, OverlayContainer, OverlayRef, OverlayConfig, OverlayOutsideClickDispatcher } from '@angular/cdk/overlay';
2
- import { ComponentFactoryResolver, Injector, NgZone, RendererFactory2 } from '@angular/core';
3
- import { Directionality } from '@angular/cdk/bidi';
4
- import { Location } from '@angular/common';
5
- export declare class DynamicOverlayContainer extends OverlayContainer {
6
- setContainerElement(containerElement: HTMLElement): void;
7
- }
8
- export declare class DynamicOverlay extends Overlay {
9
- private readonly _dynamicOverlayContainer;
10
- private renderer;
11
- constructor(scrollStrategies: ScrollStrategyOptions, _overlayContainer: DynamicOverlayContainer, _componentFactoryResolver: ComponentFactoryResolver, _positionBuilder: OverlayPositionBuilder, _keyboardDispatcher: OverlayKeyboardDispatcher, _injector: Injector, _ngZone: NgZone, _document: any, _directionality: Directionality, rendererFactory: RendererFactory2, _location: Location, _outsideClickDispatcher: OverlayOutsideClickDispatcher);
12
- private setContainerElement;
13
- createOn(containerElement: HTMLElement, config?: OverlayConfig): OverlayRef;
14
- }
1
+ import { Overlay, OverlayKeyboardDispatcher, OverlayPositionBuilder, ScrollStrategyOptions, OverlayContainer, OverlayRef, OverlayConfig, OverlayOutsideClickDispatcher } from '@angular/cdk/overlay';
2
+ import { ComponentFactoryResolver, Injector, NgZone, RendererFactory2 } from '@angular/core';
3
+ import { Directionality } from '@angular/cdk/bidi';
4
+ import { Location } from '@angular/common';
5
+ import * as i0 from "@angular/core";
6
+ export declare class DynamicOverlayContainer extends OverlayContainer {
7
+ setContainerElement(containerElement: HTMLElement): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<DynamicOverlayContainer, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<DynamicOverlayContainer>;
10
+ }
11
+ export declare class DynamicOverlay extends Overlay {
12
+ private readonly _dynamicOverlayContainer;
13
+ private renderer;
14
+ constructor(scrollStrategies: ScrollStrategyOptions, _overlayContainer: DynamicOverlayContainer, _componentFactoryResolver: ComponentFactoryResolver, _positionBuilder: OverlayPositionBuilder, _keyboardDispatcher: OverlayKeyboardDispatcher, _injector: Injector, _ngZone: NgZone, _document: any, _directionality: Directionality, rendererFactory: RendererFactory2, _location: Location, _outsideClickDispatcher: OverlayOutsideClickDispatcher);
15
+ private setContainerElement;
16
+ createOn(containerElement: HTMLElement, config?: OverlayConfig): OverlayRef;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<DynamicOverlay, never>;
18
+ static ɵprov: i0.ɵɵInjectableDeclaration<DynamicOverlay>;
19
+ }
@@ -1,9 +1,9 @@
1
- export interface AXConnectedPosition {
2
- originX: 'start' | 'center' | 'end';
3
- originY: 'top' | 'center' | 'bottom';
4
- overlayX: 'start' | 'center' | 'end';
5
- overlayY: 'top' | 'center' | 'bottom';
6
- weight?: number;
7
- offsetX?: number;
8
- offsetY?: number;
9
- }
1
+ export interface AXConnectedPosition {
2
+ originX: 'start' | 'center' | 'end';
3
+ originY: 'top' | 'center' | 'bottom';
4
+ overlayX: 'start' | 'center' | 'end';
5
+ overlayY: 'top' | 'center' | 'bottom';
6
+ weight?: number;
7
+ offsetX?: number;
8
+ offsetY?: number;
9
+ }
@@ -1,28 +1,72 @@
1
- export declare class AXEvent {
2
- component: any;
3
- htmlElement?: HTMLElement;
4
- }
5
- export declare class AXHtmlEvent<E extends Event> extends AXEvent {
6
- nativeEvent?: E;
7
- }
8
- export declare class AXValueChangedEvent<T> extends AXEvent {
9
- name?: T;
10
- value?: T;
11
- oldValue?: T;
12
- isTriggred?: boolean;
13
- }
14
- export declare class AXClickEvent extends AXHtmlEvent<MouseEvent> {
15
- data?: any;
16
- }
17
- export declare class AXButtonClickEvent extends AXHtmlEvent<MouseEvent> {
18
- name: string;
19
- }
20
- export declare class AXFocusEvent extends AXHtmlEvent<FocusEvent> {
21
- }
22
- export declare class AXSelectionValueChangedEvent extends AXValueChangedEvent<any | any[]> {
23
- value?: any;
24
- oldValue?: any;
25
- isUserInput: boolean;
26
- selectedKeys?: any[];
27
- selectedItems?: any[];
28
- }
1
+ /**
2
+ * Contains native event
3
+ * @category Events
4
+ */
5
+ export declare class AXEvent {
6
+ /**
7
+ * The sender component
8
+ */
9
+ component: any;
10
+ /**
11
+ * The root native element
12
+ */
13
+ htmlElement?: HTMLElement;
14
+ }
15
+ /**
16
+ * Contains native event
17
+ * @category Events
18
+ */
19
+ export declare class AXHtmlEvent<E extends Event> extends AXEvent {
20
+ nativeEvent?: E;
21
+ }
22
+ /**
23
+ * Contains native event
24
+ * @category Events
25
+ */
26
+ export declare class AXValueChangedEvent<T> extends AXEvent {
27
+ name?: T;
28
+ value?: T;
29
+ oldValue?: T;
30
+ isTriggred?: boolean;
31
+ }
32
+ /**
33
+ * Fires each time the user click the element.
34
+ * @category Events
35
+ */
36
+ export declare class AXClickEvent extends AXHtmlEvent<MouseEvent> {
37
+ /**
38
+ * uses for extra data
39
+ */
40
+ data?: any;
41
+ }
42
+ /**
43
+ * Fires each time the user click the element.
44
+ * @category Events
45
+ */
46
+ export declare class AXButtonClickEvent extends AXClickEvent {
47
+ name: string;
48
+ }
49
+ /**
50
+ * Fires each time the user click the element.
51
+ * @category Events
52
+ */
53
+ export declare class AXItemClickEvent<T> extends AXEvent {
54
+ item: T;
55
+ }
56
+ /**
57
+ * Fires each time the component gets focused.
58
+ * @category Events
59
+ */
60
+ export declare class AXFocusEvent extends AXHtmlEvent<FocusEvent> {
61
+ }
62
+ /**
63
+ * Fires each time an item or multiple items selected by the user or value.
64
+ * @category Events
65
+ */
66
+ export declare class AXSelectionValueChangedEvent extends AXValueChangedEvent<any | any[]> {
67
+ value?: any;
68
+ oldValue?: any;
69
+ isUserInput: boolean;
70
+ selectedKeys?: any[];
71
+ selectedItems?: any[];
72
+ }
@@ -1,6 +1,6 @@
1
- export * from './mixin';
2
- export * from './events.class';
3
- export * from './drawing.class';
4
- export * from './styles.class';
5
- export * from './responsive.directive';
6
- export * from './common.module';
1
+ export * from './mixin';
2
+ export * from './events.class';
3
+ export * from './drawing.class';
4
+ export * from './styles.class';
5
+ export * from './responsive.directive';
6
+ export * from './common.module';
@@ -1,51 +1,84 @@
1
- import { ChangeDetectorRef } from "@angular/core";
2
- import { ElementRef } from "@angular/core";
3
- import { Constructor } from "./constratctor";
4
- export declare type AXElementSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
5
- export declare class AXBaseComponent {
6
- #private;
7
- id: string;
8
- rtl: boolean;
9
- cssClass: string;
10
- cssStyle: string;
11
- _cdr: ChangeDetectorRef;
12
- _isInited: boolean;
13
- _isRendered: boolean;
14
- constructor(...args: any[]);
15
- ngOnInit(): void;
16
- ngAfterViewInit(): void;
17
- ngOnDestroy(): void;
18
- _getHostElement<T = HTMLElement>(): T;
19
- _getInnerElement<T = HTMLElement>(): T;
20
- _onInternalInit(): void;
21
- _onInternalViewInit(): void;
22
- _onInternalDestroy(): void;
23
- onInit(): void;
24
- onViewInit(): void;
25
- onDestroy(): void;
26
- }
27
- export declare function _BaseComponenetMixin<TBase extends Constructor<AXBaseComponent>>(Base: TBase): {
28
- new (...args: any[]): {
29
- id: string;
30
- rtl: boolean;
31
- cssClass: string;
32
- cssStyle: string;
33
- "__#1@#elementRef": ElementRef<any>;
34
- _cdr: ChangeDetectorRef;
35
- _isInited: boolean;
36
- _isRendered: boolean;
37
- ngOnInit(): void;
38
- ngAfterViewInit(): void;
39
- ngOnDestroy(): void;
40
- _getHostElement<T = HTMLElement>(): T;
41
- _getInnerElement<T_1 = HTMLElement>(): T_1;
42
- _onInternalInit(): void;
43
- _onInternalViewInit(): void;
44
- _onInternalDestroy(): void;
45
- onInit(): void;
46
- onViewInit(): void;
47
- onDestroy(): void;
48
- };
49
- } & TBase;
50
- export declare const BASE_INPUTS: string[];
51
- export declare const BASE_OUTPUT: any[];
1
+ import { ChangeDetectorRef } from "@angular/core";
2
+ import { ElementRef } from "@angular/core";
3
+ import { Constructor } from "./constratctor";
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * A token that specifies the size of component.
7
+ */
8
+ export declare type AXElementSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
9
+ export declare class AXBaseComponent {
10
+ #private;
11
+ id: string;
12
+ /**
13
+ * A token that specifies the layout direction of component.
14
+ */
15
+ rtl: boolean;
16
+ cssClass: string;
17
+ cssStyle: string;
18
+ _cdr: ChangeDetectorRef;
19
+ _isInited: boolean;
20
+ _isRendered: boolean;
21
+ /**
22
+ * @ignore
23
+ */
24
+ constructor(...args: any[]);
25
+ ngOnInit(): void;
26
+ ngAfterViewInit(): void;
27
+ ngOnDestroy(): void;
28
+ _getHostElement<T = HTMLElement>(): T;
29
+ _getInnerElement<T = HTMLElement>(): T;
30
+ _onInternalInit(): void;
31
+ _onInternalViewInit(): void;
32
+ _onInternalDestroy(): void;
33
+ onInit(): void;
34
+ onViewInit(): void;
35
+ onDestroy(): void;
36
+ onOptionChanging(option: {
37
+ name: string;
38
+ value?: any;
39
+ }): any;
40
+ onOptionChanged(option: {
41
+ name: string;
42
+ oldValue?: any;
43
+ newValue?: any;
44
+ }): void;
45
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXBaseComponent, never>;
46
+ static ɵprov: i0.ɵɵInjectableDeclaration<AXBaseComponent>;
47
+ }
48
+ export declare function _BaseComponenetMixin<TBase extends Constructor<AXBaseComponent>>(Base: TBase): {
49
+ new (...args: any[]): {
50
+ id: string;
51
+ /**
52
+ * A token that specifies the layout direction of component.
53
+ */
54
+ rtl: boolean;
55
+ cssClass: string;
56
+ cssStyle: string;
57
+ "__#1@#elementRef": ElementRef<any>;
58
+ _cdr: ChangeDetectorRef;
59
+ _isInited: boolean;
60
+ _isRendered: boolean;
61
+ ngOnInit(): void;
62
+ ngAfterViewInit(): void;
63
+ ngOnDestroy(): void;
64
+ _getHostElement<T = HTMLElement>(): T;
65
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
66
+ _onInternalInit(): void;
67
+ _onInternalViewInit(): void;
68
+ _onInternalDestroy(): void;
69
+ onInit(): void;
70
+ onViewInit(): void;
71
+ onDestroy(): void;
72
+ onOptionChanging(option: {
73
+ name: string;
74
+ value?: any;
75
+ }): any;
76
+ onOptionChanged(option: {
77
+ name: string;
78
+ oldValue?: any;
79
+ newValue?: any;
80
+ }): void;
81
+ };
82
+ } & TBase;
83
+ export declare const BASE_INPUTS: string[];
84
+ export declare const BASE_OUTPUT: any[];
@@ -1,34 +1,79 @@
1
- import { AXBaseComponent } from './base-components.class';
2
- import { Constructor } from './constratctor';
3
- export declare function _ButtonComponentMixin<TBase extends Constructor<AXBaseComponent>>(Base: TBase): {
4
- new (...args: any[]): {
5
- text: string;
6
- iconClass: string;
7
- iconClassAfter: string;
8
- iconClassBefore: string;
9
- badge: string;
10
- submitBehavior: boolean;
11
- cancelBehavior: boolean;
12
- _onInternalViewInit(): void;
13
- _onInternalDestroy(): void;
14
- id: string;
15
- rtl: boolean;
16
- cssClass: string;
17
- cssStyle: string;
18
- "__#1@#elementRef": import("@angular/core").ElementRef<any>;
19
- _cdr: import("@angular/core").ChangeDetectorRef;
20
- _isInited: boolean;
21
- _isRendered: boolean;
22
- ngOnInit(): void;
23
- ngAfterViewInit(): void;
24
- ngOnDestroy(): void;
25
- _getHostElement<T = HTMLElement>(): T;
26
- _getInnerElement<T_1 = HTMLElement>(): T_1;
27
- _onInternalInit(): void;
28
- onInit(): void;
29
- onViewInit(): void;
30
- onDestroy(): void;
31
- };
32
- } & TBase;
33
- export declare const BUTTON_INPUTS: string[];
34
- export declare const BUTTON_OUTPUT: string[];
1
+ import { EventEmitter } from '@angular/core';
2
+ import { AXStyleColorType, AXStyleButtonLook } from '../styles.class';
3
+ import { AXBaseComponent } from './base-components.class';
4
+ import { Constructor } from './constratctor';
5
+ export declare function _ButtonComponentMixin<TBase extends Constructor<AXBaseComponent>>(Base: TBase): {
6
+ new (...args: any[]): {
7
+ /**
8
+ * Defines the primary text to show inside the button.
9
+ */
10
+ text: string;
11
+ /**
12
+ * Trigger click event by Enter Key
13
+ */
14
+ submitBehavior: boolean;
15
+ /**
16
+ * Trigger click event by Esc Key
17
+ */
18
+ cancelBehavior: boolean;
19
+ colorChange: EventEmitter<AXStyleColorType>;
20
+ "__#2@#color": AXStyleColorType;
21
+ /**
22
+ * Predefined color schemes
23
+ */
24
+ color: AXStyleColorType;
25
+ lookChange: EventEmitter<AXStyleButtonLook>;
26
+ "__#2@#look"?: AXStyleButtonLook;
27
+ /**
28
+ * Predefined look schemes
29
+ */
30
+ look: AXStyleButtonLook;
31
+ toggleableChange: EventEmitter<boolean>;
32
+ "__#2@#toggleable"?: boolean;
33
+ /**
34
+ * Provides visual styling that indicates if the Button is active
35
+ */
36
+ toggleable: boolean;
37
+ selectedChange: EventEmitter<boolean>;
38
+ "__#2@#selected"?: boolean;
39
+ /**
40
+ * Indicates if the Button is selected or not
41
+ */
42
+ selected: boolean;
43
+ _onInternalViewInit(): void;
44
+ _onInternalDestroy(): void;
45
+ readonly _classes: {
46
+ 'ax-button-icon': boolean;
47
+ 'ax-state-disabled': any;
48
+ 'ax-state-selected': boolean;
49
+ };
50
+ id: string;
51
+ rtl: boolean;
52
+ cssClass: string;
53
+ cssStyle: string;
54
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
55
+ _cdr: import("@angular/core").ChangeDetectorRef;
56
+ _isInited: boolean;
57
+ _isRendered: boolean;
58
+ ngOnInit(): void;
59
+ ngAfterViewInit(): void;
60
+ ngOnDestroy(): void;
61
+ _getHostElement<T = HTMLElement>(): T;
62
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
63
+ _onInternalInit(): void;
64
+ onInit(): void;
65
+ onViewInit(): void;
66
+ onDestroy(): void;
67
+ onOptionChanging(option: {
68
+ name: string;
69
+ value?: any;
70
+ }): any;
71
+ onOptionChanged(option: {
72
+ name: string;
73
+ oldValue?: any;
74
+ newValue?: any;
75
+ }): void;
76
+ };
77
+ } & TBase;
78
+ export declare const BUTTON_INPUTS: string[];
79
+ export declare const BUTTON_OUTPUT: string[];