@acorex/components 7.2.7 → 7.2.8

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 (275) hide show
  1. package/alert/lib/alert.component.d.ts +2 -1
  2. package/button/lib/button-group.component.d.ts +6 -6
  3. package/button/lib/button-item.component.d.ts +6 -6
  4. package/calendar/lib/calendar.component.d.ts +1 -0
  5. package/checkbox/lib/checkbox.component.d.ts +4 -3
  6. package/chips/lib/chips.component.d.ts +2 -2
  7. package/color-palette/lib/color-palette-input.component.d.ts +9 -6
  8. package/color-palette/lib/color-palette-picker.component.d.ts +10 -5
  9. package/color-palette/lib/color-palette-preview.component.d.ts +8 -4
  10. package/color-palette/lib/color-palette-swatches.component.d.ts +9 -6
  11. package/color-palette/lib/color-palette.class.d.ts +12 -6
  12. package/color-palette/lib/color-palette.component.d.ts +3 -15
  13. package/color-palette/lib/color-palette.module.d.ts +9 -8
  14. package/color-picker/lib/color-picker.component.d.ts +16 -16
  15. package/common/index.d.ts +1 -0
  16. package/common/lib/classes/components.class.d.ts +2 -1
  17. package/common/lib/components/base-component.class.d.ts +4 -2
  18. package/common/lib/components/input-base-value-component.class.d.ts +26 -0
  19. package/common/lib/components/interactive-component.class.d.ts +7 -0
  20. package/common/lib/components/value-component.class.d.ts +15 -8
  21. package/drawer/lib/drawer.component.d.ts +1 -1
  22. package/esm2022/acorex-components.mjs +1 -1
  23. package/esm2022/action-sheet/lib/action-sheet.component.mjs +3 -3
  24. package/esm2022/action-sheet/lib/action-sheet.module.mjs +4 -4
  25. package/esm2022/action-sheet/lib/action-sheet.service.mjs +3 -3
  26. package/esm2022/alert/lib/alert.component.mjs +12 -11
  27. package/esm2022/alert/lib/alert.module.mjs +4 -4
  28. package/esm2022/avatar/lib/avatar-group.component.mjs +3 -3
  29. package/esm2022/avatar/lib/avatar.component.mjs +3 -3
  30. package/esm2022/avatar/lib/avatar.module.mjs +4 -4
  31. package/esm2022/badge/lib/badge.component.mjs +5 -5
  32. package/esm2022/badge/lib/badge.module.mjs +4 -4
  33. package/esm2022/breadcrumbs/lib/breadcrumbs-item.component.mjs +3 -3
  34. package/esm2022/breadcrumbs/lib/breadcrumbs.component.mjs +3 -3
  35. package/esm2022/breadcrumbs/lib/breadcrumbs.module.mjs +4 -4
  36. package/esm2022/button/lib/button-group.component.mjs +3 -3
  37. package/esm2022/button/lib/button-item.component.mjs +3 -3
  38. package/esm2022/button/lib/button.component.mjs +3 -3
  39. package/esm2022/button/lib/button.module.mjs +4 -4
  40. package/esm2022/calendar/lib/calendar-range.component.mjs +3 -3
  41. package/esm2022/calendar/lib/calendar.class.mjs +3 -3
  42. package/esm2022/calendar/lib/calendar.component.mjs +15 -14
  43. package/esm2022/calendar/lib/calendar.module.mjs +4 -4
  44. package/esm2022/checkbox/lib/checkbox.component.mjs +28 -12
  45. package/esm2022/checkbox/lib/checkbox.module.mjs +4 -4
  46. package/esm2022/chips/lib/chips.component.mjs +7 -6
  47. package/esm2022/chips/lib/chips.module.mjs +4 -4
  48. package/esm2022/collapse/lib/collapse-group.component.mjs +3 -3
  49. package/esm2022/collapse/lib/collapse.component.mjs +3 -3
  50. package/esm2022/collapse/lib/collapse.module.mjs +4 -4
  51. package/esm2022/color-palette/lib/color-palette-input.component.mjs +56 -71
  52. package/esm2022/color-palette/lib/color-palette-picker.component.mjs +63 -58
  53. package/esm2022/color-palette/lib/color-palette-preview.component.mjs +30 -25
  54. package/esm2022/color-palette/lib/color-palette-swatches.component.mjs +32 -246
  55. package/esm2022/color-palette/lib/color-palette.class.mjs +229 -8
  56. package/esm2022/color-palette/lib/color-palette.component.mjs +32 -47
  57. package/esm2022/color-palette/lib/color-palette.module.mjs +9 -6
  58. package/esm2022/color-picker/lib/color-picker.component.mjs +3 -3
  59. package/esm2022/color-picker/lib/color-picker.module.mjs +4 -4
  60. package/esm2022/common/index.mjs +2 -1
  61. package/esm2022/common/lib/classes/components.class.mjs +19 -19
  62. package/esm2022/common/lib/common.module.mjs +4 -4
  63. package/esm2022/common/lib/components/base-component.class.mjs +9 -6
  64. package/esm2022/common/lib/components/input-base-value-component.class.mjs +47 -0
  65. package/esm2022/common/lib/components/interactive-component.class.mjs +31 -4
  66. package/esm2022/common/lib/components/value-component.class.mjs +47 -31
  67. package/esm2022/common/lib/directives/auto-focus.directive.mjs +3 -3
  68. package/esm2022/common/lib/directives/debounce-time.directive.mjs +3 -3
  69. package/esm2022/common/lib/directives/hotkey.directive.mjs +3 -3
  70. package/esm2022/common/lib/directives/infinite-scroll.directive.mjs +3 -3
  71. package/esm2022/common/lib/directives/responsive.directive.mjs +3 -3
  72. package/esm2022/common/lib/services/custom-cdk-overlay.service.mjs +6 -6
  73. package/esm2022/common/lib/services/hotkey.service.mjs +3 -3
  74. package/esm2022/common/lib/services/overlay.service.mjs +3 -3
  75. package/esm2022/context-menu/lib/context-menu.component.mjs +3 -3
  76. package/esm2022/context-menu/lib/context-menu.module.mjs +4 -4
  77. package/esm2022/data-pager/lib/data-pager-base.component.mjs +6 -6
  78. package/esm2022/data-pager/lib/data-pager-info.component.mjs +3 -3
  79. package/esm2022/data-pager/lib/data-pager-input-selector.component.mjs +3 -3
  80. package/esm2022/data-pager/lib/data-pager-next-buttons.components.mjs +3 -3
  81. package/esm2022/data-pager/lib/data-pager-numeric-selector.component.mjs +3 -3
  82. package/esm2022/data-pager/lib/data-pager-pagesize-dropdown.component.mjs +3 -3
  83. package/esm2022/data-pager/lib/data-pager-prev-buttons.component.mjs +3 -3
  84. package/esm2022/data-pager/lib/data-pager.component.mjs +3 -3
  85. package/esm2022/data-pager/lib/data-pager.module.mjs +4 -4
  86. package/esm2022/data-table/lib/data-column-cell-template.directive.mjs +3 -3
  87. package/esm2022/data-table/lib/data-column.directive.mjs +3 -3
  88. package/esm2022/data-table/lib/data-table.component.mjs +3 -3
  89. package/esm2022/data-table/lib/data-table.module.mjs +4 -4
  90. package/esm2022/date-picker/lib/datepicker.component.mjs +3 -3
  91. package/esm2022/date-picker/lib/datepicker.module.mjs +4 -4
  92. package/esm2022/decorators/lib/close-button.component.mjs +3 -3
  93. package/esm2022/decorators/lib/content.component.mjs +3 -3
  94. package/esm2022/decorators/lib/decorators.module.mjs +4 -4
  95. package/esm2022/decorators/lib/divider.component.mjs +3 -3
  96. package/esm2022/decorators/lib/footer.component.mjs +3 -3
  97. package/esm2022/decorators/lib/form-hint.component.mjs +3 -3
  98. package/esm2022/decorators/lib/header.component.mjs +3 -3
  99. package/esm2022/decorators/lib/icon.component.mjs +3 -3
  100. package/esm2022/decorators/lib/overlay.component.mjs +3 -3
  101. package/esm2022/decorators/lib/placeholder.component.mjs +3 -3
  102. package/esm2022/decorators/lib/prefix.component.mjs +3 -3
  103. package/esm2022/decorators/lib/sub-title.component.mjs +3 -3
  104. package/esm2022/decorators/lib/suffix.component.mjs +3 -3
  105. package/esm2022/decorators/lib/text.component.mjs +3 -3
  106. package/esm2022/decorators/lib/title.component.mjs +3 -3
  107. package/esm2022/dialog/lib/dialog.component.mjs +3 -3
  108. package/esm2022/dialog/lib/dialog.module.mjs +4 -4
  109. package/esm2022/dialog/lib/dialog.service.mjs +3 -3
  110. package/esm2022/drawer/lib/drawer-container.component.mjs +3 -3
  111. package/esm2022/drawer/lib/drawer.component.mjs +6 -5
  112. package/esm2022/drawer/lib/drawer.module.mjs +4 -4
  113. package/esm2022/dropdown/lib/dropdown-panel.component.mjs +3 -3
  114. package/esm2022/dropdown/lib/dropdown.module.mjs +4 -4
  115. package/esm2022/form/lib/form-field.component.mjs +3 -3
  116. package/esm2022/form/lib/form.component.mjs +3 -3
  117. package/esm2022/form/lib/form.module.mjs +4 -4
  118. package/esm2022/form/lib/validation-rule.widget.mjs +3 -3
  119. package/esm2022/form/lib/validation-summary.component.mjs +3 -3
  120. package/esm2022/image/lib/image.component.mjs +3 -3
  121. package/esm2022/image/lib/image.module.mjs +4 -4
  122. package/esm2022/index.mjs +1 -1
  123. package/esm2022/label/lib/label.component.mjs +3 -3
  124. package/esm2022/label/lib/label.module.mjs +4 -4
  125. package/esm2022/loading/lib/loading-spinner.component.mjs +3 -3
  126. package/esm2022/loading/lib/loading.component.mjs +3 -3
  127. package/esm2022/loading/lib/loading.directive.mjs +3 -3
  128. package/esm2022/loading/lib/loading.module.mjs +4 -4
  129. package/esm2022/loading/lib/loading.service.mjs +3 -3
  130. package/esm2022/menu/lib/menu.component.mjs +3 -3
  131. package/esm2022/menu/lib/menu.module.mjs +4 -4
  132. package/esm2022/mixin/lib/base-components.class.mjs +3 -3
  133. package/esm2022/mixin/lib/base-menu-mixin.class.mjs +3 -3
  134. package/esm2022/notification/lib/notification.component.mjs +3 -3
  135. package/esm2022/notification/lib/notification.module.mjs +4 -4
  136. package/esm2022/notification/lib/notification.service.mjs +3 -3
  137. package/esm2022/number-box/lib/number-box.component.mjs +3 -3
  138. package/esm2022/number-box/lib/number-box.module.mjs +4 -4
  139. package/esm2022/otp/lib/otp.component.mjs +3 -3
  140. package/esm2022/otp/lib/otp.module.mjs +4 -4
  141. package/esm2022/page/lib/base-page.class.mjs +3 -3
  142. package/esm2022/page/lib/page.component.mjs +3 -3
  143. package/esm2022/page/lib/page.module.mjs +4 -4
  144. package/esm2022/password-box/lib/password-box.component.mjs +3 -3
  145. package/esm2022/password-box/lib/password-box.module.mjs +4 -4
  146. package/esm2022/popover/lib/dropdown-component.class.mjs +3 -3
  147. package/esm2022/popover/lib/popover.component.mjs +3 -3
  148. package/esm2022/popover/lib/popover.module.mjs +4 -4
  149. package/esm2022/popup/lib/popup.component.mjs +3 -3
  150. package/esm2022/popup/lib/popup.module.mjs +4 -4
  151. package/esm2022/popup/lib/popup.service.mjs +3 -3
  152. package/esm2022/progress-bar/lib/progress-bar.component.mjs +3 -3
  153. package/esm2022/progress-bar/lib/progress-bar.module.mjs +4 -4
  154. package/esm2022/radio/lib/radio.component.mjs +3 -3
  155. package/esm2022/radio/lib/radio.module.mjs +4 -4
  156. package/esm2022/range-slider/lib/range-slider.component.mjs +27 -22
  157. package/esm2022/range-slider/lib/range-slider.module.mjs +7 -6
  158. package/esm2022/result/lib/result.component.mjs +3 -3
  159. package/esm2022/result/lib/result.module.mjs +4 -4
  160. package/esm2022/search-box/lib/search-box.component.mjs +3 -3
  161. package/esm2022/search-box/lib/search-box.module.mjs +4 -4
  162. package/esm2022/select-box/lib/select-box.component.mjs +3 -3
  163. package/esm2022/select-box/lib/select-box.module.mjs +4 -4
  164. package/esm2022/selection-list/lib/selection-list.component.mjs +3 -3
  165. package/esm2022/selection-list/lib/selection-list.module.mjs +4 -4
  166. package/esm2022/switch/lib/switch-content.component.mjs +3 -3
  167. package/esm2022/switch/lib/switch.component.mjs +27 -24
  168. package/esm2022/switch/lib/switch.module.mjs +4 -4
  169. package/esm2022/tabs/lib/tab-content.directive.mjs +3 -3
  170. package/esm2022/tabs/lib/tab-item.component.mjs +3 -3
  171. package/esm2022/tabs/lib/tabs.component.mjs +3 -3
  172. package/esm2022/tabs/lib/tabs.module.mjs +4 -4
  173. package/esm2022/tag/lib/tag.component.mjs +3 -3
  174. package/esm2022/tag/lib/tag.module.mjs +4 -4
  175. package/esm2022/textarea/lib/textarea.component.mjs +3 -3
  176. package/esm2022/textarea/lib/textarea.module.mjs +4 -4
  177. package/esm2022/textbox/lib/mask-options.directive.mjs +3 -3
  178. package/esm2022/textbox/lib/textbox.component.mjs +39 -21
  179. package/esm2022/textbox/lib/textbox.module.mjs +4 -4
  180. package/esm2022/time-box/lib/time-box.component.mjs +3 -3
  181. package/esm2022/time-box/lib/time-box.module.mjs +4 -4
  182. package/esm2022/toast/lib/toast.component.mjs +3 -3
  183. package/esm2022/toast/lib/toast.module.mjs +4 -4
  184. package/esm2022/toast/lib/toast.service.mjs +3 -3
  185. package/esm2022/tooltip/lib/tooltip.component.mjs +3 -3
  186. package/esm2022/tooltip/lib/tooltip.directive.mjs +3 -3
  187. package/esm2022/tooltip/lib/tooltip.module.mjs +4 -4
  188. package/esm2022/uploader/lib/uploader.component.mjs +3 -3
  189. package/esm2022/uploader/lib/uploader.module.mjs +4 -4
  190. package/fesm2022/acorex-components-action-sheet.mjs +10 -10
  191. package/fesm2022/acorex-components-alert.mjs +15 -14
  192. package/fesm2022/acorex-components-alert.mjs.map +1 -1
  193. package/fesm2022/acorex-components-avatar.mjs +10 -10
  194. package/fesm2022/acorex-components-badge.mjs +8 -8
  195. package/fesm2022/acorex-components-badge.mjs.map +1 -1
  196. package/fesm2022/acorex-components-breadcrumbs.mjs +10 -10
  197. package/fesm2022/acorex-components-button.mjs +13 -13
  198. package/fesm2022/acorex-components-calendar.mjs +24 -23
  199. package/fesm2022/acorex-components-calendar.mjs.map +1 -1
  200. package/fesm2022/acorex-components-checkbox.mjs +32 -17
  201. package/fesm2022/acorex-components-checkbox.mjs.map +1 -1
  202. package/fesm2022/acorex-components-chips.mjs +10 -9
  203. package/fesm2022/acorex-components-chips.mjs.map +1 -1
  204. package/fesm2022/acorex-components-collapse.mjs +10 -10
  205. package/fesm2022/acorex-components-color-palette.mjs +423 -434
  206. package/fesm2022/acorex-components-color-palette.mjs.map +1 -1
  207. package/fesm2022/acorex-components-color-picker.mjs +7 -7
  208. package/fesm2022/acorex-components-color-picker.mjs.map +1 -1
  209. package/fesm2022/acorex-components-common.mjs +176 -88
  210. package/fesm2022/acorex-components-common.mjs.map +1 -1
  211. package/fesm2022/acorex-components-context-menu.mjs +7 -7
  212. package/fesm2022/acorex-components-data-pager.mjs +31 -31
  213. package/fesm2022/acorex-components-data-table.mjs +13 -13
  214. package/fesm2022/acorex-components-date-picker.mjs +7 -7
  215. package/fesm2022/acorex-components-decorators.mjs +46 -46
  216. package/fesm2022/acorex-components-dialog.mjs +10 -10
  217. package/fesm2022/acorex-components-drawer.mjs +11 -10
  218. package/fesm2022/acorex-components-drawer.mjs.map +1 -1
  219. package/fesm2022/acorex-components-dropdown.mjs +7 -7
  220. package/fesm2022/acorex-components-form.mjs +16 -16
  221. package/fesm2022/acorex-components-image.mjs +7 -7
  222. package/fesm2022/acorex-components-label.mjs +7 -7
  223. package/fesm2022/acorex-components-loading.mjs +16 -16
  224. package/fesm2022/acorex-components-menu.mjs +7 -7
  225. package/fesm2022/acorex-components-mixin.mjs +4 -5
  226. package/fesm2022/acorex-components-mixin.mjs.map +1 -1
  227. package/fesm2022/acorex-components-notification.mjs +10 -10
  228. package/fesm2022/acorex-components-number-box.mjs +7 -7
  229. package/fesm2022/acorex-components-otp.mjs +7 -7
  230. package/fesm2022/acorex-components-page.mjs +10 -10
  231. package/fesm2022/acorex-components-password-box.mjs +7 -7
  232. package/fesm2022/acorex-components-popover.mjs +10 -10
  233. package/fesm2022/acorex-components-popup.mjs +10 -10
  234. package/fesm2022/acorex-components-progress-bar.mjs +7 -7
  235. package/fesm2022/acorex-components-radio.mjs +7 -7
  236. package/fesm2022/acorex-components-range-slider.mjs +31 -27
  237. package/fesm2022/acorex-components-range-slider.mjs.map +1 -1
  238. package/fesm2022/acorex-components-result.mjs +7 -7
  239. package/fesm2022/acorex-components-search-box.mjs +7 -7
  240. package/fesm2022/acorex-components-search-box.mjs.map +1 -1
  241. package/fesm2022/acorex-components-select-box.mjs +7 -7
  242. package/fesm2022/acorex-components-selection-list.mjs +7 -7
  243. package/fesm2022/acorex-components-switch.mjs +33 -31
  244. package/fesm2022/acorex-components-switch.mjs.map +1 -1
  245. package/fesm2022/acorex-components-tabs.mjs +13 -13
  246. package/fesm2022/acorex-components-tag.mjs +7 -7
  247. package/fesm2022/acorex-components-textarea.mjs +7 -7
  248. package/fesm2022/acorex-components-textbox.mjs +45 -28
  249. package/fesm2022/acorex-components-textbox.mjs.map +1 -1
  250. package/fesm2022/acorex-components-time-box.mjs +7 -7
  251. package/fesm2022/acorex-components-toast.mjs +10 -10
  252. package/fesm2022/acorex-components-tooltip.mjs +10 -10
  253. package/fesm2022/acorex-components-uploader.mjs +7 -7
  254. package/fesm2022/acorex-components.mjs.map +1 -1
  255. package/mixin/lib/base-components.class.d.ts +2 -2
  256. package/mixin/lib/base-menu-mixin.class.d.ts +5 -5
  257. package/mixin/lib/button-mixin.class.d.ts +2 -2
  258. package/mixin/lib/clickable-mixin.class.d.ts +2 -2
  259. package/mixin/lib/color-look-mixing.class.d.ts +2 -2
  260. package/mixin/lib/datalist-component.class.d.ts +10 -10
  261. package/mixin/lib/dropdown-mixin.class.d.ts +2 -2
  262. package/mixin/lib/interactive-mixin.class.d.ts +4 -4
  263. package/mixin/lib/loading-mixin.class.d.ts +2 -2
  264. package/mixin/lib/mixin.class.d.ts +61 -61
  265. package/mixin/lib/page-component.class.d.ts +2 -2
  266. package/mixin/lib/selection-component.class.d.ts +2 -2
  267. package/mixin/lib/sizable-mixin.class.d.ts +2 -2
  268. package/mixin/lib/textbox-mixin.class.d.ts +2 -2
  269. package/mixin/lib/value-mixin.class.d.ts +8 -8
  270. package/package.json +19 -19
  271. package/range-slider/lib/range-slider.component.d.ts +6 -14
  272. package/range-slider/lib/range-slider.module.d.ts +3 -2
  273. package/switch/lib/switch.component.d.ts +10 -8
  274. package/tabs/lib/tab-item.component.d.ts +2 -2
  275. package/textbox/lib/textbox.component.d.ts +8 -8
@@ -34,6 +34,7 @@ export declare class AXAlertComponent extends AXAlertComponent_base {
34
34
  set visible(v: boolean);
35
35
  protected ngOnInit(): void;
36
36
  protected ngAfterViewInit(): void;
37
+ private _setLayout;
37
38
  protected _handleOnOptionChanged(e: AXOptionChangedEvent): void;
38
39
  private _setIcon;
39
40
  private _applyButtonStyle;
@@ -51,6 +52,6 @@ export declare class AXAlertComponent extends AXAlertComponent_base {
51
52
  show(): void;
52
53
  ngOnDestroy(): void;
53
54
  static ɵfac: i0.ɵɵFactoryDeclaration<AXAlertComponent, never>;
54
- static ɵcmp: i0.ɵɵComponentDeclaration<AXAlertComponent, "ax-alert", never, { "color": { "alias": "color"; "required": false; }; "timeOut": { "alias": "timeOut"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, { "colorChange": "colorChange"; "onClosed": "onClosed"; }, ["_iconComp", "_titleComp", "_contentComp", "_footerComp", "_buttonComps"], ["ax-icon", "ax-title", "ax-content", "ax-footer", "ax-button", "ax-close-button"], false, never>;
55
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXAlertComponent, "ax-alert", never, { "color": { "alias": "color"; "required": false; }; "timeOut": { "alias": "timeOut"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, { "colorChange": "colorChange"; "onClosed": "onClosed"; }, ["_iconComp", "_titleComp", "_contentComp", "_footerComp", "_buttonComps"], ["ax-button", "ax-close-button", "ax-title", "ax-icon", "ax-content", "ax-footer"], false, never>;
55
56
  }
56
57
  export {};
@@ -4,9 +4,9 @@ import { AXClickEvent, AXItemClickEvent, AXSelectionMode, AXSelectionValueChange
4
4
  import { AXBaseComponent } from '@acorex/components/mixin';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare const AXBaseButtonGroupMixin: (abstract new (...args: any[]) => {
7
- "__#5095@#disabled": boolean;
7
+ "__#5174@#disabled": boolean;
8
8
  disabled: boolean;
9
- "__#5095@#tabIndex": number;
9
+ "__#5174@#tabIndex": number;
10
10
  tabIndex: number;
11
11
  onFocus: EventEmitter<import("@acorex/components/common").AXFocusEvent>;
12
12
  _emitOnFocusEvent(e: FocusEvent): void;
@@ -15,9 +15,9 @@ export declare const AXBaseButtonGroupMixin: (abstract new (...args: any[]) => {
15
15
  focus(): void;
16
16
  hasFocus(): boolean;
17
17
  id: string;
18
- "__#5092@#rtl": boolean;
18
+ "__#5171@#rtl": boolean;
19
19
  rtl: boolean;
20
- "__#5092@#elementRef": ElementRef<any>;
20
+ "__#5171@#elementRef": ElementRef<any>;
21
21
  _cdr: ChangeDetectorRef;
22
22
  _isInited: boolean;
23
23
  _isRendered: boolean;
@@ -44,9 +44,9 @@ export declare const AXBaseButtonGroupMixin: (abstract new (...args: any[]) => {
44
44
  _look?: import("@acorex/components/common").AXStyleLookType;
45
45
  look: import("@acorex/components/common").AXStyleLookType;
46
46
  id: string;
47
- "__#5092@#rtl": boolean;
47
+ "__#5171@#rtl": boolean;
48
48
  rtl: boolean;
49
- "__#5092@#elementRef": ElementRef<any>;
49
+ "__#5171@#elementRef": ElementRef<any>;
50
50
  _cdr: ChangeDetectorRef;
51
51
  _isInited: boolean;
52
52
  _isRendered: boolean;
@@ -3,9 +3,9 @@ import { AXStyleColorType } from '@acorex/components/common';
3
3
  import { AXBaseComponent } from '@acorex/components/mixin';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare const AXBaseItemButtonMixin: (abstract new (...args: any[]) => {
6
- "__#5095@#disabled": boolean;
6
+ "__#5174@#disabled": boolean;
7
7
  disabled: boolean;
8
- "__#5095@#tabIndex": number;
8
+ "__#5174@#tabIndex": number;
9
9
  tabIndex: number;
10
10
  onFocus: import("@angular/core").EventEmitter<import("@acorex/components/common").AXFocusEvent>;
11
11
  _emitOnFocusEvent(e: FocusEvent): void;
@@ -14,9 +14,9 @@ export declare const AXBaseItemButtonMixin: (abstract new (...args: any[]) => {
14
14
  focus(): void;
15
15
  hasFocus(): boolean;
16
16
  id: string;
17
- "__#5092@#rtl": boolean;
17
+ "__#5171@#rtl": boolean;
18
18
  rtl: boolean;
19
- "__#5092@#elementRef": ElementRef<any>;
19
+ "__#5171@#elementRef": ElementRef<any>;
20
20
  _cdr: ChangeDetectorRef;
21
21
  _isInited: boolean;
22
22
  _isRendered: boolean;
@@ -39,9 +39,9 @@ export declare const AXBaseItemButtonMixin: (abstract new (...args: any[]) => {
39
39
  onClick: import("@angular/core").EventEmitter<import("@acorex/components/common").AXClickEvent>;
40
40
  _emitOnClickEvent(e: MouseEvent): void;
41
41
  id: string;
42
- "__#5092@#rtl": boolean;
42
+ "__#5171@#rtl": boolean;
43
43
  rtl: boolean;
44
- "__#5092@#elementRef": ElementRef<any>;
44
+ "__#5171@#elementRef": ElementRef<any>;
45
45
  _cdr: ChangeDetectorRef;
46
46
  _isInited: boolean;
47
47
  _isRendered: boolean;
@@ -12,6 +12,7 @@ export declare class AXCalendarComponent extends AXCalendarComponent_base {
12
12
  private _setDisplayRange;
13
13
  protected _today: AXDateTime;
14
14
  private _viewStartDate;
15
+ private _navUserInteraction;
15
16
  private _footPrint;
16
17
  protected views: AXCalendarView[];
17
18
  protected _dayNames: string[];
@@ -8,9 +8,10 @@ declare const AXCheckBoxComponent_base: import("polytype").Polytype.ClusteredCon
8
8
  export declare class AXCheckBoxComponent extends AXCheckBoxComponent_base {
9
9
  indeterminate: boolean;
10
10
  protected _stateIndeterminate: boolean;
11
- protected ngOnInit(): void;
12
- setValue(value: any): boolean;
13
- protected handleOnClickEvent(e: MouseEvent): boolean;
11
+ protected internalGetValue(value: any): boolean | null;
12
+ internalSetValue(value: boolean | null): boolean;
13
+ protected _handleOnClickEvent(e: MouseEvent): boolean;
14
+ protected _handleModelChange(value: boolean | null): void;
14
15
  static ɵfac: i0.ɵɵFactoryDeclaration<AXCheckBoxComponent, never>;
15
16
  static ɵcmp: i0.ɵɵComponentDeclaration<AXCheckBoxComponent, "ax-check-box", never, { "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "allowNull": { "alias": "allowNull"; "required": false; }; "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; }, never, ["*", "ax-form-hint", "ax-validation-rule"], false, never>;
16
17
  }
@@ -1,6 +1,6 @@
1
- import { MXColorComponent, MXInteractiveComponent } from '@acorex/components/common';
1
+ import { MXBaseComponent, MXColorComponent } from '@acorex/components/common';
2
2
  import * as i0 from "@angular/core";
3
- declare const AXChipsComponent_base: import("polytype").Polytype.ClusteredConstructor<[typeof MXInteractiveComponent, typeof MXColorComponent]>;
3
+ declare const AXChipsComponent_base: import("polytype").Polytype.ClusteredConstructor<[typeof MXBaseComponent, typeof MXColorComponent]>;
4
4
  export declare class AXChipsComponent extends AXChipsComponent_base {
5
5
  look: 'default' | 'outline';
6
6
  text: string;
@@ -1,20 +1,23 @@
1
+ import { AXUnsubscriber } from '@acorex/core/utils';
1
2
  import { AXValueChangedEvent, MXBaseComponent } from '@acorex/components/common';
2
- import { AXColorComponent } from './color-palette.class';
3
+ import { AXColorPaletteParentComponent } from './color-palette.class';
3
4
  import { AXMaskOptions } from '@acorex/components/textbox';
4
5
  import * as i0 from "@angular/core";
5
6
  export declare class AXColorPaletteInputComponent extends MXBaseComponent {
6
- _parent: AXColorComponent;
7
- _isTouched: boolean;
7
+ _parent: AXColorPaletteParentComponent;
8
+ private _unsubscriber;
8
9
  isValid: boolean;
9
10
  _rgba: any;
10
11
  _hex: string;
11
12
  protected _colorMode: "hex" | "rgba";
12
13
  protected _hexMaskOptions: AXMaskOptions;
13
- constructor(_parent: AXColorComponent);
14
+ constructor(_parent: AXColorPaletteParentComponent, _unsubscriber: AXUnsubscriber);
15
+ private applyParent;
16
+ ngAfterViewInit(): void;
14
17
  _handleChangeInputMode(): void;
15
18
  _handleRGBAValueChanged(e: AXValueChangedEvent<number>): void;
16
- _handleHEXAValueChanged(e: AXValueChangedEvent<string>): void;
19
+ protected _handleHEXAValueChanged(e: AXValueChangedEvent<string>): void;
17
20
  private checkValid;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPaletteInputComponent, [{ optional: true; }]>;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPaletteInputComponent, never>;
19
22
  static ɵcmp: i0.ɵɵComponentDeclaration<AXColorPaletteInputComponent, "ax-color-palette-input", never, {}, {}, never, never, false, never>;
20
23
  }
@@ -1,8 +1,10 @@
1
+ import { AXUnsubscriber } from '@acorex/core/utils';
1
2
  import { AXValueChangedEvent, MXBaseComponent } from '@acorex/components/common';
2
- import { AXColorComponent } from './color-palette.class';
3
+ import { AXColorPaletteParentComponent } from './color-palette.class';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class AXColorPalettePickerComponent extends MXBaseComponent {
5
- _parent: AXColorComponent;
6
+ _parent: AXColorPaletteParentComponent;
7
+ private _unsubscriber;
6
8
  _rgba: {
7
9
  r: number;
8
10
  g: number;
@@ -11,19 +13,22 @@ export declare class AXColorPalettePickerComponent extends MXBaseComponent {
11
13
  };
12
14
  protected _gradient: number;
13
15
  protected _bgColor: string;
14
- private _gradientColors;
16
+ private readonly _gradientColors;
17
+ private readonly _gradients;
18
+ private readonly _colors;
15
19
  protected dragPosition: {
16
20
  x: number;
17
21
  y: number;
18
22
  };
19
- constructor(_parent: AXColorComponent);
23
+ constructor(_parent: AXColorPaletteParentComponent, _unsubscriber: AXUnsubscriber);
20
24
  private setHSV;
25
+ private _handleParentColorChanged;
21
26
  protected _handleAlphaChanged(e: AXValueChangedEvent<number>): void;
22
27
  protected _handleGradientChanged(e: AXValueChangedEvent<number>): void;
23
28
  protected _handleSurfaceClick(e: MouseEvent): void;
24
29
  protected _handleDrag(): void;
25
30
  private setColorByXY;
26
31
  private setPointerByPercent;
27
- static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPalettePickerComponent, [{ optional: true; }]>;
32
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPalettePickerComponent, never>;
28
33
  static ɵcmp: i0.ɵɵComponentDeclaration<AXColorPalettePickerComponent, "ax-color-palette-picker", never, {}, {}, never, never, false, never>;
29
34
  }
@@ -1,11 +1,15 @@
1
1
  import { MXBaseComponent } from '@acorex/components/common';
2
+ import { AXUnsubscriber } from '@acorex/core/utils';
2
3
  import { NgZone } from '@angular/core';
3
- import { AXColorComponent } from './color-palette.class';
4
+ import { AXColorPaletteParentComponent } from './color-palette.class';
4
5
  import * as i0 from "@angular/core";
5
6
  export declare class AXColorPalettePreviewComponent extends MXBaseComponent {
6
- _parent: AXColorComponent;
7
+ _parent: AXColorPaletteParentComponent;
7
8
  private _zone;
8
- constructor(_parent: AXColorComponent, _zone: NgZone);
9
- static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPalettePreviewComponent, [{ optional: true; }, null]>;
9
+ private _unsubscriber;
10
+ constructor(_parent: AXColorPaletteParentComponent, _zone: NgZone, _unsubscriber: AXUnsubscriber);
11
+ ngAfterViewInit(): void;
12
+ private applyParent;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPalettePreviewComponent, never>;
10
14
  static ɵcmp: i0.ɵɵComponentDeclaration<AXColorPalettePreviewComponent, "ax-color-palette-preview", never, {}, {}, never, never, false, never>;
11
15
  }
@@ -1,17 +1,20 @@
1
1
  import { MXBaseComponent } from '@acorex/components/common';
2
- import { AXColorComponent } from './color-palette.class';
2
+ import { AXUnsubscriber } from '@acorex/core/utils';
3
+ import { AXColorPaletteParentComponent } from './color-palette.class';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class AXColorPaletteSwatchesComponent extends MXBaseComponent {
5
- _parent: AXColorComponent;
6
+ _parent: AXColorPaletteParentComponent;
7
+ private _unsubscriber;
6
8
  protected _selected: string;
7
9
  colors: {
8
10
  code: string;
9
11
  }[];
10
- constructor(_parent: AXColorComponent);
12
+ constructor(_parent: AXColorPaletteParentComponent, _unsubscriber: AXUnsubscriber);
13
+ private applyParent;
11
14
  ngOnInit(): void;
12
- _handleClick(e: MouseEvent, color: any): void;
15
+ ngAfterViewInit(): void;
16
+ protected _handleClick(e: MouseEvent, color: any): void;
13
17
  private _format;
14
- private _defaultPalette;
15
- static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPaletteSwatchesComponent, [{ optional: true; }]>;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPaletteSwatchesComponent, never>;
16
19
  static ɵcmp: i0.ɵɵComponentDeclaration<AXColorPaletteSwatchesComponent, "ax-color-palette-swatches, ax-color-palette-favorite", never, { "colors": { "alias": "colors"; "required": false; }; }, {}, never, never, false, never>;
17
20
  }
@@ -1,4 +1,5 @@
1
- import { Subject } from "rxjs";
1
+ import { EventEmitter } from "@angular/core";
2
+ import { AXValueChangedEvent, AXOptionChangedEvent } from "@acorex/components/common";
2
3
  import * as i0 from "@angular/core";
3
4
  /**
4
5
  * A token that specifies the display mode of datapager component.
@@ -8,15 +9,20 @@ export interface AXColorChangedEvent {
8
9
  color: any;
9
10
  sender: any;
10
11
  }
11
- export declare abstract class AXColorComponent {
12
- abstract _onInternalColorChanged$: Subject<AXColorChangedEvent>;
13
- abstract setUserInteraction(): any;
12
+ export declare abstract class AXColorPaletteParentComponent {
14
13
  abstract readonly: boolean;
15
14
  abstract disabled: boolean;
16
- static ɵfac: i0.ɵɵFactoryDeclaration<AXColorComponent, never>;
17
- static ɵprov: i0.ɵɵInjectableDeclaration<AXColorComponent>;
15
+ abstract get value(): string;
16
+ abstract onValueChanged: EventEmitter<AXValueChangedEvent<string>>;
17
+ abstract onOptionChanged: EventEmitter<AXOptionChangedEvent>;
18
+ abstract commitValue(value: string, u?: boolean): any;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPaletteParentComponent, never>;
20
+ static ɵprov: i0.ɵɵInjectableDeclaration<AXColorPaletteParentComponent>;
18
21
  }
19
22
  export declare abstract class AXColorPaletteChildComponent {
20
23
  static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPaletteChildComponent, never>;
21
24
  static ɵprov: i0.ɵɵInjectableDeclaration<AXColorPaletteChildComponent>;
22
25
  }
26
+ export declare const AXDefaultColorPalette: {
27
+ code: string;
28
+ }[];
@@ -1,22 +1,10 @@
1
- import { MXValueComponent, MXInteractiveComponent } from '@acorex/components/common';
1
+ import { MXValueComponent } from '@acorex/components/common';
2
2
  import { QueryList } from '@angular/core';
3
- import { Subject } from 'rxjs';
4
3
  import { AXColorPaletteChildComponent } from './color-palette.class';
5
4
  import * as i0 from "@angular/core";
6
- declare const AXColorPalleteComponent_base: import("polytype").Polytype.ClusteredConstructor<[typeof MXInteractiveComponent, {
7
- new (): MXValueComponent<string>;
8
- ɵfac: unknown;
9
- ɵprov: import("@angular/core").ɵɵInjectableDeclaration<MXValueComponent<any>>;
10
- }]>;
11
- export declare class AXColorPalleteComponent extends AXColorPalleteComponent_base {
12
- _onInternalColorChanged$: Subject<any>;
5
+ export declare class AXColorPalleteComponent extends MXValueComponent<string> {
13
6
  _children: QueryList<AXColorPaletteChildComponent>;
14
- ngAfterContentInit(): void;
15
- ngAfterViewInit(): void;
16
- constructor();
17
- private _handleOnValueChanged;
18
7
  private get __hostDisabled();
19
8
  static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPalleteComponent, never>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<AXColorPalleteComponent, "ax-color-palette", never, { "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; }, ["_children"], ["ax-header", "ax-color-palette-preview", "ax-color-palette-picker", "ax-color-palette-swatches", "ax-color-palette-favorite", "ax-color-palette-input", "ax-footer"], false, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXColorPalleteComponent, "ax-color-palette", never, { "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; }, ["_children"], ["ax-header", "ax-color-palette-preview", "ax-color-palette-picker", "ax-color-palette-swatches", "ax-color-palette-favorite", "ax-color-palette-input", "ax-footer"], false, never>;
21
10
  }
22
- export {};
@@ -5,15 +5,16 @@ import * as i3 from "./color-palette-swatches.component";
5
5
  import * as i4 from "./color-palette-input.component";
6
6
  import * as i5 from "./color-palette-picker.component";
7
7
  import * as i6 from "@angular/common";
8
- import * as i7 from "@acorex/components/textbox";
9
- import * as i8 from "@acorex/components/label";
10
- import * as i9 from "@acorex/components/button";
11
- import * as i10 from "@acorex/components/decorators";
12
- import * as i11 from "@acorex/components/number-box";
13
- import * as i12 from "@acorex/components/range-slider";
14
- import * as i13 from "@angular/cdk/drag-drop";
8
+ import * as i7 from "@angular/forms";
9
+ import * as i8 from "@acorex/components/textbox";
10
+ import * as i9 from "@acorex/components/label";
11
+ import * as i10 from "@acorex/components/button";
12
+ import * as i11 from "@acorex/components/decorators";
13
+ import * as i12 from "@acorex/components/number-box";
14
+ import * as i13 from "@acorex/components/range-slider";
15
+ import * as i14 from "@angular/cdk/drag-drop";
15
16
  export declare class AXColorPaletteModule {
16
17
  static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPaletteModule, never>;
17
- static ɵmod: i0.ɵɵNgModuleDeclaration<AXColorPaletteModule, [typeof i1.AXColorPalleteComponent, typeof i2.AXColorPalettePreviewComponent, typeof i3.AXColorPaletteSwatchesComponent, typeof i4.AXColorPaletteInputComponent, typeof i5.AXColorPalettePickerComponent], [typeof i6.CommonModule, typeof i7.AXTextBoxModule, typeof i8.AXLabelModule, typeof i9.AXButtonModule, typeof i10.AXDecoratorModule, typeof i11.AXNumberBoxModule, typeof i12.AXRangeSliderModule, typeof i13.DragDropModule], [typeof i1.AXColorPalleteComponent, typeof i2.AXColorPalettePreviewComponent, typeof i3.AXColorPaletteSwatchesComponent, typeof i4.AXColorPaletteInputComponent, typeof i5.AXColorPalettePickerComponent]>;
18
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXColorPaletteModule, [typeof i1.AXColorPalleteComponent, typeof i2.AXColorPalettePreviewComponent, typeof i3.AXColorPaletteSwatchesComponent, typeof i4.AXColorPaletteInputComponent, typeof i5.AXColorPalettePickerComponent], [typeof i6.CommonModule, typeof i7.FormsModule, typeof i8.AXTextBoxModule, typeof i9.AXLabelModule, typeof i10.AXButtonModule, typeof i11.AXDecoratorModule, typeof i12.AXNumberBoxModule, typeof i13.AXRangeSliderModule, typeof i14.DragDropModule], [typeof i1.AXColorPalleteComponent, typeof i2.AXColorPalettePreviewComponent, typeof i3.AXColorPaletteSwatchesComponent, typeof i4.AXColorPaletteInputComponent, typeof i5.AXColorPalettePickerComponent]>;
18
19
  static ɵinj: i0.ɵɵInjectorDeclaration<AXColorPaletteModule>;
19
20
  }
@@ -6,9 +6,9 @@ import { AXPopoverComponent } from '@acorex/components/popover';
6
6
  import { AXBaseComponent } from '@acorex/components/mixin';
7
7
  import * as i0 from "@angular/core";
8
8
  export declare const AXBaseColorPickerMixin: (abstract new (...args: any[]) => {
9
- "__#5095@#disabled": boolean;
9
+ "__#5174@#disabled": boolean;
10
10
  disabled: boolean;
11
- "__#5095@#tabIndex": number;
11
+ "__#5174@#tabIndex": number;
12
12
  tabIndex: number;
13
13
  onFocus: import("@angular/core").EventEmitter<import("@acorex/components/common").AXFocusEvent>;
14
14
  _emitOnFocusEvent(e: FocusEvent): void;
@@ -17,9 +17,9 @@ export declare const AXBaseColorPickerMixin: (abstract new (...args: any[]) => {
17
17
  focus(): void;
18
18
  hasFocus(): boolean;
19
19
  id: string;
20
- "__#5092@#rtl": boolean;
20
+ "__#5171@#rtl": boolean;
21
21
  rtl: boolean;
22
- "__#5092@#elementRef": ElementRef<any>;
22
+ "__#5171@#elementRef": ElementRef<any>;
23
23
  _cdr: ChangeDetectorRef;
24
24
  _isInited: boolean;
25
25
  _isRendered: boolean;
@@ -58,9 +58,9 @@ export declare const AXBaseColorPickerMixin: (abstract new (...args: any[]) => {
58
58
  open(): void;
59
59
  readonly isOpen: boolean;
60
60
  id: string;
61
- "__#5092@#rtl": boolean;
61
+ "__#5171@#rtl": boolean;
62
62
  rtl: boolean;
63
- "__#5092@#elementRef": ElementRef<any>;
63
+ "__#5171@#elementRef": ElementRef<any>;
64
64
  _cdr: ChangeDetectorRef;
65
65
  _isInited: boolean;
66
66
  _isRendered: boolean;
@@ -81,17 +81,17 @@ export declare const AXBaseColorPickerMixin: (abstract new (...args: any[]) => {
81
81
  onValueChanged: import("@angular/core").EventEmitter<AXValueChangedEvent<any>>;
82
82
  valueChange: import("@angular/core").EventEmitter<any>;
83
83
  stateChange: import("@angular/core").EventEmitter<import("@acorex/components/mixin").AXComponentState>;
84
- "__#5096@#readonly": boolean;
84
+ "__#5175@#readonly": boolean;
85
85
  readonly: boolean;
86
- "__#5096@#allowNull": boolean;
86
+ "__#5175@#allowNull": boolean;
87
87
  allowNull: boolean;
88
- "__#5096@#name": string;
88
+ "__#5175@#name": string;
89
89
  name: string;
90
- "__#5096@#isUserInteraction": boolean;
90
+ "__#5175@#isUserInteraction": boolean;
91
91
  readonly isUserInteraction: boolean;
92
- "__#5096@#value": any;
92
+ "__#5175@#value": any;
93
93
  value: any;
94
- "__#5096@#state": import("@acorex/components/mixin").AXComponentState;
94
+ "__#5175@#state": import("@acorex/components/mixin").AXComponentState;
95
95
  state: import("@acorex/components/mixin").AXComponentState;
96
96
  _emitOnValueChangedEvent(oldValue?: any, newValue?: any): void;
97
97
  _internalSetValue(value: any): any;
@@ -109,9 +109,9 @@ export declare const AXBaseColorPickerMixin: (abstract new (...args: any[]) => {
109
109
  validate(): Promise<any>;
110
110
  _setState(state: import("@acorex/components/mixin").AXComponentState, ...args: any[]): void;
111
111
  id: string;
112
- "__#5092@#rtl": boolean;
112
+ "__#5171@#rtl": boolean;
113
113
  rtl: boolean;
114
- "__#5092@#elementRef": ElementRef<any>;
114
+ "__#5171@#elementRef": ElementRef<any>;
115
115
  _cdr: ChangeDetectorRef;
116
116
  _isInited: boolean;
117
117
  _isRendered: boolean; /**
@@ -141,9 +141,9 @@ export declare const AXBaseColorPickerMixin: (abstract new (...args: any[]) => {
141
141
  _emitOnKeyupEvent(e: KeyboardEvent): void;
142
142
  _emitOnKeypressEvent(e: KeyboardEvent): void;
143
143
  id: string;
144
- "__#5092@#rtl": boolean;
144
+ "__#5171@#rtl": boolean;
145
145
  rtl: boolean;
146
- "__#5092@#elementRef": ElementRef<any>;
146
+ "__#5171@#elementRef": ElementRef<any>;
147
147
  _cdr: ChangeDetectorRef;
148
148
  _isInited: boolean;
149
149
  _isRendered: boolean;
package/common/index.d.ts CHANGED
@@ -11,6 +11,7 @@ export * from './lib/components/colorlook-component.class';
11
11
  export * from './lib/components/interactive-component.class';
12
12
  export * from './lib/components/look-component.class';
13
13
  export * from './lib/components/value-component.class';
14
+ export * from './lib/components/input-base-value-component.class';
14
15
  export * from './lib/constant/positions';
15
16
  export * from './lib/directives/auto-focus.directive';
16
17
  export * from './lib/directives/debounce-time.directive';
@@ -36,8 +36,9 @@ export declare abstract class AXSearchableComponent extends AXComponent {
36
36
  static ɵprov: i0.ɵɵInjectableDeclaration<AXSearchableComponent>;
37
37
  }
38
38
  export declare abstract class AXValuableComponent extends AXComponent {
39
+ abstract get value(): any;
39
40
  abstract onValueChanged: EventEmitter<AXValueChangedEvent<any>>;
40
- abstract value: any;
41
+ abstract commitValue(value: any, u: boolean): any;
41
42
  static ɵfac: i0.ɵɵFactoryDeclaration<AXValuableComponent, never>;
42
43
  static ɵprov: i0.ɵɵInjectableDeclaration<AXValuableComponent>;
43
44
  }
@@ -5,6 +5,7 @@ export type MXComponentOptionChanging<T = any> = {
5
5
  name: string;
6
6
  value?: T;
7
7
  };
8
+ export type MXComponentOptionChanged<T = any> = MXComponentOptionChanging<T>;
8
9
  export type MXComponentSetOption<T> = {
9
10
  name: string;
10
11
  value?: T;
@@ -20,9 +21,10 @@ export declare abstract class MXBaseComponent {
20
21
  protected get cdr(): ChangeDetectorRef;
21
22
  getHostElement<T = HTMLElement>(): T;
22
23
  protected getViewContainer(): ViewContainerRef;
23
- protected onOptionChanging(option: MXComponentOptionChanging): any;
24
+ protected internalOptionChanging(option: MXComponentOptionChanging): any;
25
+ protected internalOptionChanged(option: MXComponentOptionChanged): void;
24
26
  protected init(): void;
25
- protected onOptionChanged: EventEmitter<AXOptionChangedEvent>;
27
+ onOptionChanged: EventEmitter<AXOptionChangedEvent>;
26
28
  protected setOption<T = any>(option: MXComponentSetOption<T>): void;
27
29
  private _rtl;
28
30
  get rtl(): boolean;
@@ -0,0 +1,26 @@
1
+ import { EventEmitter } from "@angular/core";
2
+ import { MXValueComponent } from "./value-component.class";
3
+ import { AXHtmlEvent } from "../classes/events.class";
4
+ import * as i0 from "@angular/core";
5
+ export declare class MXInputBaseValueComponent<T = string> extends MXValueComponent<T> {
6
+ /**
7
+ * Fires each time the user press a key.
8
+ * @event
9
+ */
10
+ onKeyDown: EventEmitter<AXHtmlEvent<KeyboardEvent>>;
11
+ /**
12
+ * Fires each time the user press a key.
13
+ * @event
14
+ */
15
+ onKeyUp: EventEmitter<AXHtmlEvent<KeyboardEvent>>;
16
+ /**
17
+ * Fires each time the user press a key.
18
+ * @event
19
+ */
20
+ onKeyPress: EventEmitter<AXHtmlEvent<KeyboardEvent>>;
21
+ protected emitOnKeydownEvent(e: KeyboardEvent): void;
22
+ protected emitOnKeyupEvent(e: KeyboardEvent): void;
23
+ protected emitOnKeypressEvent(e: KeyboardEvent): void;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<MXInputBaseValueComponent<any>, never>;
25
+ static ɵprov: i0.ɵɵInjectableDeclaration<MXInputBaseValueComponent<any>>;
26
+ }
@@ -2,12 +2,19 @@ import { EventEmitter } from '@angular/core';
2
2
  import { AXFocusEvent } from '../classes/events.class';
3
3
  import { MXBaseComponent } from './base-component.class';
4
4
  export declare class MXInteractiveComponent extends MXBaseComponent {
5
+ protected onTouchedCallback: () => void;
6
+ registerOnTouched(fn: () => void): void;
7
+ private _touched;
8
+ get touched(): boolean;
9
+ protected markAsTouched(): void;
10
+ disabledChange: EventEmitter<boolean>;
5
11
  private _disabled;
6
12
  /**
7
13
  * If set to true, it disables the component.
8
14
  */
9
15
  get disabled(): boolean;
10
16
  set disabled(value: boolean);
17
+ setDisabledState(isDisabled: boolean): void;
11
18
  _tabIndex: number;
12
19
  /**
13
20
  * Specifies the tabindex of the component.
@@ -1,8 +1,10 @@
1
1
  import { EventEmitter } from '@angular/core';
2
- import { AXComponentState, MXBaseComponent } from './base-component.class';
2
+ import { AXComponentState } from './base-component.class';
3
+ import { MXInteractiveComponent } from './interactive-component.class';
3
4
  import { AXValueChangedEvent } from '../classes/events.class';
5
+ import { ControlValueAccessor } from '@angular/forms';
4
6
  import * as i0 from "@angular/core";
5
- export declare class MXValueComponent<T = any> extends MXBaseComponent {
7
+ export declare class MXValueComponent<T = any> extends MXInteractiveComponent implements ControlValueAccessor {
6
8
  /**
7
9
  * Fires each time the user press a key.
8
10
  * @event
@@ -10,6 +12,7 @@ export declare class MXValueComponent<T = any> extends MXBaseComponent {
10
12
  onValueChanged: EventEmitter<AXValueChangedEvent<any>>;
11
13
  valueChange: EventEmitter<any>;
12
14
  stateChange: EventEmitter<AXComponentState>;
15
+ readonlyChange: EventEmitter<boolean>;
13
16
  private _readonly;
14
17
  /**
15
18
  * If set to true, user cannot change the value of component.
@@ -19,10 +22,10 @@ export declare class MXValueComponent<T = any> extends MXBaseComponent {
19
22
  private _name;
20
23
  get name(): string;
21
24
  set name(value: string);
25
+ private _dirty;
26
+ get dirty(): boolean;
27
+ markAsDirty(): void;
22
28
  private _isUserInteraction;
23
- get isUserInteraction(): boolean;
24
- set isUserInteraction(value: boolean);
25
- protected setUserInteraction(): void;
26
29
  initValue: T;
27
30
  defaultValue: T;
28
31
  private _value;
@@ -32,15 +35,19 @@ export declare class MXValueComponent<T = any> extends MXBaseComponent {
32
35
  get state(): AXComponentState;
33
36
  set state(value: AXComponentState);
34
37
  protected emitOnValueChangedEvent(oldValue?: any, newValue?: any): void;
35
- protected setValue(value: any): any;
36
- protected getValue(value: any): any;
38
+ protected internalSetValue(value: any): T;
39
+ protected internalGetValue(value: any): T;
40
+ protected internalValueChanged(value: any): void;
37
41
  protected ngOnInit(): void;
38
42
  protected ngAfterViewInit(): void;
39
43
  protected ngOnDestroy(): void;
40
- clear(): void;
41
44
  private _checkRequired;
42
45
  validate(): Promise<any>;
43
46
  protected setState(state: AXComponentState, ...args: any[]): void;
47
+ protected onChangeCallback: (value: T) => void;
48
+ registerOnChange(fn: (value: T) => void): void;
49
+ writeValue(value: T): void;
50
+ commitValue(value: T, u?: boolean): void;
44
51
  static ɵfac: i0.ɵɵFactoryDeclaration<MXValueComponent<any>, never>;
45
52
  static ɵprov: i0.ɵɵInjectableDeclaration<MXValueComponent<any>>;
46
53
  }
@@ -1,5 +1,5 @@
1
- import { ElementRef, ChangeDetectorRef, NgZone, EventEmitter } from '@angular/core';
2
1
  import { AXBaseComponentMixin, AXComponentOptionChanged } from '@acorex/components/mixin';
2
+ import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
3
3
  import * as i0 from "@angular/core";
4
4
  export type AXDrawerMode = 'push' | 'overlay';
5
5
  export type AXDrawerLocation = 'start' | 'end';
@@ -2,4 +2,4 @@
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
4
  export * from './index';
5
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNvcmV4LWNvbXBvbmVudHMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9saWJzL2NvbXBvbmVudHMvc3JjL2Fjb3JleC1jb21wb25lbnRzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsY0FBYyxTQUFTLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEdlbmVyYXRlZCBidW5kbGUgaW5kZXguIERvIG5vdCBlZGl0LlxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vaW5kZXgnO1xuIl19
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNvcmV4LWNvbXBvbmVudHMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9saWJzL2NvbXBvbmVudHMvYWNvcmV4LWNvbXBvbmVudHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLFNBQVMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9pbmRleCc7XG4iXX0=
@@ -61,10 +61,10 @@ export class AXActionSheetComponent extends MXBaseComponent {
61
61
  this.close();
62
62
  item.onClick();
63
63
  }
64
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: AXActionSheetComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
65
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.5", type: AXActionSheetComponent, selector: "ax-action-sheet", host: { listeners: { "keydown.escape": "onKeydownHandler()" } }, usesInheritance: true, ngImport: i0, template: "<ax-header *ngIf=\"showHeader\">\n <ax-prefix>\n <ax-title>{{ title }}</ax-title>\n <ax-sub-title *ngIf=\"subTitle\">{{ subTitle }}</ax-sub-title>\n </ax-prefix>\n <ax-suffix>\n <ax-close-button\n *ngIf=\"showCloseButton\"\n (click)=\"_handleCloseClick()\"\n tabindex=\"1\"\n ></ax-close-button>\n </ax-suffix>\n</ax-header>\n<ng-template [cdkPortalOutlet]=\"_selectedPortal\" (attached)=\"_handleAttched($event)\"></ng-template>\n<div class=\"ax-action-sheet-items\">\n <ng-container *ngFor=\"let item of items\">\n <div\n class=\"ax-action-sheet-item ax-{{ item.color }}\"\n [class.ax-state-disabled]=\"item.disabled\"\n (click)=\"onItemClick(item)\"\n >\n <span class=\"item-icon\" *ngIf=\"item.icon\" [class]=\"item.icon\"></span>\n <span class=\"item-text\">{{ item.text }}</span>\n </div>\n </ng-container>\n</div>\n", styles: ["@media (max-width: 599px){ax-action-sheet{width:100vw}}@media (min-width: 600px){ax-action-sheet{width:75vw}}@media (min-width: 1200px){ax-action-sheet{width:30vw}}@media (min-width: 1800px){ax-action-sheet{width:25vw}}ax-action-sheet ax-header{padding:1rem;font-size:1.125rem;font-weight:500;border-bottom:1px solid;border-color:rgba(var(--ax-color-border-default))}ax-action-sheet ax-header ax-prefix,ax-action-sheet ax-header ax-suffix{display:flex;flex-direction:column;justify-content:flex-start}ax-action-sheet ax-header ax-prefix{align-items:flex-start}ax-action-sheet ax-header ax-suffix{align-items:flex-end}@media (max-width: 599px){ax-action-sheet ax-header{font-size:1rem}}ax-action-sheet .ax-action-sheet-items{padding:.5rem 0}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item{-webkit-user-select:none;user-select:none;cursor:pointer;padding:.75rem 1rem;display:flex}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item:hover{background-color:rgba(var(--ax-color-default))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item .item-icon{font-size:1.5rem;margin-inline-end:.75rem}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-primary{color:rgba(var(--ax-color-primary-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-secondary{color:rgba(var(--ax-color-secondary-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-success{color:rgba(var(--ax-color-success-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-warning{color:rgba(var(--ax-color-warning-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-danger{color:rgba(var(--ax-color-danger-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-info{color:rgba(var(--ax-color-info-500))}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }, { kind: "component", type: i3.AXDecoratorPrefixComponent, selector: "ax-prefix" }, { kind: "component", type: i3.AXDecoratorSuffixComponent, selector: "ax-suffix" }, { kind: "component", type: i3.AXDecoratorHeaderComponent, selector: "ax-header" }, { kind: "component", type: i3.AXDecoratorTitleComponent, selector: "ax-title" }, { kind: "component", type: i3.AXDecoratorSubTitleComponent, selector: "ax-sub-title" }, { kind: "component", type: i3.AXDecoratorCloseButtonComponent, selector: "ax-close-button", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
64
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: AXActionSheetComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
65
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.6", type: AXActionSheetComponent, selector: "ax-action-sheet", host: { listeners: { "keydown.escape": "onKeydownHandler()" } }, usesInheritance: true, ngImport: i0, template: "<ax-header *ngIf=\"showHeader\">\n <ax-prefix>\n <ax-title>{{ title }}</ax-title>\n <ax-sub-title *ngIf=\"subTitle\">{{ subTitle }}</ax-sub-title>\n </ax-prefix>\n <ax-suffix>\n <ax-close-button\n *ngIf=\"showCloseButton\"\n (click)=\"_handleCloseClick()\"\n tabindex=\"1\"\n ></ax-close-button>\n </ax-suffix>\n</ax-header>\n<ng-template [cdkPortalOutlet]=\"_selectedPortal\" (attached)=\"_handleAttched($event)\"></ng-template>\n<div class=\"ax-action-sheet-items\">\n <ng-container *ngFor=\"let item of items\">\n <div\n class=\"ax-action-sheet-item ax-{{ item.color }}\"\n [class.ax-state-disabled]=\"item.disabled\"\n (click)=\"onItemClick(item)\"\n >\n <span class=\"item-icon\" *ngIf=\"item.icon\" [class]=\"item.icon\"></span>\n <span class=\"item-text\">{{ item.text }}</span>\n </div>\n </ng-container>\n</div>\n", styles: ["@media (max-width: 599px){ax-action-sheet{width:100vw}}@media (min-width: 600px){ax-action-sheet{width:75vw}}@media (min-width: 1200px){ax-action-sheet{width:30vw}}@media (min-width: 1800px){ax-action-sheet{width:25vw}}ax-action-sheet ax-header{padding:1rem;font-size:1.125rem;font-weight:500;border-bottom:1px solid;border-color:rgba(var(--ax-color-border-default))}ax-action-sheet ax-header ax-prefix,ax-action-sheet ax-header ax-suffix{display:flex;flex-direction:column;justify-content:flex-start}ax-action-sheet ax-header ax-prefix{align-items:flex-start}ax-action-sheet ax-header ax-suffix{align-items:flex-end}@media (max-width: 599px){ax-action-sheet ax-header{font-size:1rem}}ax-action-sheet .ax-action-sheet-items{padding:.5rem 0}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item{-webkit-user-select:none;user-select:none;cursor:pointer;padding:.75rem 1rem;display:flex}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item:hover{background-color:rgba(var(--ax-color-default))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item .item-icon{font-size:1.5rem;margin-inline-end:.75rem}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-primary{color:rgba(var(--ax-color-primary-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-secondary{color:rgba(var(--ax-color-secondary-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-success{color:rgba(var(--ax-color-success-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-warning{color:rgba(var(--ax-color-warning-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-danger{color:rgba(var(--ax-color-danger-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-info{color:rgba(var(--ax-color-info-500))}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }, { kind: "component", type: i3.AXDecoratorPrefixComponent, selector: "ax-prefix" }, { kind: "component", type: i3.AXDecoratorSuffixComponent, selector: "ax-suffix" }, { kind: "component", type: i3.AXDecoratorHeaderComponent, selector: "ax-header" }, { kind: "component", type: i3.AXDecoratorTitleComponent, selector: "ax-title" }, { kind: "component", type: i3.AXDecoratorSubTitleComponent, selector: "ax-sub-title" }, { kind: "component", type: i3.AXDecoratorCloseButtonComponent, selector: "ax-close-button", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
66
66
  }
67
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: AXActionSheetComponent, decorators: [{
67
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: AXActionSheetComponent, decorators: [{
68
68
  type: Component,
69
69
  args: [{ selector: 'ax-action-sheet', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<ax-header *ngIf=\"showHeader\">\n <ax-prefix>\n <ax-title>{{ title }}</ax-title>\n <ax-sub-title *ngIf=\"subTitle\">{{ subTitle }}</ax-sub-title>\n </ax-prefix>\n <ax-suffix>\n <ax-close-button\n *ngIf=\"showCloseButton\"\n (click)=\"_handleCloseClick()\"\n tabindex=\"1\"\n ></ax-close-button>\n </ax-suffix>\n</ax-header>\n<ng-template [cdkPortalOutlet]=\"_selectedPortal\" (attached)=\"_handleAttched($event)\"></ng-template>\n<div class=\"ax-action-sheet-items\">\n <ng-container *ngFor=\"let item of items\">\n <div\n class=\"ax-action-sheet-item ax-{{ item.color }}\"\n [class.ax-state-disabled]=\"item.disabled\"\n (click)=\"onItemClick(item)\"\n >\n <span class=\"item-icon\" *ngIf=\"item.icon\" [class]=\"item.icon\"></span>\n <span class=\"item-text\">{{ item.text }}</span>\n </div>\n </ng-container>\n</div>\n", styles: ["@media (max-width: 599px){ax-action-sheet{width:100vw}}@media (min-width: 600px){ax-action-sheet{width:75vw}}@media (min-width: 1200px){ax-action-sheet{width:30vw}}@media (min-width: 1800px){ax-action-sheet{width:25vw}}ax-action-sheet ax-header{padding:1rem;font-size:1.125rem;font-weight:500;border-bottom:1px solid;border-color:rgba(var(--ax-color-border-default))}ax-action-sheet ax-header ax-prefix,ax-action-sheet ax-header ax-suffix{display:flex;flex-direction:column;justify-content:flex-start}ax-action-sheet ax-header ax-prefix{align-items:flex-start}ax-action-sheet ax-header ax-suffix{align-items:flex-end}@media (max-width: 599px){ax-action-sheet ax-header{font-size:1rem}}ax-action-sheet .ax-action-sheet-items{padding:.5rem 0}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item{-webkit-user-select:none;user-select:none;cursor:pointer;padding:.75rem 1rem;display:flex}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item:hover{background-color:rgba(var(--ax-color-default))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item .item-icon{font-size:1.5rem;margin-inline-end:.75rem}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-primary{color:rgba(var(--ax-color-primary-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-secondary{color:rgba(var(--ax-color-secondary-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-success{color:rgba(var(--ax-color-success-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-warning{color:rgba(var(--ax-color-warning-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-danger{color:rgba(var(--ax-color-danger-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-info{color:rgba(var(--ax-color-info-500))}\n"] }]
70
70
  }], propDecorators: { onKeydownHandler: [{