@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,14 +1,43 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { AXConversationMessage, AXConversationMessageBaseComponent } from '../../conversation.types';
3
3
  import * as i0 from "@angular/core";
4
+ /**
5
+ * A component for displaying a text message with optional reply content, including text, images, videos, files, and audio.
6
+ *
7
+ * @category Components
8
+ */
4
9
  export declare class AXConversationTextMessageComponent extends AXConversationMessageBaseComponent<string> implements OnInit {
10
+ /**
11
+ * @ignore
12
+ */
5
13
  protected _text: import("@angular/core").WritableSignal<string>;
14
+ /**
15
+ * @ignore
16
+ */
6
17
  protected replyText: import("@angular/core").WritableSignal<AXConversationMessage<string>>;
18
+ /**
19
+ * @ignore
20
+ */
7
21
  protected replyImage: import("@angular/core").WritableSignal<AXConversationMessage<string>>;
22
+ /**
23
+ * @ignore
24
+ */
8
25
  protected replyVideo: import("@angular/core").WritableSignal<AXConversationMessage<string>>;
26
+ /**
27
+ * @ignore
28
+ */
9
29
  protected replyAudio: import("@angular/core").WritableSignal<AXConversationMessage<string>>;
30
+ /**
31
+ * @ignore
32
+ */
10
33
  protected replyVoice: import("@angular/core").WritableSignal<AXConversationMessage<string>>;
34
+ /**
35
+ * @ignore
36
+ */
11
37
  protected replyFile: import("@angular/core").WritableSignal<AXConversationMessage<string>>;
38
+ /**
39
+ * @ignore
40
+ */
12
41
  ngOnInit(): void;
13
42
  static ɵfac: i0.ɵɵFactoryDeclaration<AXConversationTextMessageComponent, never>;
14
43
  static ɵcmp: i0.ɵɵComponentDeclaration<AXConversationTextMessageComponent, "ng-component", never, { "message": { "alias": "message"; "required": false; }; }, {}, never, never, false, never>;
@@ -1,8 +1,19 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { AXConversationMessageBaseComponent } from '../../conversation.types';
3
3
  import * as i0 from "@angular/core";
4
+ /**
5
+ * A component for displaying a video message with playback controls.
6
+ *
7
+ * @category Components
8
+ */
4
9
  export declare class AXConversationMessageVideoComponent extends AXConversationMessageBaseComponent<string> implements OnInit {
10
+ /**
11
+ * @ignore
12
+ */
5
13
  protected _videoUrl: import("@angular/core").WritableSignal<string>;
14
+ /**
15
+ * @ignore
16
+ */
6
17
  ngOnInit(): void;
7
18
  static ɵfac: i0.ɵɵFactoryDeclaration<AXConversationMessageVideoComponent, never>;
8
19
  static ɵcmp: i0.ɵɵComponentDeclaration<AXConversationMessageVideoComponent, "ax-conversation-message-video", never, {}, {}, never, never, false, never>;
@@ -3,26 +3,98 @@ import { WritableSignal } from '@angular/core';
3
3
  import { AXConversationViewComponent } from '../../conversation-view/conversation-view.component';
4
4
  import { AXConversationMessageBaseComponent } from '../../conversation.types';
5
5
  import * as i0 from "@angular/core";
6
+ /**
7
+ * A component for displaying and handling audio messages in a conversation.
8
+ *
9
+ * @category Components
10
+ */
6
11
  export declare class AXConversationVoiceMessageComponent extends AXConversationMessageBaseComponent<string> {
12
+ /**
13
+ * @ignore
14
+ */
7
15
  audio: AXAudioWaveComponent;
16
+ /**
17
+ * @ignore
18
+ */
8
19
  config: AXWaveConfig;
20
+ /**
21
+ * @ignore
22
+ */
9
23
  audioState: WritableSignal<'playing' | 'paused' | 'loading' | 'ready' | 'error'>;
24
+ /**
25
+ * @ignore
26
+ */
10
27
  parent: AXConversationViewComponent;
28
+ /**
29
+ * @ignore
30
+ */
11
31
  selectedRate: WritableSignal<number>;
32
+ /**
33
+ * @ignore
34
+ */
12
35
  selectedRateIndex: WritableSignal<number>;
36
+ /**
37
+ * @ignore
38
+ */
13
39
  protected audioProgress: WritableSignal<number>;
40
+ /**
41
+ * @ignore
42
+ */
14
43
  protected timeLeft: WritableSignal<number>;
44
+ /**
45
+ * @ignore
46
+ */
15
47
  protected currentTime: WritableSignal<number>;
48
+ /**
49
+ * @ignore
50
+ */
16
51
  protected duration: WritableSignal<number>;
52
+ /**
53
+ * @ignore
54
+ */
17
55
  constructor();
56
+ /**
57
+ * @ignore
58
+ */
18
59
  setWaveColor(): void;
60
+ /**
61
+ * Pauses the audio playback and updates the audio state to 'paused'.
62
+ * @ignore
63
+ */
19
64
  handlePauseClick(): void;
65
+ /**
66
+ * Plays the audio and updates the audio state to 'playing'.
67
+ * @ignore
68
+ */
20
69
  handlePlayClick(): void;
70
+ /**
71
+ * Updates audio state and progress based on status changes from the audio wave.
72
+ * @param e - The event containing status and data related to the audio.
73
+ * @ignore
74
+ */
21
75
  handleOnStatusChanged(e: AXAudioWaveChangeEvent): void;
76
+ /**
77
+ * @ignore
78
+ */
22
79
  handleLoadingProgress(): void;
80
+ /**
81
+ * Handles the cancellation of a loading operation.
82
+ * @ignore
83
+ */
23
84
  handleCancelLoading(): void;
85
+ /**
86
+ * Reloads the audio and updates the state to 'loading'.
87
+ * @ignore
88
+ */
24
89
  handleReloadClick(): void;
90
+ /**
91
+ * Cycles through predefined audio playback rates and updates the rate.
92
+ * @ignore
93
+ */
25
94
  handleRateClick(): void;
95
+ /**
96
+ * @ignore
97
+ */
26
98
  get __hostClass(): string;
27
99
  static ɵfac: i0.ɵɵFactoryDeclaration<AXConversationVoiceMessageComponent, never>;
28
100
  static ɵcmp: i0.ɵɵComponentDeclaration<AXConversationVoiceMessageComponent, "ax-conversation-message-audio", never, { "message": { "alias": "message"; "required": false; }; }, {}, never, never, false, never>;
@@ -4,12 +4,34 @@ import { AXConversationActionEvent } from '../classes/events.interface';
4
4
  import { AXConversationMessage } from '../conversation.types';
5
5
  import { AXConversationService } from '../services/conversation.service';
6
6
  import * as i0 from "@angular/core";
7
+ /**
8
+ * Displays the conversation view with messages and interactions.
9
+ *
10
+ * @category Components
11
+ */
7
12
  export declare class AXConversationViewComponent extends MXBaseComponent {
13
+ /**
14
+ * @ignore
15
+ */
8
16
  conversationService: AXConversationService;
17
+ /**
18
+ * Emits an event when an action is performed within the conversation view.
19
+ *
20
+ * @event
21
+ */
9
22
  onAction: import("@angular/core").OutputEmitterRef<AXConversationActionEvent>;
23
+ /**
24
+ * @ignore
25
+ */
10
26
  protected conversations: Signal<AXConversationMessage<any>[]>;
11
27
  viewRef: ViewContainerRef;
28
+ /**
29
+ * @ignore
30
+ */
12
31
  constructor();
32
+ /**
33
+ * @ignore
34
+ */
13
35
  scrollIntoEndOfView(): void;
14
36
  static ɵfac: i0.ɵɵFactoryDeclaration<AXConversationViewComponent, never>;
15
37
  static ɵcmp: i0.ɵɵComponentDeclaration<AXConversationViewComponent, "ax-conversation-view", never, {}, { "onAction": "onAction"; }, never, never, false, never>;
@@ -47,8 +47,17 @@ export declare abstract class AXDataPagerParentComponent {
47
47
  export declare abstract class AXDataPagerChild extends MXInteractiveComponent {
48
48
  protected _parent: AXDataPagerParentComponent;
49
49
  protected _unsubscriber: AXUnsubscriber;
50
+ /**
51
+ * @ignore
52
+ */
50
53
  constructor();
54
+ /**
55
+ * @ignore
56
+ */
51
57
  ngAfterViewInit(): void;
58
+ /**
59
+ * @ignore
60
+ */
52
61
  protected abstract applyParent(): void;
53
62
  static ɵfac: i0.ɵɵFactoryDeclaration<AXDataPagerChild, never>;
54
63
  static ɵprov: i0.ɵɵInjectableDeclaration<AXDataPagerChild>;
@@ -1,10 +1,24 @@
1
1
  import { AXTranslationService } from '@acorex/core/translation';
2
2
  import { AXDataPagerChild } from './data-pager-base.component';
3
3
  import * as i0 from "@angular/core";
4
+ /**
5
+ * Displays formatted and translated information text for a data pager component.
6
+ *
7
+ * @category Components
8
+ */
4
9
  export declare class AXDataPagerInfoComponent extends AXDataPagerChild {
10
+ /**
11
+ * The text to be displayed in the data pager info component.
12
+ */
5
13
  text: string;
14
+ /**
15
+ * @ignore
16
+ */
6
17
  protected _textFormatted: string;
7
18
  protected translateService: AXTranslationService;
19
+ /**
20
+ * @ignore
21
+ */
8
22
  protected applyParent(): void;
9
23
  static ɵfac: i0.ɵɵFactoryDeclaration<AXDataPagerInfoComponent, never>;
10
24
  static ɵcmp: i0.ɵɵComponentDeclaration<AXDataPagerInfoComponent, "ax-data-pager-info", never, { "text": { "alias": "text"; "required": false; }; }, {}, never, never, false, never>;
@@ -1,10 +1,27 @@
1
1
  import { AXValueChangedEvent } from '@acorex/components/common';
2
2
  import { AXDataPagerChild } from './data-pager-base.component';
3
3
  import * as i0 from "@angular/core";
4
+ /**
5
+ * Provides an input selector for navigating pages in a data pager component.
6
+ *
7
+ * @category Components
8
+ */
4
9
  export declare class AXDataPagerInputSelectorComponent extends AXDataPagerChild {
10
+ /**
11
+ * @ignore
12
+ */
5
13
  protected _totalPages: number;
14
+ /**
15
+ * @ignore
16
+ */
6
17
  protected _currentPage: number;
18
+ /**
19
+ * @ignore
20
+ */
7
21
  protected applyParent(): void;
22
+ /**
23
+ * @ignore
24
+ */
8
25
  protected _handleValueChanged(e: AXValueChangedEvent<number>): void;
9
26
  static ɵfac: i0.ɵɵFactoryDeclaration<AXDataPagerInputSelectorComponent, never>;
10
27
  static ɵcmp: i0.ɵɵComponentDeclaration<AXDataPagerInputSelectorComponent, "ax-data-pager-input-selector", never, {}, {}, never, never, false, never>;
@@ -1,11 +1,31 @@
1
1
  import { AXClickEvent } from '@acorex/components/common';
2
2
  import { AXDataPagerChild } from './data-pager-base.component';
3
3
  import * as i0 from "@angular/core";
4
+ /**
5
+ * Provides buttons for navigating to the next and last pages in a data pager component.
6
+ *
7
+ * @category Components
8
+ */
4
9
  export declare class AXDataPagerNextButtonsComponent extends AXDataPagerChild {
10
+ /**
11
+ * @ignore
12
+ */
5
13
  protected rtl: boolean;
14
+ /**
15
+ * @ignore
16
+ */
6
17
  ngOnInit(): void;
18
+ /**
19
+ * @ignore
20
+ */
7
21
  protected applyParent(): void;
22
+ /**
23
+ * @ignore
24
+ */
8
25
  _emitOnLastPageClick(e: AXClickEvent): void;
26
+ /**
27
+ * @ignore
28
+ */
9
29
  _emitOnNextPageClick(e: AXClickEvent): void;
10
30
  static ɵfac: i0.ɵɵFactoryDeclaration<AXDataPagerNextButtonsComponent, never>;
11
31
  static ɵcmp: i0.ɵɵComponentDeclaration<AXDataPagerNextButtonsComponent, "ax-data-pager-next-buttons", never, {}, {}, never, never, false, never>;
@@ -1,13 +1,27 @@
1
1
  import { AXButtonItem } from '@acorex/components/button';
2
2
  import { AXDataPagerChild } from './data-pager-base.component';
3
3
  import * as i0 from "@angular/core";
4
+ /**
5
+ * Component that provides numeric page selection controls for a data pager.
6
+ *
7
+ * @category Components
8
+ */
4
9
  export declare class AXDataPagerNumericSelectorComponent extends AXDataPagerChild {
5
10
  _items: AXButtonItem[];
6
11
  _currentPage: number;
7
12
  _lastPage: number;
8
13
  _loading: boolean;
14
+ /**
15
+ * @ignore
16
+ */
9
17
  private _displayCount;
18
+ /**
19
+ * @ignore
20
+ */
10
21
  protected applyParent(): void;
22
+ /**
23
+ * @ignore
24
+ */
11
25
  _handleOnItemClick(e: any): void;
12
26
  static ɵfac: i0.ɵɵFactoryDeclaration<AXDataPagerNumericSelectorComponent, never>;
13
27
  static ɵcmp: i0.ɵɵComponentDeclaration<AXDataPagerNumericSelectorComponent, "ax-data-pager-numeric-selector", never, {}, {}, never, never, false, never>;
@@ -1,13 +1,41 @@
1
1
  import { AXClickEvent } from '@acorex/components/common';
2
2
  import { AXDataPagerChild } from './data-pager-base.component';
3
3
  import * as i0 from "@angular/core";
4
+ /**
5
+ * Displays a button to select page sizes for data pagination.
6
+ *
7
+ * @category Components
8
+ */
4
9
  export declare class AXDataPagerPageSizesComponent extends AXDataPagerChild {
10
+ /**
11
+ * @ignore
12
+ */
5
13
  _size: number;
14
+ /**
15
+ * @ignore
16
+ */
6
17
  _items: any[];
18
+ /**
19
+ * @ignore
20
+ */
7
21
  private _sizes;
22
+ /**
23
+ * Gets the list of page sizes available for selection.
24
+ */
8
25
  get sizes(): number[];
26
+ /**
27
+ * Sets the list of page sizes available for selection.
28
+ *
29
+ * @param value - An array of numbers representing the page sizes to be set.
30
+ */
9
31
  set sizes(v: number[]);
32
+ /**
33
+ * @ignore
34
+ */
10
35
  protected applyParent(): void;
36
+ /**
37
+ * @ignore
38
+ */
11
39
  _emitOnItemClick(e: AXClickEvent): void;
12
40
  static ɵfac: i0.ɵɵFactoryDeclaration<AXDataPagerPageSizesComponent, never>;
13
41
  static ɵcmp: i0.ɵɵComponentDeclaration<AXDataPagerPageSizesComponent, "ax-data-pager-page-sizes", never, { "sizes": { "alias": "sizes"; "required": false; }; }, {}, never, never, false, never>;
@@ -1,11 +1,31 @@
1
1
  import { AXClickEvent } from '@acorex/components/common';
2
2
  import { AXDataPagerChild } from './data-pager-base.component';
3
3
  import * as i0 from "@angular/core";
4
+ /**
5
+ * Component that provides navigation buttons for going to the previous page and the first page in a data pager.
6
+ *
7
+ * @category Components
8
+ */
4
9
  export declare class AXDataPagerPrevButtonsComponent extends AXDataPagerChild {
10
+ /**
11
+ * @ignore
12
+ */
5
13
  protected rtl: boolean;
14
+ /**
15
+ * @ignore
16
+ */
6
17
  ngOnInit(): void;
18
+ /**
19
+ * @ignore
20
+ */
7
21
  protected applyParent(): void;
22
+ /**
23
+ * @ignore
24
+ */
8
25
  _emitOnFirstPageClick(e: AXClickEvent): void;
26
+ /**
27
+ * @ignore
28
+ */
9
29
  _emitOnPrevPageClick(e: AXClickEvent): void;
10
30
  static ɵfac: i0.ɵɵFactoryDeclaration<AXDataPagerPrevButtonsComponent, never>;
11
31
  static ɵcmp: i0.ɵɵComponentDeclaration<AXDataPagerPrevButtonsComponent, "ax-data-pager-prev-buttons", never, {}, {}, never, never, false, never>;
@@ -3,36 +3,147 @@ import { EventEmitter } from '@angular/core';
3
3
  import { AXDataPagerChangedEvent, AXDataPagerData } from './data-pager-base.component';
4
4
  import * as i0 from "@angular/core";
5
5
  export type AXDataPagerMode = 'full' | 'compact' | 'custom';
6
+ /**
7
+ * Component for managing and displaying data pagination controls.
8
+ *
9
+ * @category Components
10
+ */
6
11
  export declare class AXDataPagerComponent extends MXValueComponent<number> {
7
12
  private _parent;
13
+ /**
14
+ * @ignore
15
+ */
8
16
  private _isLoading;
17
+ /**
18
+ * Indicates whether the component is currently loading.
19
+ *
20
+ */
9
21
  get isLoading(): boolean;
22
+ /**
23
+ * Sets the loading state of the component.
24
+ *
25
+ * @param v - The loading state to be set.
26
+ */
10
27
  set isLoading(v: boolean);
28
+ /**
29
+ * @ignore
30
+ */
11
31
  private _size;
32
+ /**
33
+ * Gets the number of items per page in the data pager.
34
+ */
12
35
  get size(): number;
36
+ /**
37
+ * Sets the number of items per page and updates the data pager accordingly.
38
+ *
39
+ * @param {number} v - The new number of items per page.
40
+ */
13
41
  set size(v: number);
42
+ /**
43
+ * @ignore
44
+ */
14
45
  private _total;
46
+ /**
47
+ * Gets the total number of items.
48
+ */
15
49
  get total(): number;
50
+ /**
51
+ * Sets the total number of items and triggers an update event if the value changes.
52
+ *
53
+ * @param v - The total number of items to set.
54
+ * If the value is non-positive, it defaults to 0.
55
+ */
16
56
  set total(v: number);
57
+ /**
58
+ * @ignore
59
+ */
17
60
  private _totalPages;
61
+ /**
62
+ * Gets the total number of pages.
63
+ */
18
64
  get totalPages(): number;
65
+ /**
66
+ * Sets the total number of pages.
67
+ *
68
+ * @param value - The total number of pages to set.
69
+ */
19
70
  private set totalPages(value);
71
+ /**
72
+ * Emitted when the display mode changes.
73
+ * @event
74
+ * An event containing the new display mode.
75
+ */
20
76
  displayModeChange: EventEmitter<string>;
77
+ /**
78
+ * @ignore
79
+ */
21
80
  private _displayMode;
81
+ /**
82
+ * Gets the current display mode of the data pager.
83
+ */
22
84
  get displayMode(): AXDataPagerMode;
85
+ /**
86
+ * Sets the display mode of the data pager and emits a change event.
87
+ *
88
+ * @param v - The new display mode to set, of type `AXDataPagerMode`.
89
+ */
23
90
  set displayMode(v: AXDataPagerMode);
91
+ /**
92
+ * Emitted when the data pager's state changes.
93
+ * @event
94
+ * An event containing details about the change.
95
+ */
24
96
  onChanged: EventEmitter<AXDataPagerChangedEvent>;
97
+ /**
98
+ * @ignore
99
+ */
25
100
  constructor(_parent: AXPagedComponent);
101
+ /**
102
+ * @ignore
103
+ */
26
104
  ngAfterViewInit(): void;
105
+ /**
106
+ * @ignore
107
+ */
27
108
  protected internalValueChanged(value: any): void;
109
+ /**
110
+ * @ignore
111
+ */
28
112
  protected internalGetValue(value: any): number;
113
+ /**
114
+ * @ignore
115
+ */
29
116
  private previousDisplayInfo;
30
117
  get displayInfo(): AXDataPagerData;
118
+ /**
119
+ * @ignore
120
+ */
31
121
  private _emitChangedEvent;
122
+ /**
123
+ * Navigates to the next page, or to the last page if on the final page.
124
+ * @ignore
125
+ */
32
126
  goNextPage(): void;
127
+ /**
128
+ * Navigates to the last page.
129
+ * @ignore
130
+ */
33
131
  goLastPage(): void;
132
+ /**
133
+ * Navigates to the first page.
134
+ * @ignore
135
+ */
34
136
  goFirstPage(): void;
137
+ /**
138
+ * Navigates to the previous page, or to the first page if on the initial page.
139
+ * @ignore
140
+ */
35
141
  goPrevPage(): void;
142
+ /**
143
+ * Navigates to a specified page.
144
+ * @param page - The page number to navigate to.
145
+ * @ignore
146
+ */
36
147
  goToPage(page: number): void;
37
148
  static ɵfac: i0.ɵɵFactoryDeclaration<AXDataPagerComponent, [{ optional: true; }]>;
38
149
  static ɵcmp: i0.ɵɵComponentDeclaration<AXDataPagerComponent, "ax-data-pager", never, { "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "size": { "alias": "size"; "required": false; }; "total": { "alias": "total"; "required": false; }; "displayMode": { "alias": "displayMode"; "required": false; }; }, { "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; "disabledChange": "disabledChange"; "readonlyChange": "readonlyChange"; "displayModeChange": "displayModeChange"; "onChanged": "onChanged"; }, never, ["ax-prefix", "ax-suffix"], false, never>;
@@ -2,23 +2,81 @@ import { AXFormatOptions } from '@acorex/core/format';
2
2
  import { TemplateRef } from '@angular/core';
3
3
  import { AXDataTableColumnComponent } from './data-table-column';
4
4
  import * as i0 from "@angular/core";
5
+ /**
6
+ * Component for a text column in a data table, supporting header, cell, and footer templates.
7
+ *
8
+ * @category Components
9
+ */
5
10
  export declare class AXDataTableTextColumnComponent extends AXDataTableColumnComponent {
11
+ /**
12
+ * Defines the data field to display in the column.
13
+ */
6
14
  dataField: string;
15
+ /**
16
+ * Toggles text wrapping in the cell.
17
+ *
18
+ * @defaultValue false
19
+ */
7
20
  wrapText: boolean;
21
+ /**
22
+ * Provides a custom template for rendering cells within the column.
23
+ */
8
24
  cellTemplate: TemplateRef<unknown>;
25
+ /**
26
+ * @ignore
27
+ */
9
28
  private _contentCellTemplate;
29
+ /**
30
+ * Returns the template used for rendering cells.
31
+ * Falls back to a default template if no custom template is provided.
32
+ */
10
33
  get renderCellTemplate(): TemplateRef<unknown>;
34
+ /**
35
+ * Template used for rendering the footer of the column.
36
+ */
11
37
  footerTemplate: TemplateRef<unknown>;
38
+ /**
39
+ * @ignore
40
+ */
12
41
  private _contentFooterTemplate;
42
+ /**
43
+ * Returns the template used for rendering the column footer,
44
+ * falling back to a default if not provided.
45
+ */
13
46
  get renderFooterTemplate(): TemplateRef<unknown>;
47
+ /**
48
+ * Defines the template for rendering the column header.
49
+ */
14
50
  headerTemplate: TemplateRef<unknown>;
51
+ /**
52
+ * @ignore
53
+ */
15
54
  private _contentHeaderTemplate;
55
+ /**
56
+ * Retrieves the template used for rendering the column header.
57
+ * Falls back to a default template if none is provided.
58
+ */
16
59
  get renderHeaderTemplate(): TemplateRef<unknown>;
60
+ /**
61
+ * Indicates whether loading functionality is enabled.
62
+ */
17
63
  get loadingEnabled(): boolean;
64
+ /**
65
+ * Generates a unique name based on the `dataField` value.
66
+ */
18
67
  get name(): string;
68
+ /**
69
+ * @ignore
70
+ */
19
71
  private formatService;
20
72
  protected getDisplayText(rowData: unknown, dataField: string): string;
73
+ /**
74
+ * Defines the format string for displaying values in the component.
75
+ */
21
76
  format: string;
77
+ /**
78
+ * Provides additional options for formatting values.
79
+ */
22
80
  formatOptions: AXFormatOptions;
23
81
  static ɵfac: i0.ɵɵFactoryDeclaration<AXDataTableTextColumnComponent, never>;
24
82
  static ɵcmp: i0.ɵɵComponentDeclaration<AXDataTableTextColumnComponent, "ax-text-column", never, { "width": { "alias": "width"; "required": false; }; "caption": { "alias": "caption"; "required": false; }; "allowSorting": { "alias": "allowSorting"; "required": false; }; "allowResizing": { "alias": "allowResizing"; "required": false; }; "fixed": { "alias": "fixed"; "required": false; }; "dataField": { "alias": "dataField"; "required": false; }; "wrapText": { "alias": "wrapText"; "required": false; }; "cellTemplate": { "alias": "cellTemplate"; "required": false; }; "footerTemplate": { "alias": "footerTemplate"; "required": false; }; "headerTemplate": { "alias": "headerTemplate"; "required": false; }; "format": { "alias": "format"; "required": false; }; "formatOptions": { "alias": "formatOptions"; "required": false; }; }, {}, never, never, false, never>;