@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,493 +1,814 @@
1
- import { AXBaseComponent } from './base-components.class';
2
- export declare const AXBaseComponentMixin: {
3
- new (...args: any[]): {
4
- id: string;
5
- rtl: boolean;
6
- cssClass: string;
7
- cssStyle: string;
8
- "__#1@#elementRef": import("@angular/core").ElementRef<any>;
9
- _cdr: import("@angular/core").ChangeDetectorRef;
10
- _isInited: boolean;
11
- _isRendered: boolean;
12
- ngOnInit(): void;
13
- ngAfterViewInit(): void;
14
- ngOnDestroy(): void;
15
- _getHostElement<T = HTMLElement>(): T;
16
- _getInnerElement<T_1 = HTMLElement>(): T_1;
17
- _onInternalInit(): void;
18
- _onInternalViewInit(): void;
19
- _onInternalDestroy(): void;
20
- onInit(): void;
21
- onViewInit(): void;
22
- onDestroy(): void;
23
- };
24
- } & typeof AXBaseComponent;
25
- export declare const AXSizableComponentMixin: {
26
- new (...args: any[]): {
27
- size: import("./base-components.class").AXElementSize;
28
- _onInternalInit(): void;
29
- id: string;
30
- rtl: boolean;
31
- cssClass: string;
32
- cssStyle: string;
33
- "__#1@#elementRef": import("@angular/core").ElementRef<any>;
34
- _cdr: import("@angular/core").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
- _onInternalViewInit(): void;
43
- _onInternalDestroy(): void;
44
- onInit(): void;
45
- onViewInit(): void;
46
- onDestroy(): void;
47
- };
48
- } & {
49
- new (...args: any[]): {
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
- _onInternalViewInit(): void;
65
- _onInternalDestroy(): void;
66
- onInit(): void;
67
- onViewInit(): void;
68
- onDestroy(): void;
69
- };
70
- } & typeof AXBaseComponent;
71
- export declare const AXInteractiveComponenetMixin: {
72
- new (...args: any[]): {
73
- size: import("./base-components.class").AXElementSize;
74
- _onInternalInit(): void;
75
- id: string;
76
- rtl: boolean;
77
- cssClass: string;
78
- cssStyle: string;
79
- "__#1@#elementRef": import("@angular/core").ElementRef<any>;
80
- _cdr: import("@angular/core").ChangeDetectorRef;
81
- _isInited: boolean;
82
- _isRendered: boolean;
83
- ngOnInit(): void;
84
- ngAfterViewInit(): void;
85
- ngOnDestroy(): void;
86
- _getHostElement<T = HTMLElement>(): T;
87
- _getInnerElement<T_1 = HTMLElement>(): T_1;
88
- _onInternalViewInit(): void;
89
- _onInternalDestroy(): void;
90
- onInit(): void;
91
- onViewInit(): void;
92
- onDestroy(): void;
93
- };
94
- } & (abstract new (...args: any[]) => {
95
- "__#4@#disabled": boolean;
96
- disabled: any;
97
- "__#4@#tabIndex": number;
98
- tabIndex: number;
99
- onFocus: import("@angular/core").EventEmitter<import("..").AXFocusEvent>;
100
- _emitOnFocusEvent(e: FocusEvent): void;
101
- onBlur: import("@angular/core").EventEmitter<import("..").AXFocusEvent>;
102
- _emitOnBlurEvent(e: FocusEvent): void;
103
- focus(): void;
104
- id: string;
105
- rtl: boolean;
106
- cssClass: string;
107
- cssStyle: string;
108
- "__#1@#elementRef": import("@angular/core").ElementRef<any>;
109
- _cdr: import("@angular/core").ChangeDetectorRef;
110
- _isInited: boolean;
111
- _isRendered: boolean;
112
- ngOnInit(): void;
113
- ngAfterViewInit(): void;
114
- ngOnDestroy(): void;
115
- _getHostElement<T = HTMLElement>(): T;
116
- _getInnerElement<T_1 = HTMLElement>(): T_1;
117
- _onInternalInit(): void;
118
- _onInternalViewInit(): void;
119
- _onInternalDestroy(): void;
120
- onInit(): void;
121
- onViewInit(): void;
122
- onDestroy(): void;
123
- }) & typeof AXBaseComponent;
124
- export declare const AXBaseClickableMixin: {
125
- new (...args: any[]): {
126
- size: import("./base-components.class").AXElementSize;
127
- _onInternalInit(): void;
128
- id: string;
129
- rtl: boolean;
130
- cssClass: string;
131
- cssStyle: string;
132
- "__#1@#elementRef": import("@angular/core").ElementRef<any>;
133
- _cdr: import("@angular/core").ChangeDetectorRef;
134
- _isInited: boolean;
135
- _isRendered: boolean;
136
- ngOnInit(): void;
137
- ngAfterViewInit(): void;
138
- ngOnDestroy(): void;
139
- _getHostElement<T = HTMLElement>(): T;
140
- _getInnerElement<T_1 = HTMLElement>(): T_1;
141
- _onInternalViewInit(): void;
142
- _onInternalDestroy(): void;
143
- onInit(): void;
144
- onViewInit(): void;
145
- onDestroy(): void;
146
- };
147
- } & (abstract new (...args: any[]) => {
148
- "__#4@#disabled": boolean;
149
- disabled: any;
150
- "__#4@#tabIndex": number;
151
- tabIndex: number;
152
- onFocus: import("@angular/core").EventEmitter<import("..").AXFocusEvent>;
153
- _emitOnFocusEvent(e: FocusEvent): void;
154
- onBlur: import("@angular/core").EventEmitter<import("..").AXFocusEvent>;
155
- _emitOnBlurEvent(e: FocusEvent): void;
156
- focus(): void;
157
- id: string;
158
- rtl: boolean;
159
- cssClass: string;
160
- cssStyle: string;
161
- "__#1@#elementRef": import("@angular/core").ElementRef<any>;
162
- _cdr: import("@angular/core").ChangeDetectorRef;
163
- _isInited: boolean;
164
- _isRendered: boolean;
165
- ngOnInit(): void;
166
- ngAfterViewInit(): void;
167
- ngOnDestroy(): void;
168
- _getHostElement<T = HTMLElement>(): T;
169
- _getInnerElement<T_1 = HTMLElement>(): T_1;
170
- _onInternalInit(): void;
171
- _onInternalViewInit(): void;
172
- _onInternalDestroy(): void;
173
- onInit(): void;
174
- onViewInit(): void;
175
- onDestroy(): void;
176
- }) & {
177
- new (...args: any[]): {
178
- onClick: import("@angular/core").EventEmitter<import("..").AXClickEvent>;
179
- _emitOnClickEvent(e: MouseEvent): void;
180
- id: string;
181
- rtl: boolean;
182
- cssClass: string;
183
- cssStyle: string;
184
- "__#1@#elementRef": import("@angular/core").ElementRef<any>;
185
- _cdr: import("@angular/core").ChangeDetectorRef;
186
- _isInited: boolean;
187
- _isRendered: boolean;
188
- ngOnInit(): void;
189
- ngAfterViewInit(): void;
190
- ngOnDestroy(): void;
191
- _getHostElement<T = HTMLElement>(): T;
192
- _getInnerElement<T_1 = HTMLElement>(): T_1;
193
- _onInternalInit(): void;
194
- _onInternalViewInit(): void;
195
- _onInternalDestroy(): void;
196
- onInit(): void;
197
- onViewInit(): void;
198
- onDestroy(): void;
199
- };
200
- } & typeof AXBaseComponent;
201
- export declare const AXBaseButtonMixin: {
202
- new (...args: any[]): {
203
- size: import("./base-components.class").AXElementSize;
204
- _onInternalInit(): void;
205
- id: string;
206
- rtl: boolean;
207
- cssClass: string;
208
- cssStyle: string;
209
- "__#1@#elementRef": import("@angular/core").ElementRef<any>;
210
- _cdr: import("@angular/core").ChangeDetectorRef;
211
- _isInited: boolean;
212
- _isRendered: boolean;
213
- ngOnInit(): void;
214
- ngAfterViewInit(): void;
215
- ngOnDestroy(): void;
216
- _getHostElement<T = HTMLElement>(): T;
217
- _getInnerElement<T_1 = HTMLElement>(): T_1;
218
- _onInternalViewInit(): void;
219
- _onInternalDestroy(): void;
220
- onInit(): void;
221
- onViewInit(): void;
222
- onDestroy(): void;
223
- };
224
- } & (abstract new (...args: any[]) => {
225
- "__#4@#disabled": boolean;
226
- disabled: any;
227
- "__#4@#tabIndex": number;
228
- tabIndex: number;
229
- onFocus: import("@angular/core").EventEmitter<import("..").AXFocusEvent>;
230
- _emitOnFocusEvent(e: FocusEvent): void;
231
- onBlur: import("@angular/core").EventEmitter<import("..").AXFocusEvent>;
232
- _emitOnBlurEvent(e: FocusEvent): void;
233
- focus(): void;
234
- id: string;
235
- rtl: boolean;
236
- cssClass: string;
237
- cssStyle: string;
238
- "__#1@#elementRef": import("@angular/core").ElementRef<any>;
239
- _cdr: import("@angular/core").ChangeDetectorRef;
240
- _isInited: boolean;
241
- _isRendered: boolean;
242
- ngOnInit(): void;
243
- ngAfterViewInit(): void;
244
- ngOnDestroy(): void;
245
- _getHostElement<T = HTMLElement>(): T;
246
- _getInnerElement<T_1 = HTMLElement>(): T_1;
247
- _onInternalInit(): void;
248
- _onInternalViewInit(): void;
249
- _onInternalDestroy(): void;
250
- onInit(): void;
251
- onViewInit(): void;
252
- onDestroy(): void;
253
- }) & {
254
- new (...args: any[]): {
255
- onClick: import("@angular/core").EventEmitter<import("..").AXClickEvent>;
256
- _emitOnClickEvent(e: MouseEvent): void;
257
- id: string;
258
- rtl: boolean;
259
- cssClass: string;
260
- cssStyle: string;
261
- "__#1@#elementRef": import("@angular/core").ElementRef<any>;
262
- _cdr: import("@angular/core").ChangeDetectorRef;
263
- _isInited: boolean;
264
- _isRendered: boolean;
265
- ngOnInit(): void;
266
- ngAfterViewInit(): void;
267
- ngOnDestroy(): void;
268
- _getHostElement<T = HTMLElement>(): T;
269
- _getInnerElement<T_1 = HTMLElement>(): T_1;
270
- _onInternalInit(): void;
271
- _onInternalViewInit(): void;
272
- _onInternalDestroy(): void;
273
- onInit(): void;
274
- onViewInit(): void;
275
- onDestroy(): void;
276
- };
277
- } & {
278
- new (...args: any[]): {
279
- loading: boolean;
280
- loadingIconClass: string;
281
- loadingText: string;
282
- _onInternalInit(): void;
283
- id: string;
284
- rtl: boolean;
285
- cssClass: string;
286
- cssStyle: string;
287
- "__#1@#elementRef": import("@angular/core").ElementRef<any>;
288
- _cdr: import("@angular/core").ChangeDetectorRef;
289
- _isInited: boolean;
290
- _isRendered: boolean;
291
- ngOnInit(): void;
292
- ngAfterViewInit(): void;
293
- ngOnDestroy(): void;
294
- _getHostElement<T = HTMLElement>(): T;
295
- _getInnerElement<T_1 = HTMLElement>(): T_1;
296
- _onInternalViewInit(): void;
297
- _onInternalDestroy(): void;
298
- onInit(): void;
299
- onViewInit(): void;
300
- onDestroy(): void;
301
- };
302
- } & {
303
- new (...args: any[]): {
304
- text: string;
305
- iconClass: string;
306
- iconClassAfter: string;
307
- iconClassBefore: string;
308
- badge: string;
309
- submitBehavior: boolean;
310
- cancelBehavior: boolean;
311
- _onInternalViewInit(): void;
312
- _onInternalDestroy(): void;
313
- id: string;
314
- rtl: boolean;
315
- cssClass: string;
316
- cssStyle: string;
317
- "__#1@#elementRef": import("@angular/core").ElementRef<any>;
318
- _cdr: import("@angular/core").ChangeDetectorRef;
319
- _isInited: boolean;
320
- _isRendered: boolean;
321
- ngOnInit(): void;
322
- ngAfterViewInit(): void;
323
- ngOnDestroy(): void;
324
- _getHostElement<T = HTMLElement>(): T;
325
- _getInnerElement<T_1 = HTMLElement>(): T_1;
326
- _onInternalInit(): void;
327
- onInit(): void;
328
- onViewInit(): void;
329
- onDestroy(): void;
330
- };
331
- } & typeof AXBaseComponent;
332
- export declare const AXBaseValueComponentMixin: any;
333
- export declare const AXBaseTextBoxMixin: any;
334
- export declare const AXBaseDropdownMixin: {
335
- new (...args: any[]): {
336
- size: import("./base-components.class").AXElementSize;
337
- _onInternalInit(): void;
338
- id: string;
339
- rtl: boolean;
340
- cssClass: string;
341
- cssStyle: string;
342
- "__#1@#elementRef": import("@angular/core").ElementRef<any>;
343
- _cdr: import("@angular/core").ChangeDetectorRef;
344
- _isInited: boolean;
345
- _isRendered: boolean;
346
- ngOnInit(): void;
347
- ngAfterViewInit(): void;
348
- ngOnDestroy(): void;
349
- _getHostElement<T = HTMLElement>(): T;
350
- _getInnerElement<T_1 = HTMLElement>(): T_1;
351
- _onInternalViewInit(): void;
352
- _onInternalDestroy(): void;
353
- onInit(): void;
354
- onViewInit(): void;
355
- onDestroy(): void;
356
- };
357
- } & (abstract new (...args: any[]) => {
358
- "__#4@#disabled": boolean;
359
- disabled: any;
360
- "__#4@#tabIndex": number;
361
- tabIndex: number;
362
- onFocus: import("@angular/core").EventEmitter<import("..").AXFocusEvent>;
363
- _emitOnFocusEvent(e: FocusEvent): void;
364
- onBlur: import("@angular/core").EventEmitter<import("..").AXFocusEvent>;
365
- _emitOnBlurEvent(e: FocusEvent): void;
366
- focus(): void;
367
- id: string;
368
- rtl: boolean;
369
- cssClass: string;
370
- cssStyle: string;
371
- "__#1@#elementRef": import("@angular/core").ElementRef<any>;
372
- _cdr: import("@angular/core").ChangeDetectorRef;
373
- _isInited: boolean;
374
- _isRendered: boolean;
375
- ngOnInit(): void;
376
- ngAfterViewInit(): void;
377
- ngOnDestroy(): void;
378
- _getHostElement<T = HTMLElement>(): T;
379
- _getInnerElement<T_1 = HTMLElement>(): T_1;
380
- _onInternalInit(): void;
381
- _onInternalViewInit(): void;
382
- _onInternalDestroy(): void;
383
- onInit(): void;
384
- onViewInit(): void;
385
- onDestroy(): void;
386
- }) & (abstract new (...args: any[]) => {
387
- "__#3@#readonly": boolean;
388
- readonly: any;
389
- fitParent: boolean;
390
- onOpened: import("@angular/core").EventEmitter<import("..").AXEvent>;
391
- onClosed: import("@angular/core").EventEmitter<import("..").AXEvent>;
392
- _emitOnOpenedEvent(): void;
393
- _emitOnClosedEvent(): void;
394
- id: string;
395
- rtl: boolean;
396
- cssClass: string;
397
- cssStyle: string;
398
- "__#1@#elementRef": import("@angular/core").ElementRef<any>;
399
- _cdr: import("@angular/core").ChangeDetectorRef;
400
- _isInited: boolean;
401
- _isRendered: boolean;
402
- ngOnInit(): void;
403
- ngAfterViewInit(): void;
404
- ngOnDestroy(): void;
405
- _getHostElement<T = HTMLElement>(): T;
406
- _getInnerElement<T_1 = HTMLElement>(): T_1;
407
- _onInternalInit(): void;
408
- _onInternalViewInit(): void;
409
- _onInternalDestroy(): void;
410
- onInit(): void;
411
- onViewInit(): void;
412
- onDestroy(): void;
413
- }) & typeof AXBaseComponent;
414
- export declare const AXBaseSelectionValueMixin: any;
415
- export declare const AXBaseValueDropdownMixin: any;
416
- export declare const AXBaseSelectionDropdownMixin: any;
417
- export declare const AXCalendarMixin: {
418
- new (...args: any[]): {
419
- onClick: import("@angular/core").EventEmitter<import("..").AXClickEvent>;
420
- _emitOnClickEvent(e: MouseEvent): void;
421
- id: string;
422
- rtl: boolean;
423
- cssClass: string;
424
- cssStyle: string;
425
- "__#1@#elementRef": import("@angular/core").ElementRef<any>;
426
- _cdr: import("@angular/core").ChangeDetectorRef;
427
- _isInited: boolean;
428
- _isRendered: boolean;
429
- ngOnInit(): void;
430
- ngAfterViewInit(): void;
431
- ngOnDestroy(): void;
432
- _getHostElement<T = HTMLElement>(): T;
433
- _getInnerElement<T_1 = HTMLElement>(): T_1;
434
- _onInternalInit(): void;
435
- _onInternalViewInit(): void;
436
- _onInternalDestroy(): void;
437
- onInit(): void;
438
- onViewInit(): void;
439
- onDestroy(): void;
440
- };
441
- } & {
442
- new (...args: any[]): {
443
- text: string;
444
- iconClass: string;
445
- iconClassAfter: string;
446
- iconClassBefore: string;
447
- badge: string;
448
- submitBehavior: boolean;
449
- cancelBehavior: boolean;
450
- _onInternalViewInit(): void;
451
- _onInternalDestroy(): void;
452
- id: string;
453
- rtl: boolean;
454
- cssClass: string;
455
- cssStyle: string;
456
- "__#1@#elementRef": import("@angular/core").ElementRef<any>;
457
- _cdr: import("@angular/core").ChangeDetectorRef;
458
- _isInited: boolean;
459
- _isRendered: boolean;
460
- ngOnInit(): void;
461
- ngAfterViewInit(): void;
462
- ngOnDestroy(): void;
463
- _getHostElement<T = HTMLElement>(): T;
464
- _getInnerElement<T_1 = HTMLElement>(): T_1;
465
- _onInternalInit(): void;
466
- onInit(): void;
467
- onViewInit(): void;
468
- onDestroy(): void;
469
- };
470
- } & {
471
- new (...args: any[]): {
472
- size: import("./base-components.class").AXElementSize;
473
- _onInternalInit(): void;
474
- id: string;
475
- rtl: boolean;
476
- cssClass: string;
477
- cssStyle: string;
478
- "__#1@#elementRef": import("@angular/core").ElementRef<any>;
479
- _cdr: import("@angular/core").ChangeDetectorRef;
480
- _isInited: boolean;
481
- _isRendered: boolean;
482
- ngOnInit(): void;
483
- ngAfterViewInit(): void;
484
- ngOnDestroy(): void;
485
- _getHostElement<T = HTMLElement>(): T;
486
- _getInnerElement<T_1 = HTMLElement>(): T_1;
487
- _onInternalViewInit(): void;
488
- _onInternalDestroy(): void;
489
- onInit(): void;
490
- onViewInit(): void;
491
- onDestroy(): void;
492
- };
493
- } & typeof AXBaseComponent;
1
+ import { AXBaseComponent } from './base-components.class';
2
+ export declare const AXBaseComponentMixin: {
3
+ new (...args: any[]): {
4
+ id: string;
5
+ rtl: boolean;
6
+ cssClass: string;
7
+ cssStyle: string;
8
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
9
+ _cdr: import("@angular/core").ChangeDetectorRef;
10
+ _isInited: boolean;
11
+ _isRendered: boolean;
12
+ ngOnInit(): void;
13
+ ngAfterViewInit(): void;
14
+ ngOnDestroy(): void;
15
+ _getHostElement<T = HTMLElement>(): T;
16
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
17
+ _onInternalInit(): void;
18
+ _onInternalViewInit(): void;
19
+ _onInternalDestroy(): void;
20
+ onInit(): void;
21
+ onViewInit(): void;
22
+ onDestroy(): void;
23
+ onOptionChanging(option: {
24
+ name: string;
25
+ value?: any;
26
+ }): any;
27
+ onOptionChanged(option: {
28
+ name: string;
29
+ oldValue?: any;
30
+ newValue?: any;
31
+ }): void;
32
+ };
33
+ } & typeof AXBaseComponent;
34
+ export declare const AXSizableComponentMixin: {
35
+ new (...args: any[]): {
36
+ size: import("./base-components.class").AXElementSize;
37
+ _onInternalInit(): void;
38
+ id: string;
39
+ rtl: boolean;
40
+ cssClass: string;
41
+ cssStyle: string;
42
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
43
+ _cdr: import("@angular/core").ChangeDetectorRef;
44
+ _isInited: boolean;
45
+ _isRendered: boolean;
46
+ ngOnInit(): void;
47
+ ngAfterViewInit(): void;
48
+ ngOnDestroy(): void;
49
+ _getHostElement<T = HTMLElement>(): T;
50
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
51
+ _onInternalViewInit(): void;
52
+ _onInternalDestroy(): void;
53
+ onInit(): void;
54
+ onViewInit(): void;
55
+ onDestroy(): void;
56
+ onOptionChanging(option: {
57
+ name: string;
58
+ value?: any;
59
+ }): any;
60
+ onOptionChanged(option: {
61
+ name: string;
62
+ oldValue?: any;
63
+ newValue?: any;
64
+ }): void;
65
+ };
66
+ } & {
67
+ new (...args: any[]): {
68
+ id: string;
69
+ rtl: boolean;
70
+ cssClass: string;
71
+ cssStyle: string;
72
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
73
+ _cdr: import("@angular/core").ChangeDetectorRef;
74
+ _isInited: boolean;
75
+ _isRendered: boolean;
76
+ ngOnInit(): void;
77
+ ngAfterViewInit(): void;
78
+ ngOnDestroy(): void;
79
+ _getHostElement<T = HTMLElement>(): T;
80
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
81
+ _onInternalInit(): void;
82
+ _onInternalViewInit(): void;
83
+ _onInternalDestroy(): void;
84
+ onInit(): void;
85
+ onViewInit(): void;
86
+ onDestroy(): void;
87
+ onOptionChanging(option: {
88
+ name: string;
89
+ value?: any;
90
+ }): any;
91
+ onOptionChanged(option: {
92
+ name: string;
93
+ oldValue?: any;
94
+ newValue?: any;
95
+ }): void;
96
+ };
97
+ } & typeof AXBaseComponent;
98
+ export declare const AXInteractiveComponenetMixin: {
99
+ new (...args: any[]): {
100
+ size: import("./base-components.class").AXElementSize;
101
+ _onInternalInit(): void;
102
+ id: string;
103
+ rtl: boolean;
104
+ cssClass: string;
105
+ cssStyle: string;
106
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
107
+ _cdr: import("@angular/core").ChangeDetectorRef;
108
+ _isInited: boolean;
109
+ _isRendered: boolean;
110
+ ngOnInit(): void;
111
+ ngAfterViewInit(): void;
112
+ ngOnDestroy(): void;
113
+ _getHostElement<T = HTMLElement>(): T;
114
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
115
+ _onInternalViewInit(): void;
116
+ _onInternalDestroy(): void;
117
+ onInit(): void;
118
+ onViewInit(): void;
119
+ onDestroy(): void;
120
+ onOptionChanging(option: {
121
+ name: string;
122
+ value?: any;
123
+ }): any;
124
+ onOptionChanged(option: {
125
+ name: string;
126
+ oldValue?: any;
127
+ newValue?: any;
128
+ }): void;
129
+ };
130
+ } & (abstract new (...args: any[]) => {
131
+ "__#5@#disabled": boolean;
132
+ disabled: boolean;
133
+ "__#5@#tabIndex": number;
134
+ tabIndex: number;
135
+ onFocus: import("@angular/core").EventEmitter<import("@acorex/components").AXFocusEvent>;
136
+ _emitOnFocusEvent(e: FocusEvent): void;
137
+ onBlur: import("@angular/core").EventEmitter<import("@acorex/components").AXFocusEvent>;
138
+ _emitOnBlurEvent(e: FocusEvent): void;
139
+ focus(): void;
140
+ id: string;
141
+ rtl: boolean;
142
+ cssClass: string;
143
+ cssStyle: string;
144
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
145
+ _cdr: import("@angular/core").ChangeDetectorRef;
146
+ _isInited: boolean;
147
+ _isRendered: boolean;
148
+ ngOnInit(): void;
149
+ ngAfterViewInit(): void;
150
+ ngOnDestroy(): void;
151
+ _getHostElement<T = HTMLElement>(): T;
152
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
153
+ _onInternalInit(): void;
154
+ _onInternalViewInit(): void;
155
+ _onInternalDestroy(): void;
156
+ onInit(): void;
157
+ onViewInit(): void;
158
+ onDestroy(): void;
159
+ onOptionChanging(option: {
160
+ name: string;
161
+ value?: any;
162
+ }): any;
163
+ onOptionChanged(option: {
164
+ name: string;
165
+ oldValue?: any;
166
+ newValue?: any;
167
+ }): void;
168
+ }) & typeof AXBaseComponent;
169
+ export declare const AXBaseClickableMixin: {
170
+ new (...args: any[]): {
171
+ size: import("./base-components.class").AXElementSize;
172
+ _onInternalInit(): void;
173
+ id: string;
174
+ rtl: boolean;
175
+ cssClass: string;
176
+ cssStyle: string;
177
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
178
+ _cdr: import("@angular/core").ChangeDetectorRef;
179
+ _isInited: boolean;
180
+ _isRendered: boolean;
181
+ ngOnInit(): void;
182
+ ngAfterViewInit(): void;
183
+ ngOnDestroy(): void;
184
+ _getHostElement<T = HTMLElement>(): T;
185
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
186
+ _onInternalViewInit(): void;
187
+ _onInternalDestroy(): void;
188
+ onInit(): void;
189
+ onViewInit(): void;
190
+ onDestroy(): void;
191
+ onOptionChanging(option: {
192
+ name: string;
193
+ value?: any;
194
+ }): any;
195
+ onOptionChanged(option: {
196
+ name: string;
197
+ oldValue?: any;
198
+ newValue?: any;
199
+ }): void;
200
+ };
201
+ } & (abstract new (...args: any[]) => {
202
+ "__#5@#disabled": boolean;
203
+ disabled: boolean;
204
+ "__#5@#tabIndex": number;
205
+ tabIndex: number;
206
+ onFocus: import("@angular/core").EventEmitter<import("@acorex/components").AXFocusEvent>;
207
+ _emitOnFocusEvent(e: FocusEvent): void;
208
+ onBlur: import("@angular/core").EventEmitter<import("@acorex/components").AXFocusEvent>;
209
+ _emitOnBlurEvent(e: FocusEvent): void;
210
+ focus(): void;
211
+ id: string;
212
+ rtl: boolean;
213
+ cssClass: string;
214
+ cssStyle: string;
215
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
216
+ _cdr: import("@angular/core").ChangeDetectorRef;
217
+ _isInited: boolean;
218
+ _isRendered: boolean;
219
+ ngOnInit(): void;
220
+ ngAfterViewInit(): void;
221
+ ngOnDestroy(): void;
222
+ _getHostElement<T = HTMLElement>(): T;
223
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
224
+ _onInternalInit(): void;
225
+ _onInternalViewInit(): void;
226
+ _onInternalDestroy(): void;
227
+ onInit(): void;
228
+ onViewInit(): void;
229
+ onDestroy(): void;
230
+ onOptionChanging(option: {
231
+ name: string;
232
+ value?: any;
233
+ }): any;
234
+ onOptionChanged(option: {
235
+ name: string;
236
+ oldValue?: any;
237
+ newValue?: any;
238
+ }): void;
239
+ }) & {
240
+ new (...args: any[]): {
241
+ onClick: import("@angular/core").EventEmitter<import("@acorex/components").AXClickEvent>;
242
+ _emitOnClickEvent(e: MouseEvent): void;
243
+ id: string;
244
+ rtl: boolean;
245
+ cssClass: string;
246
+ cssStyle: string;
247
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
248
+ _cdr: import("@angular/core").ChangeDetectorRef;
249
+ _isInited: boolean;
250
+ _isRendered: boolean;
251
+ ngOnInit(): void;
252
+ ngAfterViewInit(): void;
253
+ ngOnDestroy(): void;
254
+ _getHostElement<T = HTMLElement>(): T;
255
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
256
+ _onInternalInit(): void;
257
+ _onInternalViewInit(): void;
258
+ _onInternalDestroy(): void;
259
+ onInit(): void;
260
+ onViewInit(): void;
261
+ onDestroy(): void;
262
+ onOptionChanging(option: {
263
+ name: string;
264
+ value?: any;
265
+ }): any;
266
+ onOptionChanged(option: {
267
+ name: string;
268
+ oldValue?: any;
269
+ newValue?: any;
270
+ }): void;
271
+ };
272
+ } & typeof AXBaseComponent;
273
+ export declare const AXBaseButtonMixin: {
274
+ new (...args: any[]): {
275
+ size: import("./base-components.class").AXElementSize;
276
+ _onInternalInit(): void;
277
+ id: string;
278
+ rtl: boolean;
279
+ cssClass: string;
280
+ cssStyle: string;
281
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
282
+ _cdr: import("@angular/core").ChangeDetectorRef;
283
+ _isInited: boolean;
284
+ _isRendered: boolean;
285
+ ngOnInit(): void;
286
+ ngAfterViewInit(): void;
287
+ ngOnDestroy(): void;
288
+ _getHostElement<T = HTMLElement>(): T;
289
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
290
+ _onInternalViewInit(): void;
291
+ _onInternalDestroy(): void;
292
+ onInit(): void;
293
+ onViewInit(): void;
294
+ onDestroy(): void;
295
+ onOptionChanging(option: {
296
+ name: string;
297
+ value?: any;
298
+ }): any;
299
+ onOptionChanged(option: {
300
+ name: string;
301
+ oldValue?: any;
302
+ newValue?: any;
303
+ }): void;
304
+ };
305
+ } & (abstract new (...args: any[]) => {
306
+ "__#5@#disabled": boolean;
307
+ disabled: boolean;
308
+ "__#5@#tabIndex": number;
309
+ tabIndex: number;
310
+ onFocus: import("@angular/core").EventEmitter<import("@acorex/components").AXFocusEvent>;
311
+ _emitOnFocusEvent(e: FocusEvent): void;
312
+ onBlur: import("@angular/core").EventEmitter<import("@acorex/components").AXFocusEvent>;
313
+ _emitOnBlurEvent(e: FocusEvent): void;
314
+ focus(): void;
315
+ id: string;
316
+ rtl: boolean;
317
+ cssClass: string;
318
+ cssStyle: string;
319
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
320
+ _cdr: import("@angular/core").ChangeDetectorRef;
321
+ _isInited: boolean;
322
+ _isRendered: boolean;
323
+ ngOnInit(): void;
324
+ ngAfterViewInit(): void;
325
+ ngOnDestroy(): void;
326
+ _getHostElement<T = HTMLElement>(): T;
327
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
328
+ _onInternalInit(): void;
329
+ _onInternalViewInit(): void;
330
+ _onInternalDestroy(): void;
331
+ onInit(): void;
332
+ onViewInit(): void;
333
+ onDestroy(): void;
334
+ onOptionChanging(option: {
335
+ name: string;
336
+ value?: any;
337
+ }): any;
338
+ onOptionChanged(option: {
339
+ name: string;
340
+ oldValue?: any;
341
+ newValue?: any;
342
+ }): void;
343
+ }) & {
344
+ new (...args: any[]): {
345
+ onClick: import("@angular/core").EventEmitter<import("@acorex/components").AXClickEvent>;
346
+ _emitOnClickEvent(e: MouseEvent): void;
347
+ id: string;
348
+ rtl: boolean;
349
+ cssClass: string;
350
+ cssStyle: string;
351
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
352
+ _cdr: import("@angular/core").ChangeDetectorRef;
353
+ _isInited: boolean;
354
+ _isRendered: boolean;
355
+ ngOnInit(): void;
356
+ ngAfterViewInit(): void;
357
+ ngOnDestroy(): void;
358
+ _getHostElement<T = HTMLElement>(): T;
359
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
360
+ _onInternalInit(): void;
361
+ _onInternalViewInit(): void;
362
+ _onInternalDestroy(): void;
363
+ onInit(): void;
364
+ onViewInit(): void;
365
+ onDestroy(): void;
366
+ onOptionChanging(option: {
367
+ name: string;
368
+ value?: any;
369
+ }): any;
370
+ onOptionChanged(option: {
371
+ name: string;
372
+ oldValue?: any;
373
+ newValue?: any;
374
+ }): void;
375
+ };
376
+ } & {
377
+ new (...args: any[]): {
378
+ text: string;
379
+ submitBehavior: boolean;
380
+ cancelBehavior: boolean;
381
+ colorChange: import("@angular/core").EventEmitter<import("@acorex/components").AXStyleColorType>;
382
+ "__#2@#color": import("@acorex/components").AXStyleColorType;
383
+ color: import("@acorex/components").AXStyleColorType;
384
+ lookChange: import("@angular/core").EventEmitter<import("@acorex/components").AXStyleButtonLook>;
385
+ "__#2@#look"?: import("@acorex/components").AXStyleButtonLook;
386
+ look: import("@acorex/components").AXStyleButtonLook;
387
+ toggleableChange: import("@angular/core").EventEmitter<boolean>;
388
+ "__#2@#toggleable"?: boolean;
389
+ toggleable: boolean;
390
+ selectedChange: import("@angular/core").EventEmitter<boolean>;
391
+ "__#2@#selected"?: boolean;
392
+ selected: boolean;
393
+ _onInternalViewInit(): void;
394
+ _onInternalDestroy(): void;
395
+ readonly _classes: {
396
+ 'ax-button-icon': boolean;
397
+ 'ax-state-disabled': any;
398
+ 'ax-state-selected': boolean;
399
+ };
400
+ id: string;
401
+ rtl: boolean;
402
+ cssClass: string;
403
+ cssStyle: string;
404
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
405
+ _cdr: import("@angular/core").ChangeDetectorRef;
406
+ _isInited: boolean;
407
+ _isRendered: boolean;
408
+ ngOnInit(): void;
409
+ ngAfterViewInit(): void;
410
+ ngOnDestroy(): void;
411
+ _getHostElement<T = HTMLElement>(): T;
412
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
413
+ _onInternalInit(): void;
414
+ onInit(): void;
415
+ onViewInit(): void;
416
+ onDestroy(): void;
417
+ onOptionChanging(option: {
418
+ name: string;
419
+ value?: any;
420
+ }): any;
421
+ onOptionChanged(option: {
422
+ name: string;
423
+ oldValue?: any;
424
+ newValue?: any;
425
+ }): void;
426
+ };
427
+ } & typeof AXBaseComponent;
428
+ export declare const AXBaseValueComponentMixin: any;
429
+ export declare const AXBaseTextBoxMixin: {
430
+ new (...args: any[]): {
431
+ size: import("./base-components.class").AXElementSize;
432
+ _onInternalInit(): void;
433
+ id: string;
434
+ rtl: boolean;
435
+ cssClass: string;
436
+ cssStyle: string;
437
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
438
+ _cdr: import("@angular/core").ChangeDetectorRef;
439
+ _isInited: boolean;
440
+ _isRendered: boolean;
441
+ ngOnInit(): void;
442
+ ngAfterViewInit(): void;
443
+ ngOnDestroy(): void;
444
+ _getHostElement<T = HTMLElement>(): T;
445
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
446
+ _onInternalViewInit(): void;
447
+ _onInternalDestroy(): void;
448
+ onInit(): void;
449
+ onViewInit(): void;
450
+ onDestroy(): void;
451
+ onOptionChanging(option: {
452
+ name: string;
453
+ value?: any;
454
+ }): any;
455
+ onOptionChanged(option: {
456
+ name: string;
457
+ oldValue?: any;
458
+ newValue?: any;
459
+ }): void;
460
+ };
461
+ } & (abstract new (...args: any[]) => {
462
+ "__#5@#disabled": boolean;
463
+ disabled: boolean;
464
+ "__#5@#tabIndex": number;
465
+ tabIndex: number;
466
+ onFocus: import("@angular/core").EventEmitter<import("@acorex/components").AXFocusEvent>;
467
+ _emitOnFocusEvent(e: FocusEvent): void;
468
+ onBlur: import("@angular/core").EventEmitter<import("@acorex/components").AXFocusEvent>;
469
+ _emitOnBlurEvent(e: FocusEvent): void;
470
+ focus(): void;
471
+ id: string;
472
+ rtl: boolean;
473
+ cssClass: string;
474
+ cssStyle: string;
475
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
476
+ _cdr: import("@angular/core").ChangeDetectorRef;
477
+ _isInited: boolean;
478
+ _isRendered: boolean;
479
+ ngOnInit(): void;
480
+ ngAfterViewInit(): void;
481
+ ngOnDestroy(): void;
482
+ _getHostElement<T = HTMLElement>(): T;
483
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
484
+ _onInternalInit(): void;
485
+ _onInternalViewInit(): void;
486
+ _onInternalDestroy(): void;
487
+ onInit(): void;
488
+ onViewInit(): void;
489
+ onDestroy(): void;
490
+ onOptionChanging(option: {
491
+ name: string;
492
+ value?: any;
493
+ }): any;
494
+ onOptionChanged(option: {
495
+ name: string;
496
+ oldValue?: any;
497
+ newValue?: any;
498
+ }): void;
499
+ }) & {
500
+ new (...args: any[]): {
501
+ onValueChanged: import("@angular/core").EventEmitter<import("@acorex/components").AXValueChangedEvent<any>>;
502
+ valueChange: import("@angular/core").EventEmitter<any>;
503
+ "__#6@#readonly": boolean;
504
+ readonly: boolean;
505
+ "__#6@#allowNull": boolean;
506
+ allowNull: boolean;
507
+ "__#6@#name": string;
508
+ name: string;
509
+ "__#6@#debounceTime": number;
510
+ debounceTime: number;
511
+ "__#6@#valueSubscription": import("rxjs").Subscription;
512
+ "__#6@#valueSubject": import("rxjs").Subject<unknown>;
513
+ "__#6@#value": any;
514
+ value: any;
515
+ _emitOnValueChangedEvent(oldValue?: any, newValue?: any): void;
516
+ _onValueChanging(value: any): any;
517
+ _onValueChanged(oldValue: any, newValue: any): void;
518
+ _onInternalInit(): void;
519
+ _onInternalDestroy(): void;
520
+ _setValue(v: any): void;
521
+ clear(): void;
522
+ validate(): Promise<import("../../validation/validation.class").AXValidationRuleResult>;
523
+ _setErrorState(state: "error" | "success" | "clear", ...args: any[]): void;
524
+ id: string;
525
+ rtl: boolean;
526
+ cssClass: string;
527
+ cssStyle: string;
528
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
529
+ _cdr: import("@angular/core").ChangeDetectorRef;
530
+ _isInited: boolean;
531
+ _isRendered: boolean;
532
+ ngOnInit(): void;
533
+ ngAfterViewInit(): void;
534
+ ngOnDestroy(): void;
535
+ _getHostElement<T = HTMLElement>(): T;
536
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
537
+ _onInternalViewInit(): void;
538
+ onInit(): void;
539
+ onViewInit(): void;
540
+ onDestroy(): void;
541
+ onOptionChanging(option: {
542
+ name: string;
543
+ value?: any;
544
+ }): any;
545
+ onOptionChanged(option: {
546
+ name: string;
547
+ oldValue?: any;
548
+ newValue?: any;
549
+ }): void;
550
+ };
551
+ } & {
552
+ new (...args: any[]): {
553
+ placeholder: string;
554
+ maxLength: number;
555
+ autoComplete: boolean;
556
+ onKeyDown: import("@angular/core").EventEmitter<import("@acorex/components").AXHtmlEvent<KeyboardEvent>>;
557
+ _emitOnKeydownEvent(e: KeyboardEvent): void;
558
+ id: string;
559
+ rtl: boolean;
560
+ cssClass: string;
561
+ cssStyle: string;
562
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
563
+ _cdr: import("@angular/core").ChangeDetectorRef;
564
+ _isInited: boolean;
565
+ _isRendered: boolean;
566
+ ngOnInit(): void;
567
+ ngAfterViewInit(): void;
568
+ ngOnDestroy(): void;
569
+ _getHostElement<T = HTMLElement>(): T;
570
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
571
+ _onInternalInit(): void;
572
+ _onInternalViewInit(): void;
573
+ _onInternalDestroy(): void;
574
+ onInit(): void;
575
+ onViewInit(): void;
576
+ onDestroy(): void;
577
+ onOptionChanging(option: {
578
+ name: string;
579
+ value?: any;
580
+ }): any;
581
+ onOptionChanged(option: {
582
+ name: string;
583
+ oldValue?: any;
584
+ newValue?: any;
585
+ }): void;
586
+ };
587
+ } & typeof AXBaseComponent;
588
+ export declare const AXBaseDropdownMixin: {
589
+ new (...args: any[]): {
590
+ size: import("./base-components.class").AXElementSize;
591
+ _onInternalInit(): void;
592
+ id: string;
593
+ rtl: boolean;
594
+ cssClass: string;
595
+ cssStyle: string;
596
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
597
+ _cdr: import("@angular/core").ChangeDetectorRef;
598
+ _isInited: boolean;
599
+ _isRendered: boolean;
600
+ ngOnInit(): void;
601
+ ngAfterViewInit(): void;
602
+ ngOnDestroy(): void;
603
+ _getHostElement<T = HTMLElement>(): T;
604
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
605
+ _onInternalViewInit(): void;
606
+ _onInternalDestroy(): void;
607
+ onInit(): void;
608
+ onViewInit(): void;
609
+ onDestroy(): void;
610
+ onOptionChanging(option: {
611
+ name: string;
612
+ value?: any;
613
+ }): any;
614
+ onOptionChanged(option: {
615
+ name: string;
616
+ oldValue?: any;
617
+ newValue?: any;
618
+ }): void;
619
+ };
620
+ } & (abstract new (...args: any[]) => {
621
+ "__#5@#disabled": boolean;
622
+ disabled: boolean;
623
+ "__#5@#tabIndex": number;
624
+ tabIndex: number;
625
+ onFocus: import("@angular/core").EventEmitter<import("@acorex/components").AXFocusEvent>;
626
+ _emitOnFocusEvent(e: FocusEvent): void;
627
+ onBlur: import("@angular/core").EventEmitter<import("@acorex/components").AXFocusEvent>;
628
+ _emitOnBlurEvent(e: FocusEvent): void;
629
+ focus(): void;
630
+ id: string;
631
+ rtl: boolean;
632
+ cssClass: string;
633
+ cssStyle: string;
634
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
635
+ _cdr: import("@angular/core").ChangeDetectorRef;
636
+ _isInited: boolean;
637
+ _isRendered: boolean;
638
+ ngOnInit(): void;
639
+ ngAfterViewInit(): void;
640
+ ngOnDestroy(): void;
641
+ _getHostElement<T = HTMLElement>(): T;
642
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
643
+ _onInternalInit(): void;
644
+ _onInternalViewInit(): void;
645
+ _onInternalDestroy(): void;
646
+ onInit(): void;
647
+ onViewInit(): void;
648
+ onDestroy(): void;
649
+ onOptionChanging(option: {
650
+ name: string;
651
+ value?: any;
652
+ }): any;
653
+ onOptionChanged(option: {
654
+ name: string;
655
+ oldValue?: any;
656
+ newValue?: any;
657
+ }): void;
658
+ }) & (abstract new (...args: any[]) => {
659
+ "__#4@#readonly": boolean;
660
+ readonly: any;
661
+ fitParent: boolean;
662
+ onOpened: import("@angular/core").EventEmitter<import("@acorex/components").AXEvent>;
663
+ onClosed: import("@angular/core").EventEmitter<import("@acorex/components").AXEvent>;
664
+ _emitOnOpenedEvent(): void;
665
+ _emitOnClosedEvent(): void;
666
+ id: string;
667
+ rtl: boolean;
668
+ cssClass: string;
669
+ cssStyle: string;
670
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
671
+ _cdr: import("@angular/core").ChangeDetectorRef;
672
+ _isInited: boolean;
673
+ _isRendered: boolean;
674
+ ngOnInit(): void;
675
+ ngAfterViewInit(): void;
676
+ ngOnDestroy(): void;
677
+ _getHostElement<T = HTMLElement>(): T;
678
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
679
+ _onInternalInit(): void;
680
+ _onInternalViewInit(): void;
681
+ _onInternalDestroy(): void;
682
+ onInit(): void;
683
+ onViewInit(): void;
684
+ onDestroy(): void;
685
+ onOptionChanging(option: {
686
+ name: string;
687
+ value?: any;
688
+ }): any;
689
+ onOptionChanged(option: {
690
+ name: string;
691
+ oldValue?: any;
692
+ newValue?: any;
693
+ }): void;
694
+ }) & typeof AXBaseComponent;
695
+ export declare const AXBaseSelectionValueMixin: any;
696
+ export declare const AXBaseValueDropdownMixin: any;
697
+ export declare const AXBaseSelectionDropdownMixin: any;
698
+ export declare const AXCalendarMixin: {
699
+ new (...args: any[]): {
700
+ onClick: import("@angular/core").EventEmitter<import("@acorex/components").AXClickEvent>;
701
+ _emitOnClickEvent(e: MouseEvent): void;
702
+ id: string;
703
+ rtl: boolean;
704
+ cssClass: string;
705
+ cssStyle: string;
706
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
707
+ _cdr: import("@angular/core").ChangeDetectorRef;
708
+ _isInited: boolean;
709
+ _isRendered: boolean;
710
+ ngOnInit(): void;
711
+ ngAfterViewInit(): void;
712
+ ngOnDestroy(): void;
713
+ _getHostElement<T = HTMLElement>(): T;
714
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
715
+ _onInternalInit(): void;
716
+ _onInternalViewInit(): void;
717
+ _onInternalDestroy(): void;
718
+ onInit(): void;
719
+ onViewInit(): void;
720
+ onDestroy(): void;
721
+ onOptionChanging(option: {
722
+ name: string;
723
+ value?: any;
724
+ }): any;
725
+ onOptionChanged(option: {
726
+ name: string;
727
+ oldValue?: any;
728
+ newValue?: any;
729
+ }): void;
730
+ };
731
+ } & {
732
+ new (...args: any[]): {
733
+ text: string;
734
+ submitBehavior: boolean;
735
+ cancelBehavior: boolean;
736
+ colorChange: import("@angular/core").EventEmitter<import("@acorex/components").AXStyleColorType>;
737
+ "__#2@#color": import("@acorex/components").AXStyleColorType;
738
+ color: import("@acorex/components").AXStyleColorType;
739
+ lookChange: import("@angular/core").EventEmitter<import("@acorex/components").AXStyleButtonLook>;
740
+ "__#2@#look"?: import("@acorex/components").AXStyleButtonLook;
741
+ look: import("@acorex/components").AXStyleButtonLook;
742
+ toggleableChange: import("@angular/core").EventEmitter<boolean>;
743
+ "__#2@#toggleable"?: boolean;
744
+ toggleable: boolean;
745
+ selectedChange: import("@angular/core").EventEmitter<boolean>;
746
+ "__#2@#selected"?: boolean;
747
+ selected: boolean;
748
+ _onInternalViewInit(): void;
749
+ _onInternalDestroy(): void;
750
+ readonly _classes: {
751
+ 'ax-button-icon': boolean;
752
+ 'ax-state-disabled': any;
753
+ 'ax-state-selected': boolean;
754
+ };
755
+ id: string;
756
+ rtl: boolean;
757
+ cssClass: string;
758
+ cssStyle: string;
759
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
760
+ _cdr: import("@angular/core").ChangeDetectorRef;
761
+ _isInited: boolean;
762
+ _isRendered: boolean;
763
+ ngOnInit(): void;
764
+ ngAfterViewInit(): void;
765
+ ngOnDestroy(): void;
766
+ _getHostElement<T = HTMLElement>(): T;
767
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
768
+ _onInternalInit(): void;
769
+ onInit(): void;
770
+ onViewInit(): void;
771
+ onDestroy(): void;
772
+ onOptionChanging(option: {
773
+ name: string;
774
+ value?: any;
775
+ }): any;
776
+ onOptionChanged(option: {
777
+ name: string;
778
+ oldValue?: any;
779
+ newValue?: any;
780
+ }): void;
781
+ };
782
+ } & {
783
+ new (...args: any[]): {
784
+ size: import("./base-components.class").AXElementSize;
785
+ _onInternalInit(): void;
786
+ id: string;
787
+ rtl: boolean;
788
+ cssClass: string;
789
+ cssStyle: string;
790
+ "__#1@#elementRef": import("@angular/core").ElementRef<any>;
791
+ _cdr: import("@angular/core").ChangeDetectorRef;
792
+ _isInited: boolean;
793
+ _isRendered: boolean;
794
+ ngOnInit(): void;
795
+ ngAfterViewInit(): void;
796
+ ngOnDestroy(): void;
797
+ _getHostElement<T = HTMLElement>(): T;
798
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
799
+ _onInternalViewInit(): void;
800
+ _onInternalDestroy(): void;
801
+ onInit(): void;
802
+ onViewInit(): void;
803
+ onDestroy(): void;
804
+ onOptionChanging(option: {
805
+ name: string;
806
+ value?: any;
807
+ }): any;
808
+ onOptionChanged(option: {
809
+ name: string;
810
+ oldValue?: any;
811
+ newValue?: any;
812
+ }): void;
813
+ };
814
+ } & typeof AXBaseComponent;