@acorex/components 18.5.15 → 18.5.17

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 (227) hide show
  1. package/action-sheet/lib/action-sheet.component.d.ts +26 -0
  2. package/alert/lib/alert.component.d.ts +50 -2
  3. package/audio-wave/lib/audio-wave.component.d.ts +48 -0
  4. package/avatar/lib/avatar.component.d.ts +20 -1
  5. package/badge/lib/badge.component.d.ts +8 -0
  6. package/bottom-navigation/lib/bottom-navigation.component.d.ts +16 -0
  7. package/breadcrumbs/lib/breadcrumbs-item.component.d.ts +11 -0
  8. package/breadcrumbs/lib/breadcrumbs.component.d.ts +11 -0
  9. package/button/lib/button-item-list.component.d.ts +34 -0
  10. package/button/lib/button-item.component.d.ts +47 -0
  11. package/button/lib/button.component.d.ts +36 -0
  12. package/button-group/lib/button-group.component.d.ts +53 -0
  13. package/calendar/lib/calendar-range.component.d.ts +48 -0
  14. package/calendar/lib/calendar.component.d.ts +114 -0
  15. package/check-box/lib/check-box.component.d.ts +36 -0
  16. package/chips/lib/chips.component.d.ts +13 -0
  17. package/circular-progress/lib/circular-progress.component.d.ts +67 -1
  18. package/collapse/lib/collapse-group.component.d.ts +38 -0
  19. package/collapse/lib/collapse.component.d.ts +55 -0
  20. package/color-box/lib/color-box.component.d.ts +28 -1
  21. package/color-palette/lib/color-palette-input.component.d.ts +35 -0
  22. package/color-palette/lib/color-palette-picker.component.d.ts +53 -0
  23. package/color-palette/lib/color-palette-preview.component.d.ts +17 -0
  24. package/color-palette/lib/color-palette-swatches.component.d.ts +30 -0
  25. package/color-palette/lib/color-palette.component.d.ts +8 -0
  26. package/comment/lib/comment-container/comment-container.component.d.ts +5 -0
  27. package/comment/lib/comment-item/comment-item.component.d.ts +16 -2
  28. package/comment/lib/comment-like/comment-like.component.d.ts +8 -0
  29. package/comment/lib/comment-reply/comment-reply.component.d.ts +4 -0
  30. package/comment/lib/comment-view/comment-view.component.d.ts +4 -0
  31. package/common/lib/components/base-component.class.d.ts +8 -0
  32. package/common/lib/components/button-base-component.class.d.ts +21 -0
  33. package/common/lib/components/interactive-component.class.d.ts +15 -0
  34. package/conversation/lib/conversation-container/conversation-container.component.d.ts +4 -0
  35. package/conversation/lib/conversation-input/conversation-input.component.d.ts +79 -2
  36. package/conversation/lib/conversation-message/conversation-message.component.d.ts +41 -0
  37. package/conversation/lib/conversation-messages/conversation-message-audio/conversation-message-audio.component.d.ts +62 -0
  38. package/conversation/lib/conversation-messages/conversation-message-file/conversation-message-file.component.d.ts +34 -0
  39. package/conversation/lib/conversation-messages/conversation-message-image/conversation-message-image.component.d.ts +21 -0
  40. package/conversation/lib/conversation-messages/conversation-message-image-popup/conversation-message-image-popup.component.d.ts +11 -0
  41. package/conversation/lib/conversation-messages/conversation-message-text/conversation-message-text.component.d.ts +29 -0
  42. package/conversation/lib/conversation-messages/conversation-message-video/conversation-message-video.component.d.ts +11 -0
  43. package/conversation/lib/conversation-messages/conversation-message-voice/conversation-message-voice.component.d.ts +72 -0
  44. package/conversation/lib/conversation-view/conversation-view.component.d.ts +22 -0
  45. package/data-pager/lib/data-pager-base.component.d.ts +9 -0
  46. package/data-pager/lib/data-pager-info.component.d.ts +14 -0
  47. package/data-pager/lib/data-pager-input-selector.component.d.ts +17 -0
  48. package/data-pager/lib/data-pager-next-buttons.components.d.ts +20 -0
  49. package/data-pager/lib/data-pager-numeric-selector.component.d.ts +14 -0
  50. package/esm2022/action-sheet/lib/action-sheet.component.mjs +21 -1
  51. package/esm2022/alert/lib/alert.component.mjs +48 -3
  52. package/esm2022/audio-wave/lib/audio-wave.component.mjs +43 -1
  53. package/esm2022/avatar/lib/avatar.component.mjs +21 -2
  54. package/esm2022/badge/lib/badge.component.mjs +9 -1
  55. package/esm2022/bottom-navigation/lib/bottom-navigation.component.mjs +14 -1
  56. package/esm2022/breadcrumbs/lib/breadcrumbs-item.component.mjs +9 -1
  57. package/esm2022/breadcrumbs/lib/breadcrumbs.component.mjs +6 -1
  58. package/esm2022/button/lib/button-item-list.component.mjs +35 -1
  59. package/esm2022/button/lib/button-item.component.mjs +36 -1
  60. package/esm2022/button/lib/button.component.mjs +39 -3
  61. package/esm2022/button-group/lib/button-group.component.mjs +48 -1
  62. package/esm2022/calendar/lib/calendar-range.component.mjs +46 -1
  63. package/esm2022/calendar/lib/calendar.component.mjs +112 -1
  64. package/esm2022/check-box/lib/check-box.component.mjs +34 -1
  65. package/esm2022/chips/lib/chips.component.mjs +14 -1
  66. package/esm2022/circular-progress/lib/circular-progress.component.mjs +69 -1
  67. package/esm2022/collapse/lib/collapse-group.component.mjs +39 -1
  68. package/esm2022/collapse/lib/collapse.component.mjs +53 -1
  69. package/esm2022/color-box/lib/color-box.component.mjs +23 -2
  70. package/esm2022/color-palette/lib/color-palette-input.component.mjs +36 -1
  71. package/esm2022/color-palette/lib/color-palette-picker.component.mjs +54 -1
  72. package/esm2022/color-palette/lib/color-palette-preview.component.mjs +18 -1
  73. package/esm2022/color-palette/lib/color-palette-swatches.component.mjs +28 -1
  74. package/esm2022/color-palette/lib/color-palette.component.mjs +9 -1
  75. package/esm2022/comment/lib/comment-container/comment-container.component.mjs +6 -1
  76. package/esm2022/comment/lib/comment-item/comment-item.component.mjs +15 -1
  77. package/esm2022/comment/lib/comment-like/comment-like.component.mjs +9 -1
  78. package/esm2022/comment/lib/comment-reply/comment-reply.component.mjs +5 -1
  79. package/esm2022/comment/lib/comment-view/comment-view.component.mjs +5 -1
  80. package/esm2022/common/lib/components/base-component.class.mjs +9 -1
  81. package/esm2022/common/lib/components/button-base-component.class.mjs +22 -1
  82. package/esm2022/common/lib/components/interactive-component.class.mjs +16 -1
  83. package/esm2022/conversation/lib/conversation-container/conversation-container.component.mjs +5 -1
  84. package/esm2022/conversation/lib/conversation-input/conversation-input.component.mjs +75 -1
  85. package/esm2022/conversation/lib/conversation-message/conversation-message.component.mjs +39 -1
  86. package/esm2022/conversation/lib/conversation-messages/conversation-message-audio/conversation-message-audio.component.mjs +63 -1
  87. package/esm2022/conversation/lib/conversation-messages/conversation-message-file/conversation-message-file.component.mjs +35 -1
  88. package/esm2022/conversation/lib/conversation-messages/conversation-message-image/conversation-message-image.component.mjs +22 -1
  89. package/esm2022/conversation/lib/conversation-messages/conversation-message-image-popup/conversation-message-image-popup.component.mjs +9 -1
  90. package/esm2022/conversation/lib/conversation-messages/conversation-message-text/conversation-message-text.component.mjs +30 -1
  91. package/esm2022/conversation/lib/conversation-messages/conversation-message-video/conversation-message-video.component.mjs +12 -1
  92. package/esm2022/conversation/lib/conversation-messages/conversation-message-voice/conversation-message-voice.component.mjs +70 -1
  93. package/esm2022/conversation/lib/conversation-view/conversation-view.component.mjs +23 -1
  94. package/esm2022/data-pager/lib/data-pager-base.component.mjs +7 -1
  95. package/esm2022/data-pager/lib/data-pager-info.component.mjs +9 -1
  96. package/esm2022/data-pager/lib/data-pager-input-selector.component.mjs +18 -1
  97. package/esm2022/data-pager/lib/data-pager-next-buttons.components.mjs +18 -1
  98. package/esm2022/data-pager/lib/data-pager-numeric-selector.component.mjs +15 -1
  99. package/esm2022/scheduler/lib/scheduler-month-view.component.mjs +20 -1
  100. package/esm2022/scheduler/lib/scheduler-week-view.component.mjs +5 -1
  101. package/esm2022/scheduler/lib/scheduler.component.mjs +10 -1
  102. package/esm2022/search-box/lib/search-box.component.mjs +19 -2
  103. package/esm2022/select-box/lib/select-box.component.mjs +50 -2
  104. package/esm2022/selection-list/lib/selection-list.component.mjs +51 -1
  105. package/esm2022/side-menu/lib/side-menu.component.mjs +5 -1
  106. package/esm2022/skeleton/lib/skeleton.component.mjs +11 -1
  107. package/esm2022/slider/lib/slider.component.mjs +52 -2
  108. package/esm2022/step-wizard/lib/step-wizard.component.mjs +23 -1
  109. package/esm2022/switch/lib/switch-content.component.mjs +5 -1
  110. package/esm2022/switch/lib/switch.component.mjs +11 -1
  111. package/esm2022/tabs/lib/tab-item.component.mjs +24 -1
  112. package/esm2022/tabs/lib/tabs.component.mjs +36 -1
  113. package/esm2022/tag/lib/tag.component.mjs +2 -1
  114. package/esm2022/text-area/lib/text-area.component.mjs +8 -1
  115. package/esm2022/text-box/lib/text-box.component.mjs +13 -1
  116. package/esm2022/toast/lib/toast.component.mjs +6 -1
  117. package/esm2022/tooltip/lib/tooltip.component.mjs +5 -1
  118. package/esm2022/uploader/lib/uploader-dialog-container.component.mjs +16 -1
  119. package/esm2022/uploader/lib/uploader-drop-zone.component.mjs +5 -1
  120. package/esm2022/uploader/lib/uploader-list.component.mjs +8 -3
  121. package/esm2022/uploader/lib/uploader.models.mjs +14 -1
  122. package/esm2022/wysiwyg/lib/wysiwyg/wysiwyg-container/wysiwyg-container.component.mjs +18 -1
  123. package/esm2022/wysiwyg/lib/wysiwyg/wysiwyg-toolbar/wysiwyg-toolbar.component.mjs +106 -36
  124. package/esm2022/wysiwyg/lib/wysiwyg/wysiwyg-view/wysiwyg-view.component.mjs +9 -1
  125. package/esm2022/wysiwyg/lib/wysiwyg/wysiwyg.service.mjs +4 -1
  126. package/fesm2022/acorex-components-action-sheet.mjs +20 -0
  127. package/fesm2022/acorex-components-action-sheet.mjs.map +1 -1
  128. package/fesm2022/acorex-components-alert.mjs +47 -2
  129. package/fesm2022/acorex-components-alert.mjs.map +1 -1
  130. package/fesm2022/acorex-components-audio-wave.mjs +42 -0
  131. package/fesm2022/acorex-components-audio-wave.mjs.map +1 -1
  132. package/fesm2022/acorex-components-avatar.mjs +20 -1
  133. package/fesm2022/acorex-components-avatar.mjs.map +1 -1
  134. package/fesm2022/acorex-components-badge.mjs +8 -0
  135. package/fesm2022/acorex-components-badge.mjs.map +1 -1
  136. package/fesm2022/acorex-components-bottom-navigation.mjs +13 -0
  137. package/fesm2022/acorex-components-bottom-navigation.mjs.map +1 -1
  138. package/fesm2022/acorex-components-breadcrumbs.mjs +13 -0
  139. package/fesm2022/acorex-components-breadcrumbs.mjs.map +1 -1
  140. package/fesm2022/acorex-components-button-group.mjs +47 -0
  141. package/fesm2022/acorex-components-button-group.mjs.map +1 -1
  142. package/fesm2022/acorex-components-button.mjs +107 -2
  143. package/fesm2022/acorex-components-button.mjs.map +1 -1
  144. package/fesm2022/acorex-components-calendar.mjs +156 -0
  145. package/fesm2022/acorex-components-calendar.mjs.map +1 -1
  146. package/fesm2022/acorex-components-check-box.mjs +33 -0
  147. package/fesm2022/acorex-components-check-box.mjs.map +1 -1
  148. package/fesm2022/acorex-components-chips.mjs +13 -0
  149. package/fesm2022/acorex-components-chips.mjs.map +1 -1
  150. package/fesm2022/acorex-components-circular-progress.mjs +68 -0
  151. package/fesm2022/acorex-components-circular-progress.mjs.map +1 -1
  152. package/fesm2022/acorex-components-collapse.mjs +90 -0
  153. package/fesm2022/acorex-components-collapse.mjs.map +1 -1
  154. package/fesm2022/acorex-components-color-box.mjs +22 -1
  155. package/fesm2022/acorex-components-color-box.mjs.map +1 -1
  156. package/fesm2022/acorex-components-color-palette.mjs +140 -0
  157. package/fesm2022/acorex-components-color-palette.mjs.map +1 -1
  158. package/fesm2022/acorex-components-comment.mjs +35 -0
  159. package/fesm2022/acorex-components-comment.mjs.map +1 -1
  160. package/fesm2022/acorex-components-common.mjs +44 -0
  161. package/fesm2022/acorex-components-common.mjs.map +1 -1
  162. package/fesm2022/acorex-components-conversation.mjs +372 -0
  163. package/fesm2022/acorex-components-conversation.mjs.map +1 -1
  164. package/fesm2022/acorex-components-data-pager.mjs +62 -0
  165. package/fesm2022/acorex-components-data-pager.mjs.map +1 -1
  166. package/fesm2022/acorex-components-scheduler.mjs +32 -0
  167. package/fesm2022/acorex-components-scheduler.mjs.map +1 -1
  168. package/fesm2022/acorex-components-search-box.mjs +18 -1
  169. package/fesm2022/acorex-components-search-box.mjs.map +1 -1
  170. package/fesm2022/acorex-components-select-box.mjs +49 -1
  171. package/fesm2022/acorex-components-select-box.mjs.map +1 -1
  172. package/fesm2022/acorex-components-selection-list.mjs +50 -0
  173. package/fesm2022/acorex-components-selection-list.mjs.map +1 -1
  174. package/fesm2022/acorex-components-side-menu.mjs +4 -0
  175. package/fesm2022/acorex-components-side-menu.mjs.map +1 -1
  176. package/fesm2022/acorex-components-skeleton.mjs +10 -0
  177. package/fesm2022/acorex-components-skeleton.mjs.map +1 -1
  178. package/fesm2022/acorex-components-slider.mjs +51 -1
  179. package/fesm2022/acorex-components-slider.mjs.map +1 -1
  180. package/fesm2022/acorex-components-step-wizard.mjs +22 -0
  181. package/fesm2022/acorex-components-step-wizard.mjs.map +1 -1
  182. package/fesm2022/acorex-components-switch.mjs +14 -0
  183. package/fesm2022/acorex-components-switch.mjs.map +1 -1
  184. package/fesm2022/acorex-components-tabs.mjs +58 -0
  185. package/fesm2022/acorex-components-tabs.mjs.map +1 -1
  186. package/fesm2022/acorex-components-tag.mjs +1 -0
  187. package/fesm2022/acorex-components-tag.mjs.map +1 -1
  188. package/fesm2022/acorex-components-text-area.mjs +7 -0
  189. package/fesm2022/acorex-components-text-area.mjs.map +1 -1
  190. package/fesm2022/acorex-components-text-box.mjs +12 -0
  191. package/fesm2022/acorex-components-text-box.mjs.map +1 -1
  192. package/fesm2022/acorex-components-toast.mjs +5 -0
  193. package/fesm2022/acorex-components-toast.mjs.map +1 -1
  194. package/fesm2022/acorex-components-tooltip.mjs +4 -0
  195. package/fesm2022/acorex-components-tooltip.mjs.map +1 -1
  196. package/fesm2022/acorex-components-uploader.mjs +39 -2
  197. package/fesm2022/acorex-components-uploader.mjs.map +1 -1
  198. package/fesm2022/acorex-components-wysiwyg.mjs +134 -35
  199. package/fesm2022/acorex-components-wysiwyg.mjs.map +1 -1
  200. package/package.json +71 -71
  201. package/scheduler/lib/scheduler-month-view.component.d.ts +20 -0
  202. package/scheduler/lib/scheduler-week-view.component.d.ts +4 -0
  203. package/scheduler/lib/scheduler.component.d.ts +10 -0
  204. package/search-box/lib/search-box.component.d.ts +19 -1
  205. package/select-box/lib/select-box.component.d.ts +78 -1
  206. package/selection-list/lib/selection-list.component.d.ts +55 -0
  207. package/side-menu/lib/side-menu.component.d.ts +4 -0
  208. package/skeleton/lib/skeleton.component.d.ts +10 -0
  209. package/slider/lib/slider.component.d.ts +51 -1
  210. package/step-wizard/lib/step-wizard.component.d.ts +23 -0
  211. package/switch/lib/switch-content.component.d.ts +4 -0
  212. package/switch/lib/switch.component.d.ts +14 -0
  213. package/tabs/lib/tab-item.component.d.ts +32 -0
  214. package/tabs/lib/tabs.component.d.ts +42 -0
  215. package/tag/lib/tag.component.d.ts +4 -0
  216. package/text-area/lib/text-area.component.d.ts +13 -0
  217. package/text-box/lib/text-box.component.d.ts +27 -0
  218. package/toast/lib/toast.component.d.ts +6 -0
  219. package/tooltip/lib/tooltip.component.d.ts +13 -0
  220. package/uploader/lib/uploader-dialog-container.component.d.ts +15 -0
  221. package/uploader/lib/uploader-drop-zone.component.d.ts +4 -0
  222. package/uploader/lib/uploader-list.component.d.ts +5 -0
  223. package/uploader/lib/uploader.models.d.ts +4 -0
  224. package/wysiwyg/lib/wysiwyg/wysiwyg-container/wysiwyg-container.component.d.ts +19 -3
  225. package/wysiwyg/lib/wysiwyg/wysiwyg-toolbar/wysiwyg-toolbar.component.d.ts +61 -20
  226. package/wysiwyg/lib/wysiwyg/wysiwyg-view/wysiwyg-view.component.d.ts +4 -0
  227. package/wysiwyg/lib/wysiwyg/wysiwyg.service.d.ts +3 -0
@@ -8,52 +8,129 @@ import * as i0 from "@angular/core";
8
8
  declare const AXSelectBoxComponent_base: import("polytype").Polytype.ClusteredConstructor<[typeof MXDropdownBoxBaseComponent, typeof MXSelectionValueComponent, typeof MXLookComponent]>;
9
9
  /**
10
10
  * The Button is a component which detects user interaction and triggers a corresponding event
11
- *
12
11
  * @category Components
13
12
  */
14
13
  export declare class AXSelectBoxComponent extends AXSelectBoxComponent_base implements AfterViewInit, OnDestroy {
14
+ /** @ignore */
15
15
  private hotKeyService;
16
+ /** @ignore */
16
17
  protected isLoading: WritableSignal<boolean>;
18
+ /** @ignore */
17
19
  protected renderList: boolean;
20
+ /** @ignore */
18
21
  protected dropdownSizes: {
19
22
  width: string;
20
23
  height: string;
21
24
  };
25
+ /** @ignore */
22
26
  protected _listDataSource: AXDataSource<any>;
27
+ /** @ignore */
23
28
  private _dataSource;
29
+ /**
30
+ * Gets the data source for the component, which can be either an `AXDataSource` or an array of items.
31
+ * @returns {AXDataSource<any> | any[]}
32
+ */
24
33
  get dataSource(): AXDataSource<any> | any[];
34
+ /**
35
+ * Sets the data source, either as an `AXDataSource` or an array.
36
+ * @param {AXDataSource<any> | any[]} v
37
+ */
25
38
  set dataSource(v: AXDataSource<any> | any[]);
39
+ /**
40
+ * The placeholder text displayed when the component is empty.
41
+ * @param {string} placeholder
42
+ */
26
43
  placeholder: string;
44
+ /**
45
+ * The caption text to be displayed in the component.
46
+ * @param {string} caption
47
+ */
27
48
  caption: string;
49
+ /**
50
+ * The template used to customize the rendering of items.
51
+ * @param {TemplateRef<any>} itemTemplate
52
+ */
28
53
  itemTemplate: TemplateRef<any>;
54
+ /**
55
+ * The template used to customize the rendering of selected items.
56
+ * @param {TemplateRef<any>} selectedTemplate
57
+ */
29
58
  selectedTemplate: TemplateRef<any>;
59
+ /**
60
+ * The template used to display when there are no items.
61
+ * @param {TemplateRef<any>} emptyTemplate
62
+ */
30
63
  emptyTemplate: TemplateRef<any>;
64
+ /**
65
+ * The template used to display while loading.
66
+ * @param {TemplateRef<any>} loadingTemplate
67
+ */
31
68
  loadingTemplate: TemplateRef<any>;
69
+ /**
70
+ * The width of the dropdown in pixels.
71
+ * @defaultValue 260
72
+ */
32
73
  dropdownWidth: number;
74
+ /** @ignore */
33
75
  panel: ElementRef<HTMLDivElement>;
76
+ /** @ignore */
34
77
  list: AXListComponent;
78
+ /** @ignore */
35
79
  searchBox: AXSearchBoxComponent;
80
+ /** @ignore */
36
81
  protected dropdown: AXDropdownBoxComponent;
82
+ /** @ignore */
37
83
  protected autoHeight: boolean;
84
+ /**
85
+ * Service for managing selection data, injected via `AX_SELECTION_DATA_TOKEN`.
86
+ */
38
87
  selectionService: MXSelectionBridgeService;
39
88
  searchEvent: Observable<any>;
89
+ /** @ignore */
40
90
  private _unsubscriber;
91
+ /** @ignore */
41
92
  protected ngOnInit(): void;
93
+ /** @ignore */
42
94
  ngAfterViewInit(): void;
95
+ /** @ignore */
43
96
  ngOnDestroy(): void;
97
+ /**
98
+ * Retrieves an item by its key.
99
+ * @param {any} key
100
+ */
44
101
  getItemByKey(key: any): Promise<any> | any;
102
+ /** @ignore */
45
103
  protected _handleOnOpenedEvent(e: AXEvent): void;
104
+ /** @ignore */
46
105
  protected _handleOnClosedEvent(e: AXEvent): void;
106
+ /** @ignore */
47
107
  protected _handleFocus(): void;
108
+ /** @ignore */
48
109
  protected _handleBadgeRemove(e: MouseEvent, item: any): void;
110
+ /** @ignore */
49
111
  protected _handleValueChanged(e: AXValueChangedEvent): void;
112
+ /** @ignore */
50
113
  protected _handleOnItemClick(e: AXItemClickEvent): void;
114
+ /**
115
+ * Handles changes to the internal value. Closes the component if not in multiple mode, and adjusts height after a short delay.
116
+ */
51
117
  internalValueChanged(): void;
118
+ /** @ignore */
52
119
  private detectAutoHeight;
120
+ /** @ignore */
53
121
  private setDropdownSize;
122
+ /** @ignore */
54
123
  _handleKeydown(e: KeyboardEvent): void;
124
+ /** @ignore */
55
125
  private selectItemByNav;
126
+ /**
127
+ * Filters the data source based on the provided search term.
128
+ * @param {string} term
129
+ */
56
130
  search(term: string): void;
131
+ /**
132
+ * Refreshes the component by resetting state, clearing selection cache, refreshing the list, and closing the component.
133
+ */
57
134
  refresh(): void;
58
135
  static ɵfac: i0.ɵɵFactoryDeclaration<AXSelectBoxComponent, never>;
59
136
  static ɵcmp: i0.ɵɵComponentDeclaration<AXSelectBoxComponent, "ax-select-box", never, { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "type": { "alias": "type"; "required": false; }; "look": { "alias": "look"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "textTemplate": { "alias": "textTemplate"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; "caption": { "alias": "caption"; "required": false; }; "itemTemplate": { "alias": "itemTemplate"; "required": false; }; "selectedTemplate": { "alias": "selectedTemplate"; "required": false; }; "emptyTemplate": { "alias": "emptyTemplate"; "required": false; }; "loadingTemplate": { "alias": "loadingTemplate"; "required": false; }; "dropdownWidth": { "alias": "dropdownWidth"; "required": false; }; }, { "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "onOpened": "onOpened"; "onClosed": "onClosed"; }, ["searchBox"], ["ax-prefix", "ax-clear-button", "ax-suffix", "ax-search-box", "ax-footer", "ax-validation-rule"], false, never>;
@@ -8,22 +8,77 @@ export type AXSelectionListLook = 'solid' | 'divided' | 'card';
8
8
  * @category Components
9
9
  */
10
10
  export declare class AXSelectionListComponent extends MXSelectionValueComponent {
11
+ /** @ignore */
11
12
  private _direction;
13
+ /**
14
+ * Gets or sets the direction of the component.
15
+ * @param {AXDirection} value
16
+ */
12
17
  get direction(): AXDirection;
18
+ /**
19
+ * Sets the direction of the component.
20
+ *
21
+ * @param {AXDirection} v
22
+ */
13
23
  set direction(v: AXDirection);
24
+ /**
25
+ * The custom template used for rendering content.
26
+ *
27
+ * @param {TemplateRef<unknown>} customTemplate
28
+ */
14
29
  customTemplate: TemplateRef<unknown>;
30
+ /** @ignore */
15
31
  private _showControl;
32
+ /**
33
+ * @param {void}
34
+ * Gets the current state of the control visibility.
35
+ */
16
36
  get showControl(): boolean;
37
+ /**
38
+ * @param {boolean} v
39
+ * Sets the visibility state of the control.
40
+ */
17
41
  set showControl(v: boolean);
42
+ /** @ignore */
18
43
  private _items;
44
+ /**
45
+ * Gets the list of items.
46
+ * @param {void}
47
+ */
19
48
  get items(): any[];
49
+ /**
50
+ * Sets the list of items.
51
+ *
52
+ * @param {any[]} v
53
+ */
20
54
  set items(v: any[]);
55
+ /** @ignore */
21
56
  private _hintField;
57
+ /**
58
+ * Gets the field used for displaying hints.
59
+ */
22
60
  get hintField(): string;
61
+ /**
62
+ * Sets the field used for displaying hints.
63
+ *
64
+ * @param {string} v
65
+ */
23
66
  set hintField(v: string);
67
+ /**
68
+ * Retrieves an item from the list by its key.
69
+ *
70
+ * @param {unknown} key - The key to search for.
71
+ */
24
72
  getItemByKey(key: unknown): unknown;
73
+ /**
74
+ * Defines the visual appearance of the selection list.
75
+ *
76
+ * @defaultValue 'solid'
77
+ */
25
78
  look: AXSelectionListLook;
79
+ /** @ignore */
26
80
  protected _handleOnItemValueChange(item: any, e: Event): void;
81
+ /** @ignore */
27
82
  private get __hostClass();
28
83
  static ɵfac: i0.ɵɵFactoryDeclaration<AXSelectionListComponent, never>;
29
84
  static ɵcmp: i0.ɵɵComponentDeclaration<AXSelectionListComponent, "ax-selection-list", never, { "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "size": { "alias": "size"; "required": false; }; "value": { "alias": "value"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "hintField": { "alias": "hintField"; "required": false; }; "disabledField": { "alias": "disabledField"; "required": false; }; "readonlyField": { "alias": "readonlyField"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "customTemplate": { "alias": "customTemplate"; "required": false; }; "showControl": { "alias": "showControl"; "required": false; }; "items": { "alias": "items"; "required": false; }; "look": { "alias": "look"; "required": false; }; }, { "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; }, never, ["ax-validation-rule"], false, never>;
@@ -1,5 +1,9 @@
1
1
  import { MXBaseComponent } from '@acorex/components/common';
2
2
  import * as i0 from "@angular/core";
3
+ /**
4
+ * @category
5
+ * A component for displaying a side menu with customizable content.
6
+ */
3
7
  export declare class AXSideMenuComponent extends MXBaseComponent {
4
8
  static ɵfac: i0.ɵɵFactoryDeclaration<AXSideMenuComponent, never>;
5
9
  static ɵcmp: i0.ɵɵComponentDeclaration<AXSideMenuComponent, "ax-side-menu", never, {}, {}, never, ["ax-side-menu-item,ax-title,ng-container,ng-content"], false, never>;
@@ -1,7 +1,17 @@
1
1
  import { MXBaseComponent } from '@acorex/components/common';
2
2
  import * as i0 from "@angular/core";
3
+ /**
4
+ * @category
5
+ * A skeleton component used for loading placeholders.
6
+ */
3
7
  export declare class AXSkeletonComponent extends MXBaseComponent {
8
+ /**
9
+ * Determines whether animations are enabled.
10
+ *
11
+ * @defaultValue true
12
+ */
4
13
  animated: boolean;
14
+ /** @ignore */
5
15
  get __hostClass(): string;
6
16
  static ɵfac: i0.ɵɵFactoryDeclaration<AXSkeletonComponent, never>;
7
17
  static ɵcmp: i0.ɵɵComponentDeclaration<AXSkeletonComponent, "ax-skeleton", never, { "animated": { "alias": "animated"; "required": false; }; }, {}, never, ["*"], false, never>;
@@ -1,40 +1,90 @@
1
- import { NgZone } from '@angular/core';
2
1
  import { AXClickEvent, AXDirection, MXColorComponent, MXComponentOptionChanged, MXValueComponent } from '@acorex/components/common';
2
+ import { NgZone } from '@angular/core';
3
3
  import * as i0 from "@angular/core";
4
4
  declare const AXSliderComponent_base: import("polytype").Polytype.ClusteredConstructor<[{
5
5
  new (): MXValueComponent<number>;
6
6
  ɵfac: unknown;
7
7
  ɵprov: import("@angular/core").ɵɵInjectableDeclaration<MXValueComponent<any>>;
8
8
  }, typeof MXColorComponent]>;
9
+ /**
10
+ * @category
11
+ * A customizable slider component for selecting a value within a range.
12
+ */
9
13
  export declare class AXSliderComponent extends AXSliderComponent_base {
10
14
  private _zone;
15
+ /** @ignore */
11
16
  constructor(_zone: NgZone);
17
+ /**
18
+ * @event
19
+ */
12
20
  onClick: import("@angular/core").OutputEmitterRef<AXClickEvent>;
21
+ /** @ignore */
13
22
  private _minValue;
14
23
  /**
15
24
  * Specifies the smallest value that is valid
16
25
  */
17
26
  get minValue(): number;
27
+ /**
28
+ * Sets the minimum value of the slider.
29
+ *
30
+ * @param {number} v
31
+ */
18
32
  set minValue(v: number);
33
+ /** @ignore */
19
34
  private _maxValue;
20
35
  /**
21
36
  * Specifies the greatest value that is valid
22
37
  */
23
38
  get maxValue(): number;
39
+ /**
40
+ * Sets the maximum value of the slider.
41
+ *
42
+ * @param {number} v
43
+ */
24
44
  set maxValue(v: number);
45
+ /** @ignore */
25
46
  private _step;
26
47
  /**
27
48
  * Specifies the greatest value that is valid
28
49
  */
29
50
  get step(): number;
51
+ /**
52
+ * Sets the step increment for the slider.
53
+ *
54
+ * @param {number} v
55
+ */
30
56
  set step(v: number);
57
+ /**
58
+ * The direction of the slider.
59
+ *
60
+ * @defaultValue 'horizontal'
61
+ */
31
62
  direction: AXDirection;
63
+ /**
64
+ * Handles changes to internal component options.
65
+ *
66
+ * @param {MXComponentOptionChanged} e
67
+ */
32
68
  internalOptionChanged(e: MXComponentOptionChanged): void;
69
+ /**
70
+ * Handles changes to the component's value.
71
+ *
72
+ * @param {number} value
73
+ */
33
74
  internalValueChanged(value: number): void;
75
+ /** @ignore */
34
76
  protected _handleModelChange(value: number): void;
77
+ /** @ignore */
35
78
  private _calcVars;
79
+ /**
80
+ * @event
81
+ *
82
+ * Emits the value of the clicked input element when the click event occurs.
83
+ */
36
84
  clickHandler(e: Event): void;
85
+ /** @ignore */
37
86
  private get __hostClass();
87
+ /** @ignore */
38
88
  private get __hostClassDisabled();
39
89
  static ɵfac: i0.ɵɵFactoryDeclaration<AXSliderComponent, never>;
40
90
  static ɵcmp: i0.ɵɵComponentDeclaration<AXSliderComponent, "ax-slider", never, { "readonly": { "alias": "readonly"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "color": { "alias": "color"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "step": { "alias": "step"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; }, { "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "onChange": "onChange"; "onClick": "onClick"; }, never, never, false, never>;
@@ -4,24 +4,47 @@ import { AXStepWizardItemComponent } from './step-wizard-item/step-wizard-item.c
4
4
  import { AXStepWizardLook } from './step-wizard.class';
5
5
  import { AXStepWizardContentDirective } from './step-wizard.directive';
6
6
  import * as i0 from "@angular/core";
7
+ /**
8
+ * @category
9
+ * A component for creating a step-by-step wizard interface.
10
+ */
7
11
  export declare class AXStepWizardComponent extends MXBaseComponent implements OnInit {
12
+ /** @ignore */
8
13
  protected activeStepIndex: WritableSignal<number>;
14
+ /** @ignore */
9
15
  protected activeLook: WritableSignal<AXStepWizardLook>;
16
+ /** @ignore */
10
17
  protected activeOrientation: WritableSignal<AXOrientation>;
11
18
  isFirst: Signal<boolean>;
12
19
  isLast: Signal<boolean>;
20
+ /** @ignore */
13
21
  protected className: Signal<string[]>;
22
+ /** @ignore */
14
23
  private changeStepContent;
24
+ /** @ignore */
15
25
  private stepChangeEffect;
26
+ /** @ignore */
16
27
  ngOnInit(): void;
28
+ /** @ignore */
17
29
  steps: QueryList<AXStepWizardItemComponent>;
30
+ /**
31
+ * Sets the visual style of the step wizard.
32
+ *
33
+ * @param v
34
+ */
18
35
  set look(v: AXStepWizardLook);
36
+ /**
37
+ * Sets the orientation of the component.
38
+ *
39
+ * @param v
40
+ */
19
41
  set orientation(v: AXOrientation);
20
42
  content: AXStepWizardContentDirective;
21
43
  next(): void;
22
44
  previous(): void;
23
45
  goStep(stepIndex: number): void;
24
46
  reset(): void;
47
+ /** @ignore */
25
48
  private get __hostClass();
26
49
  static ɵfac: i0.ɵɵFactoryDeclaration<AXStepWizardComponent, never>;
27
50
  static ɵcmp: i0.ɵɵComponentDeclaration<AXStepWizardComponent, "ax-step-wizard", never, { "look": { "alias": "look"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "content": { "alias": "content"; "required": false; }; }, {}, ["steps"], ["ax-step-wizard-item"], false, never>;
@@ -1,5 +1,9 @@
1
1
  import { MXBaseComponent } from '@acorex/components/common';
2
2
  import * as i0 from "@angular/core";
3
+ /**
4
+ * @category
5
+ * Displays content for different switch states using `<ng-content>`.
6
+ */
3
7
  export declare class AXSwitchContentComponent extends MXBaseComponent {
4
8
  static ɵfac: i0.ɵɵFactoryDeclaration<AXSwitchContentComponent, never>;
5
9
  static ɵcmp: i0.ɵɵComponentDeclaration<AXSwitchContentComponent, "ax-switch-handler-content,ax-switch-handler-on-content,ax-switch-handler-off-content,ax-switch-off-content,ax-switch-on-content", never, {}, {}, never, ["*"], false, never>;
@@ -5,9 +5,23 @@ declare const AXSwitchComponent_base: import("polytype").Polytype.ClusteredConst
5
5
  ɵfac: unknown;
6
6
  ɵprov: import("@angular/core").ɵɵInjectableDeclaration<MXValueComponent<any>>;
7
7
  }, typeof MXColorComponent]>;
8
+ /**
9
+ * @category
10
+ * A switch component that allows toggling between on and off states.
11
+ */
8
12
  export declare class AXSwitchComponent extends AXSwitchComponent_base {
13
+ /**
14
+ * Indicates whether the component is in a loading state.
15
+ * @defaultValue boolean
16
+ */
9
17
  isLoading: boolean;
18
+ /**
19
+ * @ignore
20
+ */
10
21
  protected _handleOnClickEvent(e: MouseEvent): void;
22
+ /**
23
+ * @ignore
24
+ */
11
25
  private get __hostClass();
12
26
  static ɵfac: i0.ɵɵFactoryDeclaration<AXSwitchComponent, never>;
13
27
  static ɵcmp: i0.ɵɵComponentDeclaration<AXSwitchComponent, "ax-switch", never, { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "color": { "alias": "color"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; }, never, ["ax-switch-handler-content", "ax-switch-handler-on-content", "ax-switch-handler-off-content", "ax-switch-off-content", "ax-switch-on-content"], false, never>;
@@ -1,17 +1,49 @@
1
1
  import { AXClickEvent, MXComponentOptionChanged, MXInteractiveComponent } from '@acorex/components/common';
2
2
  import { EventEmitter, TemplateRef } from '@angular/core';
3
3
  import * as i0 from "@angular/core";
4
+ /**
5
+ * @category
6
+ * Represents an individual tab item in a tab component.
7
+ */
4
8
  export declare class AXTabItemComponent extends MXInteractiveComponent {
9
+ /**
10
+ * Defines the text content to be displayed within the component.
11
+ */
5
12
  text: string;
13
+ /**
14
+ * Defines a unique identifier for the component instance.
15
+ */
6
16
  key: string;
7
17
  template: TemplateRef<unknown>;
18
+ /**
19
+ * Defines a custom template for the component's header.
20
+ */
8
21
  headerTemplate: TemplateRef<unknown>;
22
+ /**
23
+ * Emits an event when the `active` state of the component changes.
24
+ * @event
25
+ */
9
26
  activeChange: EventEmitter<boolean>;
27
+ /**
28
+ * Emits an event when the component is clicked.
29
+ * @event
30
+ */
10
31
  onClick: EventEmitter<AXClickEvent>;
32
+ /** @ignore */
11
33
  private _active;
34
+ /**
35
+ * Gets or sets the component's active state, controlling its behavior and appearance.
36
+ * @param value {boolean}
37
+ */
12
38
  get active(): boolean;
13
39
  set active(value: boolean);
40
+ /**
41
+ * @ignore
42
+ */
14
43
  private __hostClick;
44
+ /**
45
+ * @ignore
46
+ */
15
47
  protected internalOptionChanged(option: MXComponentOptionChanged<any>): void;
16
48
  static ɵfac: i0.ɵɵFactoryDeclaration<AXTabItemComponent, never>;
17
49
  static ɵcmp: i0.ɵɵComponentDeclaration<AXTabItemComponent, "ax-tab-item", never, { "disabled": { "alias": "disabled"; "required": false; }; "text": { "alias": "text"; "required": false; }; "key": { "alias": "key"; "required": false; }; "headerTemplate": { "alias": "headerTemplate"; "required": false; }; "active": { "alias": "active"; "required": false; }; }, { "disabledChange": "disabledChange"; "onClick": "onClick"; "onBlur": "onBlur"; "onFocus": "onFocus"; "activeChange": "activeChange"; }, never, ["ax-prefix", "ax-suffix", "ax-content"], false, never>;
@@ -4,23 +4,65 @@ import { AXTabContentDirective } from './tab-content.directive';
4
4
  import { AXTabItemComponent } from './tab-item.component';
5
5
  import { AXTabLocation, AXTabLook, AXTabStripChangedEvent } from './tabs.class';
6
6
  import * as i0 from "@angular/core";
7
+ /**
8
+ * @category
9
+ * A component that serves as a container for tab items.
10
+ */
7
11
  export declare class AXTabsComponent extends MXBaseComponent implements AfterViewInit, AfterContentInit {
12
+ /**
13
+ * @ignore
14
+ */
8
15
  private _contentTabs;
16
+ /**
17
+ * Sets the appearance style of the tab component.
18
+ * @defaultValue 'default'
19
+ */
9
20
  look: AXTabLook;
21
+ /**
22
+ * Specifies the position of the tab component.
23
+ * @defaultValue 'bottom'
24
+ */
10
25
  location: AXTabLocation;
26
+ /**
27
+ * @defaultValue 'false'
28
+ * Specifies whether the component should resize to fit its parent container.
29
+ */
11
30
  fitParent: boolean;
31
+ /**
32
+ * @defaultValue 'false'
33
+ * Applies a minimum width constraint to the component.
34
+ */
12
35
  minWidth: boolean;
36
+ /**
37
+ * The `AXTabContentDirective` associated with the tab.
38
+ */
13
39
  content: AXTabContentDirective;
40
+ /** @ignore */
14
41
  private _isUserInteraction;
15
42
  get items(): AXTabItemComponent[];
43
+ /** @ignore */
16
44
  private _selectedItem;
45
+ /** @ignore */
17
46
  get selectedIndex(): number;
47
+ /** @ignore */
18
48
  get selectedItem(): AXTabItemComponent;
49
+ /**
50
+ * @event
51
+ */
19
52
  onActiveTabChanged: EventEmitter<AXTabStripChangedEvent>;
53
+ /** @ignore */
20
54
  private get __hostClass();
55
+ /** @ignore */
21
56
  ngAfterContentInit(): void;
57
+ /** @ignore */
22
58
  ngAfterViewInit(): void;
59
+ /** @ignore */
23
60
  private _bindOnClickEvent;
61
+ /**
62
+ * Activates the specified tab and updates the content.
63
+ *
64
+ * @param {number | AXTabItemComponent}
65
+ */
24
66
  select(tab: number | AXTabItemComponent): void;
25
67
  static ɵfac: i0.ɵɵFactoryDeclaration<AXTabsComponent, never>;
26
68
  static ɵcmp: i0.ɵɵComponentDeclaration<AXTabsComponent, "ax-tabs", never, { "look": { "alias": "look"; "required": false; }; "location": { "alias": "location"; "required": false; }; "fitParent": { "alias": "fitParent"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "content": { "alias": "content"; "required": false; }; }, { "onActiveTabChanged": "onActiveTabChanged"; }, ["_contentTabs"], ["ax-tab-item"], false, never>;
@@ -1,7 +1,11 @@
1
1
  import { MXColorLookComponent } from '@acorex/components/common';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class AXTagComponent extends MXColorLookComponent {
4
+ /**
5
+ * Represents the text content to be displayed or used within the component.
6
+ */
4
7
  text: string;
8
+ /** @ignore */
5
9
  private get __hostClass();
6
10
  static ɵfac: i0.ɵɵFactoryDeclaration<AXTagComponent, never>;
7
11
  static ɵcmp: i0.ɵɵComponentDeclaration<AXTagComponent, "ax-tag", never, { "color": { "alias": "color"; "required": false; }; "look": { "alias": "look"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, {}, never, ["ax-prefix", "ax-suffix"], false, never>;
@@ -8,10 +8,23 @@ declare const AXTextAreaComponent_base: import("polytype").Polytype.ClusteredCon
8
8
  }, typeof MXLookComponent]>;
9
9
  export declare class AXTextAreaComponent extends AXTextAreaComponent_base {
10
10
  input: ElementRef<HTMLInputElement>;
11
+ /**
12
+ * Specifies the number of rows for the component, typically used for configuring the size of a text area or similar input field.
13
+ */
11
14
  rows: number;
15
+ /**
16
+ * Indicates whether the component allows resizing.
17
+ */
12
18
  allowResize: boolean;
19
+ /**
20
+ * Determines whether a counter is displayed in the component.
21
+ */
13
22
  showCounter: boolean;
23
+ /**
24
+ * Specifies the maximum number of characters allowed in the input field.
25
+ */
14
26
  maxLength: number;
27
+ /** @ignore */
15
28
  protected _handleModelChange(value: string | null): void;
16
29
  static ɵfac: i0.ɵɵFactoryDeclaration<AXTextAreaComponent, never>;
17
30
  static ɵcmp: i0.ɵɵComponentDeclaration<AXTextAreaComponent, "ax-text-area", 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; }; "placeholder": { "alias": "placeholder"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "look": { "alias": "look"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "allowResize": { "alias": "allowResize"; "required": false; }; "showCounter": { "alias": "showCounter"; "required": false; }; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "onKeyDown": "onKeyDown"; "onKeyUp": "onKeyUp"; "onKeyPress": "onKeyPress"; }, never, ["ax-validation-rule"], false, never>;
@@ -13,20 +13,47 @@ declare const AXTextBoxComponent_base: import("polytype").Polytype.ClusteredCons
13
13
  * @category Components
14
14
  */
15
15
  export declare class AXTextBoxComponent extends AXTextBoxComponent_base implements AfterContentInit {
16
+ /** @ignore */
16
17
  protected _updateOn: 'change' | 'blur' | 'submit';
18
+ /** @ignore */
17
19
  private input;
20
+ /** @ignore */
18
21
  private _maskObj;
22
+ /** @ignore */
19
23
  private _maskOptions;
24
+ /**
25
+ * This public getter provides access to the `_maskOptions` property, which holds the configuration options for the mask feature.
26
+ */
20
27
  get maskOptions(): AXMaskOptions;
28
+ /**
29
+ * @param value {AXMaskOptions} - The new mask configuration options to be set.
30
+ */
21
31
  set maskOptions(value: AXMaskOptions);
32
+ /**
33
+ * This property defines the maximum number of characters that the input field can accept. It can be dynamically bound from a parent component template to enforce input length constraints.
34
+ */
22
35
  maxLength: number;
36
+ /**
37
+ * This property determines the type of the input element (e.g., 'text', 'password', 'email', etc.). It can be dynamically bound from a parent component template to change the input field type based on different conditions or requirements.
38
+ */
23
39
  type: string;
40
+ /**
41
+ * This property determines whether the input field should have autocomplete enabled and what type of autocomplete suggestions should be provided
42
+ */
24
43
  autoComplete: string;
44
+ /**
45
+ * This will apply 'my-custom-class' and 'another-class' to the component's root element.
46
+ */
25
47
  classNames: string;
48
+ /** @ignore */
26
49
  protected _maskOptionsContent: AXMaskOptionsDirective;
50
+ /** @ignore */
27
51
  ngAfterContentInit(): void;
52
+ /** @ignore */
28
53
  private setMask;
54
+ /** @ignore */
29
55
  private _onComplete;
56
+ /** @ignore */
30
57
  protected _handleModelChange(value: string | null): void;
31
58
  static ɵfac: i0.ɵɵFactoryDeclaration<AXTextBoxComponent, never>;
32
59
  static ɵcmp: i0.ɵɵComponentDeclaration<AXTextBoxComponent, "ax-text-box", 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; }; "id": { "alias": "id"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "allowNull": { "alias": "allowNull"; "required": false; }; "type": { "alias": "type"; "required": false; }; "autoComplete": { "alias": "autoComplete"; "required": false; }; "look": { "alias": "look"; "required": false; }; "maskOptions": { "alias": "mask-options"; "required": false; }; "classNames": { "alias": "class"; "required": false; }; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "onKeyDown": "onKeyDown"; "onKeyUp": "onKeyUp"; "onKeyPress": "onKeyPress"; }, ["_maskOptionsContent"], ["ax-prefix", "ax-clear-button", "ax-suffix", "ax-validation-rule"], false, never>;
@@ -12,15 +12,21 @@ import * as i0 from "@angular/core";
12
12
  export declare class AXToastComponent extends MXBaseComponent implements OnInit {
13
13
  config: AXToastData;
14
14
  private dialogRef;
15
+ /** @ignore */
15
16
  protected _toastWidth: number;
17
+ /** @ignore */
16
18
  protected _icon: string;
17
19
  /**
18
20
  * @ignore
19
21
  */
20
22
  constructor(config: AXToastData, dialogRef: DialogRef<AXComponentCloseEvent>);
23
+ /** @ignore */
21
24
  ngOnInit(): void;
25
+ /** @ignore */
22
26
  _handleButtonClick(button: AXButtonItem): void;
27
+ /** @ignore */
23
28
  private get __hostClass();
29
+ /** @ignore */
24
30
  close(): void;
25
31
  static ɵfac: i0.ɵɵFactoryDeclaration<AXToastComponent, never>;
26
32
  static ɵcmp: i0.ɵɵComponentDeclaration<AXToastComponent, "ax-toast", never, {}, {}, never, never, false, never>;