@acorex/components 7.1.52 → 7.2.1

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 (1071) hide show
  1. package/README.md +3 -20
  2. package/action-sheet/README.md +3 -0
  3. package/action-sheet/index.d.ts +4 -5
  4. package/alert/README.md +3 -0
  5. package/alert/index.d.ts +2 -5
  6. package/avatar/README.md +3 -0
  7. package/avatar/index.d.ts +3 -5
  8. package/badge/README.md +3 -0
  9. package/badge/index.d.ts +2 -5
  10. package/breadcrumbs/README.md +3 -0
  11. package/breadcrumbs/index.d.ts +4 -5
  12. package/breadcrumbs/lib/breadcrumbs-item.component.d.ts +80 -0
  13. package/button/README.md +3 -0
  14. package/button/index.d.ts +5 -5
  15. package/button/lib/button-group.component.d.ts +86 -0
  16. package/button/lib/button-item.component.d.ts +82 -0
  17. package/calendar/README.md +3 -0
  18. package/calendar/index.d.ts +4 -5
  19. package/calendar/lib/calendar.class.d.ts +81 -0
  20. package/checkbox/README.md +3 -0
  21. package/checkbox/index.d.ts +2 -5
  22. package/chips/README.md +3 -0
  23. package/chips/index.d.ts +2 -5
  24. package/chips/lib/chips.component.d.ts +71 -0
  25. package/collapse/README.md +3 -0
  26. package/collapse/index.d.ts +3 -5
  27. package/color-palette/README.md +3 -0
  28. package/color-palette/index.d.ts +7 -5
  29. package/color-picker/README.md +3 -0
  30. package/color-picker/index.d.ts +2 -5
  31. package/color-picker/lib/color-picker.component.d.ts +197 -0
  32. package/common/README.md +3 -0
  33. package/common/index.d.ts +22 -5
  34. package/common/lib/components/button-base-component.class.d.ts +36 -0
  35. package/common/lib/components/interactive-component.class.d.ts +37 -0
  36. package/common/lib/components/look-component.class.d.ts +15 -0
  37. package/context-menu/README.md +3 -0
  38. package/context-menu/index.d.ts +2 -5
  39. package/data-pager/README.md +3 -0
  40. package/data-pager/index.d.ts +9 -5
  41. package/data-pager/lib/data-pager-input-selector.component.d.ts +15 -0
  42. package/data-table/README.md +3 -0
  43. package/data-table/index.d.ts +4 -5
  44. package/date-picker/README.md +3 -0
  45. package/date-picker/index.d.ts +2 -5
  46. package/decorators/README.md +3 -0
  47. package/decorators/index.d.ts +14 -5
  48. package/dialog/README.md +3 -0
  49. package/dialog/index.d.ts +4 -5
  50. package/drawer/README.md +3 -0
  51. package/drawer/index.d.ts +3 -5
  52. package/dropdown/README.md +3 -0
  53. package/dropdown/index.d.ts +2 -5
  54. package/esm2022/acorex-components.mjs +2 -2
  55. package/esm2022/action-sheet/acorex-components-action-sheet.mjs +2 -2
  56. package/esm2022/action-sheet/index.mjs +5 -0
  57. package/esm2022/action-sheet/lib/action-sheet.component.mjs +78 -0
  58. package/esm2022/action-sheet/lib/action-sheet.interface.mjs +3 -0
  59. package/esm2022/action-sheet/lib/action-sheet.module.mjs +26 -0
  60. package/esm2022/action-sheet/lib/action-sheet.service.mjs +88 -0
  61. package/esm2022/alert/acorex-components-alert.mjs +2 -2
  62. package/esm2022/alert/index.mjs +3 -0
  63. package/esm2022/alert/lib/alert.component.mjs +191 -0
  64. package/esm2022/alert/lib/alert.module.mjs +22 -0
  65. package/esm2022/avatar/acorex-components-avatar.mjs +2 -2
  66. package/esm2022/avatar/index.mjs +4 -0
  67. package/esm2022/avatar/lib/avatar-group.component.mjs +16 -0
  68. package/esm2022/avatar/lib/avatar.component.mjs +36 -0
  69. package/esm2022/avatar/lib/avatar.module.mjs +22 -0
  70. package/esm2022/badge/acorex-components-badge.mjs +2 -2
  71. package/esm2022/badge/index.mjs +3 -0
  72. package/esm2022/badge/lib/badge.component.mjs +26 -0
  73. package/esm2022/badge/lib/badge.module.mjs +19 -0
  74. package/esm2022/breadcrumbs/acorex-components-breadcrumbs.mjs +2 -2
  75. package/esm2022/breadcrumbs/index.mjs +5 -0
  76. package/esm2022/breadcrumbs/lib/breadcrumbs-item.class.mjs +2 -0
  77. package/esm2022/breadcrumbs/lib/breadcrumbs-item.component.mjs +46 -0
  78. package/esm2022/breadcrumbs/lib/breadcrumbs.component.mjs +19 -0
  79. package/esm2022/breadcrumbs/lib/breadcrumbs.module.mjs +20 -0
  80. package/esm2022/button/acorex-components-button.mjs +2 -2
  81. package/esm2022/button/index.mjs +6 -0
  82. package/esm2022/button/lib/button-group.component.mjs +88 -0
  83. package/esm2022/button/lib/button-item.class.mjs +2 -0
  84. package/esm2022/button/lib/button-item.component.mjs +77 -0
  85. package/esm2022/button/lib/button.component.mjs +64 -0
  86. package/esm2022/button/lib/button.module.mjs +32 -0
  87. package/esm2022/calendar/acorex-components-calendar.mjs +2 -2
  88. package/esm2022/calendar/index.mjs +5 -0
  89. package/esm2022/calendar/lib/calendar-range.component.mjs +175 -0
  90. package/esm2022/calendar/lib/calendar.class.mjs +233 -0
  91. package/esm2022/calendar/lib/calendar.component.mjs +417 -0
  92. package/esm2022/calendar/lib/calendar.module.mjs +23 -0
  93. package/esm2022/checkbox/acorex-components-checkbox.mjs +2 -2
  94. package/esm2022/checkbox/index.mjs +3 -0
  95. package/esm2022/checkbox/lib/checkbox.component.mjs +41 -0
  96. package/esm2022/checkbox/lib/checkbox.module.mjs +21 -0
  97. package/esm2022/chips/acorex-components-chips.mjs +2 -2
  98. package/esm2022/chips/index.mjs +3 -0
  99. package/esm2022/chips/lib/chips.component.mjs +32 -0
  100. package/esm2022/chips/lib/chips.module.mjs +19 -0
  101. package/esm2022/collapse/acorex-components-collapse.mjs +2 -2
  102. package/esm2022/collapse/index.mjs +4 -0
  103. package/esm2022/collapse/lib/collapse-group.component.mjs +53 -0
  104. package/esm2022/collapse/lib/collapse.component.mjs +45 -0
  105. package/esm2022/collapse/lib/collapse.module.mjs +20 -0
  106. package/esm2022/color-palette/acorex-components-color-palette.mjs +2 -2
  107. package/esm2022/color-palette/index.mjs +8 -0
  108. package/esm2022/color-palette/lib/color-palette-input.component.mjs +129 -0
  109. package/esm2022/color-palette/lib/color-palette-picker.component.mjs +159 -0
  110. package/esm2022/color-palette/lib/color-palette-preview.component.mjs +60 -0
  111. package/esm2022/color-palette/lib/color-palette-swatches.component.mjs +302 -0
  112. package/esm2022/color-palette/lib/color-palette.class.mjs +17 -0
  113. package/esm2022/color-palette/lib/color-palette.component.mjs +74 -0
  114. package/esm2022/color-palette/lib/color-palette.module.mjs +60 -0
  115. package/esm2022/color-picker/acorex-components-color-picker.mjs +2 -2
  116. package/esm2022/color-picker/index.mjs +3 -0
  117. package/esm2022/color-picker/lib/color-picker.component.mjs +113 -0
  118. package/esm2022/color-picker/lib/color-picker.module.mjs +61 -0
  119. package/esm2022/common/acorex-components-common.mjs +2 -2
  120. package/esm2022/common/index.mjs +23 -0
  121. package/esm2022/common/lib/classes/components.class.mjs +69 -0
  122. package/esm2022/common/lib/classes/data.class.mjs +2 -0
  123. package/esm2022/common/lib/classes/drawing.class.mjs +2 -0
  124. package/esm2022/common/lib/classes/events.class.mjs +79 -0
  125. package/esm2022/common/lib/classes/styles.class.mjs +4 -0
  126. package/esm2022/common/lib/common.module.mjs +42 -0
  127. package/esm2022/common/lib/components/base-component.class.mjs +67 -0
  128. package/esm2022/common/lib/components/button-base-component.class.mjs +80 -0
  129. package/esm2022/common/lib/components/color-component.class.mjs +27 -0
  130. package/esm2022/common/lib/components/colorlook-component.class.mjs +11 -0
  131. package/esm2022/common/lib/components/interactive-component.class.mjs +64 -0
  132. package/esm2022/common/lib/components/look-component.class.mjs +27 -0
  133. package/esm2022/common/lib/components/value-component.class.mjs +202 -0
  134. package/esm2022/common/lib/constant/positions.mjs +75 -0
  135. package/esm2022/common/lib/directives/auto-focus.directive.mjs +56 -0
  136. package/esm2022/common/lib/directives/debounce-time.directive.mjs +48 -0
  137. package/esm2022/common/lib/directives/hotkey.directive.mjs +81 -0
  138. package/esm2022/common/lib/directives/infinite-scroll.directive.mjs +63 -0
  139. package/esm2022/common/lib/directives/responsive.directive.mjs +37 -0
  140. package/esm2022/common/lib/services/custom-cdk-overlay.service.mjs +49 -0
  141. package/esm2022/common/lib/services/hotkey.service.mjs +46 -0
  142. package/esm2022/common/lib/services/overlay.service.mjs +113 -0
  143. package/esm2022/context-menu/acorex-components-context-menu.mjs +2 -2
  144. package/esm2022/context-menu/index.mjs +3 -0
  145. package/esm2022/context-menu/lib/context-menu.component.mjs +262 -0
  146. package/esm2022/context-menu/lib/context-menu.module.mjs +36 -0
  147. package/esm2022/data-pager/acorex-components-data-pager.mjs +2 -2
  148. package/esm2022/data-pager/index.mjs +10 -0
  149. package/esm2022/data-pager/lib/data-pager-base.component.mjs +38 -0
  150. package/esm2022/data-pager/lib/data-pager-info.component.mjs +53 -0
  151. package/esm2022/data-pager/lib/data-pager-input-selector.component.mjs +65 -0
  152. package/esm2022/data-pager/lib/data-pager-next-buttons.components.mjs +87 -0
  153. package/esm2022/data-pager/lib/data-pager-numeric-selector.component.mjs +130 -0
  154. package/esm2022/data-pager/lib/data-pager-pagesize-dropdown.component.mjs +95 -0
  155. package/esm2022/data-pager/lib/data-pager-prev-buttons.component.mjs +83 -0
  156. package/esm2022/data-pager/lib/data-pager.component.mjs +143 -0
  157. package/esm2022/data-pager/lib/data-pager.module.mjs +51 -0
  158. package/esm2022/data-table/acorex-components-data-table.mjs +2 -2
  159. package/esm2022/data-table/index.mjs +5 -0
  160. package/esm2022/data-table/lib/data-column-cell-template.directive.mjs +17 -0
  161. package/esm2022/data-table/lib/data-column.directive.mjs +43 -0
  162. package/esm2022/data-table/lib/data-table.component.mjs +137 -0
  163. package/esm2022/data-table/lib/data-table.module.mjs +27 -0
  164. package/esm2022/date-picker/acorex-components-date-picker.mjs +2 -2
  165. package/esm2022/date-picker/index.mjs +3 -0
  166. package/esm2022/date-picker/lib/datepicker.component.mjs +125 -0
  167. package/esm2022/date-picker/lib/datepicker.module.mjs +44 -0
  168. package/esm2022/decorators/acorex-components-decorators.mjs +2 -2
  169. package/esm2022/decorators/index.mjs +15 -0
  170. package/esm2022/decorators/lib/close-button.component.mjs +50 -0
  171. package/esm2022/decorators/lib/content.component.mjs +21 -0
  172. package/esm2022/decorators/lib/decorators.module.mjs +71 -0
  173. package/esm2022/decorators/lib/footer.component.mjs +29 -0
  174. package/esm2022/decorators/lib/form-hint.component.mjs +20 -0
  175. package/esm2022/decorators/lib/header.component.mjs +29 -0
  176. package/esm2022/decorators/lib/icon.component.mjs +29 -0
  177. package/esm2022/decorators/lib/overlay.component.mjs +22 -0
  178. package/esm2022/decorators/lib/placeholder.component.mjs +14 -0
  179. package/esm2022/decorators/lib/prefix.component.mjs +21 -0
  180. package/esm2022/decorators/lib/sub-title.component.mjs +27 -0
  181. package/esm2022/decorators/lib/suffix.component.mjs +21 -0
  182. package/esm2022/decorators/lib/text.component.mjs +21 -0
  183. package/esm2022/decorators/lib/title.component.mjs +20 -0
  184. package/esm2022/dialog/acorex-components-dialog.mjs +2 -2
  185. package/esm2022/dialog/index.mjs +5 -0
  186. package/esm2022/dialog/lib/dialog.class.mjs +2 -0
  187. package/esm2022/dialog/lib/dialog.component.mjs +52 -0
  188. package/esm2022/dialog/lib/dialog.module.mjs +27 -0
  189. package/esm2022/dialog/lib/dialog.service.mjs +152 -0
  190. package/esm2022/drawer/acorex-components-drawer.mjs +2 -2
  191. package/esm2022/drawer/index.mjs +4 -0
  192. package/esm2022/drawer/lib/drawer-container.component.mjs +37 -0
  193. package/esm2022/drawer/lib/drawer.component.mjs +140 -0
  194. package/esm2022/drawer/lib/drawer.module.mjs +22 -0
  195. package/esm2022/dropdown/acorex-components-dropdown.mjs +2 -2
  196. package/esm2022/dropdown/index.mjs +3 -0
  197. package/esm2022/dropdown/lib/dropdown-panel.component.mjs +102 -0
  198. package/esm2022/dropdown/lib/dropdown.module.mjs +25 -0
  199. package/esm2022/form/acorex-components-form.mjs +2 -2
  200. package/esm2022/form/index.mjs +7 -0
  201. package/esm2022/form/lib/form-field.component.mjs +15 -0
  202. package/esm2022/form/lib/form.component.mjs +166 -0
  203. package/esm2022/form/lib/form.module.mjs +63 -0
  204. package/esm2022/form/lib/validation-rule.widget.mjs +115 -0
  205. package/esm2022/form/lib/validation-summary.component.mjs +106 -0
  206. package/esm2022/form/lib/validation.class.mjs +2 -0
  207. package/esm2022/image/acorex-components-image.mjs +2 -2
  208. package/esm2022/image/index.mjs +3 -0
  209. package/esm2022/image/lib/image.component.mjs +76 -0
  210. package/esm2022/image/lib/image.module.mjs +19 -0
  211. package/esm2022/index.mjs +2 -0
  212. package/esm2022/label/acorex-components-label.mjs +2 -2
  213. package/esm2022/label/index.mjs +3 -0
  214. package/esm2022/label/lib/label.component.mjs +45 -0
  215. package/esm2022/label/lib/label.module.mjs +21 -0
  216. package/esm2022/loading/acorex-components-loading.mjs +2 -2
  217. package/esm2022/loading/index.mjs +6 -0
  218. package/esm2022/loading/lib/loading-spinner.component.mjs +68 -0
  219. package/esm2022/loading/lib/loading.component.mjs +64 -0
  220. package/esm2022/loading/lib/loading.directive.mjs +68 -0
  221. package/esm2022/loading/lib/loading.module.mjs +35 -0
  222. package/esm2022/loading/lib/loading.service.mjs +151 -0
  223. package/esm2022/menu/acorex-components-menu.mjs +2 -2
  224. package/esm2022/menu/index.mjs +3 -0
  225. package/esm2022/menu/lib/menu.component.mjs +346 -0
  226. package/esm2022/menu/lib/menu.module.mjs +33 -0
  227. package/esm2022/mixin/acorex-components-mixin.mjs +2 -2
  228. package/esm2022/mixin/index.mjs +18 -0
  229. package/esm2022/mixin/lib/base-components.class.mjs +109 -0
  230. package/esm2022/mixin/lib/base-menu-mixin.class.mjs +137 -0
  231. package/esm2022/mixin/lib/button-mixin.class.mjs +66 -0
  232. package/esm2022/mixin/lib/clickable-mixin.class.mjs +24 -0
  233. package/esm2022/mixin/lib/color-look-mixing.class.mjs +45 -0
  234. package/esm2022/mixin/lib/constratctor.mjs +2 -0
  235. package/esm2022/mixin/lib/datalist-component.class.mjs +157 -0
  236. package/esm2022/mixin/lib/datalist.class.mjs +3 -0
  237. package/esm2022/mixin/lib/dropdown-mixin.class.mjs +97 -0
  238. package/esm2022/mixin/lib/interactive-mixin.class.mjs +83 -0
  239. package/esm2022/mixin/lib/loading-mixin.class.mjs +18 -0
  240. package/esm2022/mixin/lib/mixin.class.mjs +26 -0
  241. package/esm2022/mixin/lib/page-component.class.mjs +11 -0
  242. package/esm2022/mixin/lib/selection-component.class.mjs +180 -0
  243. package/esm2022/mixin/lib/sizable-mixin.class.mjs +16 -0
  244. package/esm2022/mixin/lib/textbox-mixin.class.mjs +58 -0
  245. package/esm2022/mixin/lib/value-mixin.class.mjs +224 -0
  246. package/esm2022/notification/acorex-components-notification.mjs +2 -2
  247. package/esm2022/notification/index.mjs +5 -0
  248. package/esm2022/notification/lib/notification.class.mjs +2 -0
  249. package/esm2022/notification/lib/notification.component.mjs +83 -0
  250. package/esm2022/notification/lib/notification.module.mjs +23 -0
  251. package/esm2022/notification/lib/notification.service.mjs +108 -0
  252. package/esm2022/number-box/acorex-components-number-box.mjs +2 -2
  253. package/esm2022/number-box/index.mjs +3 -0
  254. package/esm2022/number-box/lib/number-box.component.mjs +248 -0
  255. package/esm2022/number-box/lib/number-box.module.mjs +35 -0
  256. package/esm2022/otp/acorex-components-otp.mjs +5 -0
  257. package/esm2022/otp/index.mjs +4 -0
  258. package/esm2022/otp/lib/otp.class.mjs +4 -0
  259. package/esm2022/otp/lib/otp.component.mjs +113 -0
  260. package/esm2022/otp/lib/otp.module.mjs +21 -0
  261. package/esm2022/page/acorex-components-page.mjs +2 -2
  262. package/esm2022/page/index.mjs +4 -0
  263. package/esm2022/page/lib/base-page.class.mjs +61 -0
  264. package/esm2022/page/lib/page.component.mjs +44 -0
  265. package/esm2022/page/lib/page.module.mjs +18 -0
  266. package/esm2022/password-box/acorex-components-password-box.mjs +2 -2
  267. package/esm2022/password-box/index.mjs +3 -0
  268. package/esm2022/password-box/lib/password-box.component.mjs +65 -0
  269. package/esm2022/password-box/lib/password-box.module.mjs +32 -0
  270. package/esm2022/popover/acorex-components-popover.mjs +2 -2
  271. package/esm2022/popover/index.mjs +4 -0
  272. package/esm2022/popover/lib/dropdown-component.class.mjs +73 -0
  273. package/esm2022/popover/lib/popover.component.mjs +264 -0
  274. package/esm2022/popover/lib/popover.module.mjs +19 -0
  275. package/esm2022/popup/acorex-components-popup.mjs +2 -2
  276. package/esm2022/popup/index.mjs +4 -0
  277. package/esm2022/popup/lib/popup.component.mjs +141 -0
  278. package/esm2022/popup/lib/popup.module.mjs +27 -0
  279. package/esm2022/popup/lib/popup.service.mjs +114 -0
  280. package/esm2022/progress-bar/acorex-components-progress-bar.mjs +2 -2
  281. package/esm2022/progress-bar/index.mjs +3 -0
  282. package/esm2022/progress-bar/lib/progress-bar.component.mjs +33 -0
  283. package/esm2022/progress-bar/lib/progress-bar.module.mjs +19 -0
  284. package/esm2022/radio/acorex-components-radio.mjs +2 -2
  285. package/esm2022/radio/index.mjs +3 -0
  286. package/esm2022/radio/lib/radio.component.mjs +39 -0
  287. package/esm2022/radio/lib/radio.module.mjs +22 -0
  288. package/esm2022/range-slider/acorex-components-range-slider.mjs +2 -2
  289. package/esm2022/range-slider/index.mjs +3 -0
  290. package/esm2022/range-slider/lib/range-slider.component.mjs +109 -0
  291. package/esm2022/range-slider/lib/range-slider.module.mjs +22 -0
  292. package/esm2022/result/acorex-components-result.mjs +2 -2
  293. package/esm2022/result/index.mjs +3 -0
  294. package/esm2022/result/lib/result.component.mjs +24 -0
  295. package/esm2022/result/lib/result.module.mjs +19 -0
  296. package/esm2022/search-box/acorex-components-search-box.mjs +2 -2
  297. package/esm2022/search-box/index.mjs +3 -0
  298. package/esm2022/search-box/lib/search-box.component.mjs +60 -0
  299. package/esm2022/search-box/lib/search-box.module.mjs +25 -0
  300. package/esm2022/select-box/acorex-components-select-box.mjs +2 -2
  301. package/esm2022/select-box/index.mjs +3 -0
  302. package/esm2022/select-box/lib/select-box.component.mjs +366 -0
  303. package/esm2022/select-box/lib/select-box.module.mjs +61 -0
  304. package/esm2022/selection-list/acorex-components-selection-list.mjs +2 -2
  305. package/esm2022/selection-list/index.mjs +3 -0
  306. package/esm2022/selection-list/lib/selection-list.component.mjs +60 -0
  307. package/esm2022/selection-list/lib/selection-list.module.mjs +24 -0
  308. package/esm2022/switch/acorex-components-switch.mjs +2 -2
  309. package/esm2022/switch/index.mjs +4 -0
  310. package/esm2022/switch/lib/switch-content.component.mjs +16 -0
  311. package/esm2022/switch/lib/switch.component.mjs +51 -0
  312. package/esm2022/switch/lib/switch.module.mjs +22 -0
  313. package/esm2022/tabs/acorex-components-tabs.mjs +2 -2
  314. package/esm2022/tabs/index.mjs +6 -0
  315. package/esm2022/tabs/lib/tab-content.directive.mjs +29 -0
  316. package/esm2022/tabs/lib/tab-item.component.mjs +142 -0
  317. package/esm2022/tabs/lib/tabs.class.mjs +4 -0
  318. package/esm2022/tabs/lib/tabs.component.mjs +108 -0
  319. package/esm2022/tabs/lib/tabs.module.mjs +25 -0
  320. package/esm2022/tag/acorex-components-tag.mjs +2 -2
  321. package/esm2022/tag/index.mjs +3 -0
  322. package/esm2022/tag/lib/tag.component.mjs +29 -0
  323. package/esm2022/tag/lib/tag.module.mjs +19 -0
  324. package/esm2022/textarea/acorex-components-textarea.mjs +2 -2
  325. package/esm2022/textarea/index.mjs +3 -0
  326. package/esm2022/textarea/lib/textarea.component.mjs +37 -0
  327. package/esm2022/textarea/lib/textarea.module.mjs +19 -0
  328. package/esm2022/textbox/acorex-components-textbox.mjs +2 -2
  329. package/esm2022/textbox/index.mjs +4 -0
  330. package/esm2022/textbox/lib/mask-options.directive.mjs +17 -0
  331. package/esm2022/textbox/lib/textbox.component.mjs +93 -0
  332. package/esm2022/textbox/lib/textbox.module.mjs +38 -0
  333. package/esm2022/time-box/acorex-components-time-box.mjs +2 -2
  334. package/esm2022/time-box/index.mjs +3 -0
  335. package/esm2022/time-box/lib/time-box.component.mjs +296 -0
  336. package/esm2022/time-box/lib/time-box.module.mjs +32 -0
  337. package/esm2022/toast/acorex-components-toast.mjs +2 -2
  338. package/esm2022/toast/index.mjs +5 -0
  339. package/esm2022/toast/lib/toast.class.mjs +2 -0
  340. package/esm2022/toast/lib/toast.component.mjs +67 -0
  341. package/esm2022/toast/lib/toast.module.mjs +22 -0
  342. package/esm2022/toast/lib/toast.service.mjs +135 -0
  343. package/esm2022/tooltip/acorex-components-tooltip.mjs +2 -2
  344. package/esm2022/tooltip/index.mjs +4 -0
  345. package/esm2022/tooltip/lib/tooltip.component.mjs +20 -0
  346. package/esm2022/tooltip/lib/tooltip.directive.mjs +158 -0
  347. package/esm2022/tooltip/lib/tooltip.module.mjs +22 -0
  348. package/esm2022/uploader/acorex-components-uploader.mjs +2 -2
  349. package/esm2022/uploader/index.mjs +3 -0
  350. package/esm2022/uploader/lib/uploader.component.mjs +99 -0
  351. package/esm2022/uploader/lib/uploader.module.mjs +20 -0
  352. package/fesm2022/acorex-components-action-sheet.mjs +20 -22
  353. package/fesm2022/acorex-components-action-sheet.mjs.map +1 -1
  354. package/fesm2022/acorex-components-alert.mjs +15 -19
  355. package/fesm2022/acorex-components-alert.mjs.map +1 -1
  356. package/fesm2022/acorex-components-avatar.mjs +22 -24
  357. package/fesm2022/acorex-components-avatar.mjs.map +1 -1
  358. package/fesm2022/acorex-components-badge.mjs +11 -8
  359. package/fesm2022/acorex-components-badge.mjs.map +1 -1
  360. package/fesm2022/acorex-components-breadcrumbs.mjs +12 -18
  361. package/fesm2022/acorex-components-breadcrumbs.mjs.map +1 -1
  362. package/fesm2022/acorex-components-button.mjs +33 -35
  363. package/fesm2022/acorex-components-button.mjs.map +1 -1
  364. package/fesm2022/acorex-components-calendar.mjs +133 -85
  365. package/fesm2022/acorex-components-calendar.mjs.map +1 -1
  366. package/fesm2022/acorex-components-checkbox.mjs +7 -8
  367. package/fesm2022/acorex-components-checkbox.mjs.map +1 -1
  368. package/fesm2022/acorex-components-chips.mjs +11 -12
  369. package/fesm2022/acorex-components-chips.mjs.map +1 -1
  370. package/fesm2022/acorex-components-collapse.mjs +24 -25
  371. package/fesm2022/acorex-components-collapse.mjs.map +1 -1
  372. package/fesm2022/acorex-components-color-palette.mjs +294 -301
  373. package/fesm2022/acorex-components-color-palette.mjs.map +1 -1
  374. package/fesm2022/acorex-components-color-picker.mjs +13 -20
  375. package/fesm2022/acorex-components-color-picker.mjs.map +1 -1
  376. package/fesm2022/acorex-components-common.mjs +838 -868
  377. package/fesm2022/acorex-components-common.mjs.map +1 -1
  378. package/fesm2022/acorex-components-context-menu.mjs +12 -22
  379. package/fesm2022/acorex-components-context-menu.mjs.map +1 -1
  380. package/fesm2022/acorex-components-data-pager.mjs +198 -110
  381. package/fesm2022/acorex-components-data-pager.mjs.map +1 -1
  382. package/fesm2022/acorex-components-data-table.mjs +40 -50
  383. package/fesm2022/acorex-components-data-table.mjs.map +1 -1
  384. package/fesm2022/acorex-components-date-picker.mjs +51 -25
  385. package/fesm2022/acorex-components-date-picker.mjs.map +1 -1
  386. package/fesm2022/acorex-components-decorators.mjs +53 -54
  387. package/fesm2022/acorex-components-decorators.mjs.map +1 -1
  388. package/fesm2022/acorex-components-dialog.mjs +11 -17
  389. package/fesm2022/acorex-components-dialog.mjs.map +1 -1
  390. package/fesm2022/acorex-components-drawer.mjs +17 -22
  391. package/fesm2022/acorex-components-drawer.mjs.map +1 -1
  392. package/fesm2022/acorex-components-dropdown.mjs +17 -20
  393. package/fesm2022/acorex-components-dropdown.mjs.map +1 -1
  394. package/fesm2022/acorex-components-form.mjs +59 -62
  395. package/fesm2022/acorex-components-form.mjs.map +1 -1
  396. package/fesm2022/acorex-components-image.mjs +18 -21
  397. package/fesm2022/acorex-components-image.mjs.map +1 -1
  398. package/fesm2022/acorex-components-label.mjs +9 -12
  399. package/fesm2022/acorex-components-label.mjs.map +1 -1
  400. package/fesm2022/acorex-components-loading.mjs +86 -88
  401. package/fesm2022/acorex-components-loading.mjs.map +1 -1
  402. package/fesm2022/acorex-components-menu.mjs +45 -32
  403. package/fesm2022/acorex-components-menu.mjs.map +1 -1
  404. package/fesm2022/acorex-components-mixin.mjs +170 -174
  405. package/fesm2022/acorex-components-mixin.mjs.map +1 -1
  406. package/fesm2022/acorex-components-notification.mjs +17 -28
  407. package/fesm2022/acorex-components-notification.mjs.map +1 -1
  408. package/fesm2022/acorex-components-number-box.mjs +42 -33
  409. package/fesm2022/acorex-components-number-box.mjs.map +1 -1
  410. package/fesm2022/acorex-components-otp.mjs +141 -0
  411. package/fesm2022/acorex-components-otp.mjs.map +1 -0
  412. package/fesm2022/acorex-components-page.mjs +17 -21
  413. package/fesm2022/acorex-components-page.mjs.map +1 -1
  414. package/fesm2022/acorex-components-password-box.mjs +25 -23
  415. package/fesm2022/acorex-components-password-box.mjs.map +1 -1
  416. package/fesm2022/acorex-components-popover.mjs +66 -68
  417. package/fesm2022/acorex-components-popover.mjs.map +1 -1
  418. package/fesm2022/acorex-components-popup.mjs +39 -48
  419. package/fesm2022/acorex-components-popup.mjs.map +1 -1
  420. package/fesm2022/acorex-components-progress-bar.mjs +9 -9
  421. package/fesm2022/acorex-components-progress-bar.mjs.map +1 -1
  422. package/fesm2022/acorex-components-radio.mjs +7 -7
  423. package/fesm2022/acorex-components-radio.mjs.map +1 -1
  424. package/fesm2022/acorex-components-range-slider.mjs +17 -25
  425. package/fesm2022/acorex-components-range-slider.mjs.map +1 -1
  426. package/fesm2022/acorex-components-result.mjs +9 -11
  427. package/fesm2022/acorex-components-result.mjs.map +1 -1
  428. package/fesm2022/acorex-components-search-box.mjs +12 -14
  429. package/fesm2022/acorex-components-search-box.mjs.map +1 -1
  430. package/fesm2022/acorex-components-select-box.mjs +42 -43
  431. package/fesm2022/acorex-components-select-box.mjs.map +1 -1
  432. package/fesm2022/acorex-components-selection-list.mjs +12 -11
  433. package/fesm2022/acorex-components-selection-list.mjs.map +1 -1
  434. package/fesm2022/acorex-components-switch.mjs +10 -13
  435. package/fesm2022/acorex-components-switch.mjs.map +1 -1
  436. package/fesm2022/acorex-components-tabs.mjs +63 -68
  437. package/fesm2022/acorex-components-tabs.mjs.map +1 -1
  438. package/fesm2022/acorex-components-tag.mjs +9 -9
  439. package/fesm2022/acorex-components-tag.mjs.map +1 -1
  440. package/fesm2022/acorex-components-textarea.mjs +18 -10
  441. package/fesm2022/acorex-components-textarea.mjs.map +1 -1
  442. package/fesm2022/acorex-components-textbox.mjs +30 -22
  443. package/fesm2022/acorex-components-textbox.mjs.map +1 -1
  444. package/fesm2022/acorex-components-time-box.mjs +38 -23
  445. package/fesm2022/acorex-components-time-box.mjs.map +1 -1
  446. package/fesm2022/acorex-components-toast.mjs +22 -24
  447. package/fesm2022/acorex-components-toast.mjs.map +1 -1
  448. package/fesm2022/acorex-components-tooltip.mjs +15 -22
  449. package/fesm2022/acorex-components-tooltip.mjs.map +1 -1
  450. package/fesm2022/acorex-components-uploader.mjs +13 -16
  451. package/fesm2022/acorex-components-uploader.mjs.map +1 -1
  452. package/fesm2022/acorex-components.mjs +1 -6
  453. package/fesm2022/acorex-components.mjs.map +1 -1
  454. package/form/README.md +3 -0
  455. package/form/index.d.ts +6 -5
  456. package/image/README.md +3 -0
  457. package/image/index.d.ts +2 -5
  458. package/image/lib/image.component.d.ts +27 -0
  459. package/index.d.ts +2 -5
  460. package/label/README.md +3 -0
  461. package/label/index.d.ts +2 -5
  462. package/loading/README.md +3 -0
  463. package/loading/index.d.ts +5 -5
  464. package/loading/lib/loading.directive.d.ts +22 -0
  465. package/menu/README.md +3 -0
  466. package/menu/index.d.ts +2 -5
  467. package/menu/lib/menu.component.d.ts +42 -0
  468. package/mixin/README.md +3 -0
  469. package/mixin/index.d.ts +17 -5
  470. package/mixin/lib/base-components.class.d.ts +84 -0
  471. package/mixin/lib/base-menu-mixin.class.d.ts +53 -0
  472. package/mixin/lib/button-mixin.class.d.ts +53 -0
  473. package/mixin/lib/clickable-mixin.class.d.ts +36 -0
  474. package/mixin/lib/color-look-mixing.class.d.ts +44 -0
  475. package/mixin/lib/datalist-component.class.d.ts +59 -0
  476. package/mixin/lib/dropdown-mixin.class.d.ts +47 -0
  477. package/mixin/lib/interactive-mixin.class.d.ts +60 -0
  478. package/mixin/lib/loading-mixin.class.d.ts +40 -0
  479. package/mixin/lib/mixin.class.d.ts +679 -0
  480. package/mixin/lib/page-component.class.d.ts +28 -0
  481. package/mixin/lib/selection-component.class.d.ts +61 -0
  482. package/mixin/lib/sizable-mixin.class.d.ts +34 -0
  483. package/mixin/lib/textbox-mixin.class.d.ts +68 -0
  484. package/mixin/lib/value-mixin.class.d.ts +63 -0
  485. package/notification/README.md +3 -0
  486. package/notification/index.d.ts +4 -5
  487. package/number-box/README.md +3 -0
  488. package/number-box/index.d.ts +2 -5
  489. package/otp/README.md +3 -0
  490. package/otp/index.d.ts +3 -0
  491. package/otp/lib/otp.class.d.ts +4 -0
  492. package/otp/lib/otp.component.d.ts +25 -0
  493. package/otp/lib/otp.module.d.ts +8 -0
  494. package/package.json +18 -34
  495. package/page/README.md +3 -0
  496. package/page/index.d.ts +3 -5
  497. package/page/lib/page.component.d.ts +14 -0
  498. package/password-box/README.md +3 -0
  499. package/password-box/index.d.ts +2 -5
  500. package/popover/README.md +3 -0
  501. package/popover/index.d.ts +3 -5
  502. package/popup/README.md +3 -0
  503. package/popup/index.d.ts +3 -5
  504. package/progress-bar/README.md +3 -0
  505. package/progress-bar/index.d.ts +2 -5
  506. package/radio/README.md +3 -0
  507. package/radio/index.d.ts +2 -5
  508. package/range-slider/README.md +3 -0
  509. package/range-slider/index.d.ts +2 -5
  510. package/result/README.md +3 -0
  511. package/result/index.d.ts +2 -5
  512. package/result/lib/result.component.d.ts +10 -0
  513. package/search-box/README.md +3 -0
  514. package/search-box/index.d.ts +2 -5
  515. package/select-box/README.md +3 -0
  516. package/select-box/index.d.ts +2 -5
  517. package/select-box/lib/select-box.module.d.ts +18 -0
  518. package/selection-list/README.md +3 -0
  519. package/selection-list/index.d.ts +2 -5
  520. package/switch/README.md +3 -0
  521. package/switch/index.d.ts +3 -5
  522. package/tabs/README.md +3 -0
  523. package/tabs/index.d.ts +5 -5
  524. package/tabs/lib/tab-item.component.d.ts +48 -0
  525. package/tag/README.md +3 -0
  526. package/tag/index.d.ts +2 -5
  527. package/textarea/README.md +3 -0
  528. package/textarea/index.d.ts +2 -5
  529. package/textbox/README.md +3 -0
  530. package/textbox/index.d.ts +3 -5
  531. package/time-box/README.md +3 -0
  532. package/time-box/index.d.ts +2 -5
  533. package/toast/README.md +3 -0
  534. package/toast/index.d.ts +4 -5
  535. package/tooltip/README.md +3 -0
  536. package/tooltip/index.d.ts +3 -5
  537. package/uploader/README.md +3 -0
  538. package/uploader/index.d.ts +2 -5
  539. package/action-sheet/public-api.d.ts +0 -4
  540. package/alert/public-api.d.ts +0 -2
  541. package/avatar/public-api.d.ts +0 -3
  542. package/badge/public-api.d.ts +0 -2
  543. package/breadcrumbs/public-api.d.ts +0 -4
  544. package/breadcrumbs/src/breadcrumbs-item.component.d.ts +0 -79
  545. package/button/public-api.d.ts +0 -5
  546. package/button/src/button-group.component.d.ts +0 -86
  547. package/button/src/button-item.component.d.ts +0 -80
  548. package/calendar/public-api.d.ts +0 -4
  549. package/calendar/src/calendar.class.d.ts +0 -81
  550. package/card/index.d.ts +0 -5
  551. package/card/public-api.d.ts +0 -2
  552. package/card/src/card.component.d.ts +0 -10
  553. package/card/src/card.module.d.ts +0 -8
  554. package/checkbox/public-api.d.ts +0 -2
  555. package/chips/public-api.d.ts +0 -2
  556. package/chips/src/chips.component.d.ts +0 -72
  557. package/collapse/public-api.d.ts +0 -3
  558. package/color-palette/public-api.d.ts +0 -7
  559. package/color-picker/public-api.d.ts +0 -2
  560. package/color-picker/src/color-picker.component.d.ts +0 -195
  561. package/common/public-api.d.ts +0 -16
  562. package/common/src/components/button-base-component.class.d.ts +0 -36
  563. package/common/src/components/index.d.ts +0 -7
  564. package/common/src/components/interactive-component.class.d.ts +0 -37
  565. package/common/src/components/look-component.class.d.ts +0 -15
  566. package/context-menu/public-api.d.ts +0 -2
  567. package/data-pager/public-api.d.ts +0 -9
  568. package/data-pager/src/data-pager-input-selector.component.d.ts +0 -15
  569. package/data-table/public-api.d.ts +0 -4
  570. package/date-picker/public-api.d.ts +0 -2
  571. package/decorators/public-api.d.ts +0 -14
  572. package/dialog/public-api.d.ts +0 -4
  573. package/drawer/public-api.d.ts +0 -3
  574. package/dropdown/public-api.d.ts +0 -2
  575. package/esm2022/action-sheet/public-api.mjs +0 -5
  576. package/esm2022/action-sheet/src/action-sheet.component.mjs +0 -79
  577. package/esm2022/action-sheet/src/action-sheet.interface.mjs +0 -3
  578. package/esm2022/action-sheet/src/action-sheet.module.mjs +0 -27
  579. package/esm2022/action-sheet/src/action-sheet.service.mjs +0 -90
  580. package/esm2022/alert/public-api.mjs +0 -3
  581. package/esm2022/alert/src/alert.component.mjs +0 -196
  582. package/esm2022/alert/src/alert.module.mjs +0 -23
  583. package/esm2022/avatar/public-api.mjs +0 -4
  584. package/esm2022/avatar/src/avatar-group.component.mjs +0 -17
  585. package/esm2022/avatar/src/avatar.component.mjs +0 -39
  586. package/esm2022/avatar/src/avatar.module.mjs +0 -23
  587. package/esm2022/badge/public-api.mjs +0 -3
  588. package/esm2022/badge/src/badge.component.mjs +0 -24
  589. package/esm2022/badge/src/badge.module.mjs +0 -20
  590. package/esm2022/breadcrumbs/public-api.mjs +0 -5
  591. package/esm2022/breadcrumbs/src/breadcrumbs-item.class.mjs +0 -2
  592. package/esm2022/breadcrumbs/src/breadcrumbs-item.component.mjs +0 -51
  593. package/esm2022/breadcrumbs/src/breadcrumbs.component.mjs +0 -22
  594. package/esm2022/breadcrumbs/src/breadcrumbs.module.mjs +0 -21
  595. package/esm2022/button/public-api.mjs +0 -6
  596. package/esm2022/button/src/button-group.component.mjs +0 -92
  597. package/esm2022/button/src/button-item.class.mjs +0 -2
  598. package/esm2022/button/src/button-item.component.mjs +0 -80
  599. package/esm2022/button/src/button.component.mjs +0 -62
  600. package/esm2022/button/src/button.module.mjs +0 -33
  601. package/esm2022/calendar/public-api.mjs +0 -5
  602. package/esm2022/calendar/src/calendar-range.component.mjs +0 -174
  603. package/esm2022/calendar/src/calendar.class.mjs +0 -231
  604. package/esm2022/calendar/src/calendar.component.mjs +0 -374
  605. package/esm2022/calendar/src/calendar.module.mjs +0 -24
  606. package/esm2022/card/acorex-components-card.mjs +0 -5
  607. package/esm2022/card/public-api.mjs +0 -3
  608. package/esm2022/card/src/card.component.mjs +0 -19
  609. package/esm2022/card/src/card.module.mjs +0 -20
  610. package/esm2022/checkbox/public-api.mjs +0 -3
  611. package/esm2022/checkbox/src/checkbox.component.mjs +0 -43
  612. package/esm2022/checkbox/src/checkbox.module.mjs +0 -22
  613. package/esm2022/chips/public-api.mjs +0 -3
  614. package/esm2022/chips/src/chips.component.mjs +0 -34
  615. package/esm2022/chips/src/chips.module.mjs +0 -20
  616. package/esm2022/collapse/public-api.mjs +0 -4
  617. package/esm2022/collapse/src/collapse-group.component.mjs +0 -53
  618. package/esm2022/collapse/src/collapse.component.mjs +0 -48
  619. package/esm2022/collapse/src/collapse.module.mjs +0 -21
  620. package/esm2022/color-palette/public-api.mjs +0 -8
  621. package/esm2022/color-palette/src/color-palette-input.component.mjs +0 -131
  622. package/esm2022/color-palette/src/color-palette-picker.component.mjs +0 -160
  623. package/esm2022/color-palette/src/color-palette-preview.component.mjs +0 -63
  624. package/esm2022/color-palette/src/color-palette-swatches.component.mjs +0 -305
  625. package/esm2022/color-palette/src/color-palette.class.mjs +0 -19
  626. package/esm2022/color-palette/src/color-palette.component.mjs +0 -76
  627. package/esm2022/color-palette/src/color-palette.module.mjs +0 -61
  628. package/esm2022/color-picker/public-api.mjs +0 -3
  629. package/esm2022/color-picker/src/color-picker.component.mjs +0 -120
  630. package/esm2022/color-picker/src/color-picker.module.mjs +0 -62
  631. package/esm2022/common/public-api.mjs +0 -17
  632. package/esm2022/common/src/classes/components.class.mjs +0 -78
  633. package/esm2022/common/src/classes/data.class.mjs +0 -2
  634. package/esm2022/common/src/classes/drawing.class.mjs +0 -2
  635. package/esm2022/common/src/classes/events.class.mjs +0 -96
  636. package/esm2022/common/src/classes/styles.class.mjs +0 -4
  637. package/esm2022/common/src/common.module.mjs +0 -43
  638. package/esm2022/common/src/components/base-component.class.mjs +0 -67
  639. package/esm2022/common/src/components/button-base-component.class.mjs +0 -69
  640. package/esm2022/common/src/components/color-component.class.mjs +0 -27
  641. package/esm2022/common/src/components/colorlook-component.class.mjs +0 -11
  642. package/esm2022/common/src/components/index.mjs +0 -8
  643. package/esm2022/common/src/components/interactive-component.class.mjs +0 -63
  644. package/esm2022/common/src/components/look-component.class.mjs +0 -27
  645. package/esm2022/common/src/components/value-component.class.mjs +0 -204
  646. package/esm2022/common/src/constant/positions.mjs +0 -75
  647. package/esm2022/common/src/directives/auto-focus.directive.mjs +0 -58
  648. package/esm2022/common/src/directives/debounce-time.directive.mjs +0 -50
  649. package/esm2022/common/src/directives/hotkey.directive.mjs +0 -83
  650. package/esm2022/common/src/directives/infinite-scroll.directive.mjs +0 -70
  651. package/esm2022/common/src/directives/responsive.directive.mjs +0 -39
  652. package/esm2022/common/src/services/custom-cdk-overlay.service.mjs +0 -52
  653. package/esm2022/common/src/services/hotkey.service.mjs +0 -48
  654. package/esm2022/common/src/services/overlay.service.mjs +0 -116
  655. package/esm2022/context-menu/public-api.mjs +0 -3
  656. package/esm2022/context-menu/src/context-menu.component.mjs +0 -271
  657. package/esm2022/context-menu/src/context-menu.module.mjs +0 -37
  658. package/esm2022/data-pager/public-api.mjs +0 -10
  659. package/esm2022/data-pager/src/data-pager-base.component.mjs +0 -37
  660. package/esm2022/data-pager/src/data-pager-info.component.mjs +0 -62
  661. package/esm2022/data-pager/src/data-pager-input-selector.component.mjs +0 -54
  662. package/esm2022/data-pager/src/data-pager-next-buttons.components.mjs +0 -67
  663. package/esm2022/data-pager/src/data-pager-numeric-selector.component.mjs +0 -99
  664. package/esm2022/data-pager/src/data-pager-pagesize-dropdown.component.mjs +0 -87
  665. package/esm2022/data-pager/src/data-pager-prev-buttons.component.mjs +0 -62
  666. package/esm2022/data-pager/src/data-pager.component.mjs +0 -147
  667. package/esm2022/data-pager/src/data-pager.module.mjs +0 -52
  668. package/esm2022/data-table/public-api.mjs +0 -5
  669. package/esm2022/data-table/src/data-column-cell-template.directive.mjs +0 -19
  670. package/esm2022/data-table/src/data-column.directive.mjs +0 -51
  671. package/esm2022/data-table/src/data-table.component.mjs +0 -140
  672. package/esm2022/data-table/src/data-table.module.mjs +0 -28
  673. package/esm2022/date-picker/public-api.mjs +0 -3
  674. package/esm2022/date-picker/src/datepicker.component.mjs +0 -100
  675. package/esm2022/date-picker/src/datepicker.module.mjs +0 -45
  676. package/esm2022/decorators/public-api.mjs +0 -15
  677. package/esm2022/decorators/src/close-button.component.mjs +0 -52
  678. package/esm2022/decorators/src/content.component.mjs +0 -22
  679. package/esm2022/decorators/src/decorators.module.mjs +0 -72
  680. package/esm2022/decorators/src/footer.component.mjs +0 -30
  681. package/esm2022/decorators/src/form-hint.component.mjs +0 -21
  682. package/esm2022/decorators/src/header.component.mjs +0 -30
  683. package/esm2022/decorators/src/icon.component.mjs +0 -31
  684. package/esm2022/decorators/src/overlay.component.mjs +0 -21
  685. package/esm2022/decorators/src/placeholder.component.mjs +0 -15
  686. package/esm2022/decorators/src/prefix.component.mjs +0 -22
  687. package/esm2022/decorators/src/sub-title.component.mjs +0 -28
  688. package/esm2022/decorators/src/suffix.component.mjs +0 -22
  689. package/esm2022/decorators/src/text.component.mjs +0 -23
  690. package/esm2022/decorators/src/title.component.mjs +0 -21
  691. package/esm2022/dialog/public-api.mjs +0 -5
  692. package/esm2022/dialog/src/dialog.class.mjs +0 -2
  693. package/esm2022/dialog/src/dialog.component.mjs +0 -56
  694. package/esm2022/dialog/src/dialog.module.mjs +0 -28
  695. package/esm2022/dialog/src/dialog.service.mjs +0 -155
  696. package/esm2022/drawer/public-api.mjs +0 -4
  697. package/esm2022/drawer/src/drawer-container.component.mjs +0 -39
  698. package/esm2022/drawer/src/drawer.component.mjs +0 -145
  699. package/esm2022/drawer/src/drawer.module.mjs +0 -23
  700. package/esm2022/dropdown/public-api.mjs +0 -3
  701. package/esm2022/dropdown/src/dropdown-panel.component.mjs +0 -106
  702. package/esm2022/dropdown/src/dropdown.module.mjs +0 -26
  703. package/esm2022/form/public-api.mjs +0 -7
  704. package/esm2022/form/src/form-field.component.mjs +0 -16
  705. package/esm2022/form/src/form.component.mjs +0 -168
  706. package/esm2022/form/src/form.module.mjs +0 -64
  707. package/esm2022/form/src/validation-rule.widget.mjs +0 -114
  708. package/esm2022/form/src/validation-summary.component.mjs +0 -110
  709. package/esm2022/form/src/validation.class.mjs +0 -2
  710. package/esm2022/image/public-api.mjs +0 -3
  711. package/esm2022/image/src/image.component.mjs +0 -80
  712. package/esm2022/image/src/image.module.mjs +0 -20
  713. package/esm2022/label/public-api.mjs +0 -3
  714. package/esm2022/label/src/label.component.mjs +0 -49
  715. package/esm2022/label/src/label.module.mjs +0 -22
  716. package/esm2022/loading/public-api.mjs +0 -6
  717. package/esm2022/loading/src/loading-spinner.component.mjs +0 -70
  718. package/esm2022/loading/src/loading.component.mjs +0 -56
  719. package/esm2022/loading/src/loading.directive.mjs +0 -77
  720. package/esm2022/loading/src/loading.module.mjs +0 -36
  721. package/esm2022/loading/src/loading.service.mjs +0 -153
  722. package/esm2022/menu/public-api.mjs +0 -3
  723. package/esm2022/menu/src/menu.component.mjs +0 -333
  724. package/esm2022/menu/src/menu.module.mjs +0 -34
  725. package/esm2022/mixin/public-api.mjs +0 -18
  726. package/esm2022/mixin/src/base-components.class.mjs +0 -108
  727. package/esm2022/mixin/src/base-menu-mixin.class.mjs +0 -134
  728. package/esm2022/mixin/src/button-mixin.class.mjs +0 -71
  729. package/esm2022/mixin/src/clickable-mixin.class.mjs +0 -24
  730. package/esm2022/mixin/src/color-look-mixing.class.mjs +0 -45
  731. package/esm2022/mixin/src/constratctor.mjs +0 -2
  732. package/esm2022/mixin/src/datalist-component.class.mjs +0 -151
  733. package/esm2022/mixin/src/datalist.class.mjs +0 -3
  734. package/esm2022/mixin/src/dropdown-mixin.class.mjs +0 -95
  735. package/esm2022/mixin/src/interactive-mixin.class.mjs +0 -81
  736. package/esm2022/mixin/src/loading-mixin.class.mjs +0 -26
  737. package/esm2022/mixin/src/mixin.class.mjs +0 -26
  738. package/esm2022/mixin/src/page-component.class.mjs +0 -11
  739. package/esm2022/mixin/src/selection-component.class.mjs +0 -176
  740. package/esm2022/mixin/src/sizable-mixin.class.mjs +0 -22
  741. package/esm2022/mixin/src/textbox-mixin.class.mjs +0 -66
  742. package/esm2022/mixin/src/value-mixin.class.mjs +0 -220
  743. package/esm2022/notification/public-api.mjs +0 -5
  744. package/esm2022/notification/src/notification.class.mjs +0 -2
  745. package/esm2022/notification/src/notification.component.mjs +0 -93
  746. package/esm2022/notification/src/notification.module.mjs +0 -24
  747. package/esm2022/notification/src/notification.service.mjs +0 -110
  748. package/esm2022/number-box/public-api.mjs +0 -3
  749. package/esm2022/number-box/src/number-box.component.mjs +0 -240
  750. package/esm2022/number-box/src/number-box.module.mjs +0 -36
  751. package/esm2022/page/public-api.mjs +0 -4
  752. package/esm2022/page/src/base-page.class.mjs +0 -64
  753. package/esm2022/page/src/page.component.mjs +0 -47
  754. package/esm2022/page/src/page.module.mjs +0 -19
  755. package/esm2022/password-box/public-api.mjs +0 -3
  756. package/esm2022/password-box/src/password-box.component.mjs +0 -64
  757. package/esm2022/password-box/src/password-box.module.mjs +0 -33
  758. package/esm2022/picker/acorex-components-picker.mjs +0 -5
  759. package/esm2022/picker/public-api.mjs +0 -4
  760. package/esm2022/picker/src/picker-column.component.mjs +0 -21
  761. package/esm2022/picker/src/picker.component.mjs +0 -17
  762. package/esm2022/picker/src/picker.module.mjs +0 -38
  763. package/esm2022/popover/public-api.mjs +0 -4
  764. package/esm2022/popover/src/dropdown-component.class.mjs +0 -71
  765. package/esm2022/popover/src/popover.component.mjs +0 -270
  766. package/esm2022/popover/src/popover.module.mjs +0 -20
  767. package/esm2022/popup/public-api.mjs +0 -4
  768. package/esm2022/popup/src/popup.component.mjs +0 -147
  769. package/esm2022/popup/src/popup.module.mjs +0 -28
  770. package/esm2022/popup/src/popup.service.mjs +0 -117
  771. package/esm2022/progress-bar/public-api.mjs +0 -3
  772. package/esm2022/progress-bar/src/progress-bar.component.mjs +0 -34
  773. package/esm2022/progress-bar/src/progress-bar.module.mjs +0 -20
  774. package/esm2022/public-api.mjs +0 -5
  775. package/esm2022/radio/public-api.mjs +0 -3
  776. package/esm2022/radio/src/radio.component.mjs +0 -40
  777. package/esm2022/radio/src/radio.module.mjs +0 -23
  778. package/esm2022/range-slider/public-api.mjs +0 -3
  779. package/esm2022/range-slider/src/range-slider.component.mjs +0 -118
  780. package/esm2022/range-slider/src/range-slider.module.mjs +0 -23
  781. package/esm2022/rating/acorex-components-rating.mjs +0 -5
  782. package/esm2022/rating/public-api.mjs +0 -3
  783. package/esm2022/rating/src/rating.component.mjs +0 -42
  784. package/esm2022/rating/src/rating.component.module.mjs +0 -20
  785. package/esm2022/result/public-api.mjs +0 -3
  786. package/esm2022/result/src/result.component.mjs +0 -27
  787. package/esm2022/result/src/result.module.mjs +0 -20
  788. package/esm2022/search-box/public-api.mjs +0 -3
  789. package/esm2022/search-box/src/search-box.component.mjs +0 -63
  790. package/esm2022/search-box/src/search-box.module.mjs +0 -26
  791. package/esm2022/select-box/public-api.mjs +0 -3
  792. package/esm2022/select-box/src/selectbox.component.mjs +0 -367
  793. package/esm2022/select-box/src/selectbox.module.mjs +0 -62
  794. package/esm2022/selection-list/public-api.mjs +0 -3
  795. package/esm2022/selection-list/src/selection-list.component.mjs +0 -60
  796. package/esm2022/selection-list/src/selection-list.module.mjs +0 -25
  797. package/esm2022/switch/public-api.mjs +0 -4
  798. package/esm2022/switch/src/switch-content.component.mjs +0 -17
  799. package/esm2022/switch/src/switch.component.mjs +0 -55
  800. package/esm2022/switch/src/switch.module.mjs +0 -23
  801. package/esm2022/tabs/public-api.mjs +0 -6
  802. package/esm2022/tabs/src/tab-content.directive.mjs +0 -32
  803. package/esm2022/tabs/src/tab-item.component.mjs +0 -141
  804. package/esm2022/tabs/src/tabs.class.mjs +0 -6
  805. package/esm2022/tabs/src/tabs.component.mjs +0 -111
  806. package/esm2022/tabs/src/tabs.module.mjs +0 -26
  807. package/esm2022/tag/public-api.mjs +0 -3
  808. package/esm2022/tag/src/tag.component.mjs +0 -30
  809. package/esm2022/tag/src/tag.module.mjs +0 -20
  810. package/esm2022/textarea/public-api.mjs +0 -3
  811. package/esm2022/textarea/src/textarea.component.mjs +0 -30
  812. package/esm2022/textarea/src/textarea.module.mjs +0 -20
  813. package/esm2022/textbox/public-api.mjs +0 -4
  814. package/esm2022/textbox/src/mask-options.directive.mjs +0 -20
  815. package/esm2022/textbox/src/textbox.component.mjs +0 -84
  816. package/esm2022/textbox/src/textbox.module.mjs +0 -39
  817. package/esm2022/time-box/public-api.mjs +0 -3
  818. package/esm2022/time-box/src/time-box.component.mjs +0 -282
  819. package/esm2022/time-box/src/time-box.module.mjs +0 -33
  820. package/esm2022/toast/public-api.mjs +0 -5
  821. package/esm2022/toast/src/toast.class.mjs +0 -2
  822. package/esm2022/toast/src/toast.component.mjs +0 -68
  823. package/esm2022/toast/src/toast.module.mjs +0 -23
  824. package/esm2022/toast/src/toast.service.mjs +0 -137
  825. package/esm2022/tooltip/public-api.mjs +0 -4
  826. package/esm2022/tooltip/src/tooltip.component.mjs +0 -22
  827. package/esm2022/tooltip/src/tooltip.directive.mjs +0 -164
  828. package/esm2022/tooltip/src/tooltip.module.mjs +0 -23
  829. package/esm2022/tree-view/acorex-components-tree-view.mjs +0 -5
  830. package/esm2022/tree-view/public-api.mjs +0 -3
  831. package/esm2022/tree-view/src/tree-view.component.mjs +0 -108
  832. package/esm2022/tree-view/src/tree-view.module.mjs +0 -21
  833. package/esm2022/uploader/public-api.mjs +0 -3
  834. package/esm2022/uploader/src/uploader.component.mjs +0 -102
  835. package/esm2022/uploader/src/uploader.module.mjs +0 -21
  836. package/fesm2022/acorex-components-card.mjs +0 -41
  837. package/fesm2022/acorex-components-card.mjs.map +0 -1
  838. package/fesm2022/acorex-components-picker.mjs +0 -74
  839. package/fesm2022/acorex-components-picker.mjs.map +0 -1
  840. package/fesm2022/acorex-components-rating.mjs +0 -64
  841. package/fesm2022/acorex-components-rating.mjs.map +0 -1
  842. package/fesm2022/acorex-components-tree-view.mjs +0 -131
  843. package/fesm2022/acorex-components-tree-view.mjs.map +0 -1
  844. package/form/public-api.d.ts +0 -6
  845. package/image/public-api.d.ts +0 -2
  846. package/image/src/image.component.d.ts +0 -27
  847. package/label/public-api.d.ts +0 -2
  848. package/loading/public-api.d.ts +0 -5
  849. package/loading/src/loading.directive.d.ts +0 -22
  850. package/menu/public-api.d.ts +0 -2
  851. package/menu/src/menu.component.d.ts +0 -42
  852. package/mixin/public-api.d.ts +0 -17
  853. package/mixin/src/base-components.class.d.ts +0 -84
  854. package/mixin/src/base-menu-mixin.class.d.ts +0 -53
  855. package/mixin/src/button-mixin.class.d.ts +0 -53
  856. package/mixin/src/clickable-mixin.class.d.ts +0 -36
  857. package/mixin/src/color-look-mixing.class.d.ts +0 -44
  858. package/mixin/src/datalist-component.class.d.ts +0 -59
  859. package/mixin/src/dropdown-mixin.class.d.ts +0 -47
  860. package/mixin/src/interactive-mixin.class.d.ts +0 -60
  861. package/mixin/src/loading-mixin.class.d.ts +0 -40
  862. package/mixin/src/mixin.class.d.ts +0 -679
  863. package/mixin/src/page-component.class.d.ts +0 -28
  864. package/mixin/src/selection-component.class.d.ts +0 -61
  865. package/mixin/src/sizable-mixin.class.d.ts +0 -34
  866. package/mixin/src/textbox-mixin.class.d.ts +0 -66
  867. package/mixin/src/value-mixin.class.d.ts +0 -63
  868. package/notification/public-api.d.ts +0 -4
  869. package/number-box/public-api.d.ts +0 -2
  870. package/page/public-api.d.ts +0 -3
  871. package/page/src/page.component.d.ts +0 -14
  872. package/password-box/public-api.d.ts +0 -2
  873. package/picker/index.d.ts +0 -5
  874. package/picker/public-api.d.ts +0 -3
  875. package/picker/src/picker-column.component.d.ts +0 -11
  876. package/picker/src/picker.component.d.ts +0 -10
  877. package/picker/src/picker.module.d.ts +0 -14
  878. package/popover/public-api.d.ts +0 -3
  879. package/popup/public-api.d.ts +0 -3
  880. package/progress-bar/public-api.d.ts +0 -2
  881. package/public-api.d.ts +0 -1
  882. package/radio/public-api.d.ts +0 -2
  883. package/range-slider/public-api.d.ts +0 -2
  884. package/rating/index.d.ts +0 -5
  885. package/rating/public-api.d.ts +0 -2
  886. package/rating/src/rating.component.d.ts +0 -21
  887. package/rating/src/rating.component.module.d.ts +0 -8
  888. package/result/public-api.d.ts +0 -2
  889. package/result/src/result.component.d.ts +0 -12
  890. package/scss/_mixin.scss +0 -1
  891. package/scss/_variable.scss +0 -1
  892. package/scss/index.scss +0 -2
  893. package/search-box/public-api.d.ts +0 -2
  894. package/select-box/public-api.d.ts +0 -2
  895. package/select-box/src/selectbox.module.d.ts +0 -18
  896. package/selection-list/public-api.d.ts +0 -2
  897. package/switch/public-api.d.ts +0 -3
  898. package/tabs/public-api.d.ts +0 -5
  899. package/tabs/src/tab-item.component.d.ts +0 -48
  900. package/tag/public-api.d.ts +0 -2
  901. package/textarea/public-api.d.ts +0 -2
  902. package/textbox/public-api.d.ts +0 -3
  903. package/time-box/public-api.d.ts +0 -2
  904. package/toast/public-api.d.ts +0 -4
  905. package/tooltip/public-api.d.ts +0 -3
  906. package/tree-view/index.d.ts +0 -5
  907. package/tree-view/public-api.d.ts +0 -2
  908. package/tree-view/src/tree-view.component.d.ts +0 -33
  909. package/tree-view/src/tree-view.module.d.ts +0 -9
  910. package/uploader/public-api.d.ts +0 -2
  911. /package/action-sheet/{src → lib}/action-sheet.component.d.ts +0 -0
  912. /package/action-sheet/{src → lib}/action-sheet.interface.d.ts +0 -0
  913. /package/action-sheet/{src → lib}/action-sheet.module.d.ts +0 -0
  914. /package/action-sheet/{src → lib}/action-sheet.service.d.ts +0 -0
  915. /package/alert/{src → lib}/alert.component.d.ts +0 -0
  916. /package/alert/{src → lib}/alert.module.d.ts +0 -0
  917. /package/avatar/{src → lib}/avatar-group.component.d.ts +0 -0
  918. /package/avatar/{src → lib}/avatar.component.d.ts +0 -0
  919. /package/avatar/{src → lib}/avatar.module.d.ts +0 -0
  920. /package/badge/{src → lib}/badge.component.d.ts +0 -0
  921. /package/badge/{src → lib}/badge.module.d.ts +0 -0
  922. /package/breadcrumbs/{src → lib}/breadcrumbs-item.class.d.ts +0 -0
  923. /package/breadcrumbs/{src → lib}/breadcrumbs.component.d.ts +0 -0
  924. /package/breadcrumbs/{src → lib}/breadcrumbs.module.d.ts +0 -0
  925. /package/button/{src → lib}/button-item.class.d.ts +0 -0
  926. /package/button/{src → lib}/button.component.d.ts +0 -0
  927. /package/button/{src → lib}/button.module.d.ts +0 -0
  928. /package/calendar/{src → lib}/calendar-range.component.d.ts +0 -0
  929. /package/calendar/{src → lib}/calendar.component.d.ts +0 -0
  930. /package/calendar/{src → lib}/calendar.module.d.ts +0 -0
  931. /package/checkbox/{src → lib}/checkbox.component.d.ts +0 -0
  932. /package/checkbox/{src → lib}/checkbox.module.d.ts +0 -0
  933. /package/chips/{src → lib}/chips.module.d.ts +0 -0
  934. /package/collapse/{src → lib}/collapse-group.component.d.ts +0 -0
  935. /package/collapse/{src → lib}/collapse.component.d.ts +0 -0
  936. /package/collapse/{src → lib}/collapse.module.d.ts +0 -0
  937. /package/color-palette/{src → lib}/color-palette-input.component.d.ts +0 -0
  938. /package/color-palette/{src → lib}/color-palette-picker.component.d.ts +0 -0
  939. /package/color-palette/{src → lib}/color-palette-preview.component.d.ts +0 -0
  940. /package/color-palette/{src → lib}/color-palette-swatches.component.d.ts +0 -0
  941. /package/color-palette/{src → lib}/color-palette.class.d.ts +0 -0
  942. /package/color-palette/{src → lib}/color-palette.component.d.ts +0 -0
  943. /package/color-palette/{src → lib}/color-palette.module.d.ts +0 -0
  944. /package/color-picker/{src → lib}/color-picker.module.d.ts +0 -0
  945. /package/common/{src → lib}/classes/components.class.d.ts +0 -0
  946. /package/common/{src → lib}/classes/data.class.d.ts +0 -0
  947. /package/common/{src → lib}/classes/drawing.class.d.ts +0 -0
  948. /package/common/{src → lib}/classes/events.class.d.ts +0 -0
  949. /package/common/{src → lib}/classes/styles.class.d.ts +0 -0
  950. /package/common/{src → lib}/common.module.d.ts +0 -0
  951. /package/common/{src → lib}/components/base-component.class.d.ts +0 -0
  952. /package/common/{src → lib}/components/color-component.class.d.ts +0 -0
  953. /package/common/{src → lib}/components/colorlook-component.class.d.ts +0 -0
  954. /package/common/{src → lib}/components/value-component.class.d.ts +0 -0
  955. /package/common/{src → lib}/constant/positions.d.ts +0 -0
  956. /package/common/{src → lib}/directives/auto-focus.directive.d.ts +0 -0
  957. /package/common/{src → lib}/directives/debounce-time.directive.d.ts +0 -0
  958. /package/common/{src → lib}/directives/hotkey.directive.d.ts +0 -0
  959. /package/common/{src → lib}/directives/infinite-scroll.directive.d.ts +0 -0
  960. /package/common/{src → lib}/directives/responsive.directive.d.ts +0 -0
  961. /package/common/{src → lib}/services/custom-cdk-overlay.service.d.ts +0 -0
  962. /package/common/{src → lib}/services/hotkey.service.d.ts +0 -0
  963. /package/common/{src → lib}/services/overlay.service.d.ts +0 -0
  964. /package/context-menu/{src → lib}/context-menu.component.d.ts +0 -0
  965. /package/context-menu/{src → lib}/context-menu.module.d.ts +0 -0
  966. /package/data-pager/{src → lib}/data-pager-base.component.d.ts +0 -0
  967. /package/data-pager/{src → lib}/data-pager-info.component.d.ts +0 -0
  968. /package/data-pager/{src → lib}/data-pager-next-buttons.components.d.ts +0 -0
  969. /package/data-pager/{src → lib}/data-pager-numeric-selector.component.d.ts +0 -0
  970. /package/data-pager/{src → lib}/data-pager-pagesize-dropdown.component.d.ts +0 -0
  971. /package/data-pager/{src → lib}/data-pager-prev-buttons.component.d.ts +0 -0
  972. /package/data-pager/{src → lib}/data-pager.component.d.ts +0 -0
  973. /package/data-pager/{src → lib}/data-pager.module.d.ts +0 -0
  974. /package/data-table/{src → lib}/data-column-cell-template.directive.d.ts +0 -0
  975. /package/data-table/{src → lib}/data-column.directive.d.ts +0 -0
  976. /package/data-table/{src → lib}/data-table.component.d.ts +0 -0
  977. /package/data-table/{src → lib}/data-table.module.d.ts +0 -0
  978. /package/date-picker/{src → lib}/datepicker.component.d.ts +0 -0
  979. /package/date-picker/{src → lib}/datepicker.module.d.ts +0 -0
  980. /package/decorators/{src → lib}/close-button.component.d.ts +0 -0
  981. /package/decorators/{src → lib}/content.component.d.ts +0 -0
  982. /package/decorators/{src → lib}/decorators.module.d.ts +0 -0
  983. /package/decorators/{src → lib}/footer.component.d.ts +0 -0
  984. /package/decorators/{src → lib}/form-hint.component.d.ts +0 -0
  985. /package/decorators/{src → lib}/header.component.d.ts +0 -0
  986. /package/decorators/{src → lib}/icon.component.d.ts +0 -0
  987. /package/decorators/{src → lib}/overlay.component.d.ts +0 -0
  988. /package/decorators/{src → lib}/placeholder.component.d.ts +0 -0
  989. /package/decorators/{src → lib}/prefix.component.d.ts +0 -0
  990. /package/decorators/{src → lib}/sub-title.component.d.ts +0 -0
  991. /package/decorators/{src → lib}/suffix.component.d.ts +0 -0
  992. /package/decorators/{src → lib}/text.component.d.ts +0 -0
  993. /package/decorators/{src → lib}/title.component.d.ts +0 -0
  994. /package/dialog/{src → lib}/dialog.class.d.ts +0 -0
  995. /package/dialog/{src → lib}/dialog.component.d.ts +0 -0
  996. /package/dialog/{src → lib}/dialog.module.d.ts +0 -0
  997. /package/dialog/{src → lib}/dialog.service.d.ts +0 -0
  998. /package/drawer/{src → lib}/drawer-container.component.d.ts +0 -0
  999. /package/drawer/{src → lib}/drawer.component.d.ts +0 -0
  1000. /package/drawer/{src → lib}/drawer.module.d.ts +0 -0
  1001. /package/dropdown/{src → lib}/dropdown-panel.component.d.ts +0 -0
  1002. /package/dropdown/{src → lib}/dropdown.module.d.ts +0 -0
  1003. /package/form/{src → lib}/form-field.component.d.ts +0 -0
  1004. /package/form/{src → lib}/form.component.d.ts +0 -0
  1005. /package/form/{src → lib}/form.module.d.ts +0 -0
  1006. /package/form/{src → lib}/validation-rule.widget.d.ts +0 -0
  1007. /package/form/{src → lib}/validation-summary.component.d.ts +0 -0
  1008. /package/form/{src → lib}/validation.class.d.ts +0 -0
  1009. /package/image/{src → lib}/image.module.d.ts +0 -0
  1010. /package/label/{src → lib}/label.component.d.ts +0 -0
  1011. /package/label/{src → lib}/label.module.d.ts +0 -0
  1012. /package/loading/{src → lib}/loading-spinner.component.d.ts +0 -0
  1013. /package/loading/{src → lib}/loading.component.d.ts +0 -0
  1014. /package/loading/{src → lib}/loading.module.d.ts +0 -0
  1015. /package/loading/{src → lib}/loading.service.d.ts +0 -0
  1016. /package/menu/{src → lib}/menu.module.d.ts +0 -0
  1017. /package/mixin/{src → lib}/constratctor.d.ts +0 -0
  1018. /package/mixin/{src → lib}/datalist.class.d.ts +0 -0
  1019. /package/notification/{src → lib}/notification.class.d.ts +0 -0
  1020. /package/notification/{src → lib}/notification.component.d.ts +0 -0
  1021. /package/notification/{src → lib}/notification.module.d.ts +0 -0
  1022. /package/notification/{src → lib}/notification.service.d.ts +0 -0
  1023. /package/number-box/{src → lib}/number-box.component.d.ts +0 -0
  1024. /package/number-box/{src → lib}/number-box.module.d.ts +0 -0
  1025. /package/page/{src → lib}/base-page.class.d.ts +0 -0
  1026. /package/page/{src → lib}/page.module.d.ts +0 -0
  1027. /package/password-box/{src → lib}/password-box.component.d.ts +0 -0
  1028. /package/password-box/{src → lib}/password-box.module.d.ts +0 -0
  1029. /package/popover/{src → lib}/dropdown-component.class.d.ts +0 -0
  1030. /package/popover/{src → lib}/popover.component.d.ts +0 -0
  1031. /package/popover/{src → lib}/popover.module.d.ts +0 -0
  1032. /package/popup/{src → lib}/popup.component.d.ts +0 -0
  1033. /package/popup/{src → lib}/popup.module.d.ts +0 -0
  1034. /package/popup/{src → lib}/popup.service.d.ts +0 -0
  1035. /package/progress-bar/{src → lib}/progress-bar.component.d.ts +0 -0
  1036. /package/progress-bar/{src → lib}/progress-bar.module.d.ts +0 -0
  1037. /package/radio/{src → lib}/radio.component.d.ts +0 -0
  1038. /package/radio/{src → lib}/radio.module.d.ts +0 -0
  1039. /package/range-slider/{src → lib}/range-slider.component.d.ts +0 -0
  1040. /package/range-slider/{src → lib}/range-slider.module.d.ts +0 -0
  1041. /package/result/{src → lib}/result.module.d.ts +0 -0
  1042. /package/search-box/{src → lib}/search-box.component.d.ts +0 -0
  1043. /package/search-box/{src → lib}/search-box.module.d.ts +0 -0
  1044. /package/select-box/{src/selectbox.component.d.ts → lib/select-box.component.d.ts} +0 -0
  1045. /package/selection-list/{src → lib}/selection-list.component.d.ts +0 -0
  1046. /package/selection-list/{src → lib}/selection-list.module.d.ts +0 -0
  1047. /package/switch/{src → lib}/switch-content.component.d.ts +0 -0
  1048. /package/switch/{src → lib}/switch.component.d.ts +0 -0
  1049. /package/switch/{src → lib}/switch.module.d.ts +0 -0
  1050. /package/tabs/{src → lib}/tab-content.directive.d.ts +0 -0
  1051. /package/tabs/{src → lib}/tabs.class.d.ts +0 -0
  1052. /package/tabs/{src → lib}/tabs.component.d.ts +0 -0
  1053. /package/tabs/{src → lib}/tabs.module.d.ts +0 -0
  1054. /package/tag/{src → lib}/tag.component.d.ts +0 -0
  1055. /package/tag/{src → lib}/tag.module.d.ts +0 -0
  1056. /package/textarea/{src → lib}/textarea.component.d.ts +0 -0
  1057. /package/textarea/{src → lib}/textarea.module.d.ts +0 -0
  1058. /package/textbox/{src → lib}/mask-options.directive.d.ts +0 -0
  1059. /package/textbox/{src → lib}/textbox.component.d.ts +0 -0
  1060. /package/textbox/{src → lib}/textbox.module.d.ts +0 -0
  1061. /package/time-box/{src → lib}/time-box.component.d.ts +0 -0
  1062. /package/time-box/{src → lib}/time-box.module.d.ts +0 -0
  1063. /package/toast/{src → lib}/toast.class.d.ts +0 -0
  1064. /package/toast/{src → lib}/toast.component.d.ts +0 -0
  1065. /package/toast/{src → lib}/toast.module.d.ts +0 -0
  1066. /package/toast/{src → lib}/toast.service.d.ts +0 -0
  1067. /package/tooltip/{src → lib}/tooltip.component.d.ts +0 -0
  1068. /package/tooltip/{src → lib}/tooltip.directive.d.ts +0 -0
  1069. /package/tooltip/{src → lib}/tooltip.module.d.ts +0 -0
  1070. /package/uploader/{src → lib}/uploader.component.d.ts +0 -0
  1071. /package/uploader/{src → lib}/uploader.module.d.ts +0 -0
@@ -0,0 +1,197 @@
1
+ import { AXColorMode } from '@acorex/core/utils';
2
+ import { AXPlatform } from '@acorex/core/platform';
3
+ import { ChangeDetectorRef, ElementRef, NgZone } from '@angular/core';
4
+ import { AXValueChangedEvent } from '@acorex/components/common';
5
+ import { AXPopoverComponent } from '@acorex/components/popover';
6
+ import { AXBaseComponent } from '@acorex/components/mixin';
7
+ import * as i0 from "@angular/core";
8
+ export declare const AXBaseColorPickerMixin: (abstract new (...args: any[]) => {
9
+ "__#5091@#disabled": boolean;
10
+ disabled: boolean;
11
+ "__#5091@#tabIndex": number;
12
+ tabIndex: number;
13
+ onFocus: import("@angular/core").EventEmitter<import("@acorex/components/common").AXFocusEvent>;
14
+ _emitOnFocusEvent(e: FocusEvent): void;
15
+ onBlur: import("@angular/core").EventEmitter<import("@acorex/components/common").AXFocusEvent>;
16
+ _emitOnBlurEvent(e: FocusEvent): void;
17
+ focus(): void;
18
+ hasFocus(): boolean;
19
+ id: string;
20
+ "__#5088@#rtl": boolean;
21
+ rtl: boolean;
22
+ "__#5088@#elementRef": ElementRef<any>;
23
+ _cdr: ChangeDetectorRef;
24
+ _isInited: boolean;
25
+ _isRendered: boolean;
26
+ ngOnInit(): void;
27
+ ngAfterViewInit(): void;
28
+ ngOnDestroy(): void;
29
+ _getHostElement<T = HTMLElement>(): T;
30
+ _getInnerElement<T_1 = HTMLElement>(): T_1;
31
+ _onInternalInit(): void;
32
+ _onInternalViewInit(): void;
33
+ _onInternalDestroy(): void;
34
+ onInit(): void;
35
+ onViewInit(): void;
36
+ onDestroy(): void;
37
+ _applyRtl(): void;
38
+ _onOptionChanging(option: import("@acorex/components/mixin").AXComponentOptionChanging): any;
39
+ _onOptionChanged(option: import("@acorex/components/mixin").AXComponentOptionChanged): void;
40
+ _setOption(option: import("@acorex/components/mixin").AXComponentSetOption): void;
41
+ }) & (abstract new (...args: any[]) => {
42
+ readonly: boolean;
43
+ onOpened: import("@angular/core").EventEmitter<import("@acorex/components/common").AXEvent>;
44
+ onClosed: import("@angular/core").EventEmitter<import("@acorex/components/common").AXEvent>;
45
+ popover: any;
46
+ position: import("@acorex/components/common").AXConnectedPosition[];
47
+ _emitOnOpenedEvent(): void;
48
+ _emitOnClosedEvent(): void;
49
+ onInit(): void;
50
+ onViewInit(): void;
51
+ toggle(): void;
52
+ /**
53
+ * The Button is a component which detects user interaction and triggers a corresponding event
54
+ *
55
+ * @category Components
56
+ */
57
+ close(): void;
58
+ open(): void;
59
+ readonly isOpen: boolean;
60
+ id: string;
61
+ "__#5088@#rtl": boolean;
62
+ rtl: boolean;
63
+ "__#5088@#elementRef": ElementRef<any>;
64
+ _cdr: ChangeDetectorRef;
65
+ _isInited: boolean;
66
+ _isRendered: boolean;
67
+ ngOnInit(): void;
68
+ ngAfterViewInit(): void;
69
+ ngOnDestroy(): void;
70
+ _getHostElement<T_2 = HTMLElement>(): T_2;
71
+ _getInnerElement<T_1_1 = HTMLElement>(): T_1_1;
72
+ _onInternalInit(): void;
73
+ _onInternalViewInit(): void;
74
+ _onInternalDestroy(): void;
75
+ onDestroy(): void;
76
+ _applyRtl(): void;
77
+ _onOptionChanging(option: import("@acorex/components/mixin").AXComponentOptionChanging): any;
78
+ _onOptionChanged(option: import("@acorex/components/mixin").AXComponentOptionChanged): void;
79
+ _setOption(option: import("@acorex/components/mixin").AXComponentSetOption): void;
80
+ }) & (new (...args: any[]) => {
81
+ onValueChanged: import("@angular/core").EventEmitter<AXValueChangedEvent<any>>;
82
+ valueChange: import("@angular/core").EventEmitter<any>;
83
+ stateChange: import("@angular/core").EventEmitter<import("@acorex/components/mixin").AXComponentState>;
84
+ "__#5092@#readonly": boolean;
85
+ readonly: boolean;
86
+ "__#5092@#allowNull": boolean;
87
+ allowNull: boolean;
88
+ "__#5092@#name": string;
89
+ name: string;
90
+ "__#5092@#isUserInteraction": boolean;
91
+ readonly isUserInteraction: boolean;
92
+ "__#5092@#value": any;
93
+ value: any;
94
+ "__#5092@#state": import("@acorex/components/mixin").AXComponentState;
95
+ state: import("@acorex/components/mixin").AXComponentState;
96
+ _emitOnValueChangedEvent(oldValue?: any, newValue?: any): void;
97
+ _internalSetValue(value: any): any;
98
+ _internalGetValue(): any;
99
+ _setValue(value: any): any;
100
+ _getValue(value: any): any;
101
+ _setUserInteraction(): void;
102
+ _onValueChanged(oldValue: any, newValue: any): void;
103
+ _onInternalInit(): void;
104
+ _onInternalViewInit(): void;
105
+ _onInternalDestroy(): void;
106
+ clear(): void;
107
+ _checkRequired(): void;
108
+ validate(): Promise<any>;
109
+ _setState(state: import("@acorex/components/mixin").AXComponentState, ...args: any[]): void;
110
+ id: string;
111
+ "__#5088@#rtl": boolean;
112
+ rtl: boolean;
113
+ "__#5088@#elementRef": ElementRef<any>;
114
+ _cdr: ChangeDetectorRef;
115
+ _isInited: boolean;
116
+ _isRendered: boolean;
117
+ ngOnInit(): void;
118
+ ngAfterViewInit(): void;
119
+ ngOnDestroy(): void;
120
+ _getHostElement<T_3 = HTMLElement>(): T_3;
121
+ _getInnerElement<T_1_2 = HTMLElement>(): T_1_2;
122
+ onInit(): void;
123
+ onViewInit(): void;
124
+ onDestroy(): void;
125
+ _applyRtl(): void;
126
+ _onOptionChanging(option: import("@acorex/components/mixin").AXComponentOptionChanging): any;
127
+ _onOptionChanged(option: import("@acorex/components/mixin").AXComponentOptionChanged): void;
128
+ _setOption(option: import("@acorex/components/mixin").AXComponentSetOption): void;
129
+ }) & (new (...args: any[]) => {
130
+ type: string;
131
+ placeholder: string;
132
+ maxLength: number;
133
+ autoComplete: string;
134
+ onKeyDown: import("@angular/core").EventEmitter<import("@acorex/components/common").AXHtmlEvent<KeyboardEvent>>;
135
+ onKeyUp: import("@angular/core").EventEmitter<import("@acorex/components/common").AXHtmlEvent<KeyboardEvent>>;
136
+ onKeyPress: import("@angular/core").EventEmitter<import("@acorex/components/common").AXHtmlEvent<KeyboardEvent>>;
137
+ _emitOnKeydownEvent(e: KeyboardEvent): void;
138
+ _emitOnKeyupEvent(e: KeyboardEvent): void;
139
+ _emitOnKeypressEvent(e: KeyboardEvent): void;
140
+ id: string;
141
+ "__#5088@#rtl": boolean;
142
+ rtl: boolean;
143
+ "__#5088@#elementRef": ElementRef<any>;
144
+ _cdr: ChangeDetectorRef;
145
+ _isInited: boolean;
146
+ _isRendered: boolean;
147
+ ngOnInit(): void;
148
+ ngAfterViewInit(): void;
149
+ ngOnDestroy(): void;
150
+ _getHostElement<T_4 = HTMLElement>(): T_4;
151
+ _getInnerElement<T_1_3 = HTMLElement>(): T_1_3;
152
+ _onInternalInit(): void;
153
+ _onInternalViewInit(): void;
154
+ _onInternalDestroy(): void;
155
+ onInit(): void;
156
+ onViewInit(): void; /**
157
+ * @ignore
158
+ */
159
+ onDestroy(): void;
160
+ _applyRtl(): void;
161
+ _onOptionChanging(option: import("@acorex/components/mixin").AXComponentOptionChanging): any;
162
+ _onOptionChanged(option: import("@acorex/components/mixin").AXComponentOptionChanged): void;
163
+ _setOption(option: import("@acorex/components/mixin").AXComponentSetOption): void;
164
+ }) & typeof AXBaseComponent;
165
+ /**
166
+ * The Button is a component which detects user interaction and triggers a corresponding event
167
+ *
168
+ * @category Components
169
+ */
170
+ export declare class AXColorPickerComponent extends AXBaseColorPickerMixin {
171
+ protected _elementRef: ElementRef<HTMLDivElement>;
172
+ private _zone;
173
+ private _platform;
174
+ popover: AXPopoverComponent;
175
+ _target: HTMLDivElement;
176
+ _popoverTitle: string;
177
+ _popoverWidth: number;
178
+ _colorCode: string;
179
+ _mode: AXColorMode;
180
+ _isMobile: boolean;
181
+ /**
182
+ * @ignore
183
+ */
184
+ constructor(_elementRef: ElementRef<HTMLDivElement>, _cdr: ChangeDetectorRef, _zone: NgZone, _platform: AXPlatform);
185
+ _handleArrowClickEvent(e: MouseEvent): void;
186
+ _handleInputClickEvent(e: MouseEvent): void;
187
+ _handleClearClickEvent(): void;
188
+ onInit(): void;
189
+ onViewInit(): void;
190
+ _onValueChanged(oldValue: any, newValue: any): void;
191
+ _handleValueChangedEvent(e: AXValueChangedEvent<any>): void;
192
+ _handlePopupOnOpened(e: any): Promise<void>;
193
+ _handlePopupOnClosed(e: any): void;
194
+ _handleKeydown(e: KeyboardEvent): void;
195
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPickerComponent, never>;
196
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXColorPickerComponent, "ax-color-picker", never, { "isOpen": { "alias": "isOpen"; "required": false; }; "fitParent": { "alias": "fitParent"; "required": false; }; "dropdownWidth": { "alias": "dropdownWidth"; "required": false; }; "position": { "alias": "position"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "allowNull": { "alias": "allowNull"; "required": false; }; "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "type": { "alias": "type"; "required": false; }; "autoComplete": { "alias": "autoComplete"; "required": false; }; }, { "onOpened": "onOpened"; "onClosed": "onClosed"; "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; }, never, ["ax-prefix", "ax-validation-rule", "ax-suffix"], false, never>;
197
+ }
@@ -0,0 +1,3 @@
1
+ # @acorex/components/common
2
+
3
+ Secondary entry point of `@acorex/components`. It can be used by importing from `@acorex/components/common`.
package/common/index.d.ts CHANGED
@@ -1,5 +1,22 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@acorex/components/common" />
5
- export * from './public-api';
1
+ export * from './lib/classes/components.class';
2
+ export * from './lib/classes/data.class';
3
+ export * from './lib/classes/drawing.class';
4
+ export * from './lib/classes/events.class';
5
+ export * from './lib/classes/styles.class';
6
+ export * from './lib/common.module';
7
+ export * from './lib/components/base-component.class';
8
+ export * from './lib/components/button-base-component.class';
9
+ export * from './lib/components/color-component.class';
10
+ export * from './lib/components/colorlook-component.class';
11
+ export * from './lib/components/interactive-component.class';
12
+ export * from './lib/components/look-component.class';
13
+ export * from './lib/components/value-component.class';
14
+ export * from './lib/constant/positions';
15
+ export * from './lib/directives/auto-focus.directive';
16
+ export * from './lib/directives/debounce-time.directive';
17
+ export * from './lib/directives/hotkey.directive';
18
+ export * from './lib/directives/infinite-scroll.directive';
19
+ export * from './lib/directives/responsive.directive';
20
+ export * from './lib/services/custom-cdk-overlay.service';
21
+ export * from './lib/services/hotkey.service';
22
+ export * from './lib/services/overlay.service';
@@ -0,0 +1,36 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { MXColorLookComponent } from './colorlook-component.class';
3
+ import { MXInteractiveComponent } from './interactive-component.class';
4
+ declare const MXButtonBaseComponent_base: import("polytype").Polytype.ClusteredConstructor<[typeof MXInteractiveComponent, typeof MXColorLookComponent]>;
5
+ export declare class MXButtonBaseComponent extends MXButtonBaseComponent_base {
6
+ textChange: EventEmitter<string>;
7
+ private _text;
8
+ /**
9
+ * Defines the primary text to show inside the button.
10
+ */
11
+ get text(): string;
12
+ set text(v: string);
13
+ toggleableChange: EventEmitter<boolean>;
14
+ private _toggleable?;
15
+ /**
16
+ * Provides visual styling that indicates if the Button is active
17
+ */
18
+ get toggleable(): boolean;
19
+ set toggleable(value: boolean);
20
+ selectedChange: EventEmitter<boolean>;
21
+ private _selected?;
22
+ /**
23
+ * Indicates if the Button is selected or not
24
+ */
25
+ get selected(): boolean;
26
+ set selected(value: boolean);
27
+ constructor();
28
+ protected get cssClasses(): {
29
+ 'ax-button-icon': boolean;
30
+ 'ax-state-disabled': boolean;
31
+ 'ax-state-selected': boolean;
32
+ };
33
+ }
34
+ export declare const BUTTON_INPUTS: (string | string[])[];
35
+ export declare const BUTTON_OUTPUT: any[];
36
+ export {};
@@ -0,0 +1,37 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { AXFocusEvent } from '../classes/events.class';
3
+ import { MXBaseComponent } from './base-component.class';
4
+ export declare class MXInteractiveComponent extends MXBaseComponent {
5
+ private _disabled;
6
+ /**
7
+ * If set to true, it disables the component.
8
+ */
9
+ get disabled(): boolean;
10
+ set disabled(value: boolean);
11
+ _tabIndex: number;
12
+ /**
13
+ * Specifies the tabindex of the component.
14
+ */
15
+ get tabIndex(): number;
16
+ set tabIndex(value: number);
17
+ /**
18
+ * Fires each time the component gets focused.
19
+ * @event
20
+ */
21
+ onFocus: EventEmitter<AXFocusEvent>;
22
+ protected emitOnFocusEvent(e: FocusEvent): void;
23
+ /**
24
+ * Fires each time the component gets blurred.
25
+ * @event
26
+ */
27
+ onBlur: EventEmitter<AXFocusEvent>;
28
+ protected emitOnBlurEvent(e: FocusEvent): void;
29
+ constructor();
30
+ focus(): void;
31
+ /**
32
+ * Check component is focused or has any focused element.
33
+ */
34
+ hasFocus(): boolean;
35
+ }
36
+ export declare const INTERACTIVE_INPUTS: string[];
37
+ export declare const INTERACTIVE_OUTPUT: any[];
@@ -0,0 +1,15 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { AXStyleLookType } from '../classes/styles.class';
3
+ import { MXBaseComponent } from './base-component.class';
4
+ export declare class MXLookComponent extends MXBaseComponent {
5
+ constructor();
6
+ lookChange: EventEmitter<AXStyleLookType>;
7
+ private _look?;
8
+ /**
9
+ * Predefined look schemes
10
+ */
11
+ get look(): AXStyleLookType;
12
+ set look(value: AXStyleLookType);
13
+ }
14
+ export declare const LOOK_INPUTS: string[];
15
+ export declare const LOOK_OUTPUT: any[];
@@ -0,0 +1,3 @@
1
+ # @acorex/components/context-menu
2
+
3
+ Secondary entry point of `@acorex/components`. It can be used by importing from `@acorex/components/context-menu`.
@@ -1,5 +1,2 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@acorex/components/context-menu" />
5
- export * from './public-api';
1
+ export * from './lib/context-menu.component';
2
+ export * from './lib/context-menu.module';
@@ -0,0 +1,3 @@
1
+ # @acorex/components/data-pager
2
+
3
+ Secondary entry point of `@acorex/components`. It can be used by importing from `@acorex/components/data-pager`.
@@ -1,5 +1,9 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@acorex/components/data-pager" />
5
- export * from './public-api';
1
+ export * from './lib/data-pager-base.component';
2
+ export * from './lib/data-pager-info.component';
3
+ export * from './lib/data-pager-input-selector.component';
4
+ export * from './lib/data-pager-next-buttons.components';
5
+ export * from './lib/data-pager-numeric-selector.component';
6
+ export * from './lib/data-pager-pagesize-dropdown.component';
7
+ export * from './lib/data-pager-prev-buttons.component';
8
+ export * from './lib/data-pager.component';
9
+ export * from './lib/data-pager.module';
@@ -0,0 +1,15 @@
1
+ import { ElementRef, ChangeDetectorRef } from '@angular/core';
2
+ import { AXValueChangedEvent } from '@acorex/components/common';
3
+ import { AXDataPagerChild, AXPagerComponent } from './data-pager-base.component';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AXDataPagerInputSelectorComponent extends AXDataPagerChild {
6
+ private _parent;
7
+ private cdr;
8
+ constructor(elementRef: ElementRef, _parent: AXPagerComponent, cdr: ChangeDetectorRef);
9
+ _totalPages: number;
10
+ _currentPage: number;
11
+ onViewInit(): void;
12
+ _handleValueChanged(e: AXValueChangedEvent<number>): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXDataPagerInputSelectorComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXDataPagerInputSelectorComponent, "ax-data-pager-input-selector", never, {}, {}, never, never, false, never>;
15
+ }
@@ -0,0 +1,3 @@
1
+ # @acorex/components/data-table
2
+
3
+ Secondary entry point of `@acorex/components`. It can be used by importing from `@acorex/components/data-table`.
@@ -1,5 +1,4 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@acorex/components/data-table" />
5
- export * from './public-api';
1
+ export * from './lib/data-column-cell-template.directive';
2
+ export * from './lib/data-column.directive';
3
+ export * from './lib/data-table.component';
4
+ export * from './lib/data-table.module';
@@ -0,0 +1,3 @@
1
+ # @acorex/components/date-picker
2
+
3
+ Secondary entry point of `@acorex/components`. It can be used by importing from `@acorex/components/date-picker`.
@@ -1,5 +1,2 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@acorex/components/date-picker" />
5
- export * from './public-api';
1
+ export * from './lib/datepicker.component';
2
+ export * from './lib/datepicker.module';
@@ -0,0 +1,3 @@
1
+ # @acorex/components/decorators
2
+
3
+ Secondary entry point of `@acorex/components`. It can be used by importing from `@acorex/components/decorators`.
@@ -1,5 +1,14 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@acorex/components/decorators" />
5
- export * from './public-api';
1
+ export * from './lib/close-button.component';
2
+ export * from './lib/content.component';
3
+ export * from './lib/decorators.module';
4
+ export * from './lib/footer.component';
5
+ export * from './lib/form-hint.component';
6
+ export * from './lib/header.component';
7
+ export * from './lib/icon.component';
8
+ export * from './lib/overlay.component';
9
+ export * from './lib/placeholder.component';
10
+ export * from './lib/prefix.component';
11
+ export * from './lib/sub-title.component';
12
+ export * from './lib/suffix.component';
13
+ export * from './lib/text.component';
14
+ export * from './lib/title.component';
@@ -0,0 +1,3 @@
1
+ # @acorex/components/dialog
2
+
3
+ Secondary entry point of `@acorex/components`. It can be used by importing from `@acorex/components/dialog`.
package/dialog/index.d.ts CHANGED
@@ -1,5 +1,4 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@acorex/components/dialog" />
5
- export * from './public-api';
1
+ export * from './lib/dialog.class';
2
+ export * from './lib/dialog.component';
3
+ export * from './lib/dialog.module';
4
+ export * from './lib/dialog.service';
@@ -0,0 +1,3 @@
1
+ # @acorex/components/drawer
2
+
3
+ Secondary entry point of `@acorex/components`. It can be used by importing from `@acorex/components/drawer`.
package/drawer/index.d.ts CHANGED
@@ -1,5 +1,3 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@acorex/components/drawer" />
5
- export * from './public-api';
1
+ export * from './lib/drawer-container.component';
2
+ export * from './lib/drawer.component';
3
+ export * from './lib/drawer.module';
@@ -0,0 +1,3 @@
1
+ # @acorex/components/dropdown
2
+
3
+ Secondary entry point of `@acorex/components`. It can be used by importing from `@acorex/components/dropdown`.
@@ -1,5 +1,2 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@acorex/components/dropdown" />
5
- export * from './public-api';
1
+ export * from './lib/dropdown-panel.component';
2
+ export * from './lib/dropdown.module';
@@ -1,5 +1,5 @@
1
1
  /**
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
- export * from './public-api';
5
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNvcmV4LWNvbXBvbmVudHMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9hY29yZXgvY29tcG9uZW50cy9hY29yZXgtY29tcG9uZW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
4
+ export * from './index';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNvcmV4LWNvbXBvbmVudHMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9saWJzL2NvbXBvbmVudHMvc3JjL2Fjb3JleC1jb21wb25lbnRzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsY0FBYyxTQUFTLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEdlbmVyYXRlZCBidW5kbGUgaW5kZXguIERvIG5vdCBlZGl0LlxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vaW5kZXgnO1xuIl19
@@ -1,5 +1,5 @@
1
1
  /**
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
- export * from './public-api';
5
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNvcmV4LWNvbXBvbmVudHMtYWN0aW9uLXNoZWV0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYWNvcmV4L2NvbXBvbmVudHMvYWN0aW9uLXNoZWV0L2Fjb3JleC1jb21wb25lbnRzLWFjdGlvbi1zaGVldC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
4
+ export * from './index';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNvcmV4LWNvbXBvbmVudHMtYWN0aW9uLXNoZWV0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicy9jb21wb25lbnRzL2FjdGlvbi1zaGVldC9zcmMvYWNvcmV4LWNvbXBvbmVudHMtYWN0aW9uLXNoZWV0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsY0FBYyxTQUFTLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEdlbmVyYXRlZCBidW5kbGUgaW5kZXguIERvIG5vdCBlZGl0LlxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vaW5kZXgnO1xuIl19
@@ -0,0 +1,5 @@
1
+ export * from './lib/action-sheet.component';
2
+ export * from './lib/action-sheet.interface';
3
+ export * from './lib/action-sheet.module';
4
+ export * from './lib/action-sheet.service';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2NvbXBvbmVudHMvYWN0aW9uLXNoZWV0L3NyYy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDhCQUE4QixDQUFDO0FBQzdDLGNBQWMsOEJBQThCLENBQUM7QUFDN0MsY0FBYywyQkFBMkIsQ0FBQztBQUMxQyxjQUFjLDRCQUE0QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9saWIvYWN0aW9uLXNoZWV0LmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9hY3Rpb24tc2hlZXQuaW50ZXJmYWNlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2FjdGlvbi1zaGVldC5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvYWN0aW9uLXNoZWV0LnNlcnZpY2UnO1xuIl19
@@ -0,0 +1,78 @@
1
+ import { MXBaseComponent, TAB_META_KEY } from '@acorex/components/common';
2
+ import { ComponentPortal, TemplatePortal } from '@angular/cdk/portal';
3
+ import { ChangeDetectionStrategy, Component, EventEmitter, HostListener, TemplateRef, ViewEncapsulation } from '@angular/core';
4
+ import * as i0 from "@angular/core";
5
+ import * as i1 from "@angular/common";
6
+ import * as i2 from "@angular/cdk/portal";
7
+ import * as i3 from "@acorex/components/decorators";
8
+ export class AXActionSheetComponent extends MXBaseComponent {
9
+ constructor() {
10
+ super(...arguments);
11
+ this.items = [];
12
+ this.showCloseButton = true;
13
+ this.showHeader = true;
14
+ this.data = {};
15
+ this.onClosed = new EventEmitter();
16
+ }
17
+ close() {
18
+ this.onClosed.emit({
19
+ component: this[TAB_META_KEY].component,
20
+ htmlElement: this.getHostElement(),
21
+ });
22
+ this.cdr.detectChanges();
23
+ }
24
+ ngOnInit() {
25
+ if (this.content) {
26
+ if (typeof this.content === 'string') {
27
+ // this.rendererService.findLoadedComponentByRoute(this.content, 20).then(route => {
28
+ // setTimeout(() => {
29
+ // this.loadComponent(route.component);
30
+ // }, 300);
31
+ // });
32
+ }
33
+ else if (this.content instanceof TemplateRef) {
34
+ this._selectedPortal = new TemplatePortal(this.content, this.getViewContainer(), { $implicit: this.data, ref: this });
35
+ this.cdr.markForCheck();
36
+ }
37
+ else if (typeof this.content === 'function') {
38
+ this._selectedPortal = new ComponentPortal(this.content);
39
+ this.cdr.markForCheck();
40
+ }
41
+ }
42
+ }
43
+ onKeydownHandler(event) {
44
+ let focusedOrHasFocused = this.getHostElement().matches(':focus-within');
45
+ if (this.showCloseButton && focusedOrHasFocused) {
46
+ this.close();
47
+ }
48
+ }
49
+ _handleAttched(ref) {
50
+ ref = ref;
51
+ if (ref.instance) {
52
+ this[TAB_META_KEY].component = ref.instance;
53
+ Object.assign(this[TAB_META_KEY].component, this.data);
54
+ if (ref.instance.onClosed) {
55
+ ref.instance.onClosed.subscribe((e) => {
56
+ this.onClosed.emit(e);
57
+ });
58
+ }
59
+ }
60
+ }
61
+ _handleCloseClick() {
62
+ this.close();
63
+ }
64
+ onItemClick(item) {
65
+ item.onClick();
66
+ this.close();
67
+ }
68
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.4", ngImport: i0, type: AXActionSheetComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
69
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.4", type: AXActionSheetComponent, selector: "ax-action-sheet", host: { listeners: { "keydown.escape": "onKeydownHandler($event)" } }, usesInheritance: true, ngImport: i0, template: "<ax-header>\n <ax-title>{{ title }}</ax-title>\n <ax-close-button (click)=\"_handleCloseClick()\" tabindex=\"1\"></ax-close-button>\n</ax-header>\n<ng-template [cdkPortalOutlet]=\"_selectedPortal\" (attached)=\"_handleAttched($event)\"></ng-template>\n<div class=\"ax-action-sheet-items\">\n <ng-container *ngFor=\"let item of items\">\n <div class=\"ax-action-sheet-item ax-{{ item.color }}\" [class.ax-state-disabled]=\"item.disabled\" (click)=\"onItemClick(item)\">\n <span class=\"item-icon\" *ngIf=\"item.icon\" [class]=\"item.icon\"></span>\n <span class=\"item-text\">{{ item.text }}</span>\n </div>\n </ng-container>\n</div>\n", styles: ["@media (max-width: 599px){ax-action-sheet{width:100vw}}@media (min-width: 600px){ax-action-sheet{width:75vw}}@media (min-width: 1200px){ax-action-sheet{width:30vw}}@media (min-width: 1800px){ax-action-sheet{width:25vw}}ax-action-sheet ax-header{padding:1rem;font-size:1.125rem;font-weight:500;border-bottom:1px solid;border-color:rgba(var(--ax-color-border-default))}@media (max-width: 599px){ax-action-sheet ax-header{font-size:1rem}}ax-action-sheet .ax-action-sheet-items{padding:.5rem 0}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item{-webkit-user-select:none;user-select:none;cursor:pointer;padding:.75rem 1rem;display:flex}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item:hover{background-color:rgba(var(--ax-color-default))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item .item-icon{font-size:1.5rem;margin-inline-end:.75rem}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-primary{color:rgba(var(--ax-color-primary-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-secondary{color:rgba(var(--ax-color-secondary-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-success{color:rgba(var(--ax-color-success-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-warning{color:rgba(var(--ax-color-warning-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-danger{color:rgba(var(--ax-color-danger-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-info{color:rgba(var(--ax-color-info-500))}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }, { kind: "component", type: i3.AXDecoratorHeaderComponent, selector: "ax-header" }, { kind: "component", type: i3.AXDecoratorTitleComponent, selector: "ax-title" }, { kind: "component", type: i3.AXDecoratorCloseButtonComponent, selector: "ax-close-button", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
70
+ }
71
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.4", ngImport: i0, type: AXActionSheetComponent, decorators: [{
72
+ type: Component,
73
+ args: [{ selector: 'ax-action-sheet', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<ax-header>\n <ax-title>{{ title }}</ax-title>\n <ax-close-button (click)=\"_handleCloseClick()\" tabindex=\"1\"></ax-close-button>\n</ax-header>\n<ng-template [cdkPortalOutlet]=\"_selectedPortal\" (attached)=\"_handleAttched($event)\"></ng-template>\n<div class=\"ax-action-sheet-items\">\n <ng-container *ngFor=\"let item of items\">\n <div class=\"ax-action-sheet-item ax-{{ item.color }}\" [class.ax-state-disabled]=\"item.disabled\" (click)=\"onItemClick(item)\">\n <span class=\"item-icon\" *ngIf=\"item.icon\" [class]=\"item.icon\"></span>\n <span class=\"item-text\">{{ item.text }}</span>\n </div>\n </ng-container>\n</div>\n", styles: ["@media (max-width: 599px){ax-action-sheet{width:100vw}}@media (min-width: 600px){ax-action-sheet{width:75vw}}@media (min-width: 1200px){ax-action-sheet{width:30vw}}@media (min-width: 1800px){ax-action-sheet{width:25vw}}ax-action-sheet ax-header{padding:1rem;font-size:1.125rem;font-weight:500;border-bottom:1px solid;border-color:rgba(var(--ax-color-border-default))}@media (max-width: 599px){ax-action-sheet ax-header{font-size:1rem}}ax-action-sheet .ax-action-sheet-items{padding:.5rem 0}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item{-webkit-user-select:none;user-select:none;cursor:pointer;padding:.75rem 1rem;display:flex}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item:hover{background-color:rgba(var(--ax-color-default))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item .item-icon{font-size:1.5rem;margin-inline-end:.75rem}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-primary{color:rgba(var(--ax-color-primary-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-secondary{color:rgba(var(--ax-color-secondary-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-success{color:rgba(var(--ax-color-success-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-warning{color:rgba(var(--ax-color-warning-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-danger{color:rgba(var(--ax-color-danger-500))}ax-action-sheet .ax-action-sheet-items .ax-action-sheet-item.ax-info{color:rgba(var(--ax-color-info-500))}\n"] }]
74
+ }], propDecorators: { onKeydownHandler: [{
75
+ type: HostListener,
76
+ args: ['keydown.escape', ['$event']]
77
+ }] } });
78
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWN0aW9uLXNoZWV0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY29tcG9uZW50cy9hY3Rpb24tc2hlZXQvc3JjL2xpYi9hY3Rpb24tc2hlZXQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb21wb25lbnRzL2FjdGlvbi1zaGVldC9zcmMvbGliL2FjdGlvbi1zaGVldC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQXlCLGVBQWUsRUFBRSxZQUFZLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUNqRyxPQUFPLEVBQThCLGVBQWUsRUFBVSxjQUFjLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUMxRyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFnQixZQUFZLEVBQUUsWUFBWSxFQUFFLFdBQVcsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7Ozs7QUFVN0ksTUFBTSxPQUFPLHNCQUF1QixTQUFRLGVBQWU7SUFQM0Q7O1FBVUUsVUFBSyxHQUF3QixFQUFFLENBQUM7UUFFaEMsb0JBQWUsR0FBWSxJQUFJLENBQUM7UUFDaEMsZUFBVSxHQUFZLElBQUksQ0FBQztRQUMzQixTQUFJLEdBQVEsRUFBRSxDQUFDO1FBRWYsYUFBUSxHQUF3QyxJQUFJLFlBQVksRUFBeUIsQ0FBQztLQXdEM0Y7SUF0REMsS0FBSztRQUNILElBQUksQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDO1lBQ2pCLFNBQVMsRUFBRSxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUMsU0FBUztZQUN2QyxXQUFXLEVBQUUsSUFBSSxDQUFDLGNBQWMsRUFBRTtTQUNuQyxDQUFDLENBQUM7UUFDSCxJQUFJLENBQUMsR0FBRyxDQUFDLGFBQWEsRUFBRSxDQUFDO0lBQzNCLENBQUM7SUFFUyxRQUFRO1FBQ2hCLElBQUksSUFBSSxDQUFDLE9BQU8sRUFBRTtZQUNoQixJQUFJLE9BQU8sSUFBSSxDQUFDLE9BQU8sS0FBSyxRQUFRLEVBQUU7Z0JBQ3BDLHNGQUFzRjtnQkFDdEYseUJBQXlCO2dCQUN6Qiw2Q0FBNkM7Z0JBQzdDLGVBQWU7Z0JBQ2YsUUFBUTthQUNUO2lCQUFNLElBQUksSUFBSSxDQUFDLE9BQU8sWUFBWSxXQUFXLEVBQUU7Z0JBQzlDLElBQUksQ0FBQyxlQUFlLEdBQUcsSUFBSSxjQUFjLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRSxJQUFJLENBQUMsZ0JBQWdCLEVBQUUsRUFBRSxFQUFFLFNBQVMsRUFBRSxJQUFJLENBQUMsSUFBSSxFQUFFLEdBQUcsRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDO2dCQUN0SCxJQUFJLENBQUMsR0FBRyxDQUFDLFlBQVksRUFBRSxDQUFDO2FBQ3pCO2lCQUFNLElBQUksT0FBTyxJQUFJLENBQUMsT0FBTyxLQUFLLFVBQVUsRUFBRTtnQkFDN0MsSUFBSSxDQUFDLGVBQWUsR0FBRyxJQUFJLGVBQWUsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUM7Z0JBQ3pELElBQUksQ0FBQyxHQUFHLENBQUMsWUFBWSxFQUFFLENBQUM7YUFDekI7U0FDRjtJQUNILENBQUM7SUFHUyxnQkFBZ0IsQ0FBQyxLQUFvQjtRQUM3QyxJQUFJLG1CQUFtQixHQUFHLElBQUksQ0FBQyxjQUFjLEVBQUUsQ0FBQyxPQUFPLENBQUMsZUFBZSxDQUFDLENBQUM7UUFDekUsSUFBSSxJQUFJLENBQUMsZUFBZSxJQUFJLG1CQUFtQixFQUFFO1lBQy9DLElBQUksQ0FBQyxLQUFLLEVBQUUsQ0FBQztTQUNkO0lBQ0gsQ0FBQztJQUVTLGNBQWMsQ0FBQyxHQUErQjtRQUN0RCxHQUFHLEdBQUcsR0FBd0IsQ0FBQztRQUMvQixJQUFJLEdBQUcsQ0FBQyxRQUFRLEVBQUU7WUFDaEIsSUFBSSxDQUFDLFlBQVksQ0FBQyxDQUFDLFNBQVMsR0FBRyxHQUFHLENBQUMsUUFBUSxDQUFDO1lBQzVDLE1BQU0sQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FBQyxDQUFDLFNBQVMsRUFBRSxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUM7WUFDdkQsSUFBSSxHQUFHLENBQUMsUUFBUSxDQUFDLFFBQVEsRUFBRTtnQkFDekIsR0FBRyxDQUFDLFFBQVEsQ0FBQyxRQUFRLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBd0IsRUFBRSxFQUFFO29CQUMzRCxJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsQ0FBQztnQkFDeEIsQ0FBQyxDQUFDLENBQUM7YUFDSjtTQUNGO0lBQ0gsQ0FBQztJQUVTLGlCQUFpQjtRQUN6QixJQUFJLENBQUMsS0FBSyxFQUFFLENBQUM7SUFDZixDQUFDO0lBQ0QsV0FBVyxDQUFDLElBQXVCO1FBQ2pDLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQztRQUNmLElBQUksQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUNmLENBQUM7OEdBaEVVLHNCQUFzQjtrR0FBdEIsc0JBQXNCLHFKQ1puQyxncEJBYUE7OzJGRERhLHNCQUFzQjtrQkFQbEMsU0FBUzsrQkFDRSxpQkFBaUIsbUJBR1YsdUJBQXVCLENBQUMsTUFBTSxpQkFDaEMsaUJBQWlCLENBQUMsSUFBSTs4QkF3QzNCLGdCQUFnQjtzQkFEekIsWUFBWTt1QkFBQyxnQkFBZ0IsRUFBRSxDQUFDLFFBQVEsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFYQ29tcG9uZW50Q2xvc2VFdmVudCwgTVhCYXNlQ29tcG9uZW50LCBUQUJfTUVUQV9LRVkgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvY29tbW9uJztcbmltcG9ydCB7IENka1BvcnRhbE91dGxldEF0dGFjaGVkUmVmLCBDb21wb25lbnRQb3J0YWwsIFBvcnRhbCwgVGVtcGxhdGVQb3J0YWwgfSBmcm9tICdAYW5ndWxhci9jZGsvcG9ydGFsJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIENvbXBvbmVudFJlZiwgRXZlbnRFbWl0dGVyLCBIb3N0TGlzdGVuZXIsIFRlbXBsYXRlUmVmLCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQVhBY3Rpb25TaGVldEl0ZW0gfSBmcm9tICcuL2FjdGlvbi1zaGVldC5pbnRlcmZhY2UnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdheC1hY3Rpb24tc2hlZXQnLFxuICB0ZW1wbGF0ZVVybDogJy4vYWN0aW9uLXNoZWV0LmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vYWN0aW9uLXNoZWV0LmNvbXBvbmVudC5zY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxufSlcbmV4cG9ydCBjbGFzcyBBWEFjdGlvblNoZWV0Q29tcG9uZW50IGV4dGVuZHMgTVhCYXNlQ29tcG9uZW50IHtcbiAgcHJvdGVjdGVkIF9zZWxlY3RlZFBvcnRhbDogUG9ydGFsPGFueT47XG4gIHRpdGxlOiBzdHJpbmc7XG4gIGl0ZW1zOiBBWEFjdGlvblNoZWV0SXRlbVtdID0gW107XG4gIGNvbnRlbnQ6IGFueTtcbiAgc2hvd0Nsb3NlQnV0dG9uOiBib29sZWFuID0gdHJ1ZTtcbiAgc2hvd0hlYWRlcjogYm9vbGVhbiA9IHRydWU7XG4gIGRhdGE6IGFueSA9IHt9O1xuXG4gIG9uQ2xvc2VkOiBFdmVudEVtaXR0ZXI8QVhDb21wb25lbnRDbG9zZUV2ZW50PiA9IG5ldyBFdmVudEVtaXR0ZXI8QVhDb21wb25lbnRDbG9zZUV2ZW50PigpO1xuXG4gIGNsb3NlKCk6IHZvaWQge1xuICAgIHRoaXMub25DbG9zZWQuZW1pdCh7XG4gICAgICBjb21wb25lbnQ6IHRoaXNbVEFCX01FVEFfS0VZXS5jb21wb25lbnQsXG4gICAgICBodG1sRWxlbWVudDogdGhpcy5nZXRIb3N0RWxlbWVudCgpLFxuICAgIH0pO1xuICAgIHRoaXMuY2RyLmRldGVjdENoYW5nZXMoKTtcbiAgfVxuXG4gIHByb3RlY3RlZCBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICBpZiAodGhpcy5jb250ZW50KSB7XG4gICAgICBpZiAodHlwZW9mIHRoaXMuY29udGVudCA9PT0gJ3N0cmluZycpIHtcbiAgICAgICAgLy8gICB0aGlzLnJlbmRlcmVyU2VydmljZS5maW5kTG9hZGVkQ29tcG9uZW50QnlSb3V0ZSh0aGlzLmNvbnRlbnQsIDIwKS50aGVuKHJvdXRlID0+IHtcbiAgICAgICAgLy8gICAgIHNldFRpbWVvdXQoKCkgPT4ge1xuICAgICAgICAvLyAgICAgICB0aGlzLmxvYWRDb21wb25lbnQocm91dGUuY29tcG9uZW50KTtcbiAgICAgICAgLy8gICAgIH0sIDMwMCk7XG4gICAgICAgIC8vICAgfSk7XG4gICAgICB9IGVsc2UgaWYgKHRoaXMuY29udGVudCBpbnN0YW5jZW9mIFRlbXBsYXRlUmVmKSB7XG4gICAgICAgIHRoaXMuX3NlbGVjdGVkUG9ydGFsID0gbmV3IFRlbXBsYXRlUG9ydGFsKHRoaXMuY29udGVudCwgdGhpcy5nZXRWaWV3Q29udGFpbmVyKCksIHsgJGltcGxpY2l0OiB0aGlzLmRhdGEsIHJlZjogdGhpcyB9KTtcbiAgICAgICAgdGhpcy5jZHIubWFya0ZvckNoZWNrKCk7XG4gICAgICB9IGVsc2UgaWYgKHR5cGVvZiB0aGlzLmNvbnRlbnQgPT09ICdmdW5jdGlvbicpIHtcbiAgICAgICAgdGhpcy5fc2VsZWN0ZWRQb3J0YWwgPSBuZXcgQ29tcG9uZW50UG9ydGFsKHRoaXMuY29udGVudCk7XG4gICAgICAgIHRoaXMuY2RyLm1hcmtGb3JDaGVjaygpO1xuICAgICAgfVxuICAgIH1cbiAgfVxuXG4gIEBIb3N0TGlzdGVuZXIoJ2tleWRvd24uZXNjYXBlJywgWyckZXZlbnQnXSlcbiAgcHJvdGVjdGVkIG9uS2V5ZG93bkhhbmRsZXIoZXZlbnQ6IEtleWJvYXJkRXZlbnQpIHtcbiAgICBsZXQgZm9jdXNlZE9ySGFzRm9jdXNlZCA9IHRoaXMuZ2V0SG9zdEVsZW1lbnQoKS5tYXRjaGVzKCc6Zm9jdXMtd2l0aGluJyk7XG4gICAgaWYgKHRoaXMuc2hvd0Nsb3NlQnV0dG9uICYmIGZvY3VzZWRPckhhc0ZvY3VzZWQpIHtcbiAgICAgIHRoaXMuY2xvc2UoKTtcbiAgICB9XG4gIH1cblxuICBwcm90ZWN0ZWQgX2hhbmRsZUF0dGNoZWQocmVmOiBDZGtQb3J0YWxPdXRsZXRBdHRhY2hlZFJlZikge1xuICAgIHJlZiA9IHJlZiBhcyBDb21wb25lbnRSZWY8YW55PjtcbiAgICBpZiAocmVmLmluc3RhbmNlKSB7XG4gICAgICB0aGlzW1RBQl9NRVRBX0tFWV0uY29tcG9uZW50ID0gcmVmLmluc3RhbmNlO1xuICAgICAgT2JqZWN0LmFzc2lnbih0aGlzW1RBQl9NRVRBX0tFWV0uY29tcG9uZW50LCB0aGlzLmRhdGEpO1xuICAgICAgaWYgKHJlZi5pbnN0YW5jZS5vbkNsb3NlZCkge1xuICAgICAgICByZWYuaW5zdGFuY2Uub25DbG9zZWQuc3Vic2NyaWJlKChlOiBBWENvbXBvbmVudENsb3NlRXZlbnQpID0+IHtcbiAgICAgICAgICB0aGlzLm9uQ2xvc2VkLmVtaXQoZSk7XG4gICAgICAgIH0pO1xuICAgICAgfVxuICAgIH1cbiAgfVxuXG4gIHByb3RlY3RlZCBfaGFuZGxlQ2xvc2VDbGljaygpIHtcbiAgICB0aGlzLmNsb3NlKCk7XG4gIH1cbiAgb25JdGVtQ2xpY2soaXRlbTogQVhBY3Rpb25TaGVldEl0ZW0pIHtcbiAgICBpdGVtLm9uQ2xpY2soKTtcbiAgICB0aGlzLmNsb3NlKCk7XG4gIH1cbn1cbiIsIjxheC1oZWFkZXI+XG4gIDxheC10aXRsZT57eyB0aXRsZSB9fTwvYXgtdGl0bGU+XG4gIDxheC1jbG9zZS1idXR0b24gKGNsaWNrKT1cIl9oYW5kbGVDbG9zZUNsaWNrKClcIiB0YWJpbmRleD1cIjFcIj48L2F4LWNsb3NlLWJ1dHRvbj5cbjwvYXgtaGVhZGVyPlxuPG5nLXRlbXBsYXRlIFtjZGtQb3J0YWxPdXRsZXRdPVwiX3NlbGVjdGVkUG9ydGFsXCIgKGF0dGFjaGVkKT1cIl9oYW5kbGVBdHRjaGVkKCRldmVudClcIj48L25nLXRlbXBsYXRlPlxuPGRpdiBjbGFzcz1cImF4LWFjdGlvbi1zaGVldC1pdGVtc1wiPlxuICA8bmctY29udGFpbmVyICpuZ0Zvcj1cImxldCBpdGVtIG9mIGl0ZW1zXCI+XG4gICAgPGRpdiBjbGFzcz1cImF4LWFjdGlvbi1zaGVldC1pdGVtIGF4LXt7IGl0ZW0uY29sb3IgfX1cIiBbY2xhc3MuYXgtc3RhdGUtZGlzYWJsZWRdPVwiaXRlbS5kaXNhYmxlZFwiIChjbGljayk9XCJvbkl0ZW1DbGljayhpdGVtKVwiPlxuICAgICAgPHNwYW4gY2xhc3M9XCJpdGVtLWljb25cIiAqbmdJZj1cIml0ZW0uaWNvblwiIFtjbGFzc109XCJpdGVtLmljb25cIj48L3NwYW4+XG4gICAgICA8c3BhbiBjbGFzcz1cIml0ZW0tdGV4dFwiPnt7IGl0ZW0udGV4dCB9fTwvc3Bhbj5cbiAgICA8L2Rpdj5cbiAgPC9uZy1jb250YWluZXI+XG48L2Rpdj5cbiJdfQ==
@@ -0,0 +1,3 @@
1
+ ;
2
+ export {};
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWN0aW9uLXNoZWV0LmludGVyZmFjZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY29tcG9uZW50cy9hY3Rpb24tc2hlZXQvc3JjL2xpYi9hY3Rpb24tc2hlZXQuaW50ZXJmYWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQXNCQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhTdHlsZUNvbG9yVHlwZSB9IGZyb20gXCJAYWNvcmV4L2NvbXBvbmVudHMvY29tbW9uXCI7XG5pbXBvcnQgeyBUZW1wbGF0ZVJlZiB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XG5cbmV4cG9ydCBpbnRlcmZhY2UgQVhBY3Rpb25TaGVldEl0ZW0ge1xuICAgIG5hbWU/OiBzdHJpbmcsXG4gICAgdGV4dDogc3RyaW5nLFxuICAgIGljb24/OiBzdHJpbmc7XG4gICAgZGlzYWJsZWQ/OiBib29sZWFuLFxuICAgIGNvbG9yPzogQVhTdHlsZUNvbG9yVHlwZSxcbiAgICBvbkNsaWNrPzogKCkgPT4gdm9pZCxcbn1cblxuZXhwb3J0IHR5cGUgQVhBY3Rpb25TaGVldENvbnRlbnRUeXBlID0gVGVtcGxhdGVSZWY8YW55PiB8IEZ1bmN0aW9uO1xuXG5leHBvcnQgaW50ZXJmYWNlIEFYQWN0aW9uU2hlZXRPcHRpb25zIHtcbiAgICB0aXRsZT86IHN0cmluZztcbiAgICBzaG93Q2xvc2VCdXR0b24/OiBib29sZWFuO1xuICAgIGNsb3NlT25CYWNrZHJvcD86IGJvb2xlYW47XG4gICAgc2hvd0hlYWRlcj86IGJvb2xlYW47XG4gICAgaXRlbXM/OiBBWEFjdGlvblNoZWV0SXRlbVtdXG4gICAgY29udGVudD86IEFYQWN0aW9uU2hlZXRDb250ZW50VHlwZTtcbiAgICBkYXRhPzogYW55O1xufTtcbiJdfQ==