@acorex/platform 18.0.9 → 18.0.11

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 (1127) hide show
  1. package/auth/lib/application/application.types.d.ts +3 -3
  2. package/auth/lib/auth.strategy.d.ts +5 -0
  3. package/auth/lib/errors.types.d.ts +4 -4
  4. package/auth/lib/session.service.d.ts +4 -3
  5. package/common/lib/app/application.types.d.ts +6 -12
  6. package/common/lib/schema/entity/entity.class.d.ts +2 -1
  7. package/common/lib/schema/schema.types.d.ts +2 -1
  8. package/common/lib/schema/widget/widget-base.d.ts +1 -1
  9. package/common/lib/schema/widget/widget-token.d.ts +1 -1
  10. package/common/lib/schema/widgets/dateTime/dateTime-widget-column.component.d.ts +1 -1
  11. package/common/lib/schema/widgets/dateTime/dateTime-widget-view.component.d.ts +2 -2
  12. package/common/lib/schema/widgets/text/text-widget-column.component.d.ts +1 -1
  13. package/common/lib/schema/widgets/text/text-widget-view.component.d.ts +1 -1
  14. package/core/README.md +4 -0
  15. package/core/index.d.ts +3 -0
  16. package/core/lib/types.d.ts +13 -0
  17. package/core/utils/countdown-timer.d.ts +12 -0
  18. package/core/utils/html-utils.d.ts +9 -0
  19. package/esm2022/auth/lib/application/application.types.mjs +1 -1
  20. package/esm2022/auth/lib/auth-registry.service.mjs +3 -3
  21. package/esm2022/auth/lib/auth.module.mjs +4 -4
  22. package/esm2022/auth/lib/auth.strategy.mjs +1 -1
  23. package/esm2022/auth/lib/feature/feature.directive.mjs +3 -3
  24. package/esm2022/auth/lib/permission/permission.directive.mjs +3 -3
  25. package/esm2022/auth/lib/session.service.mjs +58 -16
  26. package/esm2022/common/lib/app/application.types.mjs +1 -1
  27. package/esm2022/common/lib/common.module.mjs +4 -4
  28. package/esm2022/common/lib/errors/error-handler-registry.service.mjs +3 -3
  29. package/esm2022/common/lib/errors/global-error-handler.mjs +5 -5
  30. package/esm2022/common/lib/layout/component-slot/component-slot-loader.service.mjs +3 -3
  31. package/esm2022/common/lib/layout/component-slot/component-slot-registery.service.mjs +3 -3
  32. package/esm2022/common/lib/layout/component-slot/component-slot.directive.mjs +3 -3
  33. package/esm2022/common/lib/layout/component-slot/component-slot.module.mjs +4 -4
  34. package/esm2022/common/lib/layout/grid-layout/grid-layout.directive.mjs +3 -3
  35. package/esm2022/common/lib/layout/layout.service.mjs +3 -3
  36. package/esm2022/common/lib/layout/logo/logo.component.mjs +3 -3
  37. package/esm2022/common/lib/layout/sticky.directive.mjs +3 -3
  38. package/esm2022/common/lib/layout/theme/components/slots/footer-text-slot.component.mjs +3 -3
  39. package/esm2022/common/lib/layout/theme/components/slots/navbar-slot.component.mjs +3 -3
  40. package/esm2022/common/lib/layout/theme/components/slots/theme-slot.component.mjs +5 -5
  41. package/esm2022/common/lib/layout/theme/store/admin-layout.effects.mjs +3 -3
  42. package/esm2022/common/lib/schema/entity/entity-registery.service.mjs +3 -3
  43. package/esm2022/common/lib/schema/entity/entity.class.mjs +1 -1
  44. package/esm2022/common/lib/schema/schema-registery.service.mjs +3 -3
  45. package/esm2022/common/lib/schema/schema.module.mjs +4 -4
  46. package/esm2022/common/lib/schema/schema.types.mjs +1 -1
  47. package/esm2022/common/lib/schema/widget/widget-base.mjs +10 -10
  48. package/esm2022/common/lib/schema/widget/widget-column-renderer.mjs +3 -3
  49. package/esm2022/common/lib/schema/widget/widget-filter-renderer.mjs +3 -3
  50. package/esm2022/common/lib/schema/widget/widget-renderer.mjs +3 -3
  51. package/esm2022/common/lib/schema/widget/widget-token.mjs +1 -1
  52. package/esm2022/common/lib/schema/widgets/avatar/avatar-widget-edit.component.mjs +3 -3
  53. package/esm2022/common/lib/schema/widgets/avatar/avatar-widget-view.component.mjs +3 -3
  54. package/esm2022/common/lib/schema/widgets/checkbox/checkbox-widget-column.component.mjs +3 -3
  55. package/esm2022/common/lib/schema/widgets/checkbox/checkbox-widget-edit.component.mjs +3 -3
  56. package/esm2022/common/lib/schema/widgets/checkbox/checkbox-widget-view.component.mjs +3 -3
  57. package/esm2022/common/lib/schema/widgets/common-widget-filter/boolean-widget-filter.component.mjs +5 -5
  58. package/esm2022/common/lib/schema/widgets/common-widget-filter/number-widget-filter.component.mjs +5 -5
  59. package/esm2022/common/lib/schema/widgets/common-widget-filter/string-widget-filter.component.mjs +5 -5
  60. package/esm2022/common/lib/schema/widgets/common-widgets.module.mjs +4 -4
  61. package/esm2022/common/lib/schema/widgets/dateTime/dateTime-widget-column.component.mjs +3 -3
  62. package/esm2022/common/lib/schema/widgets/dateTime/dateTime-widget-edit.component.mjs +5 -5
  63. package/esm2022/common/lib/schema/widgets/dateTime/dateTime-widget-filter.component.mjs +3 -3
  64. package/esm2022/common/lib/schema/widgets/dateTime/dateTime-widget-view.component.mjs +4 -4
  65. package/esm2022/common/lib/schema/widgets/email/email-widget-column.component.mjs +3 -3
  66. package/esm2022/common/lib/schema/widgets/email/email-widget-edit.component.mjs +5 -5
  67. package/esm2022/common/lib/schema/widgets/email/email-widget-view.component.mjs +3 -3
  68. package/esm2022/common/lib/schema/widgets/file/file-widget-column.component.mjs +3 -3
  69. package/esm2022/common/lib/schema/widgets/file/file-widget-edit.component.mjs +5 -5
  70. package/esm2022/common/lib/schema/widgets/file/file-widget-filter.component.mjs +3 -3
  71. package/esm2022/common/lib/schema/widgets/file/file-widget-view.component.mjs +5 -5
  72. package/esm2022/common/lib/schema/widgets/gallery/gallery-widget-edit.component.mjs +4 -4
  73. package/esm2022/common/lib/schema/widgets/gallery/gallery-widget-filter.component.mjs +3 -3
  74. package/esm2022/common/lib/schema/widgets/gallery/gallery-widget-view.component.mjs +3 -3
  75. package/esm2022/common/lib/schema/widgets/lookup/lookup-widget-column.component.mjs +3 -3
  76. package/esm2022/common/lib/schema/widgets/lookup/lookup-widget-edit.component.mjs +3 -3
  77. package/esm2022/common/lib/schema/widgets/lookup/lookup-widget-filter.component.mjs +5 -5
  78. package/esm2022/common/lib/schema/widgets/lookup/lookup-widget-view.component.mjs +3 -3
  79. package/esm2022/common/lib/schema/widgets/map/map-widget-edit.component.mjs +3 -3
  80. package/esm2022/common/lib/schema/widgets/map/map-widget-view.component.mjs +3 -3
  81. package/esm2022/common/lib/schema/widgets/messenger/messenger-widget-column.component.mjs +3 -3
  82. package/esm2022/common/lib/schema/widgets/messenger/messenger-widget-edit.component.mjs +5 -5
  83. package/esm2022/common/lib/schema/widgets/messenger/messenger-widget-view.component.mjs +3 -3
  84. package/esm2022/common/lib/schema/widgets/number/number-widget-edit.component.mjs +5 -5
  85. package/esm2022/common/lib/schema/widgets/number/number-widget-view.component.mjs +3 -3
  86. package/esm2022/common/lib/schema/widgets/password/change-password.component.mjs +5 -5
  87. package/esm2022/common/lib/schema/widgets/password/password-widget-column.component.mjs +3 -3
  88. package/esm2022/common/lib/schema/widgets/password/password-widget-edit.component.mjs +3 -3
  89. package/esm2022/common/lib/schema/widgets/password/password-widget-view.component.mjs +4 -4
  90. package/esm2022/common/lib/schema/widgets/phone/phone-widget-column.component.mjs +3 -3
  91. package/esm2022/common/lib/schema/widgets/phone/phone-widget-edit.component.mjs +5 -5
  92. package/esm2022/common/lib/schema/widgets/phone/phone-widget-view.component.mjs +3 -3
  93. package/esm2022/common/lib/schema/widgets/rich-text/rich-text-widget-column.component.mjs +3 -3
  94. package/esm2022/common/lib/schema/widgets/rich-text/rich-text-widget-edit.component.mjs +3 -3
  95. package/esm2022/common/lib/schema/widgets/rich-text/rich-text-widget-view.component.mjs +3 -3
  96. package/esm2022/common/lib/schema/widgets/selection-list/selection-list-widget-column.component.mjs +3 -3
  97. package/esm2022/common/lib/schema/widgets/selection-list/selection-list-widget-edit.component.mjs +3 -3
  98. package/esm2022/common/lib/schema/widgets/selection-list/selection-list-widget-filter.component.mjs +3 -3
  99. package/esm2022/common/lib/schema/widgets/selection-list/selection-list-widget-view.component.mjs +3 -3
  100. package/esm2022/common/lib/schema/widgets/signature-pad/signature-pad-widget-edit.component.mjs +5 -5
  101. package/esm2022/common/lib/schema/widgets/signature-pad/signature-pad-widget-view.component.mjs +3 -3
  102. package/esm2022/common/lib/schema/widgets/text/largetext-widget-edit.component.mjs +3 -3
  103. package/esm2022/common/lib/schema/widgets/text/text-widget-column.component.mjs +3 -3
  104. package/esm2022/common/lib/schema/widgets/text/text-widget-edit.component.mjs +4 -4
  105. package/esm2022/common/lib/schema/widgets/text/text-widget-view.component.mjs +3 -3
  106. package/esm2022/common/lib/schema/widgets/toggle/toggle-widget-column.component.mjs +3 -3
  107. package/esm2022/common/lib/schema/widgets/toggle/toggle-widget-edit.component.mjs +3 -3
  108. package/esm2022/common/lib/schema/widgets/toggle/toggle-widget-view.component.mjs +3 -3
  109. package/esm2022/common/lib/settings/settings.service.mjs +3 -3
  110. package/esm2022/common/lib/store/common.effects.mjs +3 -3
  111. package/esm2022/common/lib/utils/clipboard-service.mjs +3 -3
  112. package/esm2022/common/lib/utils/pdf.service.mjs +3 -3
  113. package/esm2022/common/lib/utils/router-util.service.mjs +3 -3
  114. package/esm2022/common/lib/workflows/common.workflow.mjs +9 -9
  115. package/esm2022/common/lib/workflows/error-handler.mjs +3 -3
  116. package/esm2022/core/acorex-platform-core.mjs +5 -0
  117. package/esm2022/core/index.mjs +4 -0
  118. package/esm2022/core/lib/types.mjs +13 -0
  119. package/esm2022/core/utils/countdown-timer.mjs +42 -0
  120. package/esm2022/core/utils/html-utils.mjs +27 -0
  121. package/esm2022/layout/builder/lib/builder/builder.module.mjs +4 -4
  122. package/esm2022/layout/builder/lib/builder/builder.service.mjs +18 -4
  123. package/esm2022/layout/builder/lib/builder/layout.types.mjs +29 -1
  124. package/esm2022/layout/builder/lib/builder/widget-column-renderer.mjs +12 -5
  125. package/esm2022/layout/builder/lib/builder/widget-container.component.mjs +14 -20
  126. package/esm2022/layout/builder/lib/builder/widget-registery.service.mjs +7 -4
  127. package/esm2022/layout/builder/lib/builder/widget-renderer.component.mjs +40 -15
  128. package/esm2022/layout/builder/lib/builder/widget.types.mjs +98 -42
  129. package/esm2022/layout/designer/acorex-platform-layout-designer.mjs +5 -0
  130. package/esm2022/layout/designer/index.mjs +8 -0
  131. package/esm2022/layout/designer/lib/board/board.component.mjs +68 -0
  132. package/esm2022/layout/designer/lib/breadcrumbs/breadcrumbs.component.mjs +64 -0
  133. package/esm2022/layout/designer/lib/buttons/add-widget-button/add-widget-button.component.mjs +37 -0
  134. package/esm2022/layout/designer/lib/designer/designer.component.mjs +77 -0
  135. package/esm2022/layout/designer/lib/designer.module.mjs +16 -0
  136. package/esm2022/layout/designer/lib/designer.service.mjs +370 -0
  137. package/esm2022/layout/designer/lib/outline/outline.component.mjs +56 -0
  138. package/esm2022/layout/designer/lib/property-viewer/widget-property-viewer.component.mjs +103 -0
  139. package/esm2022/layout/designer/lib/widget-designer-renderer.component.mjs +243 -0
  140. package/esm2022/layout/designer/lib/widget-picker/widget-picker.component.mjs +23 -0
  141. package/esm2022/layout/entity/lib/entity-master-create.viewmodel.mjs +3 -3
  142. package/esm2022/layout/entity/lib/entity-master-list.viewmodel.mjs +4 -5
  143. package/esm2022/layout/entity/lib/entity-master-single.viewmodel.mjs +5 -7
  144. package/esm2022/layout/entity/lib/entity-master-update.viewmodel.mjs +3 -3
  145. package/esm2022/layout/entity/lib/entity-registery.service.mjs +3 -3
  146. package/esm2022/layout/entity/lib/entity.module.mjs +4 -4
  147. package/esm2022/layout/entity/lib/entity.viewmodel.mjs +2 -3
  148. package/esm2022/layout/entity/lib/widgets/lookup-widget/index.mjs +1 -2
  149. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-column.component.mjs +6 -6
  150. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-edit.component.mjs +21 -20
  151. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-filter.component.mjs +6 -6
  152. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-print.component.mjs +6 -6
  153. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-selector.component.mjs +5 -5
  154. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-view.component.mjs +59 -10
  155. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget.config.mjs +39 -4
  156. package/esm2022/layout/entity/lib/workflows/create-entity.workflow.mjs +4 -5
  157. package/esm2022/layout/entity/lib/workflows/delete-entity.workflow.mjs +3 -3
  158. package/esm2022/layout/entity/lib/workflows/modify-section.workflow.mjs +6 -6
  159. package/esm2022/layout/entity/lib/workflows/show-details.workflow.mjs +3 -3
  160. package/esm2022/layout/entity/lib/workflows/show-list.workflow.mjs +3 -3
  161. package/esm2022/layouts/lib/admin/admin.module.mjs +4 -4
  162. package/esm2022/layouts/lib/admin/entity-layout/entity-create-view/entity-create-view.component.mjs +4 -4
  163. package/esm2022/layouts/lib/admin/entity-layout/entity-create-view/entity-create-view.config.mjs +3 -3
  164. package/esm2022/layouts/lib/admin/entity-layout/entity-details-view/detail-view.config.mjs +3 -3
  165. package/esm2022/layouts/lib/admin/entity-layout/entity-details-view/entity-details-view.component.mjs +5 -5
  166. package/esm2022/layouts/lib/admin/entity-layout/entity-import-view/entity-import-view.component.mjs +4 -4
  167. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/entity-custom-view/entity-custom-view.component.mjs +4 -4
  168. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-columns/list-view-option-columns.component.mjs +3 -3
  169. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-conditions/list-view-option-conditions.component.mjs +3 -3
  170. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-conditions/list-view-option-filter-operator.component.mjs +3 -3
  171. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-sorting/list-view-option-sorting.component.mjs +3 -3
  172. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/entity-list-view.component.mjs +5 -5
  173. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/list-view.config.mjs +3 -3
  174. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/list-view.module.mjs +4 -4
  175. package/esm2022/layouts/lib/admin/entity-layout/entity-modify-view/entity-modify-view.component.mjs +4 -4
  176. package/esm2022/layouts/lib/admin/entity-layout/entity-modify-view/entity-modify-view.config.mjs +3 -3
  177. package/esm2022/layouts/lib/admin/entity-layout/entity-quick-view/entity-quick-view.component.mjs +3 -3
  178. package/esm2022/layouts/lib/admin/entity-layout/workflows/create-entity.workflow.mjs +3 -3
  179. package/esm2022/layouts/lib/admin/entity-layout/workflows/delete-entity.workflow.mjs +6 -6
  180. package/esm2022/layouts/lib/admin/entity-layout/workflows/import-entity.workflow.mjs +3 -3
  181. package/esm2022/layouts/lib/admin/entity-layout/workflows/modify-entity.workflow.mjs +3 -3
  182. package/esm2022/layouts/lib/admin/entity-layout/workflows/modify-section.workflow.mjs +3 -3
  183. package/esm2022/layouts/lib/admin/entity-layout/workflows/show-details.workflow.mjs +3 -3
  184. package/esm2022/layouts/lib/admin/entity-layout/workflows/show-list.workflow.mjs +3 -3
  185. package/esm2022/layouts/lib/admin/entity-layout/workflows/show-quick-view.workflow.mjs +3 -3
  186. package/esm2022/layouts/lib/layout.module.mjs +4 -4
  187. package/esm2022/mocks/lib/mocks.module.mjs +4 -4
  188. package/esm2022/mocks/lib/services/mocker.service.mjs +3 -3
  189. package/esm2022/mocks/lib/storage/storage.mock.service.mjs +4 -4
  190. package/esm2022/native/lib/native.module.mjs +4 -4
  191. package/esm2022/native/lib/native.service.mjs +3 -3
  192. package/esm2022/themes/default/lib/default.module.mjs +4 -4
  193. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-detail-list-view/entity-detail-list-view.component.mjs +3 -3
  194. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-create-view/entity-master-create-view.component.mjs +7 -6
  195. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-list-view/entity-master-list-view.component.mjs +5 -5
  196. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-list-view/list-view-option-columns/list-view-option-columns.component.mjs +4 -4
  197. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-list-view/list-view-option-sorting/list-view-option-sorting.component.mjs +4 -4
  198. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-modify-view/entity-master-modify-view.component.mjs +6 -6
  199. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-single-view/entity-master-single-view.component.mjs +6 -6
  200. package/esm2022/themes/default/lib/layouts/root-layout/components/footer/footer.component.mjs +3 -3
  201. package/esm2022/themes/default/lib/layouts/root-layout/components/header/header.component.mjs +3 -3
  202. package/esm2022/themes/default/lib/layouts/root-layout/root-layout.component.mjs +3 -3
  203. package/esm2022/themes/default/lib/layouts/root-layout/root-layout.module.mjs +4 -4
  204. package/esm2022/themes/default/lib/pages/errors/error-401/error-401.component.mjs +4 -4
  205. package/esm2022/themes/default/lib/pages/errors/error-404/error-404.component.mjs +3 -3
  206. package/esm2022/themes/default/lib/pages/errors/error-offline/error-offline.component.mjs +3 -3
  207. package/esm2022/widgets/index.mjs +3 -1
  208. package/esm2022/widgets/lib/properties/editors.props.mjs +389 -0
  209. package/esm2022/widgets/lib/properties/groups.mjs +21 -0
  210. package/esm2022/widgets/lib/properties/index.mjs +4 -0
  211. package/esm2022/widgets/lib/properties/table-column.props.mjs +17 -0
  212. package/esm2022/widgets/lib/widgets/actions/button-widget/button-widget-view.component.mjs +37 -0
  213. package/esm2022/widgets/lib/widgets/actions/button-widget/button-widget.config.mjs +25 -0
  214. package/esm2022/widgets/lib/widgets/actions/button-widget/index.mjs +3 -0
  215. package/esm2022/widgets/lib/widgets/editors/checkbox/checkbox-widget-column.component.mjs +51 -0
  216. package/esm2022/widgets/lib/widgets/editors/checkbox/checkbox-widget-edit.component.mjs +48 -0
  217. package/esm2022/widgets/lib/widgets/editors/checkbox/checkbox-widget-view.component.mjs +55 -0
  218. package/esm2022/widgets/lib/widgets/editors/checkbox/checkbox-widget.config.mjs +34 -0
  219. package/esm2022/widgets/lib/widgets/editors/checkbox/index.mjs +3 -0
  220. package/esm2022/widgets/lib/widgets/editors/color-box-widget/color-box-widget-column.component.mjs +19 -0
  221. package/esm2022/widgets/lib/widgets/editors/color-box-widget/color-box-widget-edit.component.mjs +54 -0
  222. package/esm2022/widgets/lib/widgets/editors/color-box-widget/color-box-widget-filter.component.mjs +20 -0
  223. package/esm2022/widgets/lib/widgets/editors/color-box-widget/color-box-widget-print.component.mjs +19 -0
  224. package/esm2022/widgets/lib/widgets/editors/color-box-widget/color-box-widget-view.component.mjs +19 -0
  225. package/esm2022/widgets/lib/widgets/editors/color-box-widget/color-box-widget.config.mjs +34 -0
  226. package/esm2022/widgets/lib/widgets/editors/color-box-widget/index.mjs +7 -0
  227. package/esm2022/widgets/lib/widgets/editors/contact-widget/contact-widget-column.component.mjs +36 -0
  228. package/esm2022/widgets/lib/widgets/editors/contact-widget/contact-widget-edit.component.mjs +297 -0
  229. package/esm2022/widgets/lib/widgets/editors/contact-widget/contact-widget-filter.component.mjs +20 -0
  230. package/esm2022/widgets/lib/widgets/editors/contact-widget/contact-widget-print.component.mjs +19 -0
  231. package/esm2022/widgets/lib/widgets/editors/contact-widget/contact-widget-view.component.mjs +122 -0
  232. package/esm2022/widgets/lib/widgets/editors/contact-widget/contact-widget.config.mjs +78 -0
  233. package/esm2022/widgets/lib/widgets/editors/contact-widget/contact.type.mjs +2 -0
  234. package/esm2022/widgets/lib/widgets/editors/contact-widget/index.mjs +7 -0
  235. package/esm2022/widgets/lib/widgets/editors/contact-widget/popup-component.mjs +78 -0
  236. package/esm2022/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-column.component.mjs +44 -0
  237. package/esm2022/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-edit.component.mjs +133 -0
  238. package/esm2022/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-filter.component.mjs +20 -0
  239. package/esm2022/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-print.component.mjs +19 -0
  240. package/esm2022/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-view.component.mjs +54 -0
  241. package/esm2022/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget.config.mjs +38 -0
  242. package/esm2022/widgets/lib/widgets/editors/date-time-box-widget/index.mjs +7 -0
  243. package/esm2022/widgets/lib/widgets/editors/email-box-widget/email-box-widget-column.component.mjs +66 -0
  244. package/esm2022/widgets/lib/widgets/editors/email-box-widget/email-box-widget-edit.component.mjs +249 -0
  245. package/esm2022/widgets/lib/widgets/editors/email-box-widget/email-box-widget-filter.component.mjs +20 -0
  246. package/esm2022/widgets/lib/widgets/editors/email-box-widget/email-box-widget-print.component.mjs +19 -0
  247. package/esm2022/widgets/lib/widgets/editors/email-box-widget/email-box-widget-view.component.mjs +115 -0
  248. package/esm2022/widgets/lib/widgets/editors/email-box-widget/email-box-widget.config.mjs +36 -0
  249. package/esm2022/widgets/lib/widgets/editors/email-box-widget/index.mjs +7 -0
  250. package/esm2022/widgets/lib/widgets/editors/file-box-widget/file-box-widget-column.component.mjs +19 -0
  251. package/esm2022/widgets/lib/widgets/editors/file-box-widget/file-box-widget-edit.component.mjs +122 -0
  252. package/esm2022/widgets/lib/widgets/editors/file-box-widget/file-box-widget-filter.component.mjs +20 -0
  253. package/esm2022/widgets/lib/widgets/editors/file-box-widget/file-box-widget-print.component.mjs +19 -0
  254. package/esm2022/widgets/lib/widgets/editors/file-box-widget/file-box-widget-view.component.mjs +215 -0
  255. package/esm2022/widgets/lib/widgets/editors/file-box-widget/file-box-widget.config.mjs +48 -0
  256. package/esm2022/widgets/lib/widgets/editors/file-box-widget/file-box-widget.service.mjs +3 -0
  257. package/esm2022/widgets/lib/widgets/editors/file-box-widget/index.mjs +8 -0
  258. package/esm2022/widgets/lib/widgets/editors/gallery-widget/gallery-widget-column.component.mjs +19 -0
  259. package/esm2022/widgets/lib/widgets/editors/gallery-widget/gallery-widget-edit.component.mjs +173 -0
  260. package/esm2022/widgets/lib/widgets/editors/gallery-widget/gallery-widget-filter.component.mjs +20 -0
  261. package/esm2022/widgets/lib/widgets/editors/gallery-widget/gallery-widget-print.component.mjs +19 -0
  262. package/esm2022/widgets/lib/widgets/editors/gallery-widget/gallery-widget-types.mjs +2 -0
  263. package/esm2022/widgets/lib/widgets/editors/gallery-widget/gallery-widget-view.component.mjs +160 -0
  264. package/esm2022/widgets/lib/widgets/editors/gallery-widget/gallery-widget.config.mjs +26 -0
  265. package/esm2022/widgets/lib/widgets/editors/gallery-widget/index.mjs +7 -0
  266. package/esm2022/widgets/lib/widgets/editors/large-text-widget/index.mjs +7 -0
  267. package/esm2022/widgets/lib/widgets/editors/large-text-widget/large-text-widget-column.component.mjs +23 -0
  268. package/esm2022/widgets/lib/widgets/editors/large-text-widget/large-text-widget-edit.component.mjs +60 -0
  269. package/esm2022/widgets/lib/widgets/editors/large-text-widget/large-text-widget-filter.component.mjs +20 -0
  270. package/esm2022/widgets/lib/widgets/editors/large-text-widget/large-text-widget-print.component.mjs +19 -0
  271. package/esm2022/widgets/lib/widgets/editors/large-text-widget/large-text-widget-view.component.mjs +31 -0
  272. package/esm2022/widgets/lib/widgets/editors/large-text-widget/large-text-widget.config.mjs +37 -0
  273. package/esm2022/widgets/lib/widgets/editors/link-widget/index.mjs +7 -0
  274. package/esm2022/widgets/lib/widgets/editors/link-widget/link-widget-column.component.mjs +19 -0
  275. package/esm2022/widgets/lib/widgets/editors/link-widget/link-widget-edit.component.mjs +391 -0
  276. package/esm2022/widgets/lib/widgets/editors/link-widget/link-widget-filter.component.mjs +20 -0
  277. package/esm2022/widgets/lib/widgets/editors/link-widget/link-widget-print.component.mjs +19 -0
  278. package/esm2022/widgets/lib/widgets/editors/link-widget/link-widget-view.component.mjs +120 -0
  279. package/esm2022/widgets/lib/widgets/editors/link-widget/link-widget.config.mjs +26 -0
  280. package/esm2022/widgets/lib/widgets/editors/map-box-widget/index.mjs +7 -0
  281. package/esm2022/widgets/lib/widgets/editors/map-box-widget/map-box-widget-column.component.mjs +19 -0
  282. package/esm2022/widgets/lib/widgets/editors/map-box-widget/map-box-widget-edit.component.mjs +96 -0
  283. package/esm2022/widgets/lib/widgets/editors/map-box-widget/map-box-widget-filter.component.mjs +20 -0
  284. package/esm2022/widgets/lib/widgets/editors/map-box-widget/map-box-widget-print.component.mjs +19 -0
  285. package/esm2022/widgets/lib/widgets/editors/map-box-widget/map-box-widget-view.component.mjs +65 -0
  286. package/esm2022/widgets/lib/widgets/editors/map-box-widget/map-box-widget.config.mjs +28 -0
  287. package/esm2022/widgets/lib/widgets/editors/number-box-widget/index.mjs +7 -0
  288. package/esm2022/widgets/lib/widgets/editors/number-box-widget/number-box-widget-column.component.mjs +38 -0
  289. package/esm2022/widgets/lib/widgets/editors/number-box-widget/number-box-widget-edit.component.mjs +151 -0
  290. package/esm2022/widgets/lib/widgets/editors/number-box-widget/number-box-widget-filter.component.mjs +20 -0
  291. package/esm2022/widgets/lib/widgets/editors/number-box-widget/number-box-widget-print.component.mjs +19 -0
  292. package/esm2022/widgets/lib/widgets/editors/number-box-widget/number-box-widget-view.component.mjs +56 -0
  293. package/esm2022/widgets/lib/widgets/editors/number-box-widget/number-box-widget.config.mjs +37 -0
  294. package/esm2022/widgets/lib/widgets/editors/password-box-widget/index.mjs +7 -0
  295. package/esm2022/widgets/lib/widgets/editors/password-box-widget/password-box-widget-column.component.mjs +19 -0
  296. package/esm2022/widgets/lib/widgets/editors/password-box-widget/password-box-widget-edit.component.mjs +52 -0
  297. package/esm2022/widgets/lib/widgets/editors/password-box-widget/password-box-widget-filter.component.mjs +20 -0
  298. package/esm2022/widgets/lib/widgets/editors/password-box-widget/password-box-widget-print.component.mjs +19 -0
  299. package/esm2022/widgets/lib/widgets/editors/password-box-widget/password-box-widget-view.component.mjs +76 -0
  300. package/esm2022/widgets/lib/widgets/editors/password-box-widget/password-box-widget.config.mjs +35 -0
  301. package/esm2022/widgets/lib/widgets/editors/phone-box-widget/index.mjs +7 -0
  302. package/esm2022/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-column.component.mjs +66 -0
  303. package/esm2022/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-edit.component.mjs +221 -0
  304. package/esm2022/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-filter.component.mjs +20 -0
  305. package/esm2022/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-print.component.mjs +19 -0
  306. package/esm2022/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-view.component.mjs +115 -0
  307. package/esm2022/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget.config.mjs +29 -0
  308. package/esm2022/widgets/lib/widgets/editors/rich-text-widget/index.mjs +7 -0
  309. package/esm2022/widgets/lib/widgets/editors/rich-text-widget/rich-text-popup.component.mjs +38 -0
  310. package/esm2022/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-column.component.mjs +46 -0
  311. package/esm2022/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-edit.component.mjs +67 -0
  312. package/esm2022/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-filter.component.mjs +20 -0
  313. package/esm2022/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-print.component.mjs +19 -0
  314. package/esm2022/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-view.component.mjs +45 -0
  315. package/esm2022/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget.config.mjs +37 -0
  316. package/esm2022/widgets/lib/widgets/editors/select-box-widget/index.mjs +7 -0
  317. package/esm2022/widgets/lib/widgets/editors/select-box-widget/select-box-widget-column.component.mjs +19 -0
  318. package/esm2022/widgets/lib/widgets/editors/select-box-widget/select-box-widget-edit.component.mjs +75 -0
  319. package/esm2022/widgets/lib/widgets/editors/select-box-widget/select-box-widget-filter.component.mjs +19 -0
  320. package/esm2022/widgets/lib/widgets/editors/select-box-widget/select-box-widget-print.component.mjs +19 -0
  321. package/esm2022/widgets/lib/widgets/editors/select-box-widget/select-box-widget-view.component.mjs +60 -0
  322. package/esm2022/widgets/lib/widgets/editors/select-box-widget/select-box-widget.config.mjs +28 -0
  323. package/esm2022/widgets/lib/widgets/editors/selection-list-widget/index.mjs +7 -0
  324. package/esm2022/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-column.component.mjs +41 -0
  325. package/esm2022/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-edit.component.mjs +72 -0
  326. package/esm2022/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-filter.component.mjs +20 -0
  327. package/esm2022/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-print.component.mjs +19 -0
  328. package/esm2022/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-view.component.mjs +44 -0
  329. package/esm2022/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget.config.mjs +25 -0
  330. package/esm2022/widgets/lib/widgets/editors/signature-pad-widget/index.mjs +7 -0
  331. package/esm2022/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-column.component.mjs +19 -0
  332. package/esm2022/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-edit.component.mjs +142 -0
  333. package/esm2022/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-filter.component.mjs +20 -0
  334. package/esm2022/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-print.component.mjs +19 -0
  335. package/esm2022/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-view.component.mjs +43 -0
  336. package/esm2022/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget.config.mjs +34 -0
  337. package/esm2022/widgets/lib/widgets/editors/text-box-widget/index.mjs +7 -0
  338. package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget-column.component.mjs +20 -0
  339. package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget-edit.component.mjs +119 -0
  340. package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget-filter.component.mjs +20 -0
  341. package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget-print.component.mjs +19 -0
  342. package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget-view.component.mjs +47 -0
  343. package/esm2022/widgets/lib/widgets/editors/text-box-widget/text-box-widget.config.mjs +38 -0
  344. package/esm2022/widgets/lib/widgets/editors/toggle-widget/index.mjs +7 -0
  345. package/esm2022/widgets/lib/widgets/editors/toggle-widget/toggle-widget-column.component.mjs +53 -0
  346. package/esm2022/widgets/lib/widgets/editors/toggle-widget/toggle-widget-edit.component.mjs +31 -0
  347. package/esm2022/widgets/lib/widgets/editors/toggle-widget/toggle-widget-filter.component.mjs +20 -0
  348. package/esm2022/widgets/lib/widgets/editors/toggle-widget/toggle-widget-print.component.mjs +19 -0
  349. package/esm2022/widgets/lib/widgets/editors/toggle-widget/toggle-widget-view.component.mjs +53 -0
  350. package/esm2022/widgets/lib/widgets/editors/toggle-widget/toggle-widget.config.mjs +36 -0
  351. package/esm2022/widgets/lib/widgets/index.mjs +25 -0
  352. package/esm2022/widgets/lib/widgets/layout/block-widget/block-widget-designer.component.mjs +65 -0
  353. package/esm2022/widgets/lib/widgets/layout/block-widget/block-widget-view.component.mjs +48 -0
  354. package/esm2022/widgets/lib/widgets/layout/block-widget/block-widget.config.mjs +27 -0
  355. package/esm2022/widgets/lib/widgets/layout/block-widget/index.mjs +4 -0
  356. package/esm2022/widgets/lib/widgets/layout/page-widget/index.mjs +3 -0
  357. package/esm2022/widgets/lib/widgets/layout/page-widget/page-widget-designer.component.mjs +55 -0
  358. package/esm2022/widgets/lib/widgets/layout/page-widget/page-widget-view.component.mjs +42 -0
  359. package/esm2022/widgets/lib/widgets/layout/page-widget/page-widget.config.mjs +27 -0
  360. package/esm2022/widgets/lib/widgets/layout/repeater-widget/index.mjs +6 -0
  361. package/esm2022/widgets/lib/widgets/layout/repeater-widget/repeater-widget-designer.component.mjs +50 -0
  362. package/esm2022/widgets/lib/widgets/layout/repeater-widget/repeater-widget-edit.component.mjs +20 -0
  363. package/esm2022/widgets/lib/widgets/layout/repeater-widget/repeater-widget-print.component.mjs +19 -0
  364. package/esm2022/widgets/lib/widgets/layout/repeater-widget/repeater-widget-view.component.mjs +52 -0
  365. package/esm2022/widgets/lib/widgets/layout/repeater-widget/repeater-widget.config.mjs +20 -0
  366. package/esm2022/widgets/lib/widgets/layout/text-block-widget/index.mjs +3 -0
  367. package/esm2022/widgets/lib/widgets/layout/text-block-widget/text-block-widget-view.component.mjs +29 -0
  368. package/esm2022/widgets/lib/widgets/layout/text-block-widget/text-block-widget.config.mjs +39 -0
  369. package/esm2022/widgets/lib/widgets.module.mjs +24 -26
  370. package/esm2022/workflow/lib/actions/start-workflow.action.mjs +3 -3
  371. package/esm2022/workflow/lib/workflow-event-dispatcher.service.mjs +3 -3
  372. package/esm2022/workflow/lib/workflow-registery.service.mjs +3 -3
  373. package/esm2022/workflow/lib/workflow.module.mjs +4 -4
  374. package/esm2022/workflow/lib/workflow.service.mjs +3 -3
  375. package/esm2022/workflow/lib/workflow.types.mjs +6 -6
  376. package/fesm2022/acorex-platform-auth.mjs +70 -28
  377. package/fesm2022/acorex-platform-auth.mjs.map +1 -1
  378. package/fesm2022/acorex-platform-common-avatar-widget-edit.component-CfqY7kKi.mjs +179 -0
  379. package/fesm2022/acorex-platform-common-avatar-widget-edit.component-CfqY7kKi.mjs.map +1 -0
  380. package/fesm2022/acorex-platform-common-avatar-widget-view.component-DXC7INdQ.mjs +86 -0
  381. package/fesm2022/acorex-platform-common-avatar-widget-view.component-DXC7INdQ.mjs.map +1 -0
  382. package/fesm2022/acorex-platform-common-boolean-widget-filter.component-DLGnsXy4.mjs +170 -0
  383. package/fesm2022/acorex-platform-common-boolean-widget-filter.component-DLGnsXy4.mjs.map +1 -0
  384. package/fesm2022/acorex-platform-common-change-password.component-BBPFxmB6.mjs +177 -0
  385. package/fesm2022/acorex-platform-common-change-password.component-BBPFxmB6.mjs.map +1 -0
  386. package/fesm2022/acorex-platform-common-checkbox-widget-column.component-Ch2bdAjo.mjs +77 -0
  387. package/fesm2022/acorex-platform-common-checkbox-widget-column.component-Ch2bdAjo.mjs.map +1 -0
  388. package/fesm2022/acorex-platform-common-checkbox-widget-edit.component-DOGMfGby.mjs +47 -0
  389. package/fesm2022/acorex-platform-common-checkbox-widget-edit.component-DOGMfGby.mjs.map +1 -0
  390. package/fesm2022/acorex-platform-common-checkbox-widget-view.component-BhGOtblX.mjs +71 -0
  391. package/fesm2022/acorex-platform-common-checkbox-widget-view.component-BhGOtblX.mjs.map +1 -0
  392. package/fesm2022/acorex-platform-common-dateTime-widget-column.component-BkUDt0Kj.mjs +67 -0
  393. package/fesm2022/acorex-platform-common-dateTime-widget-column.component-BkUDt0Kj.mjs.map +1 -0
  394. package/fesm2022/acorex-platform-common-dateTime-widget-edit.component-DEqsapFH.mjs +199 -0
  395. package/fesm2022/acorex-platform-common-dateTime-widget-edit.component-DEqsapFH.mjs.map +1 -0
  396. package/fesm2022/acorex-platform-common-dateTime-widget-filter.component-CqddjYjP.mjs +234 -0
  397. package/fesm2022/acorex-platform-common-dateTime-widget-filter.component-CqddjYjP.mjs.map +1 -0
  398. package/fesm2022/acorex-platform-common-dateTime-widget-view.component-BKUPKE9M.mjs +94 -0
  399. package/fesm2022/acorex-platform-common-dateTime-widget-view.component-BKUPKE9M.mjs.map +1 -0
  400. package/fesm2022/acorex-platform-common-email-widget-column.component-BOer2nZi.mjs +98 -0
  401. package/fesm2022/acorex-platform-common-email-widget-column.component-BOer2nZi.mjs.map +1 -0
  402. package/fesm2022/acorex-platform-common-email-widget-edit.component-BoKsGiEI.mjs +270 -0
  403. package/fesm2022/acorex-platform-common-email-widget-edit.component-BoKsGiEI.mjs.map +1 -0
  404. package/fesm2022/acorex-platform-common-email-widget-view.component-BZtK5dMd.mjs +131 -0
  405. package/fesm2022/acorex-platform-common-email-widget-view.component-BZtK5dMd.mjs.map +1 -0
  406. package/fesm2022/acorex-platform-common-file-widget-column.component-DpcUmwAT.mjs +50 -0
  407. package/fesm2022/acorex-platform-common-file-widget-column.component-DpcUmwAT.mjs.map +1 -0
  408. package/fesm2022/acorex-platform-common-file-widget-edit.component-CNLXguLn.mjs +222 -0
  409. package/fesm2022/acorex-platform-common-file-widget-edit.component-CNLXguLn.mjs.map +1 -0
  410. package/fesm2022/acorex-platform-common-file-widget-filter.component-Dwt-LYWG.mjs +52 -0
  411. package/fesm2022/acorex-platform-common-file-widget-filter.component-Dwt-LYWG.mjs.map +1 -0
  412. package/fesm2022/acorex-platform-common-file-widget-view.component-CjDhjHQR.mjs +175 -0
  413. package/fesm2022/acorex-platform-common-file-widget-view.component-CjDhjHQR.mjs.map +1 -0
  414. package/fesm2022/acorex-platform-common-gallery-widget-edit.component-CzKFKaPH.mjs +210 -0
  415. package/fesm2022/acorex-platform-common-gallery-widget-edit.component-CzKFKaPH.mjs.map +1 -0
  416. package/fesm2022/acorex-platform-common-gallery-widget-filter.component-B-KxKtY4.mjs +51 -0
  417. package/fesm2022/acorex-platform-common-gallery-widget-filter.component-B-KxKtY4.mjs.map +1 -0
  418. package/fesm2022/acorex-platform-common-gallery-widget-view.component-ca-JB8qW.mjs +194 -0
  419. package/fesm2022/acorex-platform-common-gallery-widget-view.component-ca-JB8qW.mjs.map +1 -0
  420. package/fesm2022/acorex-platform-common-largetext-widget-edit.component-CrqPJ58V.mjs +61 -0
  421. package/fesm2022/acorex-platform-common-largetext-widget-edit.component-CrqPJ58V.mjs.map +1 -0
  422. package/fesm2022/acorex-platform-common-lookup-widget-column.component-BEZNLQZi.mjs +67 -0
  423. package/fesm2022/acorex-platform-common-lookup-widget-column.component-BEZNLQZi.mjs.map +1 -0
  424. package/fesm2022/acorex-platform-common-lookup-widget-edit.component-D50jPeKP.mjs +118 -0
  425. package/fesm2022/acorex-platform-common-lookup-widget-edit.component-D50jPeKP.mjs.map +1 -0
  426. package/fesm2022/acorex-platform-common-lookup-widget-filter.component-CZHDDnR3.mjs +153 -0
  427. package/fesm2022/acorex-platform-common-lookup-widget-filter.component-CZHDDnR3.mjs.map +1 -0
  428. package/fesm2022/acorex-platform-common-lookup-widget-view.component-CQCvJxgi.mjs +78 -0
  429. package/fesm2022/acorex-platform-common-lookup-widget-view.component-CQCvJxgi.mjs.map +1 -0
  430. package/fesm2022/acorex-platform-common-map-widget-edit.component-OanYRQ3B.mjs +115 -0
  431. package/fesm2022/acorex-platform-common-map-widget-edit.component-OanYRQ3B.mjs.map +1 -0
  432. package/fesm2022/acorex-platform-common-map-widget-view.component-BWdndMYJ.mjs +87 -0
  433. package/fesm2022/acorex-platform-common-map-widget-view.component-BWdndMYJ.mjs.map +1 -0
  434. package/fesm2022/acorex-platform-common-messenger-widget-column.component-BHP6R3OI.mjs +96 -0
  435. package/fesm2022/acorex-platform-common-messenger-widget-column.component-BHP6R3OI.mjs.map +1 -0
  436. package/fesm2022/acorex-platform-common-messenger-widget-edit.component-B7ycb6tX.mjs +158 -0
  437. package/fesm2022/acorex-platform-common-messenger-widget-edit.component-B7ycb6tX.mjs.map +1 -0
  438. package/fesm2022/acorex-platform-common-messenger-widget-view.component-Dz5X-FS5.mjs +155 -0
  439. package/fesm2022/acorex-platform-common-messenger-widget-view.component-Dz5X-FS5.mjs.map +1 -0
  440. package/fesm2022/acorex-platform-common-number-widget-edit.component-XSWI6466.mjs +69 -0
  441. package/fesm2022/acorex-platform-common-number-widget-edit.component-XSWI6466.mjs.map +1 -0
  442. package/fesm2022/acorex-platform-common-number-widget-filter.component-BOT9wPJ5.mjs +158 -0
  443. package/fesm2022/acorex-platform-common-number-widget-filter.component-BOT9wPJ5.mjs.map +1 -0
  444. package/fesm2022/acorex-platform-common-number-widget-view.component-CP5aboLU.mjs +55 -0
  445. package/fesm2022/acorex-platform-common-number-widget-view.component-CP5aboLU.mjs.map +1 -0
  446. package/fesm2022/acorex-platform-common-password-widget-column.component-CGxTbd_S.mjs +90 -0
  447. package/fesm2022/acorex-platform-common-password-widget-column.component-CGxTbd_S.mjs.map +1 -0
  448. package/fesm2022/acorex-platform-common-password-widget-edit.component-CHQ_Kp4t.mjs +65 -0
  449. package/fesm2022/acorex-platform-common-password-widget-edit.component-CHQ_Kp4t.mjs.map +1 -0
  450. package/fesm2022/acorex-platform-common-password-widget-view.component-BQ9jlt6g.mjs +129 -0
  451. package/fesm2022/acorex-platform-common-password-widget-view.component-BQ9jlt6g.mjs.map +1 -0
  452. package/fesm2022/acorex-platform-common-phone-widget-column.component-RJp6wHul.mjs +116 -0
  453. package/fesm2022/acorex-platform-common-phone-widget-column.component-RJp6wHul.mjs.map +1 -0
  454. package/fesm2022/acorex-platform-common-phone-widget-edit.component-BB5wTbjd.mjs +270 -0
  455. package/fesm2022/acorex-platform-common-phone-widget-edit.component-BB5wTbjd.mjs.map +1 -0
  456. package/fesm2022/acorex-platform-common-phone-widget-view.component-SIzFWfjV.mjs +146 -0
  457. package/fesm2022/acorex-platform-common-phone-widget-view.component-SIzFWfjV.mjs.map +1 -0
  458. package/fesm2022/acorex-platform-common-rich-text-widget-column.component-Ced0WqvI.mjs +86 -0
  459. package/fesm2022/acorex-platform-common-rich-text-widget-column.component-Ced0WqvI.mjs.map +1 -0
  460. package/fesm2022/acorex-platform-common-rich-text-widget-edit.component-CnH3MjYz.mjs +90 -0
  461. package/fesm2022/acorex-platform-common-rich-text-widget-edit.component-CnH3MjYz.mjs.map +1 -0
  462. package/fesm2022/acorex-platform-common-rich-text-widget-view.component-BIRyPRtw.mjs +59 -0
  463. package/fesm2022/acorex-platform-common-rich-text-widget-view.component-BIRyPRtw.mjs.map +1 -0
  464. package/fesm2022/acorex-platform-common-selection-list-widget-column.component-DxeK2RPc.mjs +70 -0
  465. package/fesm2022/acorex-platform-common-selection-list-widget-column.component-DxeK2RPc.mjs.map +1 -0
  466. package/fesm2022/acorex-platform-common-selection-list-widget-edit.component-CBLEeILz.mjs +77 -0
  467. package/fesm2022/acorex-platform-common-selection-list-widget-edit.component-CBLEeILz.mjs.map +1 -0
  468. package/fesm2022/acorex-platform-common-selection-list-widget-filter.component-B01t7mso.mjs +66 -0
  469. package/fesm2022/acorex-platform-common-selection-list-widget-filter.component-B01t7mso.mjs.map +1 -0
  470. package/fesm2022/acorex-platform-common-selection-list-widget-view.component-QJMp11dd.mjs +70 -0
  471. package/fesm2022/acorex-platform-common-selection-list-widget-view.component-QJMp11dd.mjs.map +1 -0
  472. package/fesm2022/acorex-platform-common-signature-pad-widget-edit.component-BQiY7RIp.mjs +149 -0
  473. package/fesm2022/acorex-platform-common-signature-pad-widget-edit.component-BQiY7RIp.mjs.map +1 -0
  474. package/fesm2022/acorex-platform-common-signature-pad-widget-view.component-CEhRqgEn.mjs +64 -0
  475. package/fesm2022/acorex-platform-common-signature-pad-widget-view.component-CEhRqgEn.mjs.map +1 -0
  476. package/fesm2022/acorex-platform-common-string-widget-filter.component--L4PeRCB.mjs +148 -0
  477. package/fesm2022/acorex-platform-common-string-widget-filter.component--L4PeRCB.mjs.map +1 -0
  478. package/fesm2022/acorex-platform-common-text-widget-column.component-D-mLfzKJ.mjs +71 -0
  479. package/fesm2022/acorex-platform-common-text-widget-column.component-D-mLfzKJ.mjs.map +1 -0
  480. package/fesm2022/acorex-platform-common-text-widget-edit.component-CN7OyTfJ.mjs +184 -0
  481. package/fesm2022/acorex-platform-common-text-widget-edit.component-CN7OyTfJ.mjs.map +1 -0
  482. package/fesm2022/acorex-platform-common-text-widget-view.component-B-R4-5Ra.mjs +91 -0
  483. package/fesm2022/acorex-platform-common-text-widget-view.component-B-R4-5Ra.mjs.map +1 -0
  484. package/fesm2022/acorex-platform-common-toggle-widget-column.component-B5NFRPgX.mjs +81 -0
  485. package/fesm2022/acorex-platform-common-toggle-widget-column.component-B5NFRPgX.mjs.map +1 -0
  486. package/fesm2022/acorex-platform-common-toggle-widget-edit.component-CLWHwf8V.mjs +47 -0
  487. package/fesm2022/acorex-platform-common-toggle-widget-edit.component-CLWHwf8V.mjs.map +1 -0
  488. package/fesm2022/acorex-platform-common-toggle-widget-view.component-Di2S7vub.mjs +73 -0
  489. package/fesm2022/acorex-platform-common-toggle-widget-view.component-Di2S7vub.mjs.map +1 -0
  490. package/fesm2022/acorex-platform-common.mjs +168 -168
  491. package/fesm2022/acorex-platform-common.mjs.map +1 -1
  492. package/fesm2022/acorex-platform-core.mjs +87 -0
  493. package/fesm2022/acorex-platform-core.mjs.map +1 -0
  494. package/fesm2022/acorex-platform-layout-builder.mjs +213 -85
  495. package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
  496. package/fesm2022/acorex-platform-layout-designer-widget-picker.component-DkZGbnkz.mjs +26 -0
  497. package/fesm2022/acorex-platform-layout-designer-widget-picker.component-DkZGbnkz.mjs.map +1 -0
  498. package/fesm2022/acorex-platform-layout-designer.mjs +984 -0
  499. package/fesm2022/acorex-platform-layout-designer.mjs.map +1 -0
  500. package/fesm2022/acorex-platform-layout-entity.mjs +170 -114
  501. package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
  502. package/fesm2022/acorex-platform-layouts-entity-create-view.component-B2XtNJo1.mjs +110 -0
  503. package/fesm2022/acorex-platform-layouts-entity-create-view.component-B2XtNJo1.mjs.map +1 -0
  504. package/fesm2022/acorex-platform-layouts-entity-import-view.component-CZpEcVi9.mjs +93 -0
  505. package/fesm2022/acorex-platform-layouts-entity-import-view.component-CZpEcVi9.mjs.map +1 -0
  506. package/fesm2022/acorex-platform-layouts-entity-modify-view.component-CjofXJku.mjs +91 -0
  507. package/fesm2022/acorex-platform-layouts-entity-modify-view.component-CjofXJku.mjs.map +1 -0
  508. package/fesm2022/acorex-platform-layouts.mjs +82 -82
  509. package/fesm2022/acorex-platform-layouts.mjs.map +1 -1
  510. package/fesm2022/acorex-platform-mocks.mjs +10 -10
  511. package/fesm2022/acorex-platform-mocks.mjs.map +1 -1
  512. package/fesm2022/acorex-platform-native.mjs +7 -7
  513. package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-Cv0mt0pU.mjs +100 -0
  514. package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-Cv0mt0pU.mjs.map +1 -0
  515. package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-BDk03AnX.mjs +88 -0
  516. package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-BDk03AnX.mjs.map +1 -0
  517. package/fesm2022/acorex-platform-themes-default-error-401.component-D5QQ2HAv.mjs +31 -0
  518. package/fesm2022/acorex-platform-themes-default-error-401.component-D5QQ2HAv.mjs.map +1 -0
  519. package/fesm2022/acorex-platform-themes-default-error-404.component-DSY_D3Iq.mjs +25 -0
  520. package/fesm2022/acorex-platform-themes-default-error-404.component-DSY_D3Iq.mjs.map +1 -0
  521. package/fesm2022/acorex-platform-themes-default-error-offline.component-B6wSkMdd.mjs +19 -0
  522. package/fesm2022/acorex-platform-themes-default-error-offline.component-B6wSkMdd.mjs.map +1 -0
  523. package/fesm2022/acorex-platform-themes-default.mjs +42 -42
  524. package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
  525. package/fesm2022/acorex-platform-widgets-checkbox-widget-column.component-BzNhzB9y.mjs +54 -0
  526. package/fesm2022/acorex-platform-widgets-checkbox-widget-column.component-BzNhzB9y.mjs.map +1 -0
  527. package/fesm2022/acorex-platform-widgets-checkbox-widget-view.component-BCsej7C6.mjs +58 -0
  528. package/fesm2022/acorex-platform-widgets-checkbox-widget-view.component-BCsej7C6.mjs.map +1 -0
  529. package/fesm2022/acorex-platform-widgets-page-widget-designer.component-DYb6bilD.mjs +58 -0
  530. package/fesm2022/acorex-platform-widgets-page-widget-designer.component-DYb6bilD.mjs.map +1 -0
  531. package/fesm2022/acorex-platform-widgets-rich-text-popup.component-RCdFIz45.mjs +41 -0
  532. package/fesm2022/acorex-platform-widgets-rich-text-popup.component-RCdFIz45.mjs.map +1 -0
  533. package/fesm2022/acorex-platform-widgets.mjs +2920 -1714
  534. package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
  535. package/fesm2022/acorex-platform-workflow.mjs +22 -22
  536. package/layout/builder/lib/builder/builder.service.d.ts +10 -0
  537. package/layout/builder/lib/builder/layout.types.d.ts +1 -30
  538. package/layout/builder/lib/builder/widget-container.component.d.ts +5 -5
  539. package/layout/builder/lib/builder/widget-registery.service.d.ts +1 -0
  540. package/layout/builder/lib/builder/widget-renderer.component.d.ts +7 -2
  541. package/layout/builder/lib/builder/widget.types.d.ts +99 -43
  542. package/layout/designer/README.md +4 -0
  543. package/layout/designer/index.d.ts +7 -0
  544. package/layout/designer/lib/board/board.component.d.ts +10 -0
  545. package/layout/designer/lib/breadcrumbs/breadcrumbs.component.d.ts +11 -0
  546. package/layout/designer/lib/buttons/add-widget-button/add-widget-button.component.d.ts +9 -0
  547. package/layout/designer/lib/designer/designer.component.d.ts +18 -0
  548. package/layout/designer/lib/designer.module.d.ts +6 -0
  549. package/layout/designer/lib/designer.service.d.ts +103 -0
  550. package/layout/designer/lib/outline/outline.component.d.ts +17 -0
  551. package/layout/designer/lib/property-viewer/widget-property-viewer.component.d.ts +41 -0
  552. package/layout/designer/lib/widget-designer-renderer.component.d.ts +38 -0
  553. package/layout/designer/lib/widget-picker/widget-picker.component.d.ts +9 -0
  554. package/layout/entity/lib/widgets/lookup-widget/index.d.ts +0 -1
  555. package/layout/entity/lib/widgets/lookup-widget/lookup-widget-column.component.d.ts +2 -2
  556. package/layout/entity/lib/widgets/lookup-widget/lookup-widget-edit.component.d.ts +10 -9
  557. package/layout/entity/lib/widgets/lookup-widget/lookup-widget-filter.component.d.ts +2 -2
  558. package/layout/entity/lib/widgets/lookup-widget/lookup-widget-print.component.d.ts +2 -2
  559. package/layout/entity/lib/widgets/lookup-widget/lookup-widget-view.component.d.ts +14 -2
  560. package/package.json +13 -2
  561. package/themes/default/lib/layouts/root-layout/root-layout.component.d.ts +3 -3
  562. package/widgets/index.d.ts +2 -0
  563. package/widgets/lib/properties/editors.props.d.ts +26 -0
  564. package/widgets/lib/properties/groups.d.ts +5 -0
  565. package/widgets/lib/properties/index.d.ts +3 -0
  566. package/widgets/lib/properties/table-column.props.d.ts +2 -0
  567. package/widgets/lib/widgets/actions/button-widget/button-widget-view.component.d.ts +15 -0
  568. package/widgets/lib/widgets/actions/button-widget/button-widget.config.d.ts +2 -0
  569. package/widgets/lib/widgets/actions/button-widget/index.d.ts +2 -0
  570. package/widgets/lib/widgets/editors/checkbox/checkbox-widget-column.component.d.ts +9 -0
  571. package/widgets/lib/widgets/editors/checkbox/checkbox-widget-edit.component.d.ts +15 -0
  572. package/widgets/lib/widgets/editors/checkbox/checkbox-widget-view.component.d.ts +9 -0
  573. package/widgets/lib/widgets/editors/color-box-widget/color-box-widget-column.component.d.ts +6 -0
  574. package/widgets/lib/widgets/editors/color-box-widget/color-box-widget-edit.component.d.ts +12 -0
  575. package/widgets/lib/widgets/editors/color-box-widget/color-box-widget-filter.component.d.ts +6 -0
  576. package/widgets/lib/widgets/editors/color-box-widget/color-box-widget-print.component.d.ts +6 -0
  577. package/widgets/lib/widgets/editors/color-box-widget/color-box-widget-view.component.d.ts +6 -0
  578. package/widgets/lib/widgets/editors/color-box-widget/color-box-widget.config.d.ts +2 -0
  579. package/widgets/lib/widgets/editors/color-box-widget/index.d.ts +6 -0
  580. package/widgets/lib/widgets/editors/contact-widget/contact-widget-column.component.d.ts +8 -0
  581. package/widgets/lib/widgets/editors/contact-widget/contact-widget-edit.component.d.ts +32 -0
  582. package/widgets/lib/widgets/editors/contact-widget/contact-widget-filter.component.d.ts +6 -0
  583. package/widgets/lib/widgets/editors/contact-widget/contact-widget-print.component.d.ts +6 -0
  584. package/widgets/lib/widgets/editors/contact-widget/contact-widget-view.component.d.ts +19 -0
  585. package/widgets/lib/widgets/editors/contact-widget/contact.type.d.ts +5 -0
  586. package/widgets/lib/widgets/editors/contact-widget/index.d.ts +6 -0
  587. package/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-column.component.d.ts +14 -0
  588. package/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-edit.component.d.ts +24 -0
  589. package/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-filter.component.d.ts +6 -0
  590. package/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-print.component.d.ts +6 -0
  591. package/widgets/lib/widgets/editors/date-time-box-widget/date-time-box-widget-view.component.d.ts +11 -0
  592. package/widgets/lib/widgets/editors/date-time-box-widget/index.d.ts +6 -0
  593. package/widgets/lib/widgets/editors/email-box-widget/email-box-widget-column.component.d.ts +16 -0
  594. package/widgets/lib/widgets/editors/email-box-widget/email-box-widget-edit.component.d.ts +32 -0
  595. package/widgets/lib/widgets/editors/email-box-widget/email-box-widget-filter.component.d.ts +6 -0
  596. package/widgets/lib/widgets/editors/email-box-widget/email-box-widget-print.component.d.ts +6 -0
  597. package/widgets/lib/widgets/editors/email-box-widget/email-box-widget-view.component.d.ts +12 -0
  598. package/widgets/lib/widgets/editors/email-box-widget/index.d.ts +6 -0
  599. package/widgets/lib/widgets/editors/file-box-widget/file-box-widget-column.component.d.ts +6 -0
  600. package/widgets/lib/widgets/editors/file-box-widget/file-box-widget-edit.component.d.ts +24 -0
  601. package/widgets/lib/widgets/editors/file-box-widget/file-box-widget-filter.component.d.ts +6 -0
  602. package/widgets/lib/widgets/editors/file-box-widget/file-box-widget-print.component.d.ts +6 -0
  603. package/widgets/lib/widgets/editors/file-box-widget/file-box-widget-view.component.d.ts +29 -0
  604. package/widgets/lib/widgets/editors/file-box-widget/file-box-widget.service.d.ts +12 -0
  605. package/widgets/lib/widgets/editors/file-box-widget/index.d.ts +7 -0
  606. package/widgets/lib/widgets/editors/gallery-widget/gallery-widget-column.component.d.ts +6 -0
  607. package/widgets/lib/widgets/editors/gallery-widget/gallery-widget-edit.component.d.ts +15 -0
  608. package/widgets/lib/widgets/editors/gallery-widget/gallery-widget-filter.component.d.ts +6 -0
  609. package/widgets/lib/widgets/editors/gallery-widget/gallery-widget-print.component.d.ts +6 -0
  610. package/widgets/lib/widgets/editors/gallery-widget/gallery-widget-view.component.d.ts +15 -0
  611. package/widgets/lib/widgets/editors/gallery-widget/index.d.ts +6 -0
  612. package/widgets/lib/widgets/editors/large-text-widget/index.d.ts +6 -0
  613. package/widgets/lib/widgets/editors/large-text-widget/large-text-widget-column.component.d.ts +6 -0
  614. package/widgets/lib/widgets/editors/large-text-widget/large-text-widget-edit.component.d.ts +14 -0
  615. package/widgets/lib/widgets/editors/large-text-widget/large-text-widget-filter.component.d.ts +6 -0
  616. package/widgets/lib/widgets/editors/large-text-widget/large-text-widget-print.component.d.ts +6 -0
  617. package/widgets/lib/widgets/editors/large-text-widget/large-text-widget-view.component.d.ts +6 -0
  618. package/widgets/lib/widgets/editors/link-widget/index.d.ts +6 -0
  619. package/widgets/lib/widgets/editors/link-widget/link-widget-column.component.d.ts +6 -0
  620. package/widgets/lib/widgets/editors/link-widget/link-widget-edit.component.d.ts +38 -0
  621. package/widgets/lib/widgets/editors/link-widget/link-widget-filter.component.d.ts +6 -0
  622. package/widgets/lib/widgets/editors/link-widget/link-widget-print.component.d.ts +6 -0
  623. package/widgets/lib/widgets/editors/link-widget/link-widget-view.component.d.ts +13 -0
  624. package/widgets/lib/widgets/editors/map-box-widget/index.d.ts +6 -0
  625. package/widgets/lib/widgets/editors/map-box-widget/map-box-widget-column.component.d.ts +6 -0
  626. package/widgets/lib/widgets/editors/map-box-widget/map-box-widget-edit.component.d.ts +15 -0
  627. package/widgets/lib/widgets/editors/map-box-widget/map-box-widget-filter.component.d.ts +6 -0
  628. package/widgets/lib/widgets/editors/map-box-widget/map-box-widget-print.component.d.ts +6 -0
  629. package/widgets/lib/widgets/editors/map-box-widget/map-box-widget-view.component.d.ts +16 -0
  630. package/widgets/lib/widgets/editors/number-box-widget/index.d.ts +6 -0
  631. package/widgets/lib/widgets/editors/number-box-widget/number-box-widget-column.component.d.ts +8 -0
  632. package/widgets/lib/widgets/editors/number-box-widget/number-box-widget-edit.component.d.ts +25 -0
  633. package/widgets/lib/widgets/editors/number-box-widget/number-box-widget-filter.component.d.ts +6 -0
  634. package/widgets/lib/widgets/editors/number-box-widget/number-box-widget-print.component.d.ts +6 -0
  635. package/widgets/lib/widgets/editors/number-box-widget/number-box-widget-view.component.d.ts +12 -0
  636. package/widgets/lib/widgets/editors/password-box-widget/index.d.ts +6 -0
  637. package/widgets/lib/widgets/editors/password-box-widget/password-box-widget-column.component.d.ts +6 -0
  638. package/widgets/lib/widgets/editors/password-box-widget/password-box-widget-edit.component.d.ts +10 -0
  639. package/widgets/lib/widgets/editors/password-box-widget/password-box-widget-filter.component.d.ts +6 -0
  640. package/widgets/lib/widgets/editors/password-box-widget/password-box-widget-print.component.d.ts +6 -0
  641. package/widgets/lib/widgets/editors/password-box-widget/password-box-widget-view.component.d.ts +14 -0
  642. package/widgets/lib/widgets/editors/phone-box-widget/index.d.ts +6 -0
  643. package/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-column.component.d.ts +16 -0
  644. package/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-edit.component.d.ts +29 -0
  645. package/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-filter.component.d.ts +6 -0
  646. package/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-print.component.d.ts +6 -0
  647. package/widgets/lib/widgets/editors/phone-box-widget/phone-box-widget-view.component.d.ts +12 -0
  648. package/widgets/lib/widgets/editors/rich-text-widget/index.d.ts +6 -0
  649. package/widgets/lib/widgets/editors/rich-text-widget/rich-text-popup.component.d.ts +9 -0
  650. package/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-column.component.d.ts +14 -0
  651. package/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-edit.component.d.ts +11 -0
  652. package/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-filter.component.d.ts +6 -0
  653. package/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-print.component.d.ts +6 -0
  654. package/widgets/lib/widgets/editors/rich-text-widget/rich-text-widget-view.component.d.ts +14 -0
  655. package/widgets/lib/widgets/editors/select-box-widget/index.d.ts +6 -0
  656. package/widgets/lib/widgets/editors/select-box-widget/select-box-widget-column.component.d.ts +6 -0
  657. package/widgets/lib/widgets/editors/select-box-widget/select-box-widget-edit.component.d.ts +16 -0
  658. package/widgets/lib/widgets/editors/select-box-widget/select-box-widget-filter.component.d.ts +6 -0
  659. package/widgets/lib/widgets/editors/select-box-widget/select-box-widget-print.component.d.ts +6 -0
  660. package/widgets/lib/widgets/editors/select-box-widget/select-box-widget-view.component.d.ts +12 -0
  661. package/widgets/lib/widgets/editors/selection-list-widget/index.d.ts +6 -0
  662. package/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-column.component.d.ts +14 -0
  663. package/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-edit.component.d.ts +16 -0
  664. package/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-filter.component.d.ts +6 -0
  665. package/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-print.component.d.ts +6 -0
  666. package/widgets/lib/widgets/editors/selection-list-widget/selection-list-widget-view.component.d.ts +11 -0
  667. package/widgets/lib/widgets/editors/signature-pad-widget/index.d.ts +6 -0
  668. package/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-column.component.d.ts +6 -0
  669. package/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-edit.component.d.ts +23 -0
  670. package/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-filter.component.d.ts +6 -0
  671. package/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-print.component.d.ts +6 -0
  672. package/widgets/lib/widgets/editors/signature-pad-widget/signature-pad-widget-view.component.d.ts +8 -0
  673. package/widgets/lib/widgets/editors/text-box-widget/index.d.ts +6 -0
  674. package/widgets/lib/widgets/editors/text-box-widget/text-box-widget-column.component.d.ts +6 -0
  675. package/widgets/lib/widgets/editors/text-box-widget/text-box-widget-edit.component.d.ts +18 -0
  676. package/widgets/lib/widgets/editors/text-box-widget/text-box-widget-filter.component.d.ts +6 -0
  677. package/widgets/lib/widgets/editors/text-box-widget/text-box-widget-print.component.d.ts +6 -0
  678. package/widgets/lib/widgets/editors/text-box-widget/text-box-widget-view.component.d.ts +8 -0
  679. package/widgets/lib/widgets/editors/toggle-widget/index.d.ts +6 -0
  680. package/widgets/lib/widgets/editors/toggle-widget/toggle-widget-column.component.d.ts +9 -0
  681. package/widgets/lib/widgets/editors/toggle-widget/toggle-widget-edit.component.d.ts +10 -0
  682. package/widgets/lib/widgets/editors/toggle-widget/toggle-widget-filter.component.d.ts +6 -0
  683. package/widgets/lib/widgets/editors/toggle-widget/toggle-widget-print.component.d.ts +6 -0
  684. package/widgets/lib/widgets/editors/toggle-widget/toggle-widget-view.component.d.ts +9 -0
  685. package/widgets/lib/widgets/index.d.ts +22 -0
  686. package/widgets/lib/widgets/layout/block-widget/block-widget-designer.component.d.ts +11 -0
  687. package/widgets/lib/widgets/layout/block-widget/block-widget-view.component.d.ts +10 -0
  688. package/widgets/lib/widgets/layout/block-widget/index.d.ts +3 -0
  689. package/widgets/lib/widgets/layout/page-widget/index.d.ts +2 -0
  690. package/widgets/lib/widgets/layout/page-widget/page-widget-designer.component.d.ts +8 -0
  691. package/widgets/lib/widgets/layout/page-widget/page-widget-view.component.d.ts +8 -0
  692. package/widgets/lib/widgets/layout/page-widget/page-widget.config.d.ts +2 -0
  693. package/widgets/lib/widgets/layout/repeater-widget/index.d.ts +5 -0
  694. package/widgets/lib/widgets/layout/repeater-widget/repeater-widget-designer.component.d.ts +8 -0
  695. package/widgets/lib/widgets/layout/repeater-widget/repeater-widget-edit.component.d.ts +6 -0
  696. package/widgets/lib/widgets/layout/repeater-widget/repeater-widget-print.component.d.ts +6 -0
  697. package/widgets/lib/widgets/layout/repeater-widget/repeater-widget-view.component.d.ts +11 -0
  698. package/widgets/lib/widgets/layout/repeater-widget/repeater-widget.config.d.ts +2 -0
  699. package/widgets/lib/widgets/layout/text-block-widget/index.d.ts +2 -0
  700. package/widgets/lib/widgets/layout/text-block-widget/text-block-widget-view.component.d.ts +10 -0
  701. package/widgets/lib/widgets/layout/text-block-widget/text-block-widget.config.d.ts +2 -0
  702. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-designer.component.mjs +0 -19
  703. package/esm2022/widgets/lib/editors/checkbox/checkbox-widget-column.component.mjs +0 -45
  704. package/esm2022/widgets/lib/editors/checkbox/checkbox-widget-edit.component.mjs +0 -45
  705. package/esm2022/widgets/lib/editors/checkbox/checkbox-widget-view.component.mjs +0 -54
  706. package/esm2022/widgets/lib/editors/checkbox/checkbox-widget.config.mjs +0 -15
  707. package/esm2022/widgets/lib/editors/checkbox/index.mjs +0 -3
  708. package/esm2022/widgets/lib/editors/contact-widget/contact-widget-column.component.mjs +0 -19
  709. package/esm2022/widgets/lib/editors/contact-widget/contact-widget-designer.component.mjs +0 -19
  710. package/esm2022/widgets/lib/editors/contact-widget/contact-widget-edit.component.mjs +0 -267
  711. package/esm2022/widgets/lib/editors/contact-widget/contact-widget-filter.component.mjs +0 -20
  712. package/esm2022/widgets/lib/editors/contact-widget/contact-widget-print.component.mjs +0 -19
  713. package/esm2022/widgets/lib/editors/contact-widget/contact-widget-view.component.mjs +0 -20
  714. package/esm2022/widgets/lib/editors/contact-widget/contact-widget.config.mjs +0 -24
  715. package/esm2022/widgets/lib/editors/contact-widget/index.mjs +0 -8
  716. package/esm2022/widgets/lib/editors/contact-widget/popup-component.mjs +0 -78
  717. package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-column.component.mjs +0 -44
  718. package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-designer.component.mjs +0 -19
  719. package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-edit.component.mjs +0 -122
  720. package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-filter.component.mjs +0 -20
  721. package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-print.component.mjs +0 -19
  722. package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-view.component.mjs +0 -45
  723. package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget.config.mjs +0 -24
  724. package/esm2022/widgets/lib/editors/date-time-box-widget/index.mjs +0 -8
  725. package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-column.component.mjs +0 -66
  726. package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-designer.component.mjs +0 -19
  727. package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-edit.component.mjs +0 -228
  728. package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-filter.component.mjs +0 -20
  729. package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-print.component.mjs +0 -19
  730. package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-view.component.mjs +0 -111
  731. package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget.config.mjs +0 -24
  732. package/esm2022/widgets/lib/editors/email-box-widget/index.mjs +0 -8
  733. package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-column.component.mjs +0 -19
  734. package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-designer.component.mjs +0 -19
  735. package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-edit.component.mjs +0 -189
  736. package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-filter.component.mjs +0 -20
  737. package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-print.component.mjs +0 -19
  738. package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-view.component.mjs +0 -147
  739. package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget.config.mjs +0 -24
  740. package/esm2022/widgets/lib/editors/file-box-widget/index.mjs +0 -8
  741. package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-column.component.mjs +0 -19
  742. package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-designer.component.mjs +0 -19
  743. package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-edit.component.mjs +0 -172
  744. package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-filter.component.mjs +0 -20
  745. package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-print.component.mjs +0 -19
  746. package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-types.mjs +0 -2
  747. package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-view.component.mjs +0 -159
  748. package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget.config.mjs +0 -24
  749. package/esm2022/widgets/lib/editors/gallery-widget/index.mjs +0 -8
  750. package/esm2022/widgets/lib/editors/large-text-widget/index.mjs +0 -8
  751. package/esm2022/widgets/lib/editors/large-text-widget/large-text-widget-column.component.mjs +0 -23
  752. package/esm2022/widgets/lib/editors/large-text-widget/large-text-widget-designer.component.mjs +0 -19
  753. package/esm2022/widgets/lib/editors/large-text-widget/large-text-widget-edit.component.mjs +0 -47
  754. package/esm2022/widgets/lib/editors/large-text-widget/large-text-widget-filter.component.mjs +0 -20
  755. package/esm2022/widgets/lib/editors/large-text-widget/large-text-widget-print.component.mjs +0 -19
  756. package/esm2022/widgets/lib/editors/large-text-widget/large-text-widget-view.component.mjs +0 -31
  757. package/esm2022/widgets/lib/editors/large-text-widget/large-text-widget.config.mjs +0 -24
  758. package/esm2022/widgets/lib/editors/link-widget/index.mjs +0 -8
  759. package/esm2022/widgets/lib/editors/link-widget/link-widget-column.component.mjs +0 -19
  760. package/esm2022/widgets/lib/editors/link-widget/link-widget-designer.component.mjs +0 -19
  761. package/esm2022/widgets/lib/editors/link-widget/link-widget-edit.component.mjs +0 -391
  762. package/esm2022/widgets/lib/editors/link-widget/link-widget-filter.component.mjs +0 -20
  763. package/esm2022/widgets/lib/editors/link-widget/link-widget-print.component.mjs +0 -19
  764. package/esm2022/widgets/lib/editors/link-widget/link-widget-view.component.mjs +0 -120
  765. package/esm2022/widgets/lib/editors/link-widget/link-widget.config.mjs +0 -24
  766. package/esm2022/widgets/lib/editors/map-box-widget/index.mjs +0 -8
  767. package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-column.component.mjs +0 -19
  768. package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-designer.component.mjs +0 -19
  769. package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-edit.component.mjs +0 -92
  770. package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-filter.component.mjs +0 -20
  771. package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-print.component.mjs +0 -19
  772. package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-view.component.mjs +0 -65
  773. package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget.config.mjs +0 -24
  774. package/esm2022/widgets/lib/editors/number-box-widget/index.mjs +0 -8
  775. package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-column.component.mjs +0 -38
  776. package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-designer.component.mjs +0 -19
  777. package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-edit.component.mjs +0 -138
  778. package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-filter.component.mjs +0 -20
  779. package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-print.component.mjs +0 -19
  780. package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-view.component.mjs +0 -53
  781. package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget.config.mjs +0 -27
  782. package/esm2022/widgets/lib/editors/password-box-widget/index.mjs +0 -8
  783. package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-column.component.mjs +0 -19
  784. package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-designer.component.mjs +0 -19
  785. package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-edit.component.mjs +0 -39
  786. package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-filter.component.mjs +0 -20
  787. package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-print.component.mjs +0 -19
  788. package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-view.component.mjs +0 -73
  789. package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget.config.mjs +0 -24
  790. package/esm2022/widgets/lib/editors/phone-box-widget/index.mjs +0 -8
  791. package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-column.component.mjs +0 -66
  792. package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-designer.component.mjs +0 -19
  793. package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-edit.component.mjs +0 -220
  794. package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-filter.component.mjs +0 -20
  795. package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-print.component.mjs +0 -19
  796. package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-view.component.mjs +0 -113
  797. package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget.config.mjs +0 -24
  798. package/esm2022/widgets/lib/editors/rich-text-widget/index.mjs +0 -8
  799. package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-column.component.mjs +0 -23
  800. package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-designer.component.mjs +0 -19
  801. package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-edit.component.mjs +0 -63
  802. package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-filter.component.mjs +0 -20
  803. package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-print.component.mjs +0 -19
  804. package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-view.component.mjs +0 -39
  805. package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget.config.mjs +0 -24
  806. package/esm2022/widgets/lib/editors/select-box-widget/index.mjs +0 -8
  807. package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-column.component.mjs +0 -19
  808. package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-designer.component.mjs +0 -19
  809. package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-edit.component.mjs +0 -80
  810. package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-filter.component.mjs +0 -19
  811. package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-print.component.mjs +0 -19
  812. package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-view.component.mjs +0 -60
  813. package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget.config.mjs +0 -24
  814. package/esm2022/widgets/lib/editors/selection-list-widget/index.mjs +0 -8
  815. package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-column.component.mjs +0 -41
  816. package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-designer.component.mjs +0 -19
  817. package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-edit.component.mjs +0 -58
  818. package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-filter.component.mjs +0 -20
  819. package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-print.component.mjs +0 -19
  820. package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-view.component.mjs +0 -41
  821. package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget.config.mjs +0 -24
  822. package/esm2022/widgets/lib/editors/signature-pad-widget/index.mjs +0 -8
  823. package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-column.component.mjs +0 -19
  824. package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-designer.component.mjs +0 -19
  825. package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-edit.component.mjs +0 -140
  826. package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-filter.component.mjs +0 -20
  827. package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-print.component.mjs +0 -19
  828. package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-view.component.mjs +0 -42
  829. package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget.config.mjs +0 -24
  830. package/esm2022/widgets/lib/editors/text-box-widget/index.mjs +0 -8
  831. package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-column.component.mjs +0 -20
  832. package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-designer.component.mjs +0 -19
  833. package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-edit.component.mjs +0 -121
  834. package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-filter.component.mjs +0 -20
  835. package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-print.component.mjs +0 -19
  836. package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-view.component.mjs +0 -40
  837. package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget.config.mjs +0 -25
  838. package/esm2022/widgets/lib/editors/toggle-widget/index.mjs +0 -8
  839. package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget-column.component.mjs +0 -47
  840. package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget-designer.component.mjs +0 -19
  841. package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget-edit.component.mjs +0 -27
  842. package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget-filter.component.mjs +0 -20
  843. package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget-print.component.mjs +0 -19
  844. package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget-view.component.mjs +0 -47
  845. package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget.config.mjs +0 -24
  846. package/esm2022/widgets/lib/layout/block-widget/block-widget.component.mjs +0 -39
  847. package/esm2022/widgets/lib/layout/block-widget/block-widget.config.mjs +0 -9
  848. package/esm2022/widgets/lib/layout/block-widget/index.mjs +0 -3
  849. package/fesm2022/acorex-platform-common-avatar-widget-edit.component-BtnVjoMi.mjs +0 -179
  850. package/fesm2022/acorex-platform-common-avatar-widget-edit.component-BtnVjoMi.mjs.map +0 -1
  851. package/fesm2022/acorex-platform-common-avatar-widget-view.component-0-hGLYLK.mjs +0 -86
  852. package/fesm2022/acorex-platform-common-avatar-widget-view.component-0-hGLYLK.mjs.map +0 -1
  853. package/fesm2022/acorex-platform-common-boolean-widget-filter.component-CMkjO_x1.mjs +0 -170
  854. package/fesm2022/acorex-platform-common-boolean-widget-filter.component-CMkjO_x1.mjs.map +0 -1
  855. package/fesm2022/acorex-platform-common-change-password.component-CULJjn0l.mjs +0 -177
  856. package/fesm2022/acorex-platform-common-change-password.component-CULJjn0l.mjs.map +0 -1
  857. package/fesm2022/acorex-platform-common-checkbox-widget-column.component-C91gG8nm.mjs +0 -77
  858. package/fesm2022/acorex-platform-common-checkbox-widget-column.component-C91gG8nm.mjs.map +0 -1
  859. package/fesm2022/acorex-platform-common-checkbox-widget-edit.component-_jtT03Vn.mjs +0 -47
  860. package/fesm2022/acorex-platform-common-checkbox-widget-edit.component-_jtT03Vn.mjs.map +0 -1
  861. package/fesm2022/acorex-platform-common-checkbox-widget-view.component-BDAtJB1B.mjs +0 -71
  862. package/fesm2022/acorex-platform-common-checkbox-widget-view.component-BDAtJB1B.mjs.map +0 -1
  863. package/fesm2022/acorex-platform-common-dateTime-widget-column.component-5ljYmtHI.mjs +0 -67
  864. package/fesm2022/acorex-platform-common-dateTime-widget-column.component-5ljYmtHI.mjs.map +0 -1
  865. package/fesm2022/acorex-platform-common-dateTime-widget-edit.component-DdqtbOY1.mjs +0 -199
  866. package/fesm2022/acorex-platform-common-dateTime-widget-edit.component-DdqtbOY1.mjs.map +0 -1
  867. package/fesm2022/acorex-platform-common-dateTime-widget-filter.component-BjtIJkeC.mjs +0 -234
  868. package/fesm2022/acorex-platform-common-dateTime-widget-filter.component-BjtIJkeC.mjs.map +0 -1
  869. package/fesm2022/acorex-platform-common-dateTime-widget-view.component-Dxmnor_-.mjs +0 -94
  870. package/fesm2022/acorex-platform-common-dateTime-widget-view.component-Dxmnor_-.mjs.map +0 -1
  871. package/fesm2022/acorex-platform-common-email-widget-column.component-DlPoexcx.mjs +0 -98
  872. package/fesm2022/acorex-platform-common-email-widget-column.component-DlPoexcx.mjs.map +0 -1
  873. package/fesm2022/acorex-platform-common-email-widget-edit.component-CLl0gmdM.mjs +0 -270
  874. package/fesm2022/acorex-platform-common-email-widget-edit.component-CLl0gmdM.mjs.map +0 -1
  875. package/fesm2022/acorex-platform-common-email-widget-view.component-C4M7KGUS.mjs +0 -131
  876. package/fesm2022/acorex-platform-common-email-widget-view.component-C4M7KGUS.mjs.map +0 -1
  877. package/fesm2022/acorex-platform-common-file-widget-column.component-CwFzLLHt.mjs +0 -50
  878. package/fesm2022/acorex-platform-common-file-widget-column.component-CwFzLLHt.mjs.map +0 -1
  879. package/fesm2022/acorex-platform-common-file-widget-edit.component-ZXhaXwWN.mjs +0 -222
  880. package/fesm2022/acorex-platform-common-file-widget-edit.component-ZXhaXwWN.mjs.map +0 -1
  881. package/fesm2022/acorex-platform-common-file-widget-filter.component-DqYmxdx_.mjs +0 -52
  882. package/fesm2022/acorex-platform-common-file-widget-filter.component-DqYmxdx_.mjs.map +0 -1
  883. package/fesm2022/acorex-platform-common-file-widget-view.component-B0C9oJLT.mjs +0 -175
  884. package/fesm2022/acorex-platform-common-file-widget-view.component-B0C9oJLT.mjs.map +0 -1
  885. package/fesm2022/acorex-platform-common-gallery-widget-edit.component-DB0-6pik.mjs +0 -210
  886. package/fesm2022/acorex-platform-common-gallery-widget-edit.component-DB0-6pik.mjs.map +0 -1
  887. package/fesm2022/acorex-platform-common-gallery-widget-filter.component-Btrq4HP9.mjs +0 -51
  888. package/fesm2022/acorex-platform-common-gallery-widget-filter.component-Btrq4HP9.mjs.map +0 -1
  889. package/fesm2022/acorex-platform-common-gallery-widget-view.component-Bp5cEEiY.mjs +0 -194
  890. package/fesm2022/acorex-platform-common-gallery-widget-view.component-Bp5cEEiY.mjs.map +0 -1
  891. package/fesm2022/acorex-platform-common-largetext-widget-edit.component-DJhPlQ0G.mjs +0 -61
  892. package/fesm2022/acorex-platform-common-largetext-widget-edit.component-DJhPlQ0G.mjs.map +0 -1
  893. package/fesm2022/acorex-platform-common-lookup-widget-column.component-CtvP7V_w.mjs +0 -67
  894. package/fesm2022/acorex-platform-common-lookup-widget-column.component-CtvP7V_w.mjs.map +0 -1
  895. package/fesm2022/acorex-platform-common-lookup-widget-edit.component-JjtWsg2g.mjs +0 -118
  896. package/fesm2022/acorex-platform-common-lookup-widget-edit.component-JjtWsg2g.mjs.map +0 -1
  897. package/fesm2022/acorex-platform-common-lookup-widget-filter.component-B4C5JB_p.mjs +0 -153
  898. package/fesm2022/acorex-platform-common-lookup-widget-filter.component-B4C5JB_p.mjs.map +0 -1
  899. package/fesm2022/acorex-platform-common-lookup-widget-view.component-BHqYDEuU.mjs +0 -78
  900. package/fesm2022/acorex-platform-common-lookup-widget-view.component-BHqYDEuU.mjs.map +0 -1
  901. package/fesm2022/acorex-platform-common-map-widget-edit.component-BjrRrklq.mjs +0 -115
  902. package/fesm2022/acorex-platform-common-map-widget-edit.component-BjrRrklq.mjs.map +0 -1
  903. package/fesm2022/acorex-platform-common-map-widget-view.component-C5gL9-oB.mjs +0 -87
  904. package/fesm2022/acorex-platform-common-map-widget-view.component-C5gL9-oB.mjs.map +0 -1
  905. package/fesm2022/acorex-platform-common-messenger-widget-column.component-BQSYcyso.mjs +0 -96
  906. package/fesm2022/acorex-platform-common-messenger-widget-column.component-BQSYcyso.mjs.map +0 -1
  907. package/fesm2022/acorex-platform-common-messenger-widget-edit.component-BjqtP0ls.mjs +0 -158
  908. package/fesm2022/acorex-platform-common-messenger-widget-edit.component-BjqtP0ls.mjs.map +0 -1
  909. package/fesm2022/acorex-platform-common-messenger-widget-view.component-B4Yt68Vn.mjs +0 -155
  910. package/fesm2022/acorex-platform-common-messenger-widget-view.component-B4Yt68Vn.mjs.map +0 -1
  911. package/fesm2022/acorex-platform-common-number-widget-edit.component-D9dC514F.mjs +0 -69
  912. package/fesm2022/acorex-platform-common-number-widget-edit.component-D9dC514F.mjs.map +0 -1
  913. package/fesm2022/acorex-platform-common-number-widget-filter.component-BkKeBL6p.mjs +0 -158
  914. package/fesm2022/acorex-platform-common-number-widget-filter.component-BkKeBL6p.mjs.map +0 -1
  915. package/fesm2022/acorex-platform-common-number-widget-view.component-DD0tkoc4.mjs +0 -55
  916. package/fesm2022/acorex-platform-common-number-widget-view.component-DD0tkoc4.mjs.map +0 -1
  917. package/fesm2022/acorex-platform-common-password-widget-column.component-C0-x1_Np.mjs +0 -90
  918. package/fesm2022/acorex-platform-common-password-widget-column.component-C0-x1_Np.mjs.map +0 -1
  919. package/fesm2022/acorex-platform-common-password-widget-edit.component-BbYqIGEP.mjs +0 -65
  920. package/fesm2022/acorex-platform-common-password-widget-edit.component-BbYqIGEP.mjs.map +0 -1
  921. package/fesm2022/acorex-platform-common-password-widget-view.component-B6vGWi9I.mjs +0 -129
  922. package/fesm2022/acorex-platform-common-password-widget-view.component-B6vGWi9I.mjs.map +0 -1
  923. package/fesm2022/acorex-platform-common-phone-widget-column.component-uAeAPCog.mjs +0 -116
  924. package/fesm2022/acorex-platform-common-phone-widget-column.component-uAeAPCog.mjs.map +0 -1
  925. package/fesm2022/acorex-platform-common-phone-widget-edit.component-Dj_tdhZw.mjs +0 -270
  926. package/fesm2022/acorex-platform-common-phone-widget-edit.component-Dj_tdhZw.mjs.map +0 -1
  927. package/fesm2022/acorex-platform-common-phone-widget-view.component-D_A5NXzA.mjs +0 -146
  928. package/fesm2022/acorex-platform-common-phone-widget-view.component-D_A5NXzA.mjs.map +0 -1
  929. package/fesm2022/acorex-platform-common-rich-text-widget-column.component-DDJn1WqG.mjs +0 -86
  930. package/fesm2022/acorex-platform-common-rich-text-widget-column.component-DDJn1WqG.mjs.map +0 -1
  931. package/fesm2022/acorex-platform-common-rich-text-widget-edit.component-f30-VPMJ.mjs +0 -90
  932. package/fesm2022/acorex-platform-common-rich-text-widget-edit.component-f30-VPMJ.mjs.map +0 -1
  933. package/fesm2022/acorex-platform-common-rich-text-widget-view.component-Y214kMe4.mjs +0 -59
  934. package/fesm2022/acorex-platform-common-rich-text-widget-view.component-Y214kMe4.mjs.map +0 -1
  935. package/fesm2022/acorex-platform-common-selection-list-widget-column.component-4uQzk7WQ.mjs +0 -70
  936. package/fesm2022/acorex-platform-common-selection-list-widget-column.component-4uQzk7WQ.mjs.map +0 -1
  937. package/fesm2022/acorex-platform-common-selection-list-widget-edit.component-BY7A969M.mjs +0 -77
  938. package/fesm2022/acorex-platform-common-selection-list-widget-edit.component-BY7A969M.mjs.map +0 -1
  939. package/fesm2022/acorex-platform-common-selection-list-widget-filter.component-hbxBcirf.mjs +0 -66
  940. package/fesm2022/acorex-platform-common-selection-list-widget-filter.component-hbxBcirf.mjs.map +0 -1
  941. package/fesm2022/acorex-platform-common-selection-list-widget-view.component-HzxEiWgp.mjs +0 -70
  942. package/fesm2022/acorex-platform-common-selection-list-widget-view.component-HzxEiWgp.mjs.map +0 -1
  943. package/fesm2022/acorex-platform-common-signature-pad-widget-edit.component-C6VI3F_S.mjs +0 -149
  944. package/fesm2022/acorex-platform-common-signature-pad-widget-edit.component-C6VI3F_S.mjs.map +0 -1
  945. package/fesm2022/acorex-platform-common-signature-pad-widget-view.component-CEiBtv9t.mjs +0 -64
  946. package/fesm2022/acorex-platform-common-signature-pad-widget-view.component-CEiBtv9t.mjs.map +0 -1
  947. package/fesm2022/acorex-platform-common-string-widget-filter.component-BZiyRHfg.mjs +0 -148
  948. package/fesm2022/acorex-platform-common-string-widget-filter.component-BZiyRHfg.mjs.map +0 -1
  949. package/fesm2022/acorex-platform-common-text-widget-column.component-qXusAevm.mjs +0 -71
  950. package/fesm2022/acorex-platform-common-text-widget-column.component-qXusAevm.mjs.map +0 -1
  951. package/fesm2022/acorex-platform-common-text-widget-edit.component-DSwPteMX.mjs +0 -184
  952. package/fesm2022/acorex-platform-common-text-widget-edit.component-DSwPteMX.mjs.map +0 -1
  953. package/fesm2022/acorex-platform-common-text-widget-view.component-CKg9nvbY.mjs +0 -91
  954. package/fesm2022/acorex-platform-common-text-widget-view.component-CKg9nvbY.mjs.map +0 -1
  955. package/fesm2022/acorex-platform-common-toggle-widget-column.component-_IrciAj-.mjs +0 -81
  956. package/fesm2022/acorex-platform-common-toggle-widget-column.component-_IrciAj-.mjs.map +0 -1
  957. package/fesm2022/acorex-platform-common-toggle-widget-edit.component-CDG62BJN.mjs +0 -47
  958. package/fesm2022/acorex-platform-common-toggle-widget-edit.component-CDG62BJN.mjs.map +0 -1
  959. package/fesm2022/acorex-platform-common-toggle-widget-view.component-B5JwQ8X-.mjs +0 -73
  960. package/fesm2022/acorex-platform-common-toggle-widget-view.component-B5JwQ8X-.mjs.map +0 -1
  961. package/fesm2022/acorex-platform-layouts-entity-create-view.component-DgPPnU8S.mjs +0 -110
  962. package/fesm2022/acorex-platform-layouts-entity-create-view.component-DgPPnU8S.mjs.map +0 -1
  963. package/fesm2022/acorex-platform-layouts-entity-import-view.component-V50y5Jjs.mjs +0 -93
  964. package/fesm2022/acorex-platform-layouts-entity-import-view.component-V50y5Jjs.mjs.map +0 -1
  965. package/fesm2022/acorex-platform-layouts-entity-modify-view.component-Bwz4yVpK.mjs +0 -91
  966. package/fesm2022/acorex-platform-layouts-entity-modify-view.component-Bwz4yVpK.mjs.map +0 -1
  967. package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-qOxuoK6c.mjs +0 -99
  968. package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-qOxuoK6c.mjs.map +0 -1
  969. package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-BJcpG94Q.mjs +0 -88
  970. package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-BJcpG94Q.mjs.map +0 -1
  971. package/fesm2022/acorex-platform-themes-default-error-401.component-BeQ4_BgW.mjs +0 -31
  972. package/fesm2022/acorex-platform-themes-default-error-401.component-BeQ4_BgW.mjs.map +0 -1
  973. package/fesm2022/acorex-platform-themes-default-error-404.component-BYDiT6Ns.mjs +0 -25
  974. package/fesm2022/acorex-platform-themes-default-error-404.component-BYDiT6Ns.mjs.map +0 -1
  975. package/fesm2022/acorex-platform-themes-default-error-offline.component-DUtW3w_g.mjs +0 -19
  976. package/fesm2022/acorex-platform-themes-default-error-offline.component-DUtW3w_g.mjs.map +0 -1
  977. package/fesm2022/acorex-platform-widgets-checkbox-widget-column.component-CFCwedxX.mjs +0 -48
  978. package/fesm2022/acorex-platform-widgets-checkbox-widget-column.component-CFCwedxX.mjs.map +0 -1
  979. package/fesm2022/acorex-platform-widgets-checkbox-widget-view.component-CCTIjDb0.mjs +0 -57
  980. package/fesm2022/acorex-platform-widgets-checkbox-widget-view.component-CCTIjDb0.mjs.map +0 -1
  981. package/layout/entity/lib/widgets/lookup-widget/lookup-widget-designer.component.d.ts +0 -6
  982. package/widgets/lib/editors/checkbox/checkbox-widget-column.component.d.ts +0 -9
  983. package/widgets/lib/editors/checkbox/checkbox-widget-edit.component.d.ts +0 -13
  984. package/widgets/lib/editors/checkbox/checkbox-widget-view.component.d.ts +0 -9
  985. package/widgets/lib/editors/contact-widget/contact-widget-column.component.d.ts +0 -6
  986. package/widgets/lib/editors/contact-widget/contact-widget-designer.component.d.ts +0 -6
  987. package/widgets/lib/editors/contact-widget/contact-widget-edit.component.d.ts +0 -36
  988. package/widgets/lib/editors/contact-widget/contact-widget-filter.component.d.ts +0 -6
  989. package/widgets/lib/editors/contact-widget/contact-widget-print.component.d.ts +0 -6
  990. package/widgets/lib/editors/contact-widget/contact-widget-view.component.d.ts +0 -6
  991. package/widgets/lib/editors/contact-widget/index.d.ts +0 -7
  992. package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-column.component.d.ts +0 -14
  993. package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-designer.component.d.ts +0 -6
  994. package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-edit.component.d.ts +0 -24
  995. package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-filter.component.d.ts +0 -6
  996. package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-print.component.d.ts +0 -6
  997. package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-view.component.d.ts +0 -11
  998. package/widgets/lib/editors/date-time-box-widget/index.d.ts +0 -7
  999. package/widgets/lib/editors/email-box-widget/email-box-widget-column.component.d.ts +0 -16
  1000. package/widgets/lib/editors/email-box-widget/email-box-widget-designer.component.d.ts +0 -6
  1001. package/widgets/lib/editors/email-box-widget/email-box-widget-edit.component.d.ts +0 -31
  1002. package/widgets/lib/editors/email-box-widget/email-box-widget-filter.component.d.ts +0 -6
  1003. package/widgets/lib/editors/email-box-widget/email-box-widget-print.component.d.ts +0 -6
  1004. package/widgets/lib/editors/email-box-widget/email-box-widget-view.component.d.ts +0 -12
  1005. package/widgets/lib/editors/email-box-widget/index.d.ts +0 -7
  1006. package/widgets/lib/editors/file-box-widget/file-box-widget-column.component.d.ts +0 -6
  1007. package/widgets/lib/editors/file-box-widget/file-box-widget-designer.component.d.ts +0 -6
  1008. package/widgets/lib/editors/file-box-widget/file-box-widget-edit.component.d.ts +0 -18
  1009. package/widgets/lib/editors/file-box-widget/file-box-widget-filter.component.d.ts +0 -6
  1010. package/widgets/lib/editors/file-box-widget/file-box-widget-print.component.d.ts +0 -6
  1011. package/widgets/lib/editors/file-box-widget/file-box-widget-view.component.d.ts +0 -17
  1012. package/widgets/lib/editors/file-box-widget/index.d.ts +0 -7
  1013. package/widgets/lib/editors/gallery-widget/gallery-widget-column.component.d.ts +0 -6
  1014. package/widgets/lib/editors/gallery-widget/gallery-widget-designer.component.d.ts +0 -6
  1015. package/widgets/lib/editors/gallery-widget/gallery-widget-edit.component.d.ts +0 -15
  1016. package/widgets/lib/editors/gallery-widget/gallery-widget-filter.component.d.ts +0 -6
  1017. package/widgets/lib/editors/gallery-widget/gallery-widget-print.component.d.ts +0 -6
  1018. package/widgets/lib/editors/gallery-widget/gallery-widget-view.component.d.ts +0 -15
  1019. package/widgets/lib/editors/gallery-widget/index.d.ts +0 -7
  1020. package/widgets/lib/editors/large-text-widget/index.d.ts +0 -7
  1021. package/widgets/lib/editors/large-text-widget/large-text-widget-column.component.d.ts +0 -6
  1022. package/widgets/lib/editors/large-text-widget/large-text-widget-designer.component.d.ts +0 -6
  1023. package/widgets/lib/editors/large-text-widget/large-text-widget-edit.component.d.ts +0 -10
  1024. package/widgets/lib/editors/large-text-widget/large-text-widget-filter.component.d.ts +0 -6
  1025. package/widgets/lib/editors/large-text-widget/large-text-widget-print.component.d.ts +0 -6
  1026. package/widgets/lib/editors/large-text-widget/large-text-widget-view.component.d.ts +0 -6
  1027. package/widgets/lib/editors/link-widget/index.d.ts +0 -7
  1028. package/widgets/lib/editors/link-widget/link-widget-column.component.d.ts +0 -6
  1029. package/widgets/lib/editors/link-widget/link-widget-designer.component.d.ts +0 -6
  1030. package/widgets/lib/editors/link-widget/link-widget-edit.component.d.ts +0 -38
  1031. package/widgets/lib/editors/link-widget/link-widget-filter.component.d.ts +0 -6
  1032. package/widgets/lib/editors/link-widget/link-widget-print.component.d.ts +0 -6
  1033. package/widgets/lib/editors/link-widget/link-widget-view.component.d.ts +0 -13
  1034. package/widgets/lib/editors/map-box-widget/index.d.ts +0 -7
  1035. package/widgets/lib/editors/map-box-widget/map-box-widget-column.component.d.ts +0 -6
  1036. package/widgets/lib/editors/map-box-widget/map-box-widget-designer.component.d.ts +0 -6
  1037. package/widgets/lib/editors/map-box-widget/map-box-widget-edit.component.d.ts +0 -15
  1038. package/widgets/lib/editors/map-box-widget/map-box-widget-filter.component.d.ts +0 -6
  1039. package/widgets/lib/editors/map-box-widget/map-box-widget-print.component.d.ts +0 -6
  1040. package/widgets/lib/editors/map-box-widget/map-box-widget-view.component.d.ts +0 -16
  1041. package/widgets/lib/editors/number-box-widget/index.d.ts +0 -7
  1042. package/widgets/lib/editors/number-box-widget/number-box-widget-column.component.d.ts +0 -8
  1043. package/widgets/lib/editors/number-box-widget/number-box-widget-designer.component.d.ts +0 -6
  1044. package/widgets/lib/editors/number-box-widget/number-box-widget-edit.component.d.ts +0 -28
  1045. package/widgets/lib/editors/number-box-widget/number-box-widget-filter.component.d.ts +0 -6
  1046. package/widgets/lib/editors/number-box-widget/number-box-widget-print.component.d.ts +0 -6
  1047. package/widgets/lib/editors/number-box-widget/number-box-widget-view.component.d.ts +0 -14
  1048. package/widgets/lib/editors/password-box-widget/index.d.ts +0 -7
  1049. package/widgets/lib/editors/password-box-widget/password-box-widget-column.component.d.ts +0 -6
  1050. package/widgets/lib/editors/password-box-widget/password-box-widget-designer.component.d.ts +0 -6
  1051. package/widgets/lib/editors/password-box-widget/password-box-widget-edit.component.d.ts +0 -8
  1052. package/widgets/lib/editors/password-box-widget/password-box-widget-filter.component.d.ts +0 -6
  1053. package/widgets/lib/editors/password-box-widget/password-box-widget-print.component.d.ts +0 -6
  1054. package/widgets/lib/editors/password-box-widget/password-box-widget-view.component.d.ts +0 -13
  1055. package/widgets/lib/editors/phone-box-widget/index.d.ts +0 -7
  1056. package/widgets/lib/editors/phone-box-widget/phone-box-widget-column.component.d.ts +0 -16
  1057. package/widgets/lib/editors/phone-box-widget/phone-box-widget-designer.component.d.ts +0 -6
  1058. package/widgets/lib/editors/phone-box-widget/phone-box-widget-edit.component.d.ts +0 -30
  1059. package/widgets/lib/editors/phone-box-widget/phone-box-widget-filter.component.d.ts +0 -6
  1060. package/widgets/lib/editors/phone-box-widget/phone-box-widget-print.component.d.ts +0 -6
  1061. package/widgets/lib/editors/phone-box-widget/phone-box-widget-view.component.d.ts +0 -12
  1062. package/widgets/lib/editors/rich-text-widget/index.d.ts +0 -7
  1063. package/widgets/lib/editors/rich-text-widget/rich-text-widget-column.component.d.ts +0 -6
  1064. package/widgets/lib/editors/rich-text-widget/rich-text-widget-designer.component.d.ts +0 -6
  1065. package/widgets/lib/editors/rich-text-widget/rich-text-widget-edit.component.d.ts +0 -33
  1066. package/widgets/lib/editors/rich-text-widget/rich-text-widget-filter.component.d.ts +0 -6
  1067. package/widgets/lib/editors/rich-text-widget/rich-text-widget-print.component.d.ts +0 -6
  1068. package/widgets/lib/editors/rich-text-widget/rich-text-widget-view.component.d.ts +0 -10
  1069. package/widgets/lib/editors/select-box-widget/index.d.ts +0 -7
  1070. package/widgets/lib/editors/select-box-widget/select-box-widget-column.component.d.ts +0 -6
  1071. package/widgets/lib/editors/select-box-widget/select-box-widget-designer.component.d.ts +0 -6
  1072. package/widgets/lib/editors/select-box-widget/select-box-widget-edit.component.d.ts +0 -15
  1073. package/widgets/lib/editors/select-box-widget/select-box-widget-filter.component.d.ts +0 -6
  1074. package/widgets/lib/editors/select-box-widget/select-box-widget-print.component.d.ts +0 -6
  1075. package/widgets/lib/editors/select-box-widget/select-box-widget-view.component.d.ts +0 -12
  1076. package/widgets/lib/editors/selection-list-widget/index.d.ts +0 -7
  1077. package/widgets/lib/editors/selection-list-widget/selection-list-widget-column.component.d.ts +0 -14
  1078. package/widgets/lib/editors/selection-list-widget/selection-list-widget-designer.component.d.ts +0 -6
  1079. package/widgets/lib/editors/selection-list-widget/selection-list-widget-edit.component.d.ts +0 -13
  1080. package/widgets/lib/editors/selection-list-widget/selection-list-widget-filter.component.d.ts +0 -6
  1081. package/widgets/lib/editors/selection-list-widget/selection-list-widget-print.component.d.ts +0 -6
  1082. package/widgets/lib/editors/selection-list-widget/selection-list-widget-view.component.d.ts +0 -11
  1083. package/widgets/lib/editors/signature-pad-widget/index.d.ts +0 -7
  1084. package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-column.component.d.ts +0 -6
  1085. package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-designer.component.d.ts +0 -6
  1086. package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-edit.component.d.ts +0 -21
  1087. package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-filter.component.d.ts +0 -6
  1088. package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-print.component.d.ts +0 -6
  1089. package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-view.component.d.ts +0 -7
  1090. package/widgets/lib/editors/text-box-widget/index.d.ts +0 -7
  1091. package/widgets/lib/editors/text-box-widget/text-box-widget-column.component.d.ts +0 -6
  1092. package/widgets/lib/editors/text-box-widget/text-box-widget-designer.component.d.ts +0 -6
  1093. package/widgets/lib/editors/text-box-widget/text-box-widget-edit.component.d.ts +0 -19
  1094. package/widgets/lib/editors/text-box-widget/text-box-widget-filter.component.d.ts +0 -6
  1095. package/widgets/lib/editors/text-box-widget/text-box-widget-print.component.d.ts +0 -6
  1096. package/widgets/lib/editors/text-box-widget/text-box-widget-view.component.d.ts +0 -8
  1097. package/widgets/lib/editors/toggle-widget/index.d.ts +0 -7
  1098. package/widgets/lib/editors/toggle-widget/toggle-widget-column.component.d.ts +0 -9
  1099. package/widgets/lib/editors/toggle-widget/toggle-widget-designer.component.d.ts +0 -6
  1100. package/widgets/lib/editors/toggle-widget/toggle-widget-edit.component.d.ts +0 -7
  1101. package/widgets/lib/editors/toggle-widget/toggle-widget-filter.component.d.ts +0 -6
  1102. package/widgets/lib/editors/toggle-widget/toggle-widget-print.component.d.ts +0 -6
  1103. package/widgets/lib/editors/toggle-widget/toggle-widget-view.component.d.ts +0 -9
  1104. package/widgets/lib/layout/block-widget/block-widget.component.d.ts +0 -8
  1105. package/widgets/lib/layout/block-widget/index.d.ts +0 -2
  1106. /package/widgets/lib/{editors → widgets/editors}/checkbox/checkbox-widget.config.d.ts +0 -0
  1107. /package/widgets/lib/{editors → widgets/editors}/checkbox/index.d.ts +0 -0
  1108. /package/widgets/lib/{editors → widgets/editors}/contact-widget/contact-widget.config.d.ts +0 -0
  1109. /package/widgets/lib/{editors → widgets/editors}/contact-widget/popup-component.d.ts +0 -0
  1110. /package/widgets/lib/{editors → widgets/editors}/date-time-box-widget/date-time-box-widget.config.d.ts +0 -0
  1111. /package/widgets/lib/{editors → widgets/editors}/email-box-widget/email-box-widget.config.d.ts +0 -0
  1112. /package/widgets/lib/{editors → widgets/editors}/file-box-widget/file-box-widget.config.d.ts +0 -0
  1113. /package/widgets/lib/{editors → widgets/editors}/gallery-widget/gallery-widget-types.d.ts +0 -0
  1114. /package/widgets/lib/{editors → widgets/editors}/gallery-widget/gallery-widget.config.d.ts +0 -0
  1115. /package/widgets/lib/{editors → widgets/editors}/large-text-widget/large-text-widget.config.d.ts +0 -0
  1116. /package/widgets/lib/{editors → widgets/editors}/link-widget/link-widget.config.d.ts +0 -0
  1117. /package/widgets/lib/{editors → widgets/editors}/map-box-widget/map-box-widget.config.d.ts +0 -0
  1118. /package/widgets/lib/{editors → widgets/editors}/number-box-widget/number-box-widget.config.d.ts +0 -0
  1119. /package/widgets/lib/{editors → widgets/editors}/password-box-widget/password-box-widget.config.d.ts +0 -0
  1120. /package/widgets/lib/{editors → widgets/editors}/phone-box-widget/phone-box-widget.config.d.ts +0 -0
  1121. /package/widgets/lib/{editors → widgets/editors}/rich-text-widget/rich-text-widget.config.d.ts +0 -0
  1122. /package/widgets/lib/{editors → widgets/editors}/select-box-widget/select-box-widget.config.d.ts +0 -0
  1123. /package/widgets/lib/{editors → widgets/editors}/selection-list-widget/selection-list-widget.config.d.ts +0 -0
  1124. /package/widgets/lib/{editors → widgets/editors}/signature-pad-widget/signature-pad-widget.config.d.ts +0 -0
  1125. /package/widgets/lib/{editors → widgets/editors}/text-box-widget/text-box-widget.config.d.ts +0 -0
  1126. /package/widgets/lib/{editors → widgets/editors}/toggle-widget/toggle-widget.config.d.ts +0 -0
  1127. /package/widgets/lib/{layout → widgets/layout}/block-widget/block-widget.config.d.ts +0 -0
@@ -0,0 +1,19 @@
1
+ import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
2
+ import { CommonModule } from '@angular/common';
3
+ import { ChangeDetectionStrategy, Component } from '@angular/core';
4
+ import * as i0 from "@angular/core";
5
+ export class AXPLargeTextWidgetPrintComponent extends AXPWidgetComponent {
6
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLargeTextWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
7
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPLargeTextWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
8
+ }
9
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLargeTextWidgetPrintComponent, decorators: [{
10
+ type: Component,
11
+ args: [{
12
+ template: ``,
13
+ standalone: true,
14
+ changeDetection: ChangeDetectionStrategy.OnPush,
15
+ imports: [CommonModule],
16
+ inputs: []
17
+ }]
18
+ }] });
19
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFyZ2UtdGV4dC13aWRnZXQtcHJpbnQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS93aWRnZXRzL3NyYy9saWIvd2lkZ2V0cy9lZGl0b3JzL2xhcmdlLXRleHQtd2lkZ2V0L2xhcmdlLXRleHQtd2lkZ2V0LXByaW50LmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUNyRSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBVSxNQUFNLGVBQWUsQ0FBQzs7QUFRM0UsTUFBTSxPQUFPLGdDQUFpQyxTQUFRLGtCQUF1Qjs4R0FBaEUsZ0NBQWdDO2tHQUFoQyxnQ0FBZ0MsK0ZBTmpDLEVBQUUsMkRBR0YsWUFBWTs7MkZBR1gsZ0NBQWdDO2tCQVA1QyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxFQUFFO29CQUNaLFVBQVUsRUFBRSxJQUFJO29CQUNoQixlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDO29CQUN2QixNQUFNLEVBQUUsRUFBRTtpQkFDWCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFYUFdpZGdldENvbXBvbmVudCB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vbGF5b3V0L2J1aWxkZXInO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIGluamVjdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuQENvbXBvbmVudCh7XG4gIHRlbXBsYXRlOiBgYCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxuICBpbnB1dHM6IFtdXG59KVxuZXhwb3J0IGNsYXNzIEFYUExhcmdlVGV4dFdpZGdldFByaW50Q29tcG9uZW50IGV4dGVuZHMgQVhQV2lkZ2V0Q29tcG9uZW50PGFueT4geyB9Il19
@@ -0,0 +1,31 @@
1
+ import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
2
+ import { CommonModule } from '@angular/common';
3
+ import { ChangeDetectionStrategy, Component } from '@angular/core';
4
+ import * as i0 from "@angular/core";
5
+ export class AXPLargeTextWidgetViewComponent extends AXPWidgetComponent {
6
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLargeTextWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
7
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPLargeTextWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
8
+ <div class="ax-max-w-full">
9
+ <span>
10
+ {{ getValue() }}
11
+ </span>
12
+ </div>
13
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
14
+ }
15
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLargeTextWidgetViewComponent, decorators: [{
16
+ type: Component,
17
+ args: [{
18
+ template: `
19
+ <div class="ax-max-w-full">
20
+ <span>
21
+ {{ getValue() }}
22
+ </span>
23
+ </div>
24
+ `,
25
+ standalone: true,
26
+ changeDetection: ChangeDetectionStrategy.OnPush,
27
+ imports: [CommonModule],
28
+ inputs: [],
29
+ }]
30
+ }] });
31
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFyZ2UtdGV4dC13aWRnZXQtdmlldy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2xpYi93aWRnZXRzL2VkaXRvcnMvbGFyZ2UtdGV4dC13aWRnZXQvbGFyZ2UtdGV4dC13aWRnZXQtdmlldy5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDckUsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBZW5FLE1BQU0sT0FBTywrQkFBZ0MsU0FBUSxrQkFBdUI7OEdBQS9ELCtCQUErQjtrR0FBL0IsK0JBQStCLCtGQVpoQzs7Ozs7O0dBTVQsMkRBR1MsWUFBWTs7MkZBR1gsK0JBQStCO2tCQWIzQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRTs7Ozs7O0dBTVQ7b0JBQ0QsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO29CQUMvQyxPQUFPLEVBQUUsQ0FBQyxZQUFZLENBQUM7b0JBQ3ZCLE1BQU0sRUFBRSxFQUFFO2lCQUNYIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhQV2lkZ2V0Q29tcG9uZW50IH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgdGVtcGxhdGU6IGBcbiAgICA8ZGl2IGNsYXNzPVwiYXgtbWF4LXctZnVsbFwiPlxuICAgICAgPHNwYW4+XG4gICAgICAgIHt7IGdldFZhbHVlKCkgfX1cbiAgICAgIDwvc3Bhbj5cbiAgICA8L2Rpdj5cbiAgYCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxuICBpbnB1dHM6IFtdLFxufSlcbmV4cG9ydCBjbGFzcyBBWFBMYXJnZVRleHRXaWRnZXRWaWV3Q29tcG9uZW50IGV4dGVuZHMgQVhQV2lkZ2V0Q29tcG9uZW50PGFueT4geyB9XG4iXX0=
@@ -0,0 +1,37 @@
1
+ import { cloneProperty } from '@acorex/platform/layout/builder';
2
+ import { AXP_DATA_PATH_PROPERTY, AXP_DISABLED_PROPERTY, AXP_NAME_PROPERTY, AXP_PLACEHOLDER_PROPERTY, AXP_TABLE_COLUMN_WIDTH_PROPERTY, AXP_VALIDATION_PROPERTY } from '../../../properties';
3
+ export const AXPLargeTextWidget = {
4
+ name: "large-text",
5
+ title: "Large Text Box",
6
+ icon: "fa-solid fa-input-text",
7
+ properties: [
8
+ AXP_NAME_PROPERTY,
9
+ AXP_DATA_PATH_PROPERTY,
10
+ AXP_DISABLED_PROPERTY,
11
+ AXP_VALIDATION_PROPERTY,
12
+ AXP_PLACEHOLDER_PROPERTY,
13
+ cloneProperty(AXP_TABLE_COLUMN_WIDTH_PROPERTY, { schema: { defaultValue: "300px" } })
14
+ ],
15
+ components: {
16
+ view: {
17
+ component: () => import('./large-text-widget-view.component').then((c) => c.AXPLargeTextWidgetViewComponent),
18
+ properties: []
19
+ },
20
+ edit: {
21
+ component: () => import('./large-text-widget-edit.component').then((c) => c.AXPLargeTextWidgetEditComponent),
22
+ },
23
+ filter: {
24
+ component: () => import('./large-text-widget-filter.component').then((c) => c.AXPLargeTextWidgetFilterComponent),
25
+ },
26
+ column: {
27
+ component: () => import('./large-text-widget-column.component').then((c) => c.AXPLargeTextWidgetColumnComponent),
28
+ },
29
+ print: {
30
+ component: () => import('./large-text-widget-print.component').then((c) => c.AXPLargeTextWidgetPrintComponent),
31
+ },
32
+ designer: {
33
+ component: () => import('./large-text-widget-edit.component').then((c) => c.AXPLargeTextWidgetEditComponent),
34
+ },
35
+ }
36
+ };
37
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFyZ2UtdGV4dC13aWRnZXQuY29uZmlnLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS93aWRnZXRzL3NyYy9saWIvd2lkZ2V0cy9lZGl0b3JzL2xhcmdlLXRleHQtd2lkZ2V0L2xhcmdlLXRleHQtd2lkZ2V0LmNvbmZpZy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQW1CLGFBQWEsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ2pGLE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxxQkFBcUIsRUFBRSxpQkFBaUIsRUFBRSx3QkFBd0IsRUFBRSwrQkFBK0IsRUFBRSx1QkFBdUIsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBRTNMLE1BQU0sQ0FBQyxNQUFNLGtCQUFrQixHQUFvQjtJQUNqRCxJQUFJLEVBQUUsWUFBWTtJQUNsQixLQUFLLEVBQUUsZ0JBQWdCO0lBQ3ZCLElBQUksRUFBRSx3QkFBd0I7SUFFOUIsVUFBVSxFQUFFO1FBQ1YsaUJBQWlCO1FBQ2pCLHNCQUFzQjtRQUN0QixxQkFBcUI7UUFDckIsdUJBQXVCO1FBQ3ZCLHdCQUF3QjtRQUN4QixhQUFhLENBQUMsK0JBQStCLEVBQUUsRUFBRSxNQUFNLEVBQUUsRUFBRSxZQUFZLEVBQUUsT0FBTyxFQUFFLEVBQUUsQ0FBQztLQUN0RjtJQUNELFVBQVUsRUFBRTtRQUNWLElBQUksRUFBRTtZQUNKLFNBQVMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxNQUFNLENBQUMsb0NBQW9DLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQywrQkFBK0IsQ0FBQztZQUM1RyxVQUFVLEVBQUUsRUFDWDtTQUNGO1FBQ0QsSUFBSSxFQUFFO1lBQ0osU0FBUyxFQUFFLEdBQUcsRUFBRSxDQUFDLE1BQU0sQ0FBQyxvQ0FBb0MsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDLCtCQUErQixDQUFDO1NBQzdHO1FBQ0QsTUFBTSxFQUFFO1lBQ04sU0FBUyxFQUFFLEdBQUcsRUFBRSxDQUFDLE1BQU0sQ0FBQyxzQ0FBc0MsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDLGlDQUFpQyxDQUFDO1NBQ2pIO1FBQ0QsTUFBTSxFQUFFO1lBQ04sU0FBUyxFQUFFLEdBQUcsRUFBRSxDQUFDLE1BQU0sQ0FBQyxzQ0FBc0MsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDLGlDQUFpQyxDQUFDO1NBQ2pIO1FBQ0QsS0FBSyxFQUFFO1lBQ0wsU0FBUyxFQUFFLEdBQUcsRUFBRSxDQUFDLE1BQU0sQ0FBQyxxQ0FBcUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDLGdDQUFnQyxDQUFDO1NBQy9HO1FBQ0QsUUFBUSxFQUFFO1lBQ1IsU0FBUyxFQUFFLEdBQUcsRUFBRSxDQUFDLE1BQU0sQ0FBQyxvQ0FBb0MsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDLCtCQUErQixDQUFDO1NBQzdHO0tBQ0Y7Q0FDRixDQUFBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhQV2lkZ2V0Q29uZmlnLCBjbG9uZVByb3BlcnR5IH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5pbXBvcnQgeyBBWFBfREFUQV9QQVRIX1BST1BFUlRZLCBBWFBfRElTQUJMRURfUFJPUEVSVFksIEFYUF9OQU1FX1BST1BFUlRZLCBBWFBfUExBQ0VIT0xERVJfUFJPUEVSVFksIEFYUF9UQUJMRV9DT0xVTU5fV0lEVEhfUFJPUEVSVFksIEFYUF9WQUxJREFUSU9OX1BST1BFUlRZIH0gZnJvbSAnLi4vLi4vLi4vcHJvcGVydGllcyc7XG5cbmV4cG9ydCBjb25zdCBBWFBMYXJnZVRleHRXaWRnZXQ6IEFYUFdpZGdldENvbmZpZyA9IHtcbiAgbmFtZTogXCJsYXJnZS10ZXh0XCIsXG4gIHRpdGxlOiBcIkxhcmdlIFRleHQgQm94XCIsXG4gIGljb246IFwiZmEtc29saWQgZmEtaW5wdXQtdGV4dFwiLFxuXG4gIHByb3BlcnRpZXM6IFtcbiAgICBBWFBfTkFNRV9QUk9QRVJUWSxcbiAgICBBWFBfREFUQV9QQVRIX1BST1BFUlRZLFxuICAgIEFYUF9ESVNBQkxFRF9QUk9QRVJUWSxcbiAgICBBWFBfVkFMSURBVElPTl9QUk9QRVJUWSxcbiAgICBBWFBfUExBQ0VIT0xERVJfUFJPUEVSVFksXG4gICAgY2xvbmVQcm9wZXJ0eShBWFBfVEFCTEVfQ09MVU1OX1dJRFRIX1BST1BFUlRZLCB7IHNjaGVtYTogeyBkZWZhdWx0VmFsdWU6IFwiMzAwcHhcIiB9IH0pXG4gIF0sXG4gIGNvbXBvbmVudHM6IHtcbiAgICB2aWV3OiB7XG4gICAgICBjb21wb25lbnQ6ICgpID0+IGltcG9ydCgnLi9sYXJnZS10ZXh0LXdpZGdldC12aWV3LmNvbXBvbmVudCcpLnRoZW4oKGMpID0+IGMuQVhQTGFyZ2VUZXh0V2lkZ2V0Vmlld0NvbXBvbmVudCksXG4gICAgICBwcm9wZXJ0aWVzOiBbXG4gICAgICBdXG4gICAgfSxcbiAgICBlZGl0OiB7XG4gICAgICBjb21wb25lbnQ6ICgpID0+IGltcG9ydCgnLi9sYXJnZS10ZXh0LXdpZGdldC1lZGl0LmNvbXBvbmVudCcpLnRoZW4oKGMpID0+IGMuQVhQTGFyZ2VUZXh0V2lkZ2V0RWRpdENvbXBvbmVudCksXG4gICAgfSxcbiAgICBmaWx0ZXI6IHtcbiAgICAgIGNvbXBvbmVudDogKCkgPT4gaW1wb3J0KCcuL2xhcmdlLXRleHQtd2lkZ2V0LWZpbHRlci5jb21wb25lbnQnKS50aGVuKChjKSA9PiBjLkFYUExhcmdlVGV4dFdpZGdldEZpbHRlckNvbXBvbmVudCksXG4gICAgfSxcbiAgICBjb2x1bW46IHtcbiAgICAgIGNvbXBvbmVudDogKCkgPT4gaW1wb3J0KCcuL2xhcmdlLXRleHQtd2lkZ2V0LWNvbHVtbi5jb21wb25lbnQnKS50aGVuKChjKSA9PiBjLkFYUExhcmdlVGV4dFdpZGdldENvbHVtbkNvbXBvbmVudCksXG4gICAgfSxcbiAgICBwcmludDoge1xuICAgICAgY29tcG9uZW50OiAoKSA9PiBpbXBvcnQoJy4vbGFyZ2UtdGV4dC13aWRnZXQtcHJpbnQuY29tcG9uZW50JykudGhlbigoYykgPT4gYy5BWFBMYXJnZVRleHRXaWRnZXRQcmludENvbXBvbmVudCksXG4gICAgfSxcbiAgICBkZXNpZ25lcjoge1xuICAgICAgY29tcG9uZW50OiAoKSA9PiBpbXBvcnQoJy4vbGFyZ2UtdGV4dC13aWRnZXQtZWRpdC5jb21wb25lbnQnKS50aGVuKChjKSA9PiBjLkFYUExhcmdlVGV4dFdpZGdldEVkaXRDb21wb25lbnQpLFxuICAgIH0sXG4gIH1cbn0iXX0=
@@ -0,0 +1,7 @@
1
+ export * from './link-widget-view.component';
2
+ export * from './link-widget-edit.component';
3
+ export * from './link-widget-filter.component';
4
+ export * from './link-widget-column.component';
5
+ export * from './link-widget-print.component';
6
+ export * from './link-widget.config';
7
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2xpYi93aWRnZXRzL2VkaXRvcnMvbGluay13aWRnZXQvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyw4QkFBOEIsQ0FBQztBQUM3QyxjQUFjLDhCQUE4QixDQUFDO0FBQzdDLGNBQWMsZ0NBQWdDLENBQUM7QUFDL0MsY0FBYyxnQ0FBZ0MsQ0FBQztBQUMvQyxjQUFjLCtCQUErQixDQUFDO0FBQzlDLGNBQWMsc0JBQXNCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2xpbmstd2lkZ2V0LXZpZXcuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGluay13aWRnZXQtZWRpdC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saW5rLXdpZGdldC1maWx0ZXIuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGluay13aWRnZXQtY29sdW1uLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpbmstd2lkZ2V0LXByaW50LmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpbmstd2lkZ2V0LmNvbmZpZyc7Il19
@@ -0,0 +1,19 @@
1
+ import { AXPColumnWidgetComponent } from '@acorex/platform/layout/builder';
2
+ import { CommonModule } from '@angular/common';
3
+ import { ChangeDetectionStrategy, Component } from '@angular/core';
4
+ import * as i0 from "@angular/core";
5
+ export class AXPLinkWidgetColumnComponent extends AXPColumnWidgetComponent {
6
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLinkWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
7
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPLinkWidgetColumnComponent, isStandalone: true, selector: "ng-component", inputs: { rawValue: "rawValue" }, usesInheritance: true, ngImport: i0, template: `{{rawValue}}`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
8
+ }
9
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLinkWidgetColumnComponent, decorators: [{
10
+ type: Component,
11
+ args: [{
12
+ template: `{{rawValue}}`,
13
+ standalone: true,
14
+ changeDetection: ChangeDetectionStrategy.OnPush,
15
+ imports: [CommonModule],
16
+ inputs: ['rawValue']
17
+ }]
18
+ }] });
19
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGluay13aWRnZXQtY29sdW1uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vd2lkZ2V0cy9zcmMvbGliL3dpZGdldHMvZWRpdG9ycy9saW5rLXdpZGdldC9saW5rLXdpZGdldC1jb2x1bW4uY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQzNFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQVFuRSxNQUFNLE9BQU8sNEJBQTZCLFNBQVEsd0JBQTZCOzhHQUFsRSw0QkFBNEI7a0dBQTVCLDRCQUE0QixpSUFON0IsY0FBYywyREFHZCxZQUFZOzsyRkFHWCw0QkFBNEI7a0JBUHhDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGNBQWM7b0JBQ3hCLFVBQVUsRUFBRSxJQUFJO29CQUNoQixlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDO29CQUN2QixNQUFNLEVBQUUsQ0FBQyxVQUFVLENBQUM7aUJBQ3JCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhQQ29sdW1uV2lkZ2V0Q29tcG9uZW50IH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuQENvbXBvbmVudCh7XG4gIHRlbXBsYXRlOiBge3tyYXdWYWx1ZX19YCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxuICBpbnB1dHM6IFsncmF3VmFsdWUnXVxufSlcbmV4cG9ydCBjbGFzcyBBWFBMaW5rV2lkZ2V0Q29sdW1uQ29tcG9uZW50IGV4dGVuZHMgQVhQQ29sdW1uV2lkZ2V0Q29tcG9uZW50PGFueT4geyB9Il19
@@ -0,0 +1,391 @@
1
+ import { AXButtonModule } from '@acorex/components/button';
2
+ import { AXDataSource } from '@acorex/components/common';
3
+ import { AXDecoratorModule } from '@acorex/components/decorators';
4
+ import { AXFormModule } from '@acorex/components/form';
5
+ import { AXSelectBoxModule } from '@acorex/components/select-box';
6
+ import { AXTextBoxModule } from '@acorex/components/text-box';
7
+ import { AXTranslationService } from '@acorex/core/translation';
8
+ import { AXValidationModule, AXValidationService } from '@acorex/core/validation';
9
+ import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
10
+ import { CommonModule } from '@angular/common';
11
+ import { ChangeDetectionStrategy, Component, computed, inject } from '@angular/core';
12
+ import { FormsModule } from '@angular/forms';
13
+ import * as i0 from "@angular/core";
14
+ import * as i1 from "@angular/common";
15
+ import * as i2 from "@angular/forms";
16
+ import * as i3 from "@acorex/components/select-box";
17
+ import * as i4 from "@acorex/components/form";
18
+ import * as i5 from "@acorex/components/button";
19
+ import * as i6 from "@acorex/components/decorators";
20
+ import * as i7 from "@acorex/components/text-box";
21
+ export class AXPLinkWidgetEditComponent extends AXPWidgetComponent {
22
+ constructor() {
23
+ super(...arguments);
24
+ this.validationService = inject(AXValidationService);
25
+ this.translateService = inject(AXTranslationService);
26
+ this.multiple = computed(() => this.options()['multiple']);
27
+ this.disabled = computed(() => this.options()['disabled']);
28
+ this.clearButton = computed(() => this.options()['clearButton']);
29
+ this.hasLabel = computed(() => this.options()['hasLabel']);
30
+ this.hasTitle = computed(() => this.options()['hasTitle']);
31
+ this.labelTypes = computed(() => this.options()['labelTypes'] || ['Primary', 'Secondary']);
32
+ this.linkTypes = computed(() => this.options()['linkTypes'] || ['http', 'https', 'related']);
33
+ this.dataSource = new AXDataSource({
34
+ pageSize: 10,
35
+ key: 'id',
36
+ load: (e) => {
37
+ return new Promise((resolve) => {
38
+ setTimeout(() => {
39
+ const list = this.linkTypes();
40
+ const result = e.filter ? list.filter((item) => item.includes(e.filter?.value)) : list;
41
+ resolve({
42
+ items: result.slice(e.skip, e.skip + e.take),
43
+ total: result.length,
44
+ });
45
+ }, e.skip == 0 ? 100 : 300);
46
+ });
47
+ },
48
+ });
49
+ this.internalValue = computed(() => this.getValueAsArrayOfObjects());
50
+ this._validationRules = [];
51
+ this.convertItem = (item, e) => {
52
+ if (typeof item === 'object')
53
+ return { ...item, value: e.value };
54
+ else
55
+ return e.value;
56
+ };
57
+ }
58
+ ngOnInit() {
59
+ super.ngOnInit();
60
+ this.getValueAsArrayOfObjects();
61
+ }
62
+ get validationRules() {
63
+ return this._validationRules;
64
+ }
65
+ set validationRules(v) {
66
+ this._validationRules = v;
67
+ }
68
+ getValueAsArrayOfObjects() {
69
+ const value = this.getValue();
70
+ if (Array.isArray(value)) {
71
+ return value.map((item) => {
72
+ return typeof item === 'object'
73
+ ? {
74
+ value: item.value ?? '-',
75
+ title: item.title,
76
+ label: this.hasLabel() ? item.label || 'primary' : undefined,
77
+ icon: item.icon,
78
+ }
79
+ : {
80
+ value: item,
81
+ title: '',
82
+ icon: '',
83
+ label: this.hasLabel() ? 'Primary' : undefined,
84
+ };
85
+ });
86
+ }
87
+ else {
88
+ return typeof value === 'object' ? [value] : [{ value: value || '' }];
89
+ }
90
+ }
91
+ handleValueChange(e, selectedIndex) {
92
+ const { name, value, isUserInteraction } = e;
93
+ if (isUserInteraction) {
94
+ const newValues = this.internalValue().map((item, index) => selectedIndex === index ? (name === 'value' ? this.convertItem(item, e) : { ...item, [name]: value }) : item);
95
+ console.log(newValues);
96
+ if (this.multiple())
97
+ this.setValue(newValues);
98
+ else
99
+ this.setValue(newValues[0]);
100
+ }
101
+ }
102
+ // protected handleLabelChange(e: AXValueChangedEvent, selectedIndex: number) {
103
+ // if (e.isUserInteraction) {
104
+ // const newValues = this.internalValue().map((item, index) => (selectedIndex === index ? { ...item, label: e.value } : item));
105
+ // if (this.multiple()) this.setValue(newValues);
106
+ // else this.setValue(newValues[0]);
107
+ // }
108
+ // }
109
+ addItem() {
110
+ const newValues = [
111
+ ...this.internalValue(),
112
+ {
113
+ value: '',
114
+ title: '',
115
+ label: 'primary',
116
+ icon: '',
117
+ },
118
+ ];
119
+ this.setValue(newValues);
120
+ }
121
+ deleteItem(deletedIndex) {
122
+ const newValues = this.internalValue().filter((_, index) => index != deletedIndex);
123
+ this.setValue(newValues);
124
+ }
125
+ generateClasses(elementName, type = 'single') {
126
+ if (type === 'multiple') {
127
+ switch (elementName) {
128
+ case 'url':
129
+ if (this.hasTitle() || this.hasLabel()) {
130
+ //already has ax-col-start-1 ax-col-end-13
131
+ return ['lg:ax-col-end-7'];
132
+ }
133
+ else {
134
+ return ['lg:ax-col-end-12'];
135
+ }
136
+ case 'title':
137
+ if (this.hasLabel()) {
138
+ return ['ax-col-start-1 ax-col-end-7 lg:ax-col-start-7 lg:ax-col-end-10'];
139
+ }
140
+ else {
141
+ return ['ax-col-start-1 ax-col-end-11 lg:ax-col-start-7 lg:ax-col-end-12'];
142
+ }
143
+ case 'label':
144
+ if (this.hasTitle()) {
145
+ return ['ax-col-start-7 ax-col-end-11 lg:ax-col-start-10 lg:ax-col-end-12'];
146
+ }
147
+ else {
148
+ return ['ax-col-start-1 ax-col-end-11 lg:ax-col-start-7 lg:ax-col-end-12'];
149
+ }
150
+ default:
151
+ return [''];
152
+ }
153
+ }
154
+ else if (type === 'single') {
155
+ switch (elementName) {
156
+ case 'url':
157
+ if (this.hasTitle() || this.hasLabel()) {
158
+ //already has ax-col-start-1 ax-col-end-13
159
+ return ['lg:ax-col-end-7'];
160
+ }
161
+ else {
162
+ return ['lg:ax-col-end-13'];
163
+ }
164
+ case 'title':
165
+ if (this.hasLabel()) {
166
+ return ['ax-col-start-1 ax-col-end-7 lg:ax-col-start-7 lg:ax-col-end-10'];
167
+ }
168
+ else {
169
+ return ['ax-col-start-1 ax-col-end-13 lg:ax-col-start-7 lg:ax-col-end-13'];
170
+ }
171
+ case 'label':
172
+ if (this.hasTitle()) {
173
+ return ['ax-col-start-7 ax-col-end-13 lg:ax-col-start-10 lg:ax-col-end-13'];
174
+ }
175
+ else {
176
+ return ['ax-col-start-1 ax-col-end-13 lg:ax-col-start-7 lg:ax-col-end-13'];
177
+ }
178
+ default:
179
+ return [''];
180
+ }
181
+ }
182
+ else {
183
+ return [''];
184
+ }
185
+ }
186
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLinkWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
187
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPLinkWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `<div class="ax-grid ax-grid-cols-12 ax-gap-4">
188
+ @if(multiple()){ @for(item of internalValue();track $index) { @if(item){
189
+ <!-- TODO need to fix multiple -->
190
+ <ax-text-box
191
+ [ngModel]="item.value"
192
+ (onValueChanged)="handleValueChange($event, $index)"
193
+ type="text"
194
+ placeholder="Enter Link"
195
+ class="ax-col-start-1 ax-col-end-13"
196
+ [ngClass]="generateClasses('url', 'multiple')"
197
+ >
198
+ @for (validation of validationRules; track $index) {
199
+ <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
200
+ }
201
+ <ax-validation-rule message="field can't be empty" rule="required"> </ax-validation-rule>
202
+ </ax-text-box>
203
+ @if(hasTitle()){
204
+ <ax-text-box
205
+ [ngModel]="item.title"
206
+ (onValueChanged)="handleValueChange($event, $index)"
207
+ placeholder="Choose Title..."
208
+ name="title"
209
+ [ngClass]="generateClasses('title', 'multiple')"
210
+ >
211
+ </ax-text-box>
212
+ } @if(hasLabel()){
213
+ <ax-select-box
214
+ [dataSource]="labelTypes()"
215
+ [ngModel]="item.label"
216
+ (onValueChanged)="handleValueChange($event, $index)"
217
+ placeholder="Choose Label..."
218
+ name="label"
219
+ [ngClass]="generateClasses('label', 'multiple')"
220
+ >
221
+ </ax-select-box>
222
+ }}
223
+ <ax-button
224
+ look="twotone"
225
+ color="danger"
226
+ (onClick)="deleteItem($index)"
227
+ class="ax-col-start-12 ax-col-end-13 lg:ax-col-start-12 lg:ax-col-end-13 ax-justify-self-end !ax-h-full"
228
+ >
229
+ <ax-icon icon="fa-regular fa-xmark"></ax-icon>
230
+ </ax-button>
231
+ }
232
+ <ax-button
233
+ [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
234
+ look="twotone"
235
+ (onClick)="addItem()"
236
+ class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
237
+ >
238
+ <ax-prefix>
239
+ <ax-icon class="fa-solid fa-add"></ax-icon>
240
+ </ax-prefix>
241
+ </ax-button>
242
+ } @else{
243
+ <ax-text-box
244
+ [ngClass]="generateClasses('url', 'single')"
245
+ [ngModel]="internalValue()[0].value"
246
+ (onValueChanged)="handleValueChange($event, 0)"
247
+ type="text"
248
+ name="value"
249
+ placeholder="Link"
250
+ class="ax-col-start-1 ax-col-end-13"
251
+ >
252
+ @for (validation of validationRules; track $index) {
253
+ <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
254
+ }
255
+ <ax-validation-rule message="field can't be empty" rule="required"> </ax-validation-rule>
256
+ </ax-text-box>
257
+ @if(hasTitle()){
258
+ <ax-text-box
259
+ [ngClass]="generateClasses('title', 'single')"
260
+ [ngModel]="internalValue()[0].title"
261
+ (onValueChanged)="handleValueChange($event, 0)"
262
+ type="text"
263
+ name="title"
264
+ placeholder="Title"
265
+ >
266
+ </ax-text-box>
267
+ } @if(hasLabel()){
268
+ <ax-select-box
269
+ [ngClass]="generateClasses('label', 'single')"
270
+ [dataSource]="labelTypes()"
271
+ [ngModel]="internalValue()[0].label"
272
+ (onValueChanged)="handleValueChange($event, 0)"
273
+ name="label"
274
+ placeholder="Label"
275
+ >
276
+ </ax-select-box>
277
+ } }
278
+ </div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i6.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i6.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
279
+ }
280
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLinkWidgetEditComponent, decorators: [{
281
+ type: Component,
282
+ args: [{
283
+ template: `<div class="ax-grid ax-grid-cols-12 ax-gap-4">
284
+ @if(multiple()){ @for(item of internalValue();track $index) { @if(item){
285
+ <!-- TODO need to fix multiple -->
286
+ <ax-text-box
287
+ [ngModel]="item.value"
288
+ (onValueChanged)="handleValueChange($event, $index)"
289
+ type="text"
290
+ placeholder="Enter Link"
291
+ class="ax-col-start-1 ax-col-end-13"
292
+ [ngClass]="generateClasses('url', 'multiple')"
293
+ >
294
+ @for (validation of validationRules; track $index) {
295
+ <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
296
+ }
297
+ <ax-validation-rule message="field can't be empty" rule="required"> </ax-validation-rule>
298
+ </ax-text-box>
299
+ @if(hasTitle()){
300
+ <ax-text-box
301
+ [ngModel]="item.title"
302
+ (onValueChanged)="handleValueChange($event, $index)"
303
+ placeholder="Choose Title..."
304
+ name="title"
305
+ [ngClass]="generateClasses('title', 'multiple')"
306
+ >
307
+ </ax-text-box>
308
+ } @if(hasLabel()){
309
+ <ax-select-box
310
+ [dataSource]="labelTypes()"
311
+ [ngModel]="item.label"
312
+ (onValueChanged)="handleValueChange($event, $index)"
313
+ placeholder="Choose Label..."
314
+ name="label"
315
+ [ngClass]="generateClasses('label', 'multiple')"
316
+ >
317
+ </ax-select-box>
318
+ }}
319
+ <ax-button
320
+ look="twotone"
321
+ color="danger"
322
+ (onClick)="deleteItem($index)"
323
+ class="ax-col-start-12 ax-col-end-13 lg:ax-col-start-12 lg:ax-col-end-13 ax-justify-self-end !ax-h-full"
324
+ >
325
+ <ax-icon icon="fa-regular fa-xmark"></ax-icon>
326
+ </ax-button>
327
+ }
328
+ <ax-button
329
+ [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
330
+ look="twotone"
331
+ (onClick)="addItem()"
332
+ class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
333
+ >
334
+ <ax-prefix>
335
+ <ax-icon class="fa-solid fa-add"></ax-icon>
336
+ </ax-prefix>
337
+ </ax-button>
338
+ } @else{
339
+ <ax-text-box
340
+ [ngClass]="generateClasses('url', 'single')"
341
+ [ngModel]="internalValue()[0].value"
342
+ (onValueChanged)="handleValueChange($event, 0)"
343
+ type="text"
344
+ name="value"
345
+ placeholder="Link"
346
+ class="ax-col-start-1 ax-col-end-13"
347
+ >
348
+ @for (validation of validationRules; track $index) {
349
+ <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
350
+ }
351
+ <ax-validation-rule message="field can't be empty" rule="required"> </ax-validation-rule>
352
+ </ax-text-box>
353
+ @if(hasTitle()){
354
+ <ax-text-box
355
+ [ngClass]="generateClasses('title', 'single')"
356
+ [ngModel]="internalValue()[0].title"
357
+ (onValueChanged)="handleValueChange($event, 0)"
358
+ type="text"
359
+ name="title"
360
+ placeholder="Title"
361
+ >
362
+ </ax-text-box>
363
+ } @if(hasLabel()){
364
+ <ax-select-box
365
+ [ngClass]="generateClasses('label', 'single')"
366
+ [dataSource]="labelTypes()"
367
+ [ngModel]="internalValue()[0].label"
368
+ (onValueChanged)="handleValueChange($event, 0)"
369
+ name="label"
370
+ placeholder="Label"
371
+ >
372
+ </ax-select-box>
373
+ } }
374
+ </div>`,
375
+ standalone: true,
376
+ changeDetection: ChangeDetectionStrategy.OnPush,
377
+ imports: [
378
+ CommonModule,
379
+ FormsModule,
380
+ AXSelectBoxModule,
381
+ AXFormModule,
382
+ AXButtonModule,
383
+ AXDecoratorModule,
384
+ AXSelectBoxModule,
385
+ AXTextBoxModule,
386
+ AXValidationModule,
387
+ ],
388
+ inputs: [],
389
+ }]
390
+ }] });
391
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGluay13aWRnZXQtZWRpdC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2xpYi93aWRnZXRzL2VkaXRvcnMvbGluay13aWRnZXQvbGluay13aWRnZXQtZWRpdC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBQzNELE9BQU8sRUFBRSxZQUFZLEVBQXVCLE1BQU0sMkJBQTJCLENBQUM7QUFDOUUsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFDbEUsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQ3ZELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQ2xFLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSw2QkFBNkIsQ0FBQztBQUM5RCxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUNoRSxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUVsRixPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUNyRSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBVSxRQUFRLEVBQUUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzdGLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQzs7Ozs7Ozs7O0FBOEc3QyxNQUFNLE9BQU8sMEJBQTJCLFNBQVEsa0JBQXVCO0lBNUd2RTs7UUE2R1ksc0JBQWlCLEdBQUcsTUFBTSxDQUFDLG1CQUFtQixDQUFDLENBQUM7UUFDaEQscUJBQWdCLEdB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QUFrQjs7MkZBSVQsMEJBQTBCO2tCQTVHdEMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUU7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7U0EyRkg7b0JBQ1AsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO29CQUMvQyxPQUFPLEVBQUU7d0JBQ1AsWUFBWTt3QkFDWixXQUFXO3dCQUNYLGlCQUFpQjt3QkFDakIsWUFBWTt3QkFDWixjQUFjO3dCQUNkLGlCQUFpQjt3QkFDakIsaUJBQWlCO3dCQUNqQixlQUFlO3dCQUNmLGtCQUFrQjtxQkFDbkI7b0JBQ0QsTUFBTSxFQUFFLEVBQUU7aUJBQ1giLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWEJ1dHRvbk1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9idXR0b24nO1xuaW1wb3J0IHsgQVhEYXRhU291cmNlLCBBWFZhbHVlQ2hhbmdlZEV2ZW50IH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL2NvbW1vbic7XG5pbXBvcnQgeyBBWERlY29yYXRvck1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9kZWNvcmF0b3JzJztcbmltcG9ydCB7IEFYRm9ybU1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9mb3JtJztcbmltcG9ydCB7IEFYU2VsZWN0Qm94TW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL3NlbGVjdC1ib3gnO1xuaW1wb3J0IHsgQVhUZXh0Qm94TW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL3RleHQtYm94JztcbmltcG9ydCB7IEFYVHJhbnNsYXRpb25TZXJ2aWNlIH0gZnJvbSAnQGFjb3JleC9jb3JlL3RyYW5zbGF0aW9uJztcbmltcG9ydCB7IEFYVmFsaWRhdGlvbk1vZHVsZSwgQVhWYWxpZGF0aW9uU2VydmljZSB9IGZyb20gJ0BhY29yZXgvY29yZS92YWxpZGF0aW9uJztcbmltcG9ydCB7IEFYUFZhbGlkYXRpb25SdWxlcyB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vY29yZSc7XG5pbXBvcnQgeyBBWFBXaWRnZXRDb21wb25lbnQgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9idWlsZGVyJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBTaWduYWwsIGNvbXB1dGVkLCBpbmplY3QgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEZvcm1zTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgdGVtcGxhdGU6IGA8ZGl2IGNsYXNzPVwiYXgtZ3JpZCBheC1ncmlkLWNvbHMtMTIgYXgtZ2FwLTRcIj5cbiAgICBAaWYobXVsdGlwbGUoKSl7IEBmb3IoaXRlbSBvZiBpbnRlcm5hbFZhbHVlKCk7dHJhY2sgJGluZGV4KSB7IEBpZihpdGVtKXtcbiAgICA8IS0tIFRPRE8gbmVlZCB0byBmaXggbXVsdGlwbGUgLS0+XG4gICAgPGF4LXRleHQtYm94XG4gICAgICBbbmdNb2RlbF09XCJpdGVtLnZhbHVlXCJcbiAgICAgIChvblZhbHVlQ2hhbmdlZCk9XCJoYW5kbGVWYWx1ZUNoYW5nZSgkZXZlbnQsICRpbmRleClcIlxuICAgICAgdHlwZT1cInRleHRcIlxuICAgICAgcGxhY2Vob2xkZXI9XCJFbnRlciBMaW5rXCJcbiAgICAgIGNsYXNzPVwiYXgtY29sLXN0YXJ0LTEgYXgtY29sLWVuZC0xM1wiXG4gICAgICBbbmdDbGFzc109XCJnZW5lcmF0ZUNsYXNzZXMoJ3VybCcsICdtdWx0aXBsZScpXCJcbiAgICA+XG4gICAgICBAZm9yICh2YWxpZGF0aW9uIG9mIHZhbGlkYXRpb25SdWxlczsgdHJhY2sgJGluZGV4KSB7XG4gICAgICA8YXgtdmFsaWRhdGlvbi1ydWxlIFtydWxlXT1cInZhbGlkYXRpb24ucnVsZVwiIFttZXNzYWdlXT1cInZhbGlkYXRpb24ub3B0aW9ucz8ubWVzc2FnZVwiIFtvcHRpb25zXT1cInZhbGlkYXRpb24ub3B0aW9uc1wiPjwvYXgtdmFsaWRhdGlvbi1ydWxlPlxuICAgICAgfVxuICAgICAgPGF4LXZhbGlkYXRpb24tcnVsZSBtZXNzYWdlPVwiZmllbGQgY2FuJ3QgYmUgZW1wdHlcIiBydWxlPVwicmVxdWlyZWRcIj4gPC9heC12YWxpZGF0aW9uLXJ1bGU+XG4gICAgPC9heC10ZXh0LWJveD5cbiAgICBAaWYoaGFzVGl0bGUoKSl7XG4gICAgPGF4LXRleHQtYm94XG4gICAgICBbbmdNb2RlbF09XCJpdGVtLnRpdGxlXCJcbiAgICAgIChvblZhbHVlQ2hhbmdlZCk9XCJoYW5kbGVWYWx1ZUNoYW5nZSgkZXZlbnQsICRpbmRleClcIlxuICAgICAgcGxhY2Vob2xkZXI9XCJDaG9vc2UgVGl0bGUuLi5cIlxuICAgICAgbmFtZT1cInRpdGxlXCJcbiAgICAgIFtuZ0NsYXNzXT1cImdlbmVyYXRlQ2xhc3NlcygndGl0bGUnLCAnbXVsdGlwbGUnKVwiXG4gICAgPlxuICAgIDwvYXgtdGV4dC1ib3g+XG4gICAgfSBAaWYoaGFzTGFiZWwoKSl7XG4gICAgPGF4LXNlbGVjdC1ib3hcbiAgICAgIFtkYXRhU291cmNlXT1cImxhYmVsVHlwZXMoKVwiXG4gICAgICBbbmdNb2RlbF09XCJpdGVtLmxhYmVsXCJcbiAgICAgIChvblZhbHVlQ2hhbmdlZCk9XCJoYW5kbGVWYWx1ZUNoYW5nZSgkZXZlbnQsICRpbmRleClcIlxuICAgICAgcGxhY2Vob2xkZXI9XCJDaG9vc2UgTGFiZWwuLi5cIlxuICAgICAgbmFtZT1cImxhYmVsXCJcbiAgICAgIFtuZ0NsYXNzXT1cImdlbmVyYXRlQ2xhc3NlcygnbGFiZWwnLCAnbXVsdGlwbGUnKVwiXG4gICAgPlxuICAgIDwvYXgtc2VsZWN0LWJveD5cbiAgICB9fVxuICAgIDxheC1idXR0b25cbiAgICAgIGxvb2s9XCJ0d290b25lXCJcbiAgICAgIGNvbG9yPVwiZGFuZ2VyXCJcbiAgICAgIChvbkNsaWNrKT1cImRlbGV0ZUl0ZW0oJGluZGV4KVwiXG4gICAgICBjbGFzcz1cImF4LWNvbC1zdGFydC0xMiBheC1jb2wtZW5kLTEzIGxnOmF4LWNvbC1zdGFydC0xMiBsZzpheC1jb2wtZW5kLTEzIGF4LWp1c3RpZnktc2VsZi1lbmQgIWF4LWgtZnVsbFwiXG4gICAgPlxuICAgICAgPGF4LWljb24gaWNvbj1cImZhLXJlZ3VsYXIgZmEteG1hcmtcIj48L2F4LWljb24+XG4gICAgPC9heC1idXR0b24+XG4gICAgfVxuICAgIDxheC1idXR0b25cbiAgICAgIFt0ZXh0XT1cImludGVybmFsVmFsdWUoKS5sZW5ndGggPT0gMCA/ICdBZGQgTmV3JyA6ICdBZGQgQW5vdGhlcidcIlxuICAgICAgbG9vaz1cInR3b3RvbmVcIlxuICAgICAgKG9uQ2xpY2spPVwiYWRkSXRlbSgpXCJcbiAgICAgIGNsYXNzPVwiYXgtY29sLXN0YXJ0LTggbGc6YXgtY29sLXN0YXJ0LTEwIDJ4bDpheC1jb2wtc3RhcnQtMTAgYXgtY29sLWVuZC0xM1wiXG4gICAgPlxuICAgICAgPGF4LXByZWZpeD5cbiAgICAgICAgPGF4LWljb24gY2xhc3M9XCJmYS1zb2xpZCBmYS1hZGRcIj48L2F4LWljb24+XG4gICAgICA8L2F4LXByZWZpeD5cbiAgICA8L2F4LWJ1dHRvbj5cbiAgICB9IEBlbHNle1xuICAgIDxheC10ZXh0LWJveFxuICAgICAgW25nQ2xhc3NdPVwiZ2VuZXJhdGVDbGFzc2VzKCd1cmwnLCAnc2luZ2xlJylcIlxuICAgICAgW25nTW9kZWxdPVwiaW50ZXJuYWxWYWx1ZSgpWzBdLnZhbHVlXCJcbiAgICAgIChvblZhbHVlQ2hhbmdlZCk9XCJoYW5kbGVWYWx1ZUNoYW5nZSgkZXZlbnQsIDApXCJcbiAgICAgIHR5cGU9XCJ0ZXh0XCJcbiAgICAgIG5hbWU9XCJ2YWx1ZVwiXG4gICAgICBwbGFjZWhvbGRlcj1cIkxpbmtcIlxuICAgICAgY2xhc3M9XCJheC1jb2wtc3RhcnQtMSBheC1jb2wtZW5kLTEzXCJcbiAgICA+XG4gICAgICBAZm9yICh2YWxpZGF0aW9uIG9mIHZhbGlkYXRpb25SdWxlczsgdHJhY2sgJGluZGV4KSB7XG4gICAgICA8YXgtdmFsaWRhdGlvbi1ydWxlIFtydWxlXT1cInZhbGlkYXRpb24ucnVsZVwiIFttZXNzYWdlXT1cInZhbGlkYXRpb24ub3B0aW9ucz8ubWVzc2FnZVwiIFtvcHRpb25zXT1cInZhbGlkYXRpb24ub3B0aW9uc1wiPjwvYXgtdmFsaWRhdGlvbi1ydWxlPlxuICAgICAgfVxuICAgICAgPGF4LXZhbGlkYXRpb24tcnVsZSBtZXNzYWdlPVwiZmllbGQgY2FuJ3QgYmUgZW1wdHlcIiBydWxlPVwicmVxdWlyZWRcIj4gPC9heC12YWxpZGF0aW9uLXJ1bGU+XG4gICAgPC9heC10ZXh0LWJveD5cbiAgICBAaWYoaGFzVGl0bGUoKSl7XG4gICAgPGF4LXRleHQtYm94XG4gICAgICBbbmdDbGFzc109XCJnZW5lcmF0ZUNsYXNzZXMoJ3RpdGxlJywgJ3NpbmdsZScpXCJcbiAgICAgIFtuZ01vZGVsXT1cImludGVybmFsVmFsdWUoKVswXS50aXRsZVwiXG4gICAgICAob25WYWx1ZUNoYW5nZWQpPVwiaGFuZGxlVmFsdWVDaGFuZ2UoJGV2ZW50LCAwKVwiXG4gICAgICB0eXBlPVwidGV4dFwiXG4gICAgICBuYW1lPVwidGl0bGVcIlxuICAgICAgcGxhY2Vob2xkZXI9XCJUaXRsZVwiXG4gICAgPlxuICAgIDwvYXgtdGV4dC1ib3g+XG4gICAgfSBAaWYoaGFzTGFiZWwoKSl7XG4gICAgPGF4LXNlbGVjdC1ib3hcbiAgICAgIFtuZ0NsYXNzXT1cImdlbmVyYXRlQ2xhc3NlcygnbGFiZWwnLCAnc2luZ2xlJylcIlxuICAgICAgW2RhdGFTb3VyY2VdPVwibGFiZWxUeXBlcygpXCJcbiAgICAgIFtuZ01vZGVsXT1cImludGVybmFsVmFsdWUoKVswXS5sYWJlbFwiXG4gICAgICAob25WYWx1ZUNoYW5nZWQpPVwiaGFuZGxlVmFsdWVDaGFuZ2UoJGV2ZW50LCAwKVwiXG4gICAgICBuYW1lPVwibGFiZWxcIlxuICAgICAgcGxhY2Vob2xkZXI9XCJMYWJlbFwiXG4gICAgPlxuICAgIDwvYXgtc2VsZWN0LWJveD5cbiAgICB9IH1cbiAgPC9kaXY+YCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgRm9ybXNNb2R1bGUsXG4gICAgQVhTZWxlY3RCb3hNb2R1bGUsXG4gICAgQVhGb3JtTW9kdWxlLFxuICAgIEFYQnV0dG9uTW9kdWxlLFxuICAgIEFYRGVjb3JhdG9yTW9kdWxlLFxuICAgIEFYU2VsZWN0Qm94TW9kdWxlLFxuICAgIEFYVGV4dEJveE1vZHVsZSxcbiAgICBBWFZhbGlkYXRpb25Nb2R1bGUsXG4gIF0sXG4gIGlucHV0czogW10sXG59KVxuZXhwb3J0IGNsYXNzIEFYUExpbmtXaWRnZXRFZGl0Q29tcG9uZW50IGV4dGVuZHMgQVhQV2lkZ2V0Q29tcG9uZW50PGFueT4ge1xuICBwcm90ZWN0ZWQgdmFsaWRhdGlvblNlcnZpY2UgPSBpbmplY3QoQVhWYWxpZGF0aW9uU2VydmljZSk7XG4gIHByb3RlY3RlZCB0cmFuc2xhdGVTZXJ2aWNlID0gaW5qZWN0KEFYVHJhbnNsYXRpb25TZXJ2aWNlKTtcbiAgcHJvdGVjdGVkIHZhbGlkYXRpb25NZXNzYWdlPzogc3RyaW5nIHwgbnVsbDtcblxuICBwcm90ZWN0ZWQgbXVsdGlwbGUgPSBjb21wdXRlZDxib29sZWFuPigoKSA9PiB0aGlzLm9wdGlvbnMoKVsnbXVsdGlwbGUnXSBhcyBib29sZWFuKTtcbiAgcHJvdGVjdGVkIGRpc2FibGVkID0gY29tcHV0ZWQ8Ym9vbGVhbj4oKCkgPT4gdGhpcy5vcHRpb25zKClbJ2Rpc2FibGVkJ10gYXMgYm9vbGVhbik7XG4gIHByb3RlY3RlZCBjbGVhckJ1dHRvbiA9IGNvbXB1dGVkPGJvb2xlYW4+KCgpID0+IHRoaXMub3B0aW9ucygpWydjbGVhckJ1dHRvbiddIGFzIGJvb2xlYW4pO1xuICBwcm90ZWN0ZWQgaGFzTGFiZWwgPSBjb21wdXRlZDxib29sZWFuPigoKSA9PiB0aGlzLm9wdGlvbnMoKVsnaGFzTGFiZWwnXSBhcyBib29sZWFuKTtcbiAgcHJvdGVjdGVkIGhhc1RpdGxlID0gY29tcHV0ZWQ8Ym9vbGVhbj4oKCkgPT4gdGhpcy5vcHRpb25zKClbJ2hhc1RpdGxlJ10gYXMgYm9vbGVhbik7XG4gIHByb3RlY3RlZCBsYWJlbFR5cGVzID0gY29tcHV0ZWQ8c3RyaW5nW10+KCgpID0+IHRoaXMub3B0aW9ucygpWydsYWJlbFR5cGVzJ10gfHwgWydQcmltYXJ5JywgJ1NlY29uZGFyeSddKTtcbiAgcHJvdGVjdGVkIGxpbmtUeXBlcyA9IGNvbXB1dGVkPHN0cmluZ1tdPigoKSA9PiB0aGlzLm9wdGlvbnMoKVsnbGlua1R5cGVzJ10gfHwgWydodHRwJywgJ2h0dHBzJywgJ3JlbGF0ZWQnXSk7XG5cbiAgcHJvdGVjdGVkIGRhdGFTb3VyY2UgPSBuZXcgQVhEYXRhU291cmNlPGFueT4oe1xuICAgIHBhZ2VTaXplOiAxMCxcbiAgICBrZXk6ICdpZCcsXG4gICAgbG9hZDogKGUpID0+IHtcbiAgICAgIHJldHVybiBuZXcgUHJvbWlzZSgocmVzb2x2ZSkgPT4ge1xuICAgICAgICBzZXRUaW1lb3V0KFxuICAgICAgICAgICgpID0+IHtcbiAgICAgICAgICAgIGNvbnN0IGxpc3QgPSB0aGlzLmxpbmtUeXBlcygpO1xuICAgICAgICAgICAgY29uc3QgcmVzdWx0ID0gZS5maWx0ZXIgPyBsaXN0LmZpbHRlcigoaXRlbSkgPT4gaXRlbS5pbmNsdWRlcyhlLmZpbHRlcj8udmFsdWUgYXMgc3RyaW5nKSkgOiBsaXN0O1xuICAgICAgICAgICAgcmVzb2x2ZSh7XG4gICAgICAgICAgICAgIGl0ZW1zOiByZXN1bHQuc2xpY2UoZS5za2lwLCBlLnNraXAgKyBlLnRha2UpLFxuICAgICAgICAgICAgICB0b3RhbDogcmVzdWx0Lmxlbmd0aCxcbiAgICAgICAgICAgIH0pO1xuICAgICAgICAgIH0sXG4gICAgICAgICAgZS5za2lwID09IDAgPyAxMDAgOiAzMDBcbiAgICAgICAgKTtcbiAgICAgIH0pO1xuICAgIH0sXG4gIH0pO1xuXG4gIHByb3RlY3RlZCBpbnRlcm5hbFZhbHVlOiBTaWduYWw8eyB2YWx1ZTogc3RyaW5nOyBsYWJlbD86IHN0cmluZzsgdGl0bGU6IHN0cmluZzsgaWNvbj86IHN0cmluZyB9W10+ID0gY29tcHV0ZWQoKCkgPT5cbiAgICB0aGlzLmdldFZhbHVlQXNBcnJheU9mT2JqZWN0cygpXG4gICk7XG5cbiAgb3ZlcnJpZGUgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgc3VwZXIubmdPbkluaXQoKTtcbiAgICB0aGlzLmdldFZhbHVlQXNBcnJheU9mT2JqZWN0cygpO1xuICB9XG5cbiAgcHJpdmF0ZSBfdmFsaWRhdGlvblJ1bGVzOiBBWFBWYWxpZGF0aW9uUnVsZXMgPSBbXTtcbiAgcHVibGljIGdldCB2YWxpZGF0aW9uUnVsZXMoKTogQVhQVmFsaWRhdGlvblJ1bGVzIHtcbiAgICByZXR1cm4gdGhpcy5fdmFsaWRhdGlvblJ1bGVzO1xuICB9XG4gIHB1YmxpYyBzZXQgdmFsaWRhdGlvblJ1bGVzKHY6IEFYUFZhbGlkYXRpb25SdWxlcykge1xuICAgIHRoaXMuX3ZhbGlkYXRpb25SdWxlcyA9IHY7XG4gIH1cblxuICBwcml2YXRlIGdldFZhbHVlQXNBcnJheU9mT2JqZWN0cygpOiBhbnlbXSB7XG4gICAgY29uc3QgdmFsdWUgPSB0aGlzLmdldFZhbHVlKCk7XG4gICAgaWYgKEFycmF5LmlzQXJyYXkodmFsdWUpKSB7XG4gICAgICByZXR1cm4gdmFsdWUubWFwKChpdGVtKSA9PiB7XG4gICAgICAgIHJldHVybiB0eXBlb2YgaXRlbSA9PT0gJ29iamVjdCdcbiAgICAgICAgICA/IHtcbiAgICAgICAgICAgICAgdmFsdWU6IGl0ZW0udmFsdWUgPz8gJy0nLFxuICAgICAgICAgICAgICB0aXRsZTogaXRlbS50aXRsZSxcbiAgICAgICAgICAgICAgbGFiZWw6IHRoaXMuaGFzTGFiZWwoKSA/IGl0ZW0ubGFiZWwgfHwgJ3ByaW1hcnknIDogdW5kZWZpbmVkLFxuICAgICAgICAgICAgICBpY29uOiBpdGVtLmljb24sXG4gICAgICAgICAgICB9XG4gICAgICAgICAgOiB7XG4gICAgICAgICAgICAgIHZhbHVlOiBpdGVtLFxuICAgICAgICAgICAgICB0aXRsZTogJycsXG4gICAgICAgICAgICAgIGljb246ICcnLFxuICAgICAgICAgICAgICBsYWJlbDogdGhpcy5oYXNMYWJlbCgpID8gJ1ByaW1hcnknIDogdW5kZWZpbmVkLFxuICAgICAgICAgICAgfTtcbiAgICAgIH0pO1xuICAgIH0gZWxzZSB7XG4gICAgICByZXR1cm4gdHlwZW9mIHZhbHVlID09PSAnb2JqZWN0JyA/IFt2YWx1ZV0gOiBbeyB2YWx1ZTogdmFsdWUgfHwgJycgfV07XG4gICAgfVxuICB9XG5cbiAgcHJvdGVjdGVkIGhhbmRsZVZhbHVlQ2hhbmdlKGU6IEFYVmFsdWVDaGFuZ2VkRXZlbnQsIHNlbGVjdGVkSW5kZXg6IG51bWJlcikge1xuICAgIGNvbnN0IHsgbmFtZSwgdmFsdWUsIGlzVXNlckludGVyYWN0aW9uIH0gPSBlO1xuICAgIGlmIChpc1VzZXJJbnRlcmFjdGlvbikge1xuICAgICAgY29uc3QgbmV3VmFsdWVzID0gdGhpcy5pbnRlcm5hbFZhbHVlKCkubWFwKChpdGVtLCBpbmRleCkgPT5cbiAgICAgICAgc2VsZWN0ZWRJbmRleCA9PT0gaW5kZXggPyAobmFtZSA9PT0gJ3ZhbHVlJyA/IHRoaXMuY29udmVydEl0ZW0oaXRlbSwgZSkgOiB7IC4uLml0ZW0sIFtuYW1lIGFzIHN0cmluZ106IHZhbHVlIH0pIDogaXRlbVxuICAgICAgKTtcbiAgICAgIGNvbnNvbGUubG9nKG5ld1ZhbHVlcyk7XG4gICAgICBpZiAodGhpcy5tdWx0aXBsZSgpKSB0aGlzLnNldFZhbHVlKG5ld1ZhbHVlcyk7XG4gICAgICBlbHNlIHRoaXMuc2V0VmFsdWUobmV3VmFsdWVzWzBdKTtcbiAgICB9XG4gIH1cblxuICBwcm90ZWN0ZWQgY29udmVydEl0ZW0gPSAoaXRlbTogYW55LCBlOiBhbnkpID0+IHtcbiAgICBpZiAodHlwZW9mIGl0ZW0gPT09ICdvYmplY3QnKSByZXR1cm4geyAuLi5pdGVtLCB2YWx1ZTogZS52YWx1ZSB9O1xuICAgIGVsc2UgcmV0dXJuIGUudmFsdWU7XG4gIH07XG5cbiAgLy8gcHJvdGVjdGVkIGhhbmRsZUxhYmVsQ2hhbmdlKGU6IEFYVmFsdWVDaGFuZ2VkRXZlbnQsIHNlbGVjdGVkSW5kZXg6IG51bWJlcikge1xuICAvLyAgIGlmIChlLmlzVXNlckludGVyYWN0aW9uKSB7XG4gIC8vICAgICBjb25zdCBuZXdWYWx1ZXMgPSB0aGlzLmludGVybmFsVmFsdWUoKS5tYXAoKGl0ZW0sIGluZGV4KSA9PiAoc2VsZWN0ZWRJbmRleCA9PT0gaW5kZXggPyB7IC4uLml0ZW0sIGxhYmVsOiBlLnZhbHVlIH0gOiBpdGVtKSk7XG4gIC8vICAgICBpZiAodGhpcy5tdWx0aXBsZSgpKSB0aGlzLnNldFZhbHVlKG5ld1ZhbHVlcyk7XG4gIC8vICAgICBlbHNlIHRoaXMuc2V0VmFsdWUobmV3VmFsdWVzWzBdKTtcbiAgLy8gICB9XG4gIC8vIH1cblxuICBwcm90ZWN0ZWQgYWRkSXRlbSgpIHtcbiAgICBjb25zdCBuZXdWYWx1ZXMgPSBbXG4gICAgICAuLi50aGlzLmludGVybmFsVmFsdWUoKSxcbiAgICAgIHtcbiAgICAgICAgdmFsdWU6ICcnLFxuICAgICAgICB0aXRsZTogJycsXG4gICAgICAgIGxhYmVsOiAncHJpbWFyeScsXG4gICAgICAgIGljb246ICcnLFxuICAgICAgfSxcbiAgICBdO1xuICAgIHRoaXMuc2V0VmFsdWUobmV3VmFsdWVzKTtcbiAgfVxuICBwcm90ZWN0ZWQgZGVsZXRlSXRlbShkZWxldGVkSW5kZXg6IG51bWJlcikge1xuICAgIGNvbnN0IG5ld1ZhbHVlcyA9IHRoaXMuaW50ZXJuYWxWYWx1ZSgpLmZpbHRlcigoXywgaW5kZXgpID0+IGluZGV4ICE9IGRlbGV0ZWRJbmRleCk7XG4gICAgdGhpcy5zZXRWYWx1ZShuZXdWYWx1ZXMpO1xuICB9XG5cbiAgcHJvdGVjdGVkIGdlbmVyYXRlQ2xhc3NlcyhlbGVtZW50TmFtZTogJ3VybCcgfCAndGl0bGUnIHwgJ2xhYmVsJywgdHlwZTogJ3NpbmdsZScgfCAnbXVsdGlwbGUnID0gJ3NpbmdsZScpOiBBcnJheTxzdHJpbmc+IHtcbiAgICBpZiAodHlwZSA9PT0gJ211bHRpcGxlJykge1xuICAgICAgc3dpdGNoIChlbGVtZW50TmFtZSkge1xuICAgICAgICBjYXNlICd1cmwnOlxuICAgICAgICAgIGlmICh0aGlzLmhhc1RpdGxlKCkgfHwgdGhpcy5oYXNMYWJlbCgpKSB7XG4gICAgICAgICAgICAvL2FscmVhZHkgaGFzIGF4LWNvbC1zdGFydC0xIGF4LWNvbC1lbmQtMTNcbiAgICAgICAgICAgIHJldHVybiBbJ2xnOmF4LWNvbC1lbmQtNyddO1xuICAgICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICByZXR1cm4gWydsZzpheC1jb2wtZW5kLTEyJ107XG4gICAgICAgICAgfVxuICAgICAgICBjYXNlICd0aXRsZSc6XG4gICAgICAgICAgaWYgKHRoaXMuaGFzTGFiZWwoKSkge1xuICAgICAgICAgICAgcmV0dXJuIFsnYXgtY29sLXN0YXJ0LTEgYXgtY29sLWVuZC03IGxnOmF4LWNvbC1zdGFydC03IGxnOmF4LWNvbC1lbmQtMTAnXTtcbiAgICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgICAgcmV0dXJuIFsnYXgtY29sLXN0YXJ0LTEgYXgtY29sLWVuZC0xMSBsZzpheC1jb2wtc3RhcnQtNyBsZzpheC1jb2wtZW5kLTEyJ107XG4gICAgICAgICAgfVxuICAgICAgICBjYXNlICdsYWJlbCc6XG4gICAgICAgICAgaWYgKHRoaXMuaGFzVGl0bGUoKSkge1xuICAgICAgICAgICAgcmV0dXJuIFsnYXgtY29sLXN0YXJ0LTcgYXgtY29sLWVuZC0xMSBsZzpheC1jb2wtc3RhcnQtMTAgbGc6YXgtY29sLWVuZC0xMiddO1xuICAgICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICByZXR1cm4gWydheC1jb2wtc3RhcnQtMSBheC1jb2wtZW5kLTExIGxnOmF4LWNvbC1zdGFydC03IGxnOmF4LWNvbC1lbmQtMTInXTtcbiAgICAgICAgICB9XG4gICAgICAgIGRlZmF1bHQ6XG4gICAgICAgICAgcmV0dXJuIFsnJ107XG4gICAgICB9XG4gICAgfSBlbHNlIGlmICh0eXBlID09PSAnc2luZ2xlJykge1xuICAgICAgc3dpdGNoIChlbGVtZW50TmFtZSkge1xuICAgICAgICBjYXNlICd1cmwnOlxuICAgICAgICAgIGlmICh0aGlzLmhhc1RpdGxlKCkgfHwgdGhpcy5oYXNMYWJlbCgpKSB7XG4gICAgICAgICAgICAvL2FscmVhZHkgaGFzIGF4LWNvbC1zdGFydC0xIGF4LWNvbC1lbmQtMTNcbiAgICAgICAgICAgIHJldHVybiBbJ2xnOmF4LWNvbC1lbmQtNyddO1xuICAgICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICByZXR1cm4gWydsZzpheC1jb2wtZW5kLTEzJ107XG4gICAgICAgICAgfVxuICAgICAgICBjYXNlICd0aXRsZSc6XG4gICAgICAgICAgaWYgKHRoaXMuaGFzTGFiZWwoKSkge1xuICAgICAgICAgICAgcmV0dXJuIFsnYXgtY29sLXN0YXJ0LTEgYXgtY29sLWVuZC03IGxnOmF4LWNvbC1zdGFydC03IGxnOmF4LWNvbC1lbmQtMTAnXTtcbiAgICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgICAgcmV0dXJuIFsnYXgtY29sLXN0YXJ0LTEgYXgtY29sLWVuZC0xMyBsZzpheC1jb2wtc3RhcnQtNyBsZzpheC1jb2wtZW5kLTEzJ107XG4gICAgICAgICAgfVxuICAgICAgICBjYXNlICdsYWJlbCc6XG4gICAgICAgICAgaWYgKHRoaXMuaGFzVGl0bGUoKSkge1xuICAgICAgICAgICAgcmV0dXJuIFsnYXgtY29sLXN0YXJ0LTcgYXgtY29sLWVuZC0xMyBsZzpheC1jb2wtc3RhcnQtMTAgbGc6YXgtY29sLWVuZC0xMyddO1xuICAgICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICByZXR1cm4gWydheC1jb2wtc3RhcnQtMSBheC1jb2wtZW5kLTEzIGxnOmF4LWNvbC1zdGFydC03IGxnOmF4LWNvbC1lbmQtMTMnXTtcbiAgICAgICAgICB9XG4gICAgICAgIGRlZmF1bHQ6XG4gICAgICAgICAgcmV0dXJuIFsnJ107XG4gICAgICB9XG4gICAgfSBlbHNlIHtcbiAgICAgIHJldHVybiBbJyddO1xuICAgIH1cbiAgfVxufVxuIl19
@@ -0,0 +1,20 @@
1
+ import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
2
+ import { CommonModule } from '@angular/common';
3
+ import { ChangeDetectionStrategy, Component } from '@angular/core';
4
+ import { FormsModule } from '@angular/forms';
5
+ import * as i0 from "@angular/core";
6
+ export class AXPLinkWidgetFilterComponent extends AXPWidgetComponent {
7
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLinkWidgetFilterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
8
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPLinkWidgetFilterComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
9
+ }
10
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLinkWidgetFilterComponent, decorators: [{
11
+ type: Component,
12
+ args: [{
13
+ template: ``,
14
+ standalone: true,
15
+ changeDetection: ChangeDetectionStrategy.OnPush,
16
+ imports: [CommonModule, FormsModule],
17
+ inputs: []
18
+ }]
19
+ }] });
20
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGluay13aWRnZXQtZmlsdGVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vd2lkZ2V0cy9zcmMvbGliL3dpZGdldHMvZWRpdG9ycy9saW5rLXdpZGdldC9saW5rLXdpZGdldC1maWx0ZXIuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ3JFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFVLE1BQU0sZUFBZSxDQUFDO0FBQzNFLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQzs7QUFTN0MsTUFBTSxPQUFPLDRCQUE2QixTQUFRLGtCQUF1Qjs4R0FBNUQsNEJBQTRCO2tHQUE1Qiw0QkFBNEIsK0ZBTjdCLEVBQUUsMkRBR0YsWUFBWSw4QkFBRSxXQUFXOzsyRkFHeEIsNEJBQTRCO2tCQVB4QyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxFQUFFO29CQUNaLFVBQVUsRUFBRSxJQUFJO29CQUNoQixlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsT0FBTyxFQUFFLENBQUMsWUFBWSxFQUFFLFdBQVcsQ0FBQztvQkFDcEMsTUFBTSxFQUFFLEVBQUU7aUJBQ1giLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWFBXaWRnZXRDb21wb25lbnQgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9idWlsZGVyJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBpbmplY3QgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEZvcm1zTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgdGVtcGxhdGU6IGBgLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgRm9ybXNNb2R1bGVdLFxuICBpbnB1dHM6IFtdXG59KVxuZXhwb3J0IGNsYXNzIEFYUExpbmtXaWRnZXRGaWx0ZXJDb21wb25lbnQgZXh0ZW5kcyBBWFBXaWRnZXRDb21wb25lbnQ8YW55PiB7IH0iXX0=
@@ -0,0 +1,19 @@
1
+ import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
2
+ import { CommonModule } from '@angular/common';
3
+ import { ChangeDetectionStrategy, Component } from '@angular/core';
4
+ import * as i0 from "@angular/core";
5
+ export class AXPLinkWidgetPrintComponent extends AXPWidgetComponent {
6
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLinkWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
7
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPLinkWidgetPrintComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ``, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
8
+ }
9
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLinkWidgetPrintComponent, decorators: [{
10
+ type: Component,
11
+ args: [{
12
+ template: ``,
13
+ standalone: true,
14
+ changeDetection: ChangeDetectionStrategy.OnPush,
15
+ imports: [CommonModule],
16
+ inputs: []
17
+ }]
18
+ }] });
19
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGluay13aWRnZXQtcHJpbnQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS93aWRnZXRzL3NyYy9saWIvd2lkZ2V0cy9lZGl0b3JzL2xpbmstd2lkZ2V0L2xpbmstd2lkZ2V0LXByaW50LmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUNyRSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBVSxNQUFNLGVBQWUsQ0FBQzs7QUFRM0UsTUFBTSxPQUFPLDJCQUE0QixTQUFRLGtCQUF1Qjs4R0FBM0QsMkJBQTJCO2tHQUEzQiwyQkFBMkIsK0ZBTjVCLEVBQUUsMkRBR0YsWUFBWTs7MkZBR1gsMkJBQTJCO2tCQVB2QyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxFQUFFO29CQUNaLFVBQVUsRUFBRSxJQUFJO29CQUNoQixlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDO29CQUN2QixNQUFNLEVBQUUsRUFBRTtpQkFDWCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFYUFdpZGdldENvbXBvbmVudCB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vbGF5b3V0L2J1aWxkZXInO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIGluamVjdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuQENvbXBvbmVudCh7XG4gIHRlbXBsYXRlOiBgYCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxuICBpbnB1dHM6IFtdXG59KVxuZXhwb3J0IGNsYXNzIEFYUExpbmtXaWRnZXRQcmludENvbXBvbmVudCBleHRlbmRzIEFYUFdpZGdldENvbXBvbmVudDxhbnk+IHsgfSJdfQ==