@acorex/components 18.5.16 → 18.6.0

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 (332) 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 +53 -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 +56 -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 +51 -21
  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/data-pager/lib/data-pager-pagesize-dropdown.component.d.ts +28 -0
  51. package/data-pager/lib/data-pager-prev-buttons.component.d.ts +20 -0
  52. package/data-pager/lib/data-pager.component.d.ts +111 -0
  53. package/data-table/lib/columns/data-text-column.component.d.ts +58 -0
  54. package/data-table/lib/columns/row-command-column.component.d.ts +83 -0
  55. package/data-table/lib/columns/row-index-column.component.d.ts +51 -0
  56. package/data-table/lib/columns/row-select-column.component.d.ts +47 -0
  57. package/data-table/lib/data-table/data-table.component.d.ts +200 -0
  58. package/data-table/lib/infinite-scroll-data-table/infinite-scroll-data-table.component.d.ts +185 -0
  59. package/datetime-box/lib/datetime-box.component.d.ts +59 -1
  60. package/datetime-input/lib/datetime-input.component.d.ts +133 -0
  61. package/datetime-picker/lib/datetime-picker.component.d.ts +95 -0
  62. package/decorators/lib/components/clear-button.component.d.ts +25 -0
  63. package/decorators/lib/components/close-button.component.d.ts +22 -0
  64. package/decorators/lib/components/generic-content.component.d.ts +4 -0
  65. package/decorators/lib/components/icon.component.d.ts +12 -0
  66. package/dialog/lib/dialog.component.d.ts +20 -0
  67. package/drawer/lib/drawer-container.component.d.ts +7 -0
  68. package/drawer/lib/drawer.component.d.ts +104 -0
  69. package/dropdown/lib/dropdown-box.component.d.ts +66 -0
  70. package/dropdown/lib/dropdown-panel.component.d.ts +85 -0
  71. package/dropdown-button/lib/dropdown-button.component.d.ts +38 -0
  72. package/esm2022/action-sheet/lib/action-sheet.component.mjs +21 -1
  73. package/esm2022/alert/lib/alert.component.mjs +48 -3
  74. package/esm2022/audio-wave/lib/audio-wave.component.mjs +48 -1
  75. package/esm2022/avatar/lib/avatar.component.mjs +21 -2
  76. package/esm2022/badge/lib/badge.component.mjs +9 -1
  77. package/esm2022/bottom-navigation/lib/bottom-navigation.component.mjs +14 -1
  78. package/esm2022/breadcrumbs/lib/breadcrumbs-item.component.mjs +9 -1
  79. package/esm2022/breadcrumbs/lib/breadcrumbs.component.mjs +6 -1
  80. package/esm2022/button/lib/button-item-list.component.mjs +35 -1
  81. package/esm2022/button/lib/button-item.component.mjs +36 -1
  82. package/esm2022/button/lib/button.component.mjs +37 -1
  83. package/esm2022/button-group/lib/button-group.component.mjs +51 -1
  84. package/esm2022/calendar/lib/calendar-range.component.mjs +46 -1
  85. package/esm2022/calendar/lib/calendar.component.mjs +112 -1
  86. package/esm2022/check-box/lib/check-box.component.mjs +34 -1
  87. package/esm2022/chips/lib/chips.component.mjs +14 -1
  88. package/esm2022/circular-progress/lib/circular-progress.component.mjs +73 -74
  89. package/esm2022/collapse/lib/collapse-group.component.mjs +39 -1
  90. package/esm2022/collapse/lib/collapse.component.mjs +53 -1
  91. package/esm2022/color-box/lib/color-box.component.mjs +23 -2
  92. package/esm2022/color-palette/lib/color-palette-input.component.mjs +36 -1
  93. package/esm2022/color-palette/lib/color-palette-picker.component.mjs +54 -1
  94. package/esm2022/color-palette/lib/color-palette-preview.component.mjs +18 -1
  95. package/esm2022/color-palette/lib/color-palette-swatches.component.mjs +28 -1
  96. package/esm2022/color-palette/lib/color-palette.component.mjs +9 -1
  97. package/esm2022/comment/lib/comment-container/comment-container.component.mjs +6 -1
  98. package/esm2022/comment/lib/comment-item/comment-item.component.mjs +15 -1
  99. package/esm2022/comment/lib/comment-like/comment-like.component.mjs +9 -1
  100. package/esm2022/comment/lib/comment-reply/comment-reply.component.mjs +5 -1
  101. package/esm2022/comment/lib/comment-view/comment-view.component.mjs +5 -1
  102. package/esm2022/common/lib/components/base-component.class.mjs +9 -1
  103. package/esm2022/common/lib/components/button-base-component.class.mjs +22 -1
  104. package/esm2022/common/lib/components/interactive-component.class.mjs +16 -1
  105. package/esm2022/conversation/lib/conversation-container/conversation-container.component.mjs +5 -1
  106. package/esm2022/conversation/lib/conversation-input/conversation-input.component.mjs +75 -1
  107. package/esm2022/conversation/lib/conversation-message/conversation-message.component.mjs +39 -1
  108. package/esm2022/conversation/lib/conversation-messages/conversation-message-audio/conversation-message-audio.component.mjs +63 -1
  109. package/esm2022/conversation/lib/conversation-messages/conversation-message-file/conversation-message-file.component.mjs +35 -1
  110. package/esm2022/conversation/lib/conversation-messages/conversation-message-image/conversation-message-image.component.mjs +22 -1
  111. package/esm2022/conversation/lib/conversation-messages/conversation-message-image-popup/conversation-message-image-popup.component.mjs +9 -1
  112. package/esm2022/conversation/lib/conversation-messages/conversation-message-text/conversation-message-text.component.mjs +30 -1
  113. package/esm2022/conversation/lib/conversation-messages/conversation-message-video/conversation-message-video.component.mjs +12 -1
  114. package/esm2022/conversation/lib/conversation-messages/conversation-message-voice/conversation-message-voice.component.mjs +70 -1
  115. package/esm2022/conversation/lib/conversation-view/conversation-view.component.mjs +23 -1
  116. package/esm2022/data-pager/lib/data-pager-base.component.mjs +7 -1
  117. package/esm2022/data-pager/lib/data-pager-info.component.mjs +9 -1
  118. package/esm2022/data-pager/lib/data-pager-input-selector.component.mjs +18 -1
  119. package/esm2022/data-pager/lib/data-pager-next-buttons.components.mjs +18 -1
  120. package/esm2022/data-pager/lib/data-pager-numeric-selector.component.mjs +15 -1
  121. package/esm2022/data-pager/lib/data-pager-pagesize-dropdown.component.mjs +23 -1
  122. package/esm2022/data-pager/lib/data-pager-prev-buttons.component.mjs +18 -1
  123. package/esm2022/data-pager/lib/data-pager.component.mjs +109 -1
  124. package/esm2022/data-table/lib/columns/data-text-column.component.mjs +32 -1
  125. package/esm2022/data-table/lib/columns/row-command-column.component.mjs +63 -1
  126. package/esm2022/data-table/lib/columns/row-index-column.component.mjs +40 -1
  127. package/esm2022/data-table/lib/columns/row-select-column.component.mjs +39 -1
  128. package/esm2022/data-table/lib/data-table/data-table.component.mjs +183 -1
  129. package/esm2022/data-table/lib/infinite-scroll-data-table/infinite-scroll-data-table.component.mjs +159 -1
  130. package/esm2022/datetime-box/lib/datetime-box.component.mjs +51 -2
  131. package/esm2022/datetime-input/lib/datetime-input.component.mjs +122 -1
  132. package/esm2022/datetime-picker/lib/datetime-picker.component.mjs +90 -1
  133. package/esm2022/decorators/lib/components/clear-button.component.mjs +26 -1
  134. package/esm2022/decorators/lib/components/close-button.component.mjs +23 -1
  135. package/esm2022/decorators/lib/components/generic-content.component.mjs +5 -1
  136. package/esm2022/decorators/lib/components/icon.component.mjs +13 -1
  137. package/esm2022/dialog/lib/dialog.component.mjs +18 -1
  138. package/esm2022/drawer/lib/drawer-container.component.mjs +8 -1
  139. package/esm2022/drawer/lib/drawer.component.mjs +102 -1
  140. package/esm2022/dropdown/lib/dropdown-box.component.mjs +58 -1
  141. package/esm2022/dropdown/lib/dropdown-panel.component.mjs +77 -1
  142. package/esm2022/dropdown-button/lib/dropdown-button.component.mjs +36 -1
  143. package/esm2022/form/lib/form-field.component.mjs +40 -1
  144. package/esm2022/form/lib/form.component.mjs +59 -1
  145. package/esm2022/form/lib/validation-summary.component.mjs +41 -1
  146. package/esm2022/image/lib/image.component.mjs +47 -1
  147. package/esm2022/label/lib/label.component.mjs +32 -1
  148. package/esm2022/list/lib/list.component.mjs +84 -1
  149. package/esm2022/loading/lib/loading-spinner.component.mjs +17 -1
  150. package/esm2022/loading/lib/loading.component.mjs +27 -1
  151. package/esm2022/popup/lib/popup.component.mjs +2 -2
  152. package/esm2022/progress-bar/lib/progress-bar.component.mjs +1 -1
  153. package/esm2022/scheduler/lib/scheduler-month-view.component.mjs +20 -1
  154. package/esm2022/scheduler/lib/scheduler-week-view.component.mjs +5 -1
  155. package/esm2022/scheduler/lib/scheduler.component.mjs +10 -1
  156. package/esm2022/search-box/lib/search-box.component.mjs +19 -2
  157. package/esm2022/select-box/lib/select-box.component.mjs +50 -2
  158. package/esm2022/selection-list/lib/selection-list.component.mjs +51 -1
  159. package/esm2022/side-menu/lib/side-menu.component.mjs +5 -1
  160. package/esm2022/skeleton/lib/skeleton.component.mjs +11 -1
  161. package/esm2022/slider/lib/slider.component.mjs +52 -2
  162. package/esm2022/step-wizard/lib/step-wizard.component.mjs +23 -1
  163. package/esm2022/switch/lib/switch-content.component.mjs +5 -1
  164. package/esm2022/switch/lib/switch.component.mjs +11 -1
  165. package/esm2022/tabs/lib/tab-item.component.mjs +24 -1
  166. package/esm2022/tabs/lib/tabs.component.mjs +36 -1
  167. package/esm2022/tag/lib/tag.component.mjs +2 -1
  168. package/esm2022/text-area/lib/text-area.component.mjs +8 -1
  169. package/esm2022/text-box/lib/text-box.component.mjs +13 -1
  170. package/esm2022/toast/lib/toast.component.mjs +6 -1
  171. package/esm2022/tooltip/lib/tooltip.component.mjs +5 -1
  172. package/esm2022/uploader/index.mjs +5 -5
  173. package/esm2022/uploader/lib/{uploader-dialog-container.component.mjs → uploader-dialog-container/uploader-dialog-container.component.mjs} +17 -2
  174. package/esm2022/uploader/lib/uploader-drop-zone/uploader-drop-zone.component.mjs +27 -0
  175. package/esm2022/uploader/lib/uploader-list/uploader-list.component.mjs +26 -0
  176. package/esm2022/uploader/lib/uploader-zone.directive.mjs +23 -16
  177. package/esm2022/uploader/lib/uploader.models.mjs +19 -1
  178. package/esm2022/uploader/lib/uploader.module.mjs +18 -13
  179. package/esm2022/uploader/lib/uploader.service.mjs +14 -7
  180. package/esm2022/wysiwyg/lib/wysiwyg/wysiwyg-container/wysiwyg-container.component.mjs +66 -9
  181. package/esm2022/wysiwyg/lib/wysiwyg/wysiwyg-toolbar/wysiwyg-toolbar.component.mjs +105 -43
  182. package/esm2022/wysiwyg/lib/wysiwyg/wysiwyg-view/wysiwyg-view.component.mjs +9 -1
  183. package/esm2022/wysiwyg/lib/wysiwyg/wysiwyg.service.mjs +4 -1
  184. package/fesm2022/acorex-components-action-sheet.mjs +20 -0
  185. package/fesm2022/acorex-components-action-sheet.mjs.map +1 -1
  186. package/fesm2022/acorex-components-alert.mjs +47 -2
  187. package/fesm2022/acorex-components-alert.mjs.map +1 -1
  188. package/fesm2022/acorex-components-audio-wave.mjs +47 -0
  189. package/fesm2022/acorex-components-audio-wave.mjs.map +1 -1
  190. package/fesm2022/acorex-components-avatar.mjs +20 -1
  191. package/fesm2022/acorex-components-avatar.mjs.map +1 -1
  192. package/fesm2022/acorex-components-badge.mjs +8 -0
  193. package/fesm2022/acorex-components-badge.mjs.map +1 -1
  194. package/fesm2022/acorex-components-bottom-navigation.mjs +13 -0
  195. package/fesm2022/acorex-components-bottom-navigation.mjs.map +1 -1
  196. package/fesm2022/acorex-components-breadcrumbs.mjs +13 -0
  197. package/fesm2022/acorex-components-breadcrumbs.mjs.map +1 -1
  198. package/fesm2022/acorex-components-button-group.mjs +50 -0
  199. package/fesm2022/acorex-components-button-group.mjs.map +1 -1
  200. package/fesm2022/acorex-components-button.mjs +105 -0
  201. package/fesm2022/acorex-components-button.mjs.map +1 -1
  202. package/fesm2022/acorex-components-calendar.mjs +156 -0
  203. package/fesm2022/acorex-components-calendar.mjs.map +1 -1
  204. package/fesm2022/acorex-components-check-box.mjs +33 -0
  205. package/fesm2022/acorex-components-check-box.mjs.map +1 -1
  206. package/fesm2022/acorex-components-chips.mjs +13 -0
  207. package/fesm2022/acorex-components-chips.mjs.map +1 -1
  208. package/fesm2022/acorex-components-circular-progress.mjs +72 -73
  209. package/fesm2022/acorex-components-circular-progress.mjs.map +1 -1
  210. package/fesm2022/acorex-components-collapse.mjs +90 -0
  211. package/fesm2022/acorex-components-collapse.mjs.map +1 -1
  212. package/fesm2022/acorex-components-color-box.mjs +22 -1
  213. package/fesm2022/acorex-components-color-box.mjs.map +1 -1
  214. package/fesm2022/acorex-components-color-palette.mjs +140 -0
  215. package/fesm2022/acorex-components-color-palette.mjs.map +1 -1
  216. package/fesm2022/acorex-components-comment.mjs +35 -0
  217. package/fesm2022/acorex-components-comment.mjs.map +1 -1
  218. package/fesm2022/acorex-components-common.mjs +44 -0
  219. package/fesm2022/acorex-components-common.mjs.map +1 -1
  220. package/fesm2022/acorex-components-conversation.mjs +372 -0
  221. package/fesm2022/acorex-components-conversation.mjs.map +1 -1
  222. package/fesm2022/acorex-components-data-pager.mjs +209 -0
  223. package/fesm2022/acorex-components-data-pager.mjs.map +1 -1
  224. package/fesm2022/acorex-components-data-table.mjs +510 -0
  225. package/fesm2022/acorex-components-data-table.mjs.map +1 -1
  226. package/fesm2022/acorex-components-datetime-box.mjs +50 -1
  227. package/fesm2022/acorex-components-datetime-box.mjs.map +1 -1
  228. package/fesm2022/acorex-components-datetime-input.mjs +121 -0
  229. package/fesm2022/acorex-components-datetime-input.mjs.map +1 -1
  230. package/fesm2022/acorex-components-datetime-picker.mjs +89 -0
  231. package/fesm2022/acorex-components-datetime-picker.mjs.map +1 -1
  232. package/fesm2022/acorex-components-decorators.mjs +63 -0
  233. package/fesm2022/acorex-components-decorators.mjs.map +1 -1
  234. package/fesm2022/acorex-components-dialog.mjs +17 -0
  235. package/fesm2022/acorex-components-dialog.mjs.map +1 -1
  236. package/fesm2022/acorex-components-drawer.mjs +108 -0
  237. package/fesm2022/acorex-components-drawer.mjs.map +1 -1
  238. package/fesm2022/acorex-components-dropdown-button.mjs +35 -0
  239. package/fesm2022/acorex-components-dropdown-button.mjs.map +1 -1
  240. package/fesm2022/acorex-components-dropdown.mjs +133 -0
  241. package/fesm2022/acorex-components-dropdown.mjs.map +1 -1
  242. package/fesm2022/acorex-components-form.mjs +137 -0
  243. package/fesm2022/acorex-components-form.mjs.map +1 -1
  244. package/fesm2022/acorex-components-image.mjs +46 -0
  245. package/fesm2022/acorex-components-image.mjs.map +1 -1
  246. package/fesm2022/acorex-components-label.mjs +31 -0
  247. package/fesm2022/acorex-components-label.mjs.map +1 -1
  248. package/fesm2022/acorex-components-list.mjs +83 -0
  249. package/fesm2022/acorex-components-list.mjs.map +1 -1
  250. package/fesm2022/acorex-components-loading.mjs +42 -0
  251. package/fesm2022/acorex-components-loading.mjs.map +1 -1
  252. package/fesm2022/acorex-components-popup.mjs +1 -1
  253. package/fesm2022/acorex-components-popup.mjs.map +1 -1
  254. package/fesm2022/acorex-components-progress-bar.mjs.map +1 -1
  255. package/fesm2022/acorex-components-scheduler.mjs +32 -0
  256. package/fesm2022/acorex-components-scheduler.mjs.map +1 -1
  257. package/fesm2022/acorex-components-search-box.mjs +18 -1
  258. package/fesm2022/acorex-components-search-box.mjs.map +1 -1
  259. package/fesm2022/acorex-components-select-box.mjs +49 -1
  260. package/fesm2022/acorex-components-select-box.mjs.map +1 -1
  261. package/fesm2022/acorex-components-selection-list.mjs +50 -0
  262. package/fesm2022/acorex-components-selection-list.mjs.map +1 -1
  263. package/fesm2022/acorex-components-side-menu.mjs +4 -0
  264. package/fesm2022/acorex-components-side-menu.mjs.map +1 -1
  265. package/fesm2022/acorex-components-skeleton.mjs +10 -0
  266. package/fesm2022/acorex-components-skeleton.mjs.map +1 -1
  267. package/fesm2022/acorex-components-slider.mjs +51 -1
  268. package/fesm2022/acorex-components-slider.mjs.map +1 -1
  269. package/fesm2022/acorex-components-step-wizard.mjs +22 -0
  270. package/fesm2022/acorex-components-step-wizard.mjs.map +1 -1
  271. package/fesm2022/acorex-components-switch.mjs +14 -0
  272. package/fesm2022/acorex-components-switch.mjs.map +1 -1
  273. package/fesm2022/acorex-components-tabs.mjs +58 -0
  274. package/fesm2022/acorex-components-tabs.mjs.map +1 -1
  275. package/fesm2022/acorex-components-tag.mjs +1 -0
  276. package/fesm2022/acorex-components-tag.mjs.map +1 -1
  277. package/fesm2022/acorex-components-text-area.mjs +7 -0
  278. package/fesm2022/acorex-components-text-area.mjs.map +1 -1
  279. package/fesm2022/acorex-components-text-box.mjs +12 -0
  280. package/fesm2022/acorex-components-text-box.mjs.map +1 -1
  281. package/fesm2022/acorex-components-toast.mjs +5 -0
  282. package/fesm2022/acorex-components-toast.mjs.map +1 -1
  283. package/fesm2022/acorex-components-tooltip.mjs +4 -0
  284. package/fesm2022/acorex-components-tooltip.mjs.map +1 -1
  285. package/fesm2022/acorex-components-uploader.mjs +100 -32
  286. package/fesm2022/acorex-components-uploader.mjs.map +1 -1
  287. package/fesm2022/acorex-components-wysiwyg.mjs +179 -50
  288. package/fesm2022/acorex-components-wysiwyg.mjs.map +1 -1
  289. package/form/lib/form-field.component.d.ts +45 -0
  290. package/form/lib/form.component.d.ts +58 -0
  291. package/form/lib/validation-summary.component.d.ts +49 -0
  292. package/image/lib/image.component.d.ts +61 -0
  293. package/label/lib/label.component.d.ts +34 -0
  294. package/list/lib/list.component.d.ts +98 -0
  295. package/loading/lib/loading-spinner.component.d.ts +20 -0
  296. package/loading/lib/loading.component.d.ts +35 -0
  297. package/package.json +58 -58
  298. package/progress-bar/lib/progress-bar.component.d.ts +0 -1
  299. package/scheduler/lib/scheduler-month-view.component.d.ts +20 -0
  300. package/scheduler/lib/scheduler-week-view.component.d.ts +4 -0
  301. package/scheduler/lib/scheduler.component.d.ts +10 -0
  302. package/search-box/lib/search-box.component.d.ts +19 -1
  303. package/select-box/lib/select-box.component.d.ts +78 -1
  304. package/selection-list/lib/selection-list.component.d.ts +55 -0
  305. package/side-menu/lib/side-menu.component.d.ts +4 -0
  306. package/skeleton/lib/skeleton.component.d.ts +10 -0
  307. package/slider/lib/slider.component.d.ts +51 -1
  308. package/step-wizard/lib/step-wizard.component.d.ts +23 -0
  309. package/switch/lib/switch-content.component.d.ts +4 -0
  310. package/switch/lib/switch.component.d.ts +14 -0
  311. package/tabs/lib/tab-item.component.d.ts +32 -0
  312. package/tabs/lib/tabs.component.d.ts +42 -0
  313. package/tag/lib/tag.component.d.ts +4 -0
  314. package/text-area/lib/text-area.component.d.ts +13 -0
  315. package/text-box/lib/text-box.component.d.ts +27 -0
  316. package/toast/lib/toast.component.d.ts +6 -0
  317. package/tooltip/lib/tooltip.component.d.ts +13 -0
  318. package/uploader/index.d.ts +4 -4
  319. package/uploader/lib/{uploader-dialog-container.component.d.ts → uploader-dialog-container/uploader-dialog-container.component.d.ts} +15 -0
  320. package/uploader/lib/uploader-drop-zone/uploader-drop-zone.component.d.ts +12 -0
  321. package/uploader/lib/{uploader-list.component.d.ts → uploader-list/uploader-list.component.d.ts} +6 -1
  322. package/uploader/lib/uploader-zone.directive.d.ts +1 -0
  323. package/uploader/lib/uploader.models.d.ts +9 -0
  324. package/uploader/lib/uploader.module.d.ts +4 -4
  325. package/uploader/lib/uploader.service.d.ts +2 -1
  326. package/wysiwyg/lib/wysiwyg/wysiwyg-container/wysiwyg-container.component.d.ts +35 -6
  327. package/wysiwyg/lib/wysiwyg/wysiwyg-toolbar/wysiwyg-toolbar.component.d.ts +61 -21
  328. package/wysiwyg/lib/wysiwyg/wysiwyg-view/wysiwyg-view.component.d.ts +4 -0
  329. package/wysiwyg/lib/wysiwyg/wysiwyg.service.d.ts +3 -0
  330. package/esm2022/uploader/lib/uploader-drop-zone.component.mjs +0 -14
  331. package/esm2022/uploader/lib/uploader-list.component.mjs +0 -21
  332. package/uploader/lib/uploader-drop-zone.component.d.ts +0 -6
@@ -1,9 +1,29 @@
1
1
  import { AXStyleColorType } from '@acorex/components/common';
2
2
  import * as i0 from "@angular/core";
3
+ /**
4
+ * A loading spinner component that displays a rotating spinner icon.
5
+ * @category Components
6
+ */
3
7
  export declare class AXLoadingSpinnerComponent {
8
+ /**
9
+ * The text to display alongside the spinner.
10
+ * @ignore
11
+ */
4
12
  text: string;
13
+ /**
14
+ * Color of the spinner. Can be a predefined style color or a custom color.
15
+ * @defaultValue 'ghost'
16
+ */
5
17
  color: AXStyleColorType | string;
18
+ /**
19
+ * Size of the spinner, in pixels. This determines both the width and height of the spinner.
20
+ * @defaultValue 16
21
+ */
6
22
  size: number;
23
+ /**
24
+ * Thickness of the spinner's border, in pixels. This affects the visual weight of the spinner's outline.
25
+ * @defaultValue 3
26
+ */
7
27
  stroke: number;
8
28
  static ɵfac: i0.ɵɵFactoryDeclaration<AXLoadingSpinnerComponent, never>;
9
29
  static ɵcmp: i0.ɵɵComponentDeclaration<AXLoadingSpinnerComponent, "ax-loading-spinner", never, { "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "stroke": { "alias": "stroke"; "required": false; }; }, {}, never, never, false, never>;
@@ -2,16 +2,51 @@ import { MXBaseComponent } from '@acorex/components/common';
2
2
  import { CdkPortalOutletAttachedRef, Portal } from '@angular/cdk/portal';
3
3
  import { EventEmitter, OnInit } from '@angular/core';
4
4
  import * as i0 from "@angular/core";
5
+ /**
6
+ * A component that displays a loading indicator.
7
+ * @category Components
8
+ */
5
9
  export declare class AXLoadingComponent extends MXBaseComponent implements OnInit {
6
10
  private config;
11
+ /**
12
+ * @ignore
13
+ */
7
14
  protected _selectedPortal: Portal<unknown>;
15
+ /**
16
+ * Emits an event when the visibility state of the component changes.
17
+ * @event
18
+ */
8
19
  visibleChange: EventEmitter<boolean>;
20
+ /**
21
+ * @ignore
22
+ */
9
23
  private _visible;
24
+ /**
25
+ * Determines whether the component is visible or not.
26
+ */
10
27
  get visible(): boolean;
28
+ /**
29
+ * Sets the visibility of the component and emits a visibility change event.
30
+ *
31
+ * @param v - A boolean value indicating whether the component should be visible.
32
+ */
11
33
  set visible(v: boolean);
34
+ /**
35
+ * Specifies the type of loading indicator to display.
36
+ * @defaultValue 'spinner'
37
+ */
12
38
  type: string;
39
+ /**
40
+ * Provides additional context or data that may be used by the component.
41
+ */
13
42
  context?: unknown;
43
+ /**
44
+ * @ignore
45
+ */
14
46
  ngOnInit(): void;
47
+ /**
48
+ * @ignore
49
+ */
15
50
  protected _handleAttched(ref: CdkPortalOutletAttachedRef): void;
16
51
  static ɵfac: i0.ɵɵFactoryDeclaration<AXLoadingComponent, never>;
17
52
  static ɵcmp: i0.ɵɵComponentDeclaration<AXLoadingComponent, "ax-loading", never, { "visible": { "alias": "visible"; "required": false; }; "type": { "alias": "type"; "required": false; }; "context": { "alias": "context"; "required": false; }; }, { "visibleChange": "visibleChange"; }, never, never, false, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/components",
3
- "version": "18.5.16",
3
+ "version": "18.6.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=18.0.0",
6
6
  "@angular/core": ">=18.0.0",
@@ -31,12 +31,6 @@
31
31
  "esm": "./esm2022/action-sheet/acorex-components-action-sheet.mjs",
32
32
  "default": "./fesm2022/acorex-components-action-sheet.mjs"
33
33
  },
34
- "./alert": {
35
- "types": "./alert/index.d.ts",
36
- "esm2022": "./esm2022/alert/acorex-components-alert.mjs",
37
- "esm": "./esm2022/alert/acorex-components-alert.mjs",
38
- "default": "./fesm2022/acorex-components-alert.mjs"
39
- },
40
34
  "./avatar": {
41
35
  "types": "./avatar/index.d.ts",
42
36
  "esm2022": "./esm2022/avatar/acorex-components-avatar.mjs",
@@ -49,18 +43,24 @@
49
43
  "esm": "./esm2022/badge/acorex-components-badge.mjs",
50
44
  "default": "./fesm2022/acorex-components-badge.mjs"
51
45
  },
52
- "./audio-wave": {
53
- "types": "./audio-wave/index.d.ts",
54
- "esm2022": "./esm2022/audio-wave/acorex-components-audio-wave.mjs",
55
- "esm": "./esm2022/audio-wave/acorex-components-audio-wave.mjs",
56
- "default": "./fesm2022/acorex-components-audio-wave.mjs"
57
- },
58
46
  "./bottom-navigation": {
59
47
  "types": "./bottom-navigation/index.d.ts",
60
48
  "esm2022": "./esm2022/bottom-navigation/acorex-components-bottom-navigation.mjs",
61
49
  "esm": "./esm2022/bottom-navigation/acorex-components-bottom-navigation.mjs",
62
50
  "default": "./fesm2022/acorex-components-bottom-navigation.mjs"
63
51
  },
52
+ "./alert": {
53
+ "types": "./alert/index.d.ts",
54
+ "esm2022": "./esm2022/alert/acorex-components-alert.mjs",
55
+ "esm": "./esm2022/alert/acorex-components-alert.mjs",
56
+ "default": "./fesm2022/acorex-components-alert.mjs"
57
+ },
58
+ "./audio-wave": {
59
+ "types": "./audio-wave/index.d.ts",
60
+ "esm2022": "./esm2022/audio-wave/acorex-components-audio-wave.mjs",
61
+ "esm": "./esm2022/audio-wave/acorex-components-audio-wave.mjs",
62
+ "default": "./fesm2022/acorex-components-audio-wave.mjs"
63
+ },
64
64
  "./breadcrumbs": {
65
65
  "types": "./breadcrumbs/index.d.ts",
66
66
  "esm2022": "./esm2022/breadcrumbs/acorex-components-breadcrumbs.mjs",
@@ -85,18 +85,18 @@
85
85
  "esm": "./esm2022/calendar/acorex-components-calendar.mjs",
86
86
  "default": "./fesm2022/acorex-components-calendar.mjs"
87
87
  },
88
- "./check-box": {
89
- "types": "./check-box/index.d.ts",
90
- "esm2022": "./esm2022/check-box/acorex-components-check-box.mjs",
91
- "esm": "./esm2022/check-box/acorex-components-check-box.mjs",
92
- "default": "./fesm2022/acorex-components-check-box.mjs"
93
- },
94
88
  "./chips": {
95
89
  "types": "./chips/index.d.ts",
96
90
  "esm2022": "./esm2022/chips/acorex-components-chips.mjs",
97
91
  "esm": "./esm2022/chips/acorex-components-chips.mjs",
98
92
  "default": "./fesm2022/acorex-components-chips.mjs"
99
93
  },
94
+ "./check-box": {
95
+ "types": "./check-box/index.d.ts",
96
+ "esm2022": "./esm2022/check-box/acorex-components-check-box.mjs",
97
+ "esm": "./esm2022/check-box/acorex-components-check-box.mjs",
98
+ "default": "./fesm2022/acorex-components-check-box.mjs"
99
+ },
100
100
  "./circular-progress": {
101
101
  "types": "./circular-progress/index.d.ts",
102
102
  "esm2022": "./esm2022/circular-progress/acorex-components-circular-progress.mjs",
@@ -265,6 +265,12 @@
265
265
  "esm": "./esm2022/number-box/acorex-components-number-box.mjs",
266
266
  "default": "./fesm2022/acorex-components-number-box.mjs"
267
267
  },
268
+ "./page": {
269
+ "types": "./page/index.d.ts",
270
+ "esm2022": "./esm2022/page/acorex-components-page.mjs",
271
+ "esm": "./esm2022/page/acorex-components-page.mjs",
272
+ "default": "./fesm2022/acorex-components-page.mjs"
273
+ },
268
274
  "./otp": {
269
275
  "types": "./otp/index.d.ts",
270
276
  "esm2022": "./esm2022/otp/acorex-components-otp.mjs",
@@ -277,11 +283,11 @@
277
283
  "esm": "./esm2022/password-box/acorex-components-password-box.mjs",
278
284
  "default": "./fesm2022/acorex-components-password-box.mjs"
279
285
  },
280
- "./page": {
281
- "types": "./page/index.d.ts",
282
- "esm2022": "./esm2022/page/acorex-components-page.mjs",
283
- "esm": "./esm2022/page/acorex-components-page.mjs",
284
- "default": "./fesm2022/acorex-components-page.mjs"
286
+ "./picker": {
287
+ "types": "./picker/index.d.ts",
288
+ "esm2022": "./esm2022/picker/acorex-components-picker.mjs",
289
+ "esm": "./esm2022/picker/acorex-components-picker.mjs",
290
+ "default": "./fesm2022/acorex-components-picker.mjs"
285
291
  },
286
292
  "./phone-box": {
287
293
  "types": "./phone-box/index.d.ts",
@@ -289,11 +295,11 @@
289
295
  "esm": "./esm2022/phone-box/acorex-components-phone-box.mjs",
290
296
  "default": "./fesm2022/acorex-components-phone-box.mjs"
291
297
  },
292
- "./picker": {
293
- "types": "./picker/index.d.ts",
294
- "esm2022": "./esm2022/picker/acorex-components-picker.mjs",
295
- "esm": "./esm2022/picker/acorex-components-picker.mjs",
296
- "default": "./fesm2022/acorex-components-picker.mjs"
298
+ "./popup": {
299
+ "types": "./popup/index.d.ts",
300
+ "esm2022": "./esm2022/popup/acorex-components-popup.mjs",
301
+ "esm": "./esm2022/popup/acorex-components-popup.mjs",
302
+ "default": "./fesm2022/acorex-components-popup.mjs"
297
303
  },
298
304
  "./popover": {
299
305
  "types": "./popover/index.d.ts",
@@ -301,12 +307,6 @@
301
307
  "esm": "./esm2022/popover/acorex-components-popover.mjs",
302
308
  "default": "./fesm2022/acorex-components-popover.mjs"
303
309
  },
304
- "./popup": {
305
- "types": "./popup/index.d.ts",
306
- "esm2022": "./esm2022/popup/acorex-components-popup.mjs",
307
- "esm": "./esm2022/popup/acorex-components-popup.mjs",
308
- "default": "./fesm2022/acorex-components-popup.mjs"
309
- },
310
310
  "./progress-bar": {
311
311
  "types": "./progress-bar/index.d.ts",
312
312
  "esm2022": "./esm2022/progress-bar/acorex-components-progress-bar.mjs",
@@ -325,18 +325,18 @@
325
325
  "esm": "./esm2022/range-slider/acorex-components-range-slider.mjs",
326
326
  "default": "./fesm2022/acorex-components-range-slider.mjs"
327
327
  },
328
- "./result": {
329
- "types": "./result/index.d.ts",
330
- "esm2022": "./esm2022/result/acorex-components-result.mjs",
331
- "esm": "./esm2022/result/acorex-components-result.mjs",
332
- "default": "./fesm2022/acorex-components-result.mjs"
333
- },
334
328
  "./routing-progress": {
335
329
  "types": "./routing-progress/index.d.ts",
336
330
  "esm2022": "./esm2022/routing-progress/acorex-components-routing-progress.mjs",
337
331
  "esm": "./esm2022/routing-progress/acorex-components-routing-progress.mjs",
338
332
  "default": "./fesm2022/acorex-components-routing-progress.mjs"
339
333
  },
334
+ "./result": {
335
+ "types": "./result/index.d.ts",
336
+ "esm2022": "./esm2022/result/acorex-components-result.mjs",
337
+ "esm": "./esm2022/result/acorex-components-result.mjs",
338
+ "default": "./fesm2022/acorex-components-result.mjs"
339
+ },
340
340
  "./scheduler": {
341
341
  "types": "./scheduler/index.d.ts",
342
342
  "esm2022": "./esm2022/scheduler/acorex-components-scheduler.mjs",
@@ -349,18 +349,18 @@
349
349
  "esm": "./esm2022/scss/acorex-components-scss.mjs",
350
350
  "default": "./fesm2022/acorex-components-scss.mjs"
351
351
  },
352
- "./search-box": {
353
- "types": "./search-box/index.d.ts",
354
- "esm2022": "./esm2022/search-box/acorex-components-search-box.mjs",
355
- "esm": "./esm2022/search-box/acorex-components-search-box.mjs",
356
- "default": "./fesm2022/acorex-components-search-box.mjs"
357
- },
358
352
  "./select-box": {
359
353
  "types": "./select-box/index.d.ts",
360
354
  "esm2022": "./esm2022/select-box/acorex-components-select-box.mjs",
361
355
  "esm": "./esm2022/select-box/acorex-components-select-box.mjs",
362
356
  "default": "./fesm2022/acorex-components-select-box.mjs"
363
357
  },
358
+ "./search-box": {
359
+ "types": "./search-box/index.d.ts",
360
+ "esm2022": "./esm2022/search-box/acorex-components-search-box.mjs",
361
+ "esm": "./esm2022/search-box/acorex-components-search-box.mjs",
362
+ "default": "./fesm2022/acorex-components-search-box.mjs"
363
+ },
364
364
  "./selection-list": {
365
365
  "types": "./selection-list/index.d.ts",
366
366
  "esm2022": "./esm2022/selection-list/acorex-components-selection-list.mjs",
@@ -373,23 +373,17 @@
373
373
  "esm": "./esm2022/side-menu/acorex-components-side-menu.mjs",
374
374
  "default": "./fesm2022/acorex-components-side-menu.mjs"
375
375
  },
376
- "./skeleton": {
377
- "types": "./skeleton/index.d.ts",
378
- "esm2022": "./esm2022/skeleton/acorex-components-skeleton.mjs",
379
- "esm": "./esm2022/skeleton/acorex-components-skeleton.mjs",
380
- "default": "./fesm2022/acorex-components-skeleton.mjs"
381
- },
382
376
  "./slider": {
383
377
  "types": "./slider/index.d.ts",
384
378
  "esm2022": "./esm2022/slider/acorex-components-slider.mjs",
385
379
  "esm": "./esm2022/slider/acorex-components-slider.mjs",
386
380
  "default": "./fesm2022/acorex-components-slider.mjs"
387
381
  },
388
- "./switch": {
389
- "types": "./switch/index.d.ts",
390
- "esm2022": "./esm2022/switch/acorex-components-switch.mjs",
391
- "esm": "./esm2022/switch/acorex-components-switch.mjs",
392
- "default": "./fesm2022/acorex-components-switch.mjs"
382
+ "./skeleton": {
383
+ "types": "./skeleton/index.d.ts",
384
+ "esm2022": "./esm2022/skeleton/acorex-components-skeleton.mjs",
385
+ "esm": "./esm2022/skeleton/acorex-components-skeleton.mjs",
386
+ "default": "./fesm2022/acorex-components-skeleton.mjs"
393
387
  },
394
388
  "./step-wizard": {
395
389
  "types": "./step-wizard/index.d.ts",
@@ -397,6 +391,12 @@
397
391
  "esm": "./esm2022/step-wizard/acorex-components-step-wizard.mjs",
398
392
  "default": "./fesm2022/acorex-components-step-wizard.mjs"
399
393
  },
394
+ "./switch": {
395
+ "types": "./switch/index.d.ts",
396
+ "esm2022": "./esm2022/switch/acorex-components-switch.mjs",
397
+ "esm": "./esm2022/switch/acorex-components-switch.mjs",
398
+ "default": "./fesm2022/acorex-components-switch.mjs"
399
+ },
400
400
  "./tabs": {
401
401
  "types": "./tabs/index.d.ts",
402
402
  "esm2022": "./esm2022/tabs/acorex-components-tabs.mjs",
@@ -6,7 +6,6 @@ import * as i0 from "@angular/core";
6
6
  *
7
7
  * @category Components
8
8
  */
9
- export type AXProgressLook = 'linear' | 'circular';
10
9
  export type AXProgressMode = 'determinate' | 'indeterminate' | 'buffer' | 'query';
11
10
  export declare class AXProgressBarComponent extends MXColorComponent {
12
11
  circle: ElementRef;
@@ -1,8 +1,14 @@
1
1
  import { MXBaseComponent } from '@acorex/components/common';
2
2
  import { AXDateTime } from '@acorex/core/date-time';
3
3
  import * as i0 from "@angular/core";
4
+ /**
5
+ * @category
6
+ * Represents a view in the scheduler component that displays the calendar month.
7
+ */
4
8
  export declare class AXSchedulerMonthViewComponent extends MXBaseComponent {
9
+ /** @ignore */
5
10
  private _platform;
11
+ /** @ignore */
6
12
  protected _slots: {
7
13
  date: AXDateTime;
8
14
  cssClass: {
@@ -10,11 +16,25 @@ export declare class AXSchedulerMonthViewComponent extends MXBaseComponent {
10
16
  };
11
17
  isToday: boolean;
12
18
  }[];
19
+ /** @ignore */
13
20
  protected get dayNames(): string[];
21
+ /** @ignore */
14
22
  private _date;
23
+ /**
24
+ * Gets or sets the date for the scheduler view.
25
+ */
15
26
  get date(): AXDateTime;
27
+ /**
28
+ * Sets the date for the scheduler view and triggers the generation of time slots.
29
+ * @param {AXDateTime} v
30
+ */
16
31
  set date(v: AXDateTime);
32
+ /** @ignore */
17
33
  ngOnInit(): void;
34
+ /**
35
+ * Generates slots for the scheduler, including CSS classes for days outside the current month
36
+ * and a flag for the current day.
37
+ */
18
38
  generateSlots(): void;
19
39
  static ɵfac: i0.ɵɵFactoryDeclaration<AXSchedulerMonthViewComponent, never>;
20
40
  static ɵcmp: i0.ɵɵComponentDeclaration<AXSchedulerMonthViewComponent, "ax-scheduler-month-view", never, { "date": { "alias": "date"; "required": false; }; }, {}, never, never, 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
+ * This component renders the weekly view for the scheduler.
6
+ */
3
7
  export declare class AXSchedulerWeekViewComponent extends MXBaseComponent {
4
8
  static ɵfac: i0.ɵɵFactoryDeclaration<AXSchedulerWeekViewComponent, never>;
5
9
  static ɵcmp: i0.ɵɵComponentDeclaration<AXSchedulerWeekViewComponent, "ax-scheduler-week-view", never, {}, {}, never, never, false, never>;
@@ -2,13 +2,23 @@ import { MXBaseComponent } from '@acorex/components/common';
2
2
  import { AXDateTime } from '@acorex/core/date-time';
3
3
  import { AXPlatform, AXScreenSizes } from '@acorex/core/platform';
4
4
  import * as i0 from "@angular/core";
5
+ /**
6
+ * @category
7
+ * This component provides the main scheduler functionality, integrating various views and handling scheduling operations.
8
+ */
5
9
  export declare class AXSchedulerComponent extends MXBaseComponent {
10
+ /** @ignore */
6
11
  private _calendarService;
12
+ /** @ignore */
7
13
  protected _platform: AXPlatform;
14
+ /** @ignore */
8
15
  protected current: AXDateTime;
16
+ /** @ignore */
9
17
  protected _size: AXScreenSizes;
10
18
  handleOnItemClick(): void;
19
+ /** @ignore */
11
20
  ngOnInit(): void;
21
+ /** @ignore */
12
22
  private detectSize;
13
23
  _handleNextClick(): void;
14
24
  _handlePrevClick(): void;
@@ -5,11 +5,29 @@ declare const AXSearchBoxComponent_base: import("polytype").Polytype.ClusteredCo
5
5
  ɵfac: unknown;
6
6
  ɵprov: import("@angular/core").ɵɵInjectableDeclaration<MXInputBaseValueComponent<any>>;
7
7
  }, typeof MXLookComponent]>;
8
+ /**
9
+ * @category
10
+ * Represents a search box component that allows users to input and search text.
11
+ */
8
12
  export declare class AXSearchBoxComponent extends AXSearchBoxComponent_base {
13
+ /** @ignore */
9
14
  private _parent;
10
- constructor(_parent: AXSearchableComponent);
15
+ /** @ignore */
16
+ constructor(
17
+ /** @ignore */
18
+ _parent: AXSearchableComponent);
19
+ /**
20
+ * The delay time for search actions, specified in milliseconds.
21
+ * @defaultValue 500
22
+ */
11
23
  delayTime: number;
24
+ /**
25
+ * Handles changes to the model and triggers a search in the parent component if available.
26
+ *
27
+ * @param {string} value
28
+ */
12
29
  _handleModelChange(value: string): void;
30
+ /** @ignore */
13
31
  get __hostClass(): string[];
14
32
  static ɵfac: i0.ɵɵFactoryDeclaration<AXSearchBoxComponent, [{ optional: true; }]>;
15
33
  static ɵcmp: i0.ɵɵComponentDeclaration<AXSearchBoxComponent, "ax-search-box", never, { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "look": { "alias": "look"; "required": false; }; "delayTime": { "alias": "delayTime"; "required": false; }; }, { "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "onKeyDown": "onKeyDown"; "onKeyUp": "onKeyUp"; "onKeyPress": "onKeyPress"; }, never, ["ax-prefix", "ax-icon", "ax-clear-button", "ax-suffix"], false, never>;
@@ -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>;