@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,65 @@
1
+ import { AXPContainerWidgetComponent, AXPLayoutBuilderModule } from '@acorex/platform/layout/builder';
2
+ import { AXPDesignerAddWidgetButtonComponent, AXPWidgetDesignerRendererComponent } from '@acorex/platform/layout/designer';
3
+ import { CommonModule } from '@angular/common';
4
+ import { ChangeDetectionStrategy, Component, computed, HostBinding } from '@angular/core';
5
+ import * as i0 from "@angular/core";
6
+ export class AXPBlockWidgetDesignerComponent extends AXPContainerWidgetComponent {
7
+ constructor() {
8
+ super(...arguments);
9
+ this.backgroundColor = computed(() => this.options()["backgroundColor"]);
10
+ this.cssClass = computed(() => this.options()["cssClass"]);
11
+ }
12
+ get __class() {
13
+ return this.cssClass();
14
+ }
15
+ get __class2() {
16
+ return ['ax-border', 'ax-border-dashed'];
17
+ }
18
+ get __style() {
19
+ return {
20
+ 'background-color': this.backgroundColor(),
21
+ 'display': 'block',
22
+ };
23
+ }
24
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPBlockWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
25
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPBlockWidgetDesignerComponent, isStandalone: true, selector: "axp-block-widget", host: { properties: { "class": "this.__class2", "style": "this.__style" } }, providers: [
26
+ {
27
+ provide: AXPContainerWidgetComponent, useExisting: AXPBlockWidgetDesignerComponent
28
+ }
29
+ ], usesInheritance: true, ngImport: i0, template: `
30
+ @for (node of children(); track $index) {
31
+ <axp-widget-designer-renderer [node]="node" [parentNode]="this" [mode]="this.mode"> </axp-widget-designer-renderer>
32
+ }
33
+ <axp-designer-add-widget-button></axp-designer-add-widget-button>
34
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: AXPWidgetDesignerRendererComponent, selector: "axp-widget-designer-renderer", inputs: ["parentNode", "index", "mode", "node"] }, { kind: "component", type: AXPDesignerAddWidgetButtonComponent, selector: "axp-designer-add-widget-button" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
35
+ }
36
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPBlockWidgetDesignerComponent, decorators: [{
37
+ type: Component,
38
+ args: [{
39
+ selector: 'axp-block-widget',
40
+ template: `
41
+ @for (node of children(); track $index) {
42
+ <axp-widget-designer-renderer [node]="node" [parentNode]="this" [mode]="this.mode"> </axp-widget-designer-renderer>
43
+ }
44
+ <axp-designer-add-widget-button></axp-designer-add-widget-button>
45
+ `,
46
+ standalone: true,
47
+ changeDetection: ChangeDetectionStrategy.OnPush,
48
+ imports: [CommonModule, AXPLayoutBuilderModule, AXPWidgetDesignerRendererComponent, AXPDesignerAddWidgetButtonComponent],
49
+ providers: [
50
+ {
51
+ provide: AXPContainerWidgetComponent, useExisting: AXPBlockWidgetDesignerComponent
52
+ }
53
+ ]
54
+ }]
55
+ }], propDecorators: { __class: [{
56
+ type: HostBinding,
57
+ args: ['class']
58
+ }], __class2: [{
59
+ type: HostBinding,
60
+ args: ['class']
61
+ }], __style: [{
62
+ type: HostBinding,
63
+ args: ['style']
64
+ }] } });
65
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmxvY2std2lkZ2V0LWRlc2lnbmVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vd2lkZ2V0cy9zcmMvbGliL3dpZGdldHMvbGF5b3V0L2Jsb2NrLXdpZGdldC9ibG9jay13aWRnZXQtZGVzaWduZXIuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSwyQkFBMkIsRUFBRSxzQkFBc0IsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ3RHLE9BQU8sRUFBRSxtQ0FBbUMsRUFBRSxrQ0FBa0MsRUFBRSxNQUFNLGtDQUFrQyxDQUFDO0FBQzNILE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLFFBQVEsRUFBRSxXQUFXLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBbUIxRixNQUFNLE9BQU8sK0JBQWdDLFNBQVEsMkJBQWlDO0lBakJ0Rjs7UUFtQlksb0JBQWUsR0FBRyxRQUFRLENBQVMsR0FBRyxFQUFFLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDLGlCQUFpQixDQUFXLENBQUMsQ0FBQztRQUN0RixhQUFRLEdBQUcsUUFBUSxDQUFTLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQyxVQUFVLENBQVcsQ0FBQyxDQUFDO0tBbUJuRjtJQWpCQyxJQUNZLE9BQU87UUFDakIsT0FBTyxJQUFJLENBQUMsUUFBUSxFQUFFLENBQUM7SUFDekIsQ0FBQztJQUVELElBQ1ksUUFBUTtRQUNsQixPQUFPLENBQUMsV0FBVyxFQUFFLGtCQUFrQixDQUFDLENBQUE7SUFDMUMsQ0FBQztJQUVELElBQ1ksT0FBTztRQUNqQixPQUFPO1lBQ0wsa0JBQWtCLEVBQUUsSUFBSSxDQUFDLGVBQWUsRUFBRTtZQUMxQyxTQUFTLEVBQUUsT0FBTztTQUNuQixDQUFDO0lBQ0osQ0FBQzs4R0FyQlUsK0JBQStCO2tHQUEvQiwrQkFBK0IsNElBTi9CO1lBQ1Q7Z0JBQ0UsT0FBTyxFQUFFLDJCQUEyQixFQUFFLFdBQVcsRUFBRSwrQkFBK0I7YUFDbkY7U0FDRixpREFiUzs7Ozs7R0FLVCwyREFHUyxZQUFZLDhCQUFFLHNCQUFzQiwrQkFBRSxrQ0FBa0MsMEhBQUUsbUNBQW1DOzsyRkFPNUcsK0JBQStCO2tCQWpCM0MsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsa0JBQWtCO29CQUM1QixRQUFRLEVBQUU7Ozs7O0dBS1Q7b0JBQ0QsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO29CQUMvQyxPQUFPLEVBQUUsQ0FBQyxZQUFZLEVBQUUsc0JBQXNCLEVBQUUsa0NBQWtDLEVBQUUsbUNBQW1DLENBQUM7b0JBQ3hILFNBQVMsRUFBRTt3QkFDVDs0QkFDRSxPQUFPLEVBQUUsMkJBQTJCLEVBQUUsV0FBVyxpQ0FBaUM7eUJBQ25GO3FCQUNGO2lCQUNGOzhCQU9hLE9BQU87c0JBRGxCLFdBQVc7dUJBQUMsT0FBTztnQkFNUixRQUFRO3NCQURuQixXQUFXO3VCQUFDLE9BQU87Z0JBTVIsT0FBTztzQkFEbEIsV0FBVzt1QkFBQyxPQUFPIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhQQ29udGFpbmVyV2lkZ2V0Q29tcG9uZW50LCBBWFBMYXlvdXRCdWlsZGVyTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5pbXBvcnQgeyBBWFBEZXNpZ25lckFkZFdpZGdldEJ1dHRvbkNvbXBvbmVudCwgQVhQV2lkZ2V0RGVzaWduZXJSZW5kZXJlckNvbXBvbmVudCB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vbGF5b3V0L2Rlc2lnbmVyJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBjb21wdXRlZCwgSG9zdEJpbmRpbmcgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXhwLWJsb2NrLXdpZGdldCcsXG4gIHRlbXBsYXRlOiBgXG4gICAgQGZvciAobm9kZSBvZiBjaGlsZHJlbigpOyB0cmFjayAkaW5kZXgpIHtcbiAgICA8YXhwLXdpZGdldC1kZXNpZ25lci1yZW5kZXJlciBbbm9kZV09XCJub2RlXCIgW3BhcmVudE5vZGVdPVwidGhpc1wiIFttb2RlXT1cInRoaXMubW9kZVwiPiA8L2F4cC13aWRnZXQtZGVzaWduZXItcmVuZGVyZXI+XG4gICAgfVxuICAgIDxheHAtZGVzaWduZXItYWRkLXdpZGdldC1idXR0b24+PC9heHAtZGVzaWduZXItYWRkLXdpZGdldC1idXR0b24+XG4gIGAsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBBWFBMYXlvdXRCdWlsZGVyTW9kdWxlLCBBWFBXaWRnZXREZXNpZ25lclJlbmRlcmVyQ29tcG9uZW50LCBBWFBEZXNpZ25lckFkZFdpZGdldEJ1dHRvbkNvbXBvbmVudF0sXG4gIHByb3ZpZGVyczogW1xuICAgIHtcbiAgICAgIHByb3ZpZGU6IEFYUENvbnRhaW5lcldpZGdldENvbXBvbmVudCwgdXNlRXhpc3Rpbmc6IEFYUEJsb2NrV2lkZ2V0RGVzaWduZXJDb21wb25lbnRcbiAgICB9XG4gIF1cbn0pXG5leHBvcnQgY2xhc3MgQVhQQmxvY2tXaWRnZXREZXNpZ25lckNvbXBvbmVudCBleHRlbmRzIEFYUENvbnRhaW5lcldpZGdldENvbXBvbmVudDx2b2lkPiB7XG5cbiAgcHJvdGVjdGVkIGJhY2tncm91bmRDb2xvciA9IGNvbXB1dGVkPHN0cmluZz4oKCkgPT4gdGhpcy5vcHRpb25zKClbXCJiYWNrZ3JvdW5kQ29sb3JcIl0gYXMgc3RyaW5nKTtcbiAgcHJvdGVjdGVkIGNzc0NsYXNzID0gY29tcHV0ZWQ8c3RyaW5nPigoKSA9PiB0aGlzLm9wdGlvbnMoKVtcImNzc0NsYXNzXCJdIGFzIHN0cmluZyk7XG5cbiAgQEhvc3RCaW5kaW5nKCdjbGFzcycpXG4gIHByaXZhdGUgZ2V0IF9fY2xhc3MoKTogc3RyaW5nIHtcbiAgICByZXR1cm4gdGhpcy5jc3NDbGFzcygpO1xuICB9XG5cbiAgQEhvc3RCaW5kaW5nKCdjbGFzcycpXG4gIHByaXZhdGUgZ2V0IF9fY2xhc3MyKCk6IGFueSB7XG4gICAgcmV0dXJuIFsnYXgtYm9yZGVyJywgJ2F4LWJvcmRlci1kYXNoZWQnXVxuICB9XG5cbiAgQEhvc3RCaW5kaW5nKCdzdHlsZScpXG4gIHByaXZhdGUgZ2V0IF9fc3R5bGUoKTogYW55IHtcbiAgICByZXR1cm4ge1xuICAgICAgJ2JhY2tncm91bmQtY29sb3InOiB0aGlzLmJhY2tncm91bmRDb2xvcigpLFxuICAgICAgJ2Rpc3BsYXknOiAnYmxvY2snLFxuICAgIH07XG4gIH1cbn1cbiJdfQ==
@@ -0,0 +1,48 @@
1
+ import { AXPLayoutBuilderModule, AXPWidgetComponent } from '@acorex/platform/layout/builder';
2
+ import { CommonModule } from '@angular/common';
3
+ import { ChangeDetectionStrategy, Component, computed, HostBinding } from '@angular/core';
4
+ import * as i0 from "@angular/core";
5
+ import * as i1 from "@acorex/platform/layout/builder";
6
+ export class AXPBlockWidgetViewComponent extends AXPWidgetComponent {
7
+ constructor() {
8
+ super(...arguments);
9
+ this.backgroundColor = computed(() => this.options()["backgroundColor"]);
10
+ this.cssClass = computed(() => this.options()["cssClass"]);
11
+ }
12
+ get __class() {
13
+ return this.cssClass();
14
+ }
15
+ get __style() {
16
+ return {
17
+ 'background-color': this.backgroundColor(),
18
+ 'display': 'block',
19
+ };
20
+ }
21
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPBlockWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
22
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPBlockWidgetViewComponent, isStandalone: true, selector: "axp-block-widget", host: { properties: { "class": "this.__class", "style": "this.__style" } }, usesInheritance: true, ngImport: i0, template: `
23
+ @for (node of children(); track $index) {
24
+ <axp-widget-renderer [node]="node" [parentNode]="this" [mode]="this.mode"> </axp-widget-renderer>
25
+ }
26
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: i1.AXPWidgetRendererComponent, selector: "axp-widget-renderer", inputs: ["node", "mode", "parentNode", "index"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
27
+ }
28
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPBlockWidgetViewComponent, decorators: [{
29
+ type: Component,
30
+ args: [{
31
+ selector: 'axp-block-widget',
32
+ template: `
33
+ @for (node of children(); track $index) {
34
+ <axp-widget-renderer [node]="node" [parentNode]="this" [mode]="this.mode"> </axp-widget-renderer>
35
+ }
36
+ `,
37
+ standalone: true,
38
+ changeDetection: ChangeDetectionStrategy.OnPush,
39
+ imports: [CommonModule, AXPLayoutBuilderModule],
40
+ }]
41
+ }], propDecorators: { __class: [{
42
+ type: HostBinding,
43
+ args: ['class']
44
+ }], __style: [{
45
+ type: HostBinding,
46
+ args: ['style']
47
+ }] } });
48
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmxvY2std2lkZ2V0LXZpZXcuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS93aWRnZXRzL3NyYy9saWIvd2lkZ2V0cy9sYXlvdXQvYmxvY2std2lkZ2V0L2Jsb2NrLXdpZGdldC12aWV3LmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUM3RixPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxRQUFRLEVBQUUsV0FBVyxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7QUFhMUYsTUFBTSxPQUFPLDJCQUE0QixTQUFRLGtCQUF3QjtJQVh6RTs7UUFhWSxvQkFBZSxHQUFHLFFBQVEsQ0FBUyxHQUFHLEVBQUUsQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFLENBQUMsaUJBQWlCLENBQVcsQ0FBQyxDQUFDO1FBQ3RGLGFBQVEsR0FBRyxRQUFRLENBQVMsR0FBRyxFQUFFLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDLFVBQVUsQ0FBVyxDQUFDLENBQUM7S0FjbkY7SUFaQyxJQUNZLE9BQU87UUFDakIsT0FBTyxJQUFJLENBQUMsUUFBUSxFQUFFLENBQUM7SUFDekIsQ0FBQztJQUVELElBQ1ksT0FBTztRQUNqQixPQUFPO1lBQ0wsa0JBQWtCLEVBQUUsSUFBSSxDQUFDLGVBQWUsRUFBRTtZQUMxQyxTQUFTLEVBQUUsT0FBTztTQUNuQixDQUFDO0lBQ0osQ0FBQzs4R0FoQlUsMkJBQTJCO2tHQUEzQiwyQkFBMkIsK0tBVDVCOzs7O0dBSVQsMkRBR1MsWUFBWSw4QkFBRSxzQkFBc0I7OzJGQUVuQywyQkFBMkI7a0JBWHZDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGtCQUFrQjtvQkFDNUIsUUFBUSxFQUFFOzs7O0dBSVQ7b0JBQ0QsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO29CQUMvQyxPQUFPLEVBQUUsQ0FBQyxZQUFZLEVBQUUsc0JBQXNCLENBQUM7aUJBQ2hEOzhCQU9hLE9BQU87c0JBRGxCLFdBQVc7dUJBQUMsT0FBTztnQkFNUixPQUFPO3NCQURsQixXQUFXO3VCQUFDLE9BQU8iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWFBMYXlvdXRCdWlsZGVyTW9kdWxlLCBBWFBXaWRnZXRDb21wb25lbnQgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9idWlsZGVyJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBjb21wdXRlZCwgSG9zdEJpbmRpbmcgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXhwLWJsb2NrLXdpZGdldCcsXG4gIHRlbXBsYXRlOiBgXG4gICAgQGZvciAobm9kZSBvZiBjaGlsZHJlbigpOyB0cmFjayAkaW5kZXgpIHtcbiAgICA8YXhwLXdpZGdldC1yZW5kZXJlciBbbm9kZV09XCJub2RlXCIgW3BhcmVudE5vZGVdPVwidGhpc1wiIFttb2RlXT1cInRoaXMubW9kZVwiPiA8L2F4cC13aWRnZXQtcmVuZGVyZXI+XG4gICAgfVxuICBgLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgQVhQTGF5b3V0QnVpbGRlck1vZHVsZV0sXG59KVxuZXhwb3J0IGNsYXNzIEFYUEJsb2NrV2lkZ2V0Vmlld0NvbXBvbmVudCBleHRlbmRzIEFYUFdpZGdldENvbXBvbmVudDx2b2lkPiB7XG5cbiAgcHJvdGVjdGVkIGJhY2tncm91bmRDb2xvciA9IGNvbXB1dGVkPHN0cmluZz4oKCkgPT4gdGhpcy5vcHRpb25zKClbXCJiYWNrZ3JvdW5kQ29sb3JcIl0gYXMgc3RyaW5nKTtcbiAgcHJvdGVjdGVkIGNzc0NsYXNzID0gY29tcHV0ZWQ8c3RyaW5nPigoKSA9PiB0aGlzLm9wdGlvbnMoKVtcImNzc0NsYXNzXCJdIGFzIHN0cmluZyk7XG5cbiAgQEhvc3RCaW5kaW5nKCdjbGFzcycpXG4gIHByaXZhdGUgZ2V0IF9fY2xhc3MoKTogc3RyaW5nIHtcbiAgICByZXR1cm4gdGhpcy5jc3NDbGFzcygpO1xuICB9XG5cbiAgQEhvc3RCaW5kaW5nKCdzdHlsZScpXG4gIHByaXZhdGUgZ2V0IF9fc3R5bGUoKTogYW55IHtcbiAgICByZXR1cm4ge1xuICAgICAgJ2JhY2tncm91bmQtY29sb3InOiB0aGlzLmJhY2tncm91bmRDb2xvcigpLFxuICAgICAgJ2Rpc3BsYXknOiAnYmxvY2snLFxuICAgIH07XG4gIH1cbn1cbiJdfQ==
@@ -0,0 +1,27 @@
1
+ import { cloneProperty } from '@acorex/platform/layout/builder';
2
+ import { AXP_BG_COLOR_PROPERTY, AXP_FONT_SIZE_PROPERTY } from '../../../properties';
3
+ export const AXPBlockWidget = {
4
+ name: "block",
5
+ title: "Block",
6
+ icon: "fa-solid fa-square",
7
+ container: true,
8
+ properties: [
9
+ AXP_FONT_SIZE_PROPERTY,
10
+ cloneProperty(AXP_BG_COLOR_PROPERTY, { schema: { defaultValue: null } })
11
+ ],
12
+ components: {
13
+ designer: {
14
+ component: () => import('./block-widget-designer.component').then((c) => c.AXPBlockWidgetDesignerComponent),
15
+ },
16
+ edit: {
17
+ component: () => import('./block-widget-view.component').then((c) => c.AXPBlockWidgetViewComponent),
18
+ },
19
+ print: {
20
+ component: () => import('./block-widget-view.component').then((c) => c.AXPBlockWidgetViewComponent),
21
+ },
22
+ view: {
23
+ component: () => import('./block-widget-view.component').then((c) => c.AXPBlockWidgetViewComponent),
24
+ },
25
+ }
26
+ };
27
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmxvY2std2lkZ2V0LmNvbmZpZy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vd2lkZ2V0cy9zcmMvbGliL3dpZGdldHMvbGF5b3V0L2Jsb2NrLXdpZGdldC9ibG9jay13aWRnZXQuY29uZmlnLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBbUIsYUFBYSxFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDakYsT0FBTyxFQUFFLHFCQUFxQixFQUFFLHNCQUFzQixFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFFcEYsTUFBTSxDQUFDLE1BQU0sY0FBYyxHQUFvQjtJQUMzQyxJQUFJLEVBQUUsT0FBTztJQUNiLEtBQUssRUFBRSxPQUFPO0lBQ2QsSUFBSSxFQUFFLG9CQUFvQjtJQUMxQixTQUFTLEVBQUUsSUFBSTtJQUNmLFVBQVUsRUFBRTtRQUNSLHNCQUFzQjtRQUN0QixhQUFhLENBQUMscUJBQXFCLEVBQUUsRUFBRSxNQUFNLEVBQUUsRUFBRSxZQUFZLEVBQUUsSUFBSSxFQUFFLEVBQUUsQ0FBQztLQUMzRTtJQUNELFVBQVUsRUFBRTtRQUNSLFFBQVEsRUFBRTtZQUNOLFNBQVMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxNQUFNLENBQUMsbUNBQW1DLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQywrQkFBK0IsQ0FBQztTQUM5RztRQUNELElBQUksRUFBRTtZQUNGLFNBQVMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxNQUFNLENBQUMsK0JBQStCLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQywyQkFBMkIsQ0FBQztTQUN0RztRQUNELEtBQUssRUFBRTtZQUNILFNBQVMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxNQUFNLENBQUMsK0JBQStCLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQywyQkFBMkIsQ0FBQztTQUN0RztRQUNELElBQUksRUFBRTtZQUNGLFNBQVMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxNQUFNLENBQUMsK0JBQStCLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQywyQkFBMkIsQ0FBQztTQUN0RztLQUNKO0NBQ0osQ0FBQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFYUFdpZGdldENvbmZpZywgY2xvbmVQcm9wZXJ0eSB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vbGF5b3V0L2J1aWxkZXInO1xuaW1wb3J0IHsgQVhQX0JHX0NPTE9SX1BST1BFUlRZLCBBWFBfRk9OVF9TSVpFX1BST1BFUlRZIH0gZnJvbSAnLi4vLi4vLi4vcHJvcGVydGllcyc7XG5cbmV4cG9ydCBjb25zdCBBWFBCbG9ja1dpZGdldDogQVhQV2lkZ2V0Q29uZmlnID0ge1xuICAgIG5hbWU6IFwiYmxvY2tcIixcbiAgICB0aXRsZTogXCJCbG9ja1wiLFxuICAgIGljb246IFwiZmEtc29saWQgZmEtc3F1YXJlXCIsXG4gICAgY29udGFpbmVyOiB0cnVlLFxuICAgIHByb3BlcnRpZXM6IFtcbiAgICAgICAgQVhQX0ZPTlRfU0laRV9QUk9QRVJUWSxcbiAgICAgICAgY2xvbmVQcm9wZXJ0eShBWFBfQkdfQ09MT1JfUFJPUEVSVFksIHsgc2NoZW1hOiB7IGRlZmF1bHRWYWx1ZTogbnVsbCB9IH0pXG4gICAgXSxcbiAgICBjb21wb25lbnRzOiB7XG4gICAgICAgIGRlc2lnbmVyOiB7XG4gICAgICAgICAgICBjb21wb25lbnQ6ICgpID0+IGltcG9ydCgnLi9ibG9jay13aWRnZXQtZGVzaWduZXIuY29tcG9uZW50JykudGhlbigoYykgPT4gYy5BWFBCbG9ja1dpZGdldERlc2lnbmVyQ29tcG9uZW50KSxcbiAgICAgICAgfSxcbiAgICAgICAgZWRpdDoge1xuICAgICAgICAgICAgY29tcG9uZW50OiAoKSA9PiBpbXBvcnQoJy4vYmxvY2std2lkZ2V0LXZpZXcuY29tcG9uZW50JykudGhlbigoYykgPT4gYy5BWFBCbG9ja1dpZGdldFZpZXdDb21wb25lbnQpLFxuICAgICAgICB9LFxuICAgICAgICBwcmludDoge1xuICAgICAgICAgICAgY29tcG9uZW50OiAoKSA9PiBpbXBvcnQoJy4vYmxvY2std2lkZ2V0LXZpZXcuY29tcG9uZW50JykudGhlbigoYykgPT4gYy5BWFBCbG9ja1dpZGdldFZpZXdDb21wb25lbnQpLFxuICAgICAgICB9LFxuICAgICAgICB2aWV3OiB7XG4gICAgICAgICAgICBjb21wb25lbnQ6ICgpID0+IGltcG9ydCgnLi9ibG9jay13aWRnZXQtdmlldy5jb21wb25lbnQnKS50aGVuKChjKSA9PiBjLkFYUEJsb2NrV2lkZ2V0Vmlld0NvbXBvbmVudCksXG4gICAgICAgIH0sXG4gICAgfVxufSJdfQ==
@@ -0,0 +1,4 @@
1
+ export * from './block-widget-designer.component';
2
+ export * from './block-widget-view.component';
3
+ export * from './block-widget.config';
4
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2xpYi93aWRnZXRzL2xheW91dC9ibG9jay13aWRnZXQvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxtQ0FBbUMsQ0FBQztBQUNsRCxjQUFjLCtCQUErQixDQUFDO0FBQzlDLGNBQWMsdUJBQXVCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2Jsb2NrLXdpZGdldC1kZXNpZ25lci5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9ibG9jay13aWRnZXQtdmlldy5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9ibG9jay13aWRnZXQuY29uZmlnJzsiXX0=
@@ -0,0 +1,3 @@
1
+ export * from './page-widget-view.component';
2
+ export * from './page-widget.config';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2xpYi93aWRnZXRzL2xheW91dC9wYWdlLXdpZGdldC9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDhCQUE4QixDQUFDO0FBQzdDLGNBQWMsc0JBQXNCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3BhZ2Utd2lkZ2V0LXZpZXcuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vcGFnZS13aWRnZXQuY29uZmlnJzsiXX0=
@@ -0,0 +1,55 @@
1
+ import { AXPLayoutBuilderModule, AXPContainerWidgetComponent } from '@acorex/platform/layout/builder';
2
+ import { CommonModule } from '@angular/common';
3
+ import { ChangeDetectionStrategy, Component, computed, HostBinding, ViewEncapsulation } from '@angular/core';
4
+ import { AXPDesignerAddWidgetButtonComponent, AXPWidgetDesignerRendererComponent } from "@acorex/platform/layout/designer";
5
+ import * as i0 from "@angular/core";
6
+ export class AXPPageWidgetDesignerComponent extends AXPContainerWidgetComponent {
7
+ constructor() {
8
+ super(...arguments);
9
+ this.backgroundColor = computed(() => this.options()["backgroundColor"]);
10
+ }
11
+ get __style() {
12
+ return {
13
+ 'background-color': this.backgroundColor(),
14
+ 'display': 'block',
15
+ };
16
+ }
17
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPPageWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
18
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPPageWidgetDesignerComponent, isStandalone: true, selector: "axp-page-widget", host: { properties: { "style": "this.__style" } }, providers: [
19
+ {
20
+ provide: AXPContainerWidgetComponent, useExisting: AXPPageWidgetDesignerComponent
21
+ }
22
+ ], usesInheritance: true, ngImport: i0, template: `
23
+ @for (node of children(); track $index) {
24
+ <axp-widget-designer-renderer [node]="node" [parentNode]="this" [mode]="mode">
25
+ </axp-widget-designer-renderer>
26
+ }
27
+ <axp-designer-add-widget-button></axp-designer-add-widget-button>
28
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: AXPWidgetDesignerRendererComponent, selector: "axp-widget-designer-renderer", inputs: ["parentNode", "index", "mode", "node"] }, { kind: "component", type: AXPDesignerAddWidgetButtonComponent, selector: "axp-designer-add-widget-button" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
29
+ }
30
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPPageWidgetDesignerComponent, decorators: [{
31
+ type: Component,
32
+ args: [{
33
+ selector: 'axp-page-widget',
34
+ template: `
35
+ @for (node of children(); track $index) {
36
+ <axp-widget-designer-renderer [node]="node" [parentNode]="this" [mode]="mode">
37
+ </axp-widget-designer-renderer>
38
+ }
39
+ <axp-designer-add-widget-button></axp-designer-add-widget-button>
40
+ `,
41
+ standalone: true,
42
+ changeDetection: ChangeDetectionStrategy.OnPush,
43
+ encapsulation: ViewEncapsulation.None,
44
+ imports: [CommonModule, AXPLayoutBuilderModule, AXPWidgetDesignerRendererComponent, AXPDesignerAddWidgetButtonComponent],
45
+ providers: [
46
+ {
47
+ provide: AXPContainerWidgetComponent, useExisting: AXPPageWidgetDesignerComponent
48
+ }
49
+ ]
50
+ }]
51
+ }], propDecorators: { __style: [{
52
+ type: HostBinding,
53
+ args: ['style']
54
+ }] } });
55
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnZS13aWRnZXQtZGVzaWduZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS93aWRnZXRzL3NyYy9saWIvd2lkZ2V0cy9sYXlvdXQvcGFnZS13aWRnZXQvcGFnZS13aWRnZXQtZGVzaWduZXIuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxzQkFBc0IsRUFBRSwyQkFBMkIsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ3RHLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLFFBQVEsRUFBRSxXQUFXLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDN0csT0FBTyxFQUFFLG1DQUFtQyxFQUFFLGtDQUFrQyxFQUFFLE1BQU0sa0NBQWtDLENBQUM7O0FBcUIzSCxNQUFNLE9BQU8sOEJBQStCLFNBQVEsMkJBQWlDO0lBbkJyRjs7UUFxQlksb0JBQWUsR0FBRyxRQUFRLENBQVMsR0FBRyxFQUFFLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDLGlCQUFpQixDQUFXLENBQUMsQ0FBQztLQVNqRztJQVBDLElBQ1ksT0FBTztRQUNqQixPQUFPO1lBQ0wsa0JBQWtCLEVBQUUsSUFBSSxDQUFDLGVBQWUsRUFBRTtZQUMxQyxTQUFTLEVBQUUsT0FBTztTQUNuQixDQUFDO0lBQ0osQ0FBQzs4R0FWVSw4QkFBOEI7a0dBQTlCLDhCQUE4QixpSEFOOUI7WUFDVDtnQkFDRSxPQUFPLEVBQUUsMkJBQTJCLEVBQUUsV0FBVyxFQUFFLDhCQUE4QjthQUNsRjtTQUNGLGlEQWZTOzs7Ozs7R0FNVCwyREFJUyxZQUFZLDhCQUFFLHNCQUFzQiwrQkFBRSxrQ0FBa0MsMEhBQUUsbUNBQW1DOzsyRkFPNUcsOEJBQThCO2tCQW5CMUMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsaUJBQWlCO29CQUMzQixRQUFRLEVBQUU7Ozs7OztHQU1UO29CQUNELFVBQVUsRUFBRSxJQUFJO29CQUNoQixlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsYUFBYSxFQUFFLGlCQUFpQixDQUFDLElBQUk7b0JBQ3JDLE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxzQkFBc0IsRUFBRSxrQ0FBa0MsRUFBRSxtQ0FBbUMsQ0FBQztvQkFDeEgsU0FBUyxFQUFFO3dCQUNUOzRCQUNFLE9BQU8sRUFBRSwyQkFBMkIsRUFBRSxXQUFXLGdDQUFnQzt5QkFDbEY7cUJBQ0Y7aUJBQ0Y7OEJBTWEsT0FBTztzQkFEbEIsV0FBVzt1QkFBQyxPQUFPIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhQTGF5b3V0QnVpbGRlck1vZHVsZSwgQVhQQ29udGFpbmVyV2lkZ2V0Q29tcG9uZW50IH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgY29tcHV0ZWQsIEhvc3RCaW5kaW5nLCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQVhQRGVzaWduZXJBZGRXaWRnZXRCdXR0b25Db21wb25lbnQsIEFYUFdpZGdldERlc2lnbmVyUmVuZGVyZXJDb21wb25lbnQgfSBmcm9tIFwiQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvZGVzaWduZXJcIjtcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXhwLXBhZ2Utd2lkZ2V0JyxcbiAgdGVtcGxhdGU6IGBcbiAgICBAZm9yIChub2RlIG9mIGNoaWxkcmVuKCk7IHRyYWNrICRpbmRleCkge1xuICAgIDxheHAtd2lkZ2V0LWRlc2lnbmVyLXJlbmRlcmVyIFtub2RlXT1cIm5vZGVcIiAgW3BhcmVudE5vZGVdPVwidGhpc1wiIFttb2RlXT1cIm1vZGVcIj5cbiAgICA8L2F4cC13aWRnZXQtZGVzaWduZXItcmVuZGVyZXI+XG4gICAgfVxuICAgIDxheHAtZGVzaWduZXItYWRkLXdpZGdldC1idXR0b24+PC9heHAtZGVzaWduZXItYWRkLXdpZGdldC1idXR0b24+XG4gIGAsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBBWFBMYXlvdXRCdWlsZGVyTW9kdWxlLCBBWFBXaWRnZXREZXNpZ25lclJlbmRlcmVyQ29tcG9uZW50LCBBWFBEZXNpZ25lckFkZFdpZGdldEJ1dHRvbkNvbXBvbmVudF0sXG4gIHByb3ZpZGVyczogW1xuICAgIHtcbiAgICAgIHByb3ZpZGU6IEFYUENvbnRhaW5lcldpZGdldENvbXBvbmVudCwgdXNlRXhpc3Rpbmc6IEFYUFBhZ2VXaWRnZXREZXNpZ25lckNvbXBvbmVudFxuICAgIH1cbiAgXVxufSlcbmV4cG9ydCBjbGFzcyBBWFBQYWdlV2lkZ2V0RGVzaWduZXJDb21wb25lbnQgZXh0ZW5kcyBBWFBDb250YWluZXJXaWRnZXRDb21wb25lbnQ8dm9pZD4ge1xuXG4gIHByb3RlY3RlZCBiYWNrZ3JvdW5kQ29sb3IgPSBjb21wdXRlZDxzdHJpbmc+KCgpID0+IHRoaXMub3B0aW9ucygpW1wiYmFja2dyb3VuZENvbG9yXCJdIGFzIHN0cmluZyk7XG5cbiAgQEhvc3RCaW5kaW5nKCdzdHlsZScpXG4gIHByaXZhdGUgZ2V0IF9fc3R5bGUoKTogYW55IHtcbiAgICByZXR1cm4ge1xuICAgICAgJ2JhY2tncm91bmQtY29sb3InOiB0aGlzLmJhY2tncm91bmRDb2xvcigpLFxuICAgICAgJ2Rpc3BsYXknOiAnYmxvY2snLFxuICAgIH07XG4gIH1cbn0iXX0=
@@ -0,0 +1,42 @@
1
+ import { AXPLayoutBuilderModule, AXPWidgetComponent } from '@acorex/platform/layout/builder';
2
+ import { CommonModule } from '@angular/common';
3
+ import { ChangeDetectionStrategy, Component, computed, HostBinding, ViewEncapsulation } from '@angular/core';
4
+ import * as i0 from "@angular/core";
5
+ import * as i1 from "@acorex/platform/layout/builder";
6
+ export class AXPPageWidgetViewComponent extends AXPWidgetComponent {
7
+ constructor() {
8
+ super(...arguments);
9
+ this.backgroundColor = computed(() => this.options()["backgroundColor"]);
10
+ }
11
+ get __style() {
12
+ return {
13
+ 'background-color': this.backgroundColor(),
14
+ 'display': 'block',
15
+ };
16
+ }
17
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPPageWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
18
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPPageWidgetViewComponent, isStandalone: true, selector: "axp-page-widget", host: { properties: { "style": "this.__style" } }, usesInheritance: true, ngImport: i0, template: `
19
+ @for (node of children(); track $index) {
20
+ <axp-widget-renderer [node]="node" [parentNode]="this" [mode]="mode" > </axp-widget-renderer>
21
+ }
22
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: i1.AXPWidgetRendererComponent, selector: "axp-widget-renderer", inputs: ["node", "mode", "parentNode", "index"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
23
+ }
24
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPPageWidgetViewComponent, decorators: [{
25
+ type: Component,
26
+ args: [{
27
+ selector: 'axp-page-widget',
28
+ template: `
29
+ @for (node of children(); track $index) {
30
+ <axp-widget-renderer [node]="node" [parentNode]="this" [mode]="mode" > </axp-widget-renderer>
31
+ }
32
+ `,
33
+ standalone: true,
34
+ changeDetection: ChangeDetectionStrategy.OnPush,
35
+ encapsulation: ViewEncapsulation.None,
36
+ imports: [CommonModule, AXPLayoutBuilderModule],
37
+ }]
38
+ }], propDecorators: { __style: [{
39
+ type: HostBinding,
40
+ args: ['style']
41
+ }] } });
42
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnZS13aWRnZXQtdmlldy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2xpYi93aWRnZXRzL2xheW91dC9wYWdlLXdpZGdldC9wYWdlLXdpZGdldC12aWV3LmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUM3RixPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxRQUFRLEVBQUUsV0FBVyxFQUFVLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDOzs7QUFjckgsTUFBTSxPQUFPLDBCQUEyQixTQUFRLGtCQUF3QjtJQVp4RTs7UUFjWSxvQkFBZSxHQUFHLFFBQVEsQ0FBUyxHQUFHLEVBQUUsQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFLENBQUMsaUJBQWlCLENBQVcsQ0FBQyxDQUFDO0tBVWpHO0lBUkMsSUFDWSxPQUFPO1FBQ2pCLE9BQU87WUFDTCxrQkFBa0IsRUFBRSxJQUFJLENBQUMsZUFBZSxFQUFFO1lBQzFDLFNBQVMsRUFBRSxPQUFPO1NBQ25CLENBQUM7SUFDSixDQUFDOzhHQVZVLDBCQUEwQjtrR0FBMUIsMEJBQTBCLHFKQVYzQjs7OztHQUlULDJEQUlTLFlBQVksOEJBQUUsc0JBQXNCOzsyRkFFbkMsMEJBQTBCO2tCQVp0QyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxpQkFBaUI7b0JBQzNCLFFBQVEsRUFBRTs7OztHQUlUO29CQUNELFVBQVUsRUFBRSxJQUFJO29CQUNoQixlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsYUFBYSxFQUFFLGlCQUFpQixDQUFDLElBQUk7b0JBQ3JDLE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxzQkFBc0IsQ0FBQztpQkFDaEQ7OEJBTWEsT0FBTztzQkFEbEIsV0FBVzt1QkFBQyxPQUFPIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhQTGF5b3V0QnVpbGRlck1vZHVsZSwgQVhQV2lkZ2V0Q29tcG9uZW50IH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgY29tcHV0ZWQsIEhvc3RCaW5kaW5nLCBpbmplY3QsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2F4cC1wYWdlLXdpZGdldCcsXG4gIHRlbXBsYXRlOiBgXG4gICAgQGZvciAobm9kZSBvZiBjaGlsZHJlbigpOyB0cmFjayAkaW5kZXgpIHtcbiAgICA8YXhwLXdpZGdldC1yZW5kZXJlciBbbm9kZV09XCJub2RlXCIgW3BhcmVudE5vZGVdPVwidGhpc1wiIFttb2RlXT1cIm1vZGVcIiA+IDwvYXhwLXdpZGdldC1yZW5kZXJlcj5cbiAgICB9XG4gIGAsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBBWFBMYXlvdXRCdWlsZGVyTW9kdWxlXSxcbn0pXG5leHBvcnQgY2xhc3MgQVhQUGFnZVdpZGdldFZpZXdDb21wb25lbnQgZXh0ZW5kcyBBWFBXaWRnZXRDb21wb25lbnQ8dm9pZD4ge1xuXG4gIHByb3RlY3RlZCBiYWNrZ3JvdW5kQ29sb3IgPSBjb21wdXRlZDxzdHJpbmc+KCgpID0+IHRoaXMub3B0aW9ucygpW1wiYmFja2dyb3VuZENvbG9yXCJdIGFzIHN0cmluZyk7XG5cbiAgQEhvc3RCaW5kaW5nKCdzdHlsZScpXG4gIHByaXZhdGUgZ2V0IF9fc3R5bGUoKTogYW55IHtcbiAgICByZXR1cm4ge1xuICAgICAgJ2JhY2tncm91bmQtY29sb3InOiB0aGlzLmJhY2tncm91bmRDb2xvcigpLFxuICAgICAgJ2Rpc3BsYXknOiAnYmxvY2snLFxuICAgIH07XG4gIH1cblxufSJdfQ==
@@ -0,0 +1,27 @@
1
+ import { AXP_BG_COLOR_PROPERTY, AXP_FONT_SIZE_PROPERTY } from '../../../properties';
2
+ export const AXPPageWidget = {
3
+ name: "page",
4
+ title: "Page",
5
+ icon: "fa-solid fa-page",
6
+ container: true,
7
+ visible: false,
8
+ properties: [
9
+ AXP_FONT_SIZE_PROPERTY,
10
+ AXP_BG_COLOR_PROPERTY
11
+ ],
12
+ components: {
13
+ view: {
14
+ component: () => import('./page-widget-view.component').then((c) => c.AXPPageWidgetViewComponent),
15
+ },
16
+ edit: {
17
+ component: () => import('./page-widget-view.component').then((c) => c.AXPPageWidgetViewComponent),
18
+ },
19
+ print: {
20
+ component: () => import('./page-widget-view.component').then((c) => c.AXPPageWidgetViewComponent),
21
+ },
22
+ designer: {
23
+ component: () => import('./page-widget-designer.component').then((c) => c.AXPPageWidgetDesignerComponent),
24
+ },
25
+ }
26
+ };
27
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnZS13aWRnZXQuY29uZmlnLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS93aWRnZXRzL3NyYy9saWIvd2lkZ2V0cy9sYXlvdXQvcGFnZS13aWRnZXQvcGFnZS13aWRnZXQuY29uZmlnLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxzQkFBc0IsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQ3BGLE1BQU0sQ0FBQyxNQUFNLGFBQWEsR0FBb0I7SUFDNUMsSUFBSSxFQUFFLE1BQU07SUFDWixLQUFLLEVBQUUsTUFBTTtJQUNiLElBQUksRUFBRSxrQkFBa0I7SUFDeEIsU0FBUyxFQUFFLElBQUk7SUFDZixPQUFPLEVBQUUsS0FBSztJQUNkLFVBQVUsRUFBRTtRQUNWLHNCQUFzQjtRQUN0QixxQkFBcUI7S0FDdEI7SUFDRCxVQUFVLEVBQUU7UUFDVixJQUFJLEVBQUU7WUFDSixTQUFTLEVBQUUsR0FBRyxFQUFFLENBQUMsTUFBTSxDQUFDLDhCQUE4QixDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsMEJBQTBCLENBQUM7U0FDbEc7UUFDRCxJQUFJLEVBQUU7WUFDSixTQUFTLEVBQUUsR0FBRyxFQUFFLENBQUMsTUFBTSxDQUFDLDhCQUE4QixDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsMEJBQTBCLENBQUM7U0FDbEc7UUFDRCxLQUFLLEVBQUU7WUFDTCxTQUFTLEVBQUUsR0FBRyxFQUFFLENBQUMsTUFBTSxDQUFDLDhCQUE4QixDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsMEJBQTBCLENBQUM7U0FDbEc7UUFDRCxRQUFRLEVBQUU7WUFDUixTQUFTLEVBQUUsR0FBRyxFQUFFLENBQUMsTUFBTSxDQUFDLGtDQUFrQyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsOEJBQThCLENBQUM7U0FDMUc7S0FDRjtDQUNGLENBQUEiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWFBXaWRnZXRDb25maWcgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9idWlsZGVyJztcbmltcG9ydCB7IEFYUF9CR19DT0xPUl9QUk9QRVJUWSwgQVhQX0ZPTlRfU0laRV9QUk9QRVJUWSB9IGZyb20gJy4uLy4uLy4uL3Byb3BlcnRpZXMnO1xuZXhwb3J0IGNvbnN0IEFYUFBhZ2VXaWRnZXQ6IEFYUFdpZGdldENvbmZpZyA9IHtcbiAgbmFtZTogXCJwYWdlXCIsXG4gIHRpdGxlOiBcIlBhZ2VcIixcbiAgaWNvbjogXCJmYS1zb2xpZCBmYS1wYWdlXCIsXG4gIGNvbnRhaW5lcjogdHJ1ZSxcbiAgdmlzaWJsZTogZmFsc2UsXG4gIHByb3BlcnRpZXM6IFtcbiAgICBBWFBfRk9OVF9TSVpFX1BST1BFUlRZLFxuICAgIEFYUF9CR19DT0xPUl9QUk9QRVJUWVxuICBdLFxuICBjb21wb25lbnRzOiB7XG4gICAgdmlldzoge1xuICAgICAgY29tcG9uZW50OiAoKSA9PiBpbXBvcnQoJy4vcGFnZS13aWRnZXQtdmlldy5jb21wb25lbnQnKS50aGVuKChjKSA9PiBjLkFYUFBhZ2VXaWRnZXRWaWV3Q29tcG9uZW50KSxcbiAgICB9LFxuICAgIGVkaXQ6IHtcbiAgICAgIGNvbXBvbmVudDogKCkgPT4gaW1wb3J0KCcuL3BhZ2Utd2lkZ2V0LXZpZXcuY29tcG9uZW50JykudGhlbigoYykgPT4gYy5BWFBQYWdlV2lkZ2V0Vmlld0NvbXBvbmVudCksXG4gICAgfSxcbiAgICBwcmludDoge1xuICAgICAgY29tcG9uZW50OiAoKSA9PiBpbXBvcnQoJy4vcGFnZS13aWRnZXQtdmlldy5jb21wb25lbnQnKS50aGVuKChjKSA9PiBjLkFYUFBhZ2VXaWRnZXRWaWV3Q29tcG9uZW50KSxcbiAgICB9LFxuICAgIGRlc2lnbmVyOiB7XG4gICAgICBjb21wb25lbnQ6ICgpID0+IGltcG9ydCgnLi9wYWdlLXdpZGdldC1kZXNpZ25lci5jb21wb25lbnQnKS50aGVuKChjKSA9PiBjLkFYUFBhZ2VXaWRnZXREZXNpZ25lckNvbXBvbmVudCksXG4gICAgfSxcbiAgfVxufSJdfQ==
@@ -0,0 +1,6 @@
1
+ export * from './repeater-widget-view.component';
2
+ export * from './repeater-widget-edit.component';
3
+ export * from './repeater-widget-print.component';
4
+ export * from './repeater-widget-designer.component';
5
+ export * from './repeater-widget.config';
6
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2xpYi93aWRnZXRzL2xheW91dC9yZXBlYXRlci13aWRnZXQvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxrQ0FBa0MsQ0FBQztBQUNqRCxjQUFjLGtDQUFrQyxDQUFDO0FBQ2pELGNBQWMsbUNBQW1DLENBQUM7QUFDbEQsY0FBYyxzQ0FBc0MsQ0FBQztBQUNyRCxjQUFjLDBCQUEwQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9yZXBlYXRlci13aWRnZXQtdmlldy5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9yZXBlYXRlci13aWRnZXQtZWRpdC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9yZXBlYXRlci13aWRnZXQtcHJpbnQuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vcmVwZWF0ZXItd2lkZ2V0LWRlc2lnbmVyLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL3JlcGVhdGVyLXdpZGdldC5jb25maWcnOyJdfQ==
@@ -0,0 +1,50 @@
1
+ import { AXPContainerWidgetComponent, AXPLayoutBuilderModule, } from '@acorex/platform/layout/builder';
2
+ import { AXPDesignerAddWidgetButtonComponent, AXPWidgetDesignerRendererComponent } from '@acorex/platform/layout/designer';
3
+ import { CommonModule } from '@angular/common';
4
+ import { ChangeDetectionStrategy, Component, signal } from '@angular/core';
5
+ import * as i0 from "@angular/core";
6
+ export class AXPRepeaterWidgetDesignerComponent extends AXPContainerWidgetComponent {
7
+ constructor() {
8
+ super(...arguments);
9
+ this.rows = signal([0]);
10
+ }
11
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPRepeaterWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
12
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPRepeaterWidgetDesignerComponent, isStandalone: true, selector: "ng-component", providers: [
13
+ {
14
+ provide: AXPContainerWidgetComponent, useExisting: AXPRepeaterWidgetDesignerComponent
15
+ }
16
+ ], usesInheritance: true, ngImport: i0, template: `
17
+ @for(row of rows();let i=$index; track i){
18
+ <ng-container>
19
+ @for (node of children();track $index) {
20
+ <axp-widget-designer-renderer [node]="node" [parentNode]="this" [index]="i" [mode]="this.mode"> </axp-widget-designer-renderer>
21
+ }
22
+ </ng-container>
23
+ }
24
+ <axp-designer-add-widget-button></axp-designer-add-widget-button>
25
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: AXPWidgetDesignerRendererComponent, selector: "axp-widget-designer-renderer", inputs: ["parentNode", "index", "mode", "node"] }, { kind: "component", type: AXPDesignerAddWidgetButtonComponent, selector: "axp-designer-add-widget-button" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
26
+ }
27
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPRepeaterWidgetDesignerComponent, decorators: [{
28
+ type: Component,
29
+ args: [{
30
+ template: `
31
+ @for(row of rows();let i=$index; track i){
32
+ <ng-container>
33
+ @for (node of children();track $index) {
34
+ <axp-widget-designer-renderer [node]="node" [parentNode]="this" [index]="i" [mode]="this.mode"> </axp-widget-designer-renderer>
35
+ }
36
+ </ng-container>
37
+ }
38
+ <axp-designer-add-widget-button></axp-designer-add-widget-button>
39
+ `,
40
+ standalone: true,
41
+ changeDetection: ChangeDetectionStrategy.OnPush,
42
+ imports: [CommonModule, AXPLayoutBuilderModule, AXPWidgetDesignerRendererComponent, AXPDesignerAddWidgetButtonComponent],
43
+ providers: [
44
+ {
45
+ provide: AXPContainerWidgetComponent, useExisting: AXPRepeaterWidgetDesignerComponent
46
+ }
47
+ ]
48
+ }]
49
+ }] });
50
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVwZWF0ZXItd2lkZ2V0LWRlc2lnbmVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vd2lkZ2V0cy9zcmMvbGliL3dpZGdldHMvbGF5b3V0L3JlcGVhdGVyLXdpZGdldC9yZXBlYXRlci13aWRnZXQtZGVzaWduZXIuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSwyQkFBMkIsRUFBRSxzQkFBc0IsR0FBRyxNQUFNLGlDQUFpQyxDQUFDO0FBQ3ZHLE9BQU8sRUFBRSxtQ0FBbUMsRUFBRSxrQ0FBa0MsRUFBRSxNQUFNLGtDQUFrQyxDQUFDO0FBQzNILE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLE1BQU0sRUFBa0IsTUFBTSxlQUFlLENBQUM7O0FBcUIzRixNQUFNLE9BQU8sa0NBQW1DLFNBQVEsMkJBQWlDO0lBcEJ6Rjs7UUFzQlksU0FBSSxHQUEwQixNQUFNLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDO0tBRXJEOzhHQUpZLGtDQUFrQztrR0FBbEMsa0NBQWtDLDJEQU5sQztZQUNUO2dCQUNFLE9BQU8sRUFBRSwyQkFBMkIsRUFBRSxXQUFXLEVBQUUsa0NBQWtDO2FBQ3RGO1NBQ0YsaURBakJTOzs7Ozs7Ozs7R0FTVCwyREFHUyxZQUFZLDhCQUFFLHNCQUFzQiwrQkFBRSxrQ0FBa0MsMEhBQUUsbUNBQW1DOzsyRkFPNUcsa0NBQWtDO2tCQXBCOUMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUU7Ozs7Ozs7OztHQVNUO29CQUNELFVBQVUsRUFBRSxJQUFJO29CQUNoQixlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsT0FBTyxFQUFFLENBQUMsWUFBWSxFQUFFLHNCQUFzQixFQUFFLGtDQUFrQyxFQUFFLG1DQUFtQyxDQUFDO29CQUN4SCxTQUFTLEVBQUU7d0JBQ1Q7NEJBQ0UsT0FBTyxFQUFFLDJCQUEyQixFQUFFLFdBQVcsb0NBQW9DO3lCQUN0RjtxQkFDRjtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFYUENvbnRhaW5lcldpZGdldENvbXBvbmVudCwgQVhQTGF5b3V0QnVpbGRlck1vZHVsZSwgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9idWlsZGVyJztcbmltcG9ydCB7IEFYUERlc2lnbmVyQWRkV2lkZ2V0QnV0dG9uQ29tcG9uZW50LCBBWFBXaWRnZXREZXNpZ25lclJlbmRlcmVyQ29tcG9uZW50IH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvZGVzaWduZXInO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIHNpZ25hbCwgV3JpdGFibGVTaWduYWwgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbkBDb21wb25lbnQoe1xuICB0ZW1wbGF0ZTogYFxuICAgIEBmb3Iocm93IG9mIHJvd3MoKTtsZXQgaT0kaW5kZXg7IHRyYWNrIGkpe1xuICAgIDxuZy1jb250YWluZXI+XG4gICAgICBAZm9yIChub2RlIG9mIGNoaWxkcmVuKCk7dHJhY2sgJGluZGV4KSB7XG4gICAgICA8YXhwLXdpZGdldC1kZXNpZ25lci1yZW5kZXJlciBbbm9kZV09XCJub2RlXCIgW3BhcmVudE5vZGVdPVwidGhpc1wiIFtpbmRleF09XCJpXCIgW21vZGVdPVwidGhpcy5tb2RlXCI+IDwvYXhwLXdpZGdldC1kZXNpZ25lci1yZW5kZXJlcj5cbiAgICAgIH1cbiAgICA8L25nLWNvbnRhaW5lcj5cbiAgICB9XG4gICA8YXhwLWRlc2lnbmVyLWFkZC13aWRnZXQtYnV0dG9uPjwvYXhwLWRlc2lnbmVyLWFkZC13aWRnZXQtYnV0dG9uPlxuICBgLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgQVhQTGF5b3V0QnVpbGRlck1vZHVsZSwgQVhQV2lkZ2V0RGVzaWduZXJSZW5kZXJlckNvbXBvbmVudCwgQVhQRGVzaWduZXJBZGRXaWRnZXRCdXR0b25Db21wb25lbnRdLFxuICBwcm92aWRlcnM6IFtcbiAgICB7XG4gICAgICBwcm92aWRlOiBBWFBDb250YWluZXJXaWRnZXRDb21wb25lbnQsIHVzZUV4aXN0aW5nOiBBWFBSZXBlYXRlcldpZGdldERlc2lnbmVyQ29tcG9uZW50XG4gICAgfVxuICBdXG59KVxuZXhwb3J0IGNsYXNzIEFYUFJlcGVhdGVyV2lkZ2V0RGVzaWduZXJDb21wb25lbnQgZXh0ZW5kcyBBWFBDb250YWluZXJXaWRnZXRDb21wb25lbnQ8dm9pZD4ge1xuXG4gIHByb3RlY3RlZCByb3dzOiBXcml0YWJsZVNpZ25hbDxhbnlbXT4gPSBzaWduYWwoWzBdKTtcblxufSJdfQ==
@@ -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 AXPRepeaterWidgetEditComponent extends AXPWidgetComponent {
7
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPRepeaterWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
8
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPRepeaterWidgetEditComponent, 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: AXPRepeaterWidgetEditComponent, 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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVwZWF0ZXItd2lkZ2V0LWVkaXQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS93aWRnZXRzL3NyYy9saWIvd2lkZ2V0cy9sYXlvdXQvcmVwZWF0ZXItd2lkZ2V0L3JlcGVhdGVyLXdpZGdldC1lZGl0LmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUNyRSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBVSxNQUFNLGVBQWUsQ0FBQztBQUMzRSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7O0FBUzdDLE1BQU0sT0FBTyw4QkFBK0IsU0FBUSxrQkFBdUI7OEdBQTlELDhCQUE4QjtrR0FBOUIsOEJBQThCLCtGQU4vQixFQUFFLDJEQUdGLFlBQVksOEJBQUUsV0FBVzs7MkZBR3hCLDhCQUE4QjtrQkFQMUMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsRUFBRTtvQkFDWixVQUFVLEVBQUUsSUFBSTtvQkFDaEIsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxXQUFXLENBQUM7b0JBQ3BDLE1BQU0sRUFBRSxFQUFFO2lCQUNYIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhQV2lkZ2V0Q29tcG9uZW50IH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgaW5qZWN0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGb3Jtc01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcblxuQENvbXBvbmVudCh7XG4gIHRlbXBsYXRlOiBgYCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGUsIEZvcm1zTW9kdWxlXSxcbiAgaW5wdXRzOiBbXVxufSlcbmV4cG9ydCBjbGFzcyBBWFBSZXBlYXRlcldpZGdldEVkaXRDb21wb25lbnQgZXh0ZW5kcyBBWFBXaWRnZXRDb21wb25lbnQ8YW55PiB7IH0iXX0=
@@ -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 AXPRepeaterWidgetPrintComponent extends AXPWidgetComponent {
6
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPRepeaterWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
7
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPRepeaterWidgetPrintComponent, 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: AXPRepeaterWidgetPrintComponent, 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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVwZWF0ZXItd2lkZ2V0LXByaW50LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vd2lkZ2V0cy9zcmMvbGliL3dpZGdldHMvbGF5b3V0L3JlcGVhdGVyLXdpZGdldC9yZXBlYXRlci13aWRnZXQtcHJpbnQuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ3JFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFVLE1BQU0sZUFBZSxDQUFDOztBQVEzRSxNQUFNLE9BQU8sK0JBQWdDLFNBQVEsa0JBQXVCOzhHQUEvRCwrQkFBK0I7a0dBQS9CLCtCQUErQiwrRkFOaEMsRUFBRSwyREFHRixZQUFZOzsyRkFHWCwrQkFBK0I7a0JBUDNDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLEVBQUU7b0JBQ1osVUFBVSxFQUFFLElBQUk7b0JBQ2hCLGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO29CQUMvQyxPQUFPLEVBQUUsQ0FBQyxZQUFZLENBQUM7b0JBQ3ZCLE1BQU0sRUFBRSxFQUFFO2lCQUNYIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhQV2lkZ2V0Q29tcG9uZW50IH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgaW5qZWN0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5AQ29tcG9uZW50KHtcbiAgdGVtcGxhdGU6IGBgLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gIGlucHV0czogW11cbn0pXG5leHBvcnQgY2xhc3MgQVhQUmVwZWF0ZXJXaWRnZXRQcmludENvbXBvbmVudCBleHRlbmRzIEFYUFdpZGdldENvbXBvbmVudDxhbnk+IHsgfSJdfQ==
@@ -0,0 +1,52 @@
1
+ import { AXPLayoutBuilderModule, AXPWidgetComponent } from '@acorex/platform/layout/builder';
2
+ import { CommonModule } from '@angular/common';
3
+ import { ChangeDetectionStrategy, Component, signal } from '@angular/core';
4
+ import { FormsModule } from '@angular/forms';
5
+ import * as i0 from "@angular/core";
6
+ import * as i1 from "@acorex/platform/layout/builder";
7
+ export class AXPRepeaterWidgetViewComponent extends AXPWidgetComponent {
8
+ constructor() {
9
+ super(...arguments);
10
+ this.rows = signal([]);
11
+ }
12
+ ngAfterViewInit() {
13
+ this.rows.set(this.getValue() ?? []);
14
+ }
15
+ addNew() {
16
+ this.rows.update((prev) => [...prev, {}]);
17
+ }
18
+ api() {
19
+ return {
20
+ "addNew": this.addNew.bind(this)
21
+ };
22
+ }
23
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPRepeaterWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
24
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPRepeaterWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
25
+ @for(row of rows();let i=$index; track i){
26
+ <ng-container>
27
+ @for (node of children();track $index) {
28
+ <axp-widget-renderer [node]="node" [parentNode]="this" [index]="i"> </axp-widget-renderer>
29
+ }
30
+ </ng-container>
31
+ }
32
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "component", type: i1.AXPWidgetRendererComponent, selector: "axp-widget-renderer", inputs: ["node", "mode", "parentNode", "index"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
33
+ }
34
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPRepeaterWidgetViewComponent, decorators: [{
35
+ type: Component,
36
+ args: [{
37
+ template: `
38
+ @for(row of rows();let i=$index; track i){
39
+ <ng-container>
40
+ @for (node of children();track $index) {
41
+ <axp-widget-renderer [node]="node" [parentNode]="this" [index]="i"> </axp-widget-renderer>
42
+ }
43
+ </ng-container>
44
+ }
45
+ `,
46
+ standalone: true,
47
+ changeDetection: ChangeDetectionStrategy.OnPush,
48
+ imports: [CommonModule, FormsModule, AXPLayoutBuilderModule],
49
+ inputs: [],
50
+ }]
51
+ }] });
52
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVwZWF0ZXItd2lkZ2V0LXZpZXcuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS93aWRnZXRzL3NyYy9saWIvd2lkZ2V0cy9sYXlvdXQvcmVwZWF0ZXItd2lkZ2V0L3JlcGVhdGVyLXdpZGdldC12aWV3LmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsc0JBQXNCLEVBQXVCLGtCQUFrQixFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDbEgsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQWtCLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMzRixPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7OztBQWlCN0MsTUFBTSxPQUFPLDhCQUErQixTQUFRLGtCQUF5QjtJQWY3RTs7UUFnQlksU0FBSSxHQUEwQixNQUFNLENBQUMsRUFBRSxDQUFDLENBQUM7S0FlcEQ7SUFiQyxlQUFlO1FBQ2IsSUFBSSxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLFFBQVEsRUFBRSxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBQ3ZDLENBQUM7SUFFTSxNQUFNO1FBQ1gsSUFBSSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxJQUFJLEVBQUUsRUFBRSxDQUFDLENBQUMsR0FBRyxJQUFJLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQztJQUM1QyxDQUFDO0lBRVEsR0FBRztRQUNWLE9BQU87WUFDTCxRQUFRLEVBQUUsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDO1NBQ2pDLENBQUE7SUFDSCxDQUFDOzhHQWZVLDhCQUE4QjtrR0FBOUIsOEJBQThCLCtGQWQvQjs7Ozs7Ozs7R0FRVCwyREFHUyxZQUFZLDhCQUFFLFdBQVcsOEJBQUUsc0JBQXNCOzsyRkFHaEQsOEJBQThCO2tCQWYxQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRTs7Ozs7Ozs7R0FRVDtvQkFDRCxVQUFVLEVBQUUsSUFBSTtvQkFDaEIsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxXQUFXLEVBQUUsc0JBQXNCLENBQUM7b0JBQzVELE1BQU0sRUFBRSxFQUFFO2lCQUNYIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhQTGF5b3V0QnVpbGRlck1vZHVsZSwgQVhQTGF5b3V0RWxlbWVudEFQSSwgQVhQV2lkZ2V0Q29tcG9uZW50IH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgV3JpdGFibGVTaWduYWwsIHNpZ25hbCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRm9ybXNNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5cbkBDb21wb25lbnQoe1xuICB0ZW1wbGF0ZTogYFxuICAgIEBmb3Iocm93IG9mIHJvd3MoKTtsZXQgaT0kaW5kZXg7IHRyYWNrIGkpe1xuICAgIDxuZy1jb250YWluZXI+XG4gICAgICBAZm9yIChub2RlIG9mIGNoaWxkcmVuKCk7dHJhY2sgJGluZGV4KSB7XG4gICAgICA8YXhwLXdpZGdldC1yZW5kZXJlciBbbm9kZV09XCJub2RlXCIgW3BhcmVudE5vZGVdPVwidGhpc1wiIFtpbmRleF09XCJpXCI+IDwvYXhwLXdpZGdldC1yZW5kZXJlcj5cbiAgICAgIH1cbiAgICA8L25nLWNvbnRhaW5lcj5cbiAgICB9XG4gIGAsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBGb3Jtc01vZHVsZSwgQVhQTGF5b3V0QnVpbGRlck1vZHVsZV0sXG4gIGlucHV0czogW10sXG59KVxuZXhwb3J0IGNsYXNzIEFYUFJlcGVhdGVyV2lkZ2V0Vmlld0NvbXBvbmVudCBleHRlbmRzIEFYUFdpZGdldENvbXBvbmVudDxhbnlbXT4ge1xuICBwcm90ZWN0ZWQgcm93czogV3JpdGFibGVTaWduYWw8YW55W10+ID0gc2lnbmFsKFtdKTtcblxuICBuZ0FmdGVyVmlld0luaXQoKSB7XG4gICAgdGhpcy5yb3dzLnNldCh0aGlzLmdldFZhbHVlKCkgPz8gW10pO1xuICB9XG5cbiAgcHVibGljIGFkZE5ldygpIHtcbiAgICB0aGlzLnJvd3MudXBkYXRlKChwcmV2KSA9PiBbLi4ucHJldiwge31dKTtcbiAgfVxuXG4gIG92ZXJyaWRlIGFwaSgpOiBBWFBMYXlvdXRFbGVtZW50QVBJIHtcbiAgICByZXR1cm4ge1xuICAgICAgXCJhZGROZXdcIjogdGhpcy5hZGROZXcuYmluZCh0aGlzKVxuICAgIH1cbiAgfVxufVxuIl19
@@ -0,0 +1,20 @@
1
+ export const AXPRepeaterWidget = {
2
+ name: "repeater",
3
+ title: "Repeater",
4
+ container: true,
5
+ components: {
6
+ view: {
7
+ component: () => import('./repeater-widget-view.component').then((c) => c.AXPRepeaterWidgetViewComponent),
8
+ },
9
+ edit: {
10
+ component: () => import('./repeater-widget-view.component').then((c) => c.AXPRepeaterWidgetViewComponent),
11
+ },
12
+ print: {
13
+ component: () => import('./repeater-widget-print.component').then((c) => c.AXPRepeaterWidgetPrintComponent),
14
+ },
15
+ designer: {
16
+ component: () => import('./repeater-widget-designer.component').then((c) => c.AXPRepeaterWidgetDesignerComponent),
17
+ },
18
+ }
19
+ };
20
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVwZWF0ZXItd2lkZ2V0LmNvbmZpZy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vd2lkZ2V0cy9zcmMvbGliL3dpZGdldHMvbGF5b3V0L3JlcGVhdGVyLXdpZGdldC9yZXBlYXRlci13aWRnZXQuY29uZmlnLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE1BQU0sQ0FBQyxNQUFNLGlCQUFpQixHQUFvQjtJQUNoRCxJQUFJLEVBQUUsVUFBVTtJQUNoQixLQUFLLEVBQUUsVUFBVTtJQUNqQixTQUFTLEVBQUUsSUFBSTtJQUNmLFVBQVUsRUFBRTtRQUNWLElBQUksRUFBRTtZQUNKLFNBQVMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxNQUFNLENBQUMsa0NBQWtDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyw4QkFBOEIsQ0FBQztTQUMxRztRQUNELElBQUksRUFBRTtZQUNKLFNBQVMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxNQUFNLENBQUMsa0NBQWtDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyw4QkFBOEIsQ0FBQztTQUMxRztRQUNELEtBQUssRUFBRTtZQUNMLFNBQVMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxNQUFNLENBQUMsbUNBQW1DLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQywrQkFBK0IsQ0FBQztTQUM1RztRQUNELFFBQVEsRUFBRTtZQUNSLFNBQVMsRUFBRSxHQUFHLEVBQUUsQ0FBQyxNQUFNLENBQUMsc0NBQXNDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxrQ0FBa0MsQ0FBQztTQUNsSDtLQUNGO0NBQ0YsQ0FBQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFYUFdpZGdldENvbmZpZyB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vbGF5b3V0L2J1aWxkZXInO1xuZXhwb3J0IGNvbnN0IEFYUFJlcGVhdGVyV2lkZ2V0OiBBWFBXaWRnZXRDb25maWcgPSB7XG4gIG5hbWU6IFwicmVwZWF0ZXJcIixcbiAgdGl0bGU6IFwiUmVwZWF0ZXJcIixcbiAgY29udGFpbmVyOiB0cnVlLFxuICBjb21wb25lbnRzOiB7XG4gICAgdmlldzoge1xuICAgICAgY29tcG9uZW50OiAoKSA9PiBpbXBvcnQoJy4vcmVwZWF0ZXItd2lkZ2V0LXZpZXcuY29tcG9uZW50JykudGhlbigoYykgPT4gYy5BWFBSZXBlYXRlcldpZGdldFZpZXdDb21wb25lbnQpLFxuICAgIH0sXG4gICAgZWRpdDoge1xuICAgICAgY29tcG9uZW50OiAoKSA9PiBpbXBvcnQoJy4vcmVwZWF0ZXItd2lkZ2V0LXZpZXcuY29tcG9uZW50JykudGhlbigoYykgPT4gYy5BWFBSZXBlYXRlcldpZGdldFZpZXdDb21wb25lbnQpLFxuICAgIH0sXG4gICAgcHJpbnQ6IHtcbiAgICAgIGNvbXBvbmVudDogKCkgPT4gaW1wb3J0KCcuL3JlcGVhdGVyLXdpZGdldC1wcmludC5jb21wb25lbnQnKS50aGVuKChjKSA9PiBjLkFYUFJlcGVhdGVyV2lkZ2V0UHJpbnRDb21wb25lbnQpLFxuICAgIH0sXG4gICAgZGVzaWduZXI6IHtcbiAgICAgIGNvbXBvbmVudDogKCkgPT4gaW1wb3J0KCcuL3JlcGVhdGVyLXdpZGdldC1kZXNpZ25lci5jb21wb25lbnQnKS50aGVuKChjKSA9PiBjLkFYUFJlcGVhdGVyV2lkZ2V0RGVzaWduZXJDb21wb25lbnQpLFxuICAgIH0sXG4gIH1cbn0iXX0=
@@ -0,0 +1,3 @@
1
+ export * from './text-block-widget-view.component';
2
+ export * from './text-block-widget.config';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2xpYi93aWRnZXRzL2xheW91dC90ZXh0LWJsb2NrLXdpZGdldC9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLG9DQUFvQyxDQUFDO0FBQ25ELGNBQWMsNEJBQTRCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3RleHQtYmxvY2std2lkZ2V0LXZpZXcuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vdGV4dC1ibG9jay13aWRnZXQuY29uZmlnJzsiXX0=
@@ -0,0 +1,29 @@
1
+ import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
2
+ import { CommonModule } from '@angular/common';
3
+ import { ChangeDetectionStrategy, Component, computed, inject } from '@angular/core';
4
+ import { DomSanitizer } from '@angular/platform-browser';
5
+ import * as i0 from "@angular/core";
6
+ export class AXPTextBlockWidgetViewComponent extends AXPWidgetComponent {
7
+ constructor() {
8
+ super(...arguments);
9
+ this.sanitizer = inject(DomSanitizer);
10
+ this.content = computed(() => this.options()['content']);
11
+ this.innerContent = computed(() => this.sanitizer.bypassSecurityTrustHtml(this.content()));
12
+ }
13
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPTextBlockWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
14
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPTextBlockWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `
15
+ <div [innerHTML]="innerContent()"></div>
16
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
17
+ }
18
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPTextBlockWidgetViewComponent, decorators: [{
19
+ type: Component,
20
+ args: [{
21
+ template: `
22
+ <div [innerHTML]="innerContent()"></div>
23
+ `,
24
+ standalone: true,
25
+ changeDetection: ChangeDetectionStrategy.OnPush,
26
+ imports: [CommonModule],
27
+ }]
28
+ }] });
29
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dC1ibG9jay13aWRnZXQtdmlldy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2xpYi93aWRnZXRzL2xheW91dC90ZXh0LWJsb2NrLXdpZGdldC90ZXh0LWJsb2NrLXdpZGdldC12aWV3LmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUNyRSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxRQUFRLEVBQUUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3JGLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQzs7QUFVekQsTUFBTSxPQUFPLCtCQUFnQyxTQUFRLGtCQUF3QjtJQVI3RTs7UUFTRSxjQUFTLEdBQUcsTUFBTSxDQUFDLFlBQVksQ0FBQyxDQUFDO1FBRXZCLFlBQU8sR0FBRyxRQUFRLENBQVMsR0FBRyxFQUFFLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDLFNBQVMsQ0FBVyxDQUFDLENBQUM7UUFFdEUsaUJBQVksR0FBRyxRQUFRLENBQUMsR0FBRyxFQUFFLENBQ3JDLElBQUksQ0FBQyxTQUFTLENBQUMsdUJBQXVCLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDLENBQ3ZELENBQUM7S0FDSDs4R0FSWSwrQkFBK0I7a0dBQS9CLCtCQUErQiwrRkFQaEM7O0dBRVQsMkRBR1MsWUFBWTs7MkZBRVgsK0JBQStCO2tCQVIzQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRTs7R0FFVDtvQkFDRCxVQUFVLEVBQUUsSUFBSTtvQkFDaEIsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLE9BQU8sRUFBRSxDQUFDLFlBQVksQ0FBQztpQkFDeEIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWFBXaWRnZXRDb21wb25lbnQgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9idWlsZGVyJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBjb21wdXRlZCwgaW5qZWN0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBEb21TYW5pdGl6ZXIgfSBmcm9tICdAYW5ndWxhci9wbGF0Zm9ybS1icm93c2VyJztcblxuQENvbXBvbmVudCh7XG4gIHRlbXBsYXRlOiBgXG4gICAgIDxkaXYgIFtpbm5lckhUTUxdPVwiaW5uZXJDb250ZW50KClcIj48L2Rpdj5cbiAgYCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxufSlcbmV4cG9ydCBjbGFzcyBBWFBUZXh0QmxvY2tXaWRnZXRWaWV3Q29tcG9uZW50IGV4dGVuZHMgQVhQV2lkZ2V0Q29tcG9uZW50PHZvaWQ+IHtcbiAgc2FuaXRpemVyID0gaW5qZWN0KERvbVNhbml0aXplcik7XG5cbiAgcHJvdGVjdGVkIGNvbnRlbnQgPSBjb21wdXRlZDxzdHJpbmc+KCgpID0+IHRoaXMub3B0aW9ucygpWydjb250ZW50J10gYXMgc3RyaW5nKTtcblxuICBwcm90ZWN0ZWQgaW5uZXJDb250ZW50ID0gY29tcHV0ZWQoKCkgPT5cbiAgICB0aGlzLnNhbml0aXplci5ieXBhc3NTZWN1cml0eVRydXN0SHRtbCh0aGlzLmNvbnRlbnQoKSlcbiAgKTtcbn0iXX0=
@@ -0,0 +1,39 @@
1
+ import { AXP_DATA_PROPERTY_GROUP, AXP_PLACEHOLDER_PROPERTY } from '../../../properties';
2
+ export const AXPTextBlockWidget = {
3
+ title: "Text Block",
4
+ name: "text-block",
5
+ icon: "fa-solid fa-square",
6
+ properties: [
7
+ AXP_PLACEHOLDER_PROPERTY,
8
+ {
9
+ name: 'content',
10
+ title: 'Content',
11
+ group: AXP_DATA_PROPERTY_GROUP,
12
+ schema: {
13
+ dataType: 'string',
14
+ defaultValue: "Text Block",
15
+ interface: {
16
+ name: 'content',
17
+ path: 'options.content',
18
+ type: 'rich-text',
19
+ },
20
+ },
21
+ visible: true,
22
+ }
23
+ ],
24
+ components: {
25
+ view: {
26
+ component: () => import('./text-block-widget-view.component').then((c) => c.AXPTextBlockWidgetViewComponent),
27
+ },
28
+ edit: {
29
+ component: () => import('./text-block-widget-view.component').then((c) => c.AXPTextBlockWidgetViewComponent),
30
+ },
31
+ print: {
32
+ component: () => import('./text-block-widget-view.component').then((c) => c.AXPTextBlockWidgetViewComponent),
33
+ },
34
+ designer: {
35
+ component: () => import('./text-block-widget-view.component').then((c) => c.AXPTextBlockWidgetViewComponent),
36
+ },
37
+ }
38
+ };
39
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dC1ibG9jay13aWRnZXQuY29uZmlnLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS93aWRnZXRzL3NyYy9saWIvd2lkZ2V0cy9sYXlvdXQvdGV4dC1ibG9jay13aWRnZXQvdGV4dC1ibG9jay13aWRnZXQuY29uZmlnLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSx3QkFBd0IsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQ3hGLE1BQU0sQ0FBQyxNQUFNLGtCQUFrQixHQUFvQjtJQUNqRCxLQUFLLEVBQUUsWUFBWTtJQUNuQixJQUFJLEVBQUUsWUFBWTtJQUNsQixJQUFJLEVBQUUsb0JBQW9CO0lBQzFCLFVBQVUsRUFBRTtRQUNWLHdCQUF3QjtRQUN4QjtZQUNFLElBQUksRUFBRSxTQUFTO1lBQ2YsS0FBSyxFQUFFLFNBQVM7WUFDaEIsS0FBSyxFQUFFLHVCQUF1QjtZQUM5QixNQUFNLEVBQUU7Z0JBQ04sUUFBUSxFQUFFLFFBQVE7Z0JBQ2xCLFlBQVksRUFBRSxZQUFZO2dCQUMxQixTQUFTLEVBQUU7b0JBQ1QsSUFBSSxFQUFFLFNBQVM7b0JBQ2YsSUFBSSxFQUFFLGlCQUFpQjtvQkFDdkIsSUFBSSxFQUFFLFdBQVc7aUJBQ2xCO2FBQ0Y7WUFDRCxPQUFPLEVBQUUsSUFBSTtTQUNkO0tBQ0Y7SUFDRCxVQUFVLEVBQUU7UUFDVixJQUFJLEVBQUU7WUFDSixTQUFTLEVBQUUsR0FBRyxFQUFFLENBQUMsTUFBTSxDQUFDLG9DQUFvQyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsK0JBQStCLENBQUM7U0FDN0c7UUFDRCxJQUFJLEVBQUU7WUFDSixTQUFTLEVBQUUsR0FBRyxFQUFFLENBQUMsTUFBTSxDQUFDLG9DQUFvQyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsK0JBQStCLENBQUM7U0FDN0c7UUFDRCxLQUFLLEVBQUU7WUFDTCxTQUFTLEVBQUUsR0FBRyxFQUFFLENBQUMsTUFBTSxDQUFDLG9DQUFvQyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsK0JBQStCLENBQUM7U0FDN0c7UUFDRCxRQUFRLEVBQUU7WUFDUixTQUFTLEVBQUUsR0FBRyxFQUFFLENBQUMsTUFBTSxDQUFDLG9DQUFvQyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsK0JBQStCLENBQUM7U0FDN0c7S0FDRjtDQUNGLENBQUEiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWFBXaWRnZXRDb25maWcgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9idWlsZGVyJztcbmltcG9ydCB7IEFYUF9EQVRBX1BST1BFUlRZX0dST1VQLCBBWFBfUExBQ0VIT0xERVJfUFJPUEVSVFkgfSBmcm9tICcuLi8uLi8uLi9wcm9wZXJ0aWVzJztcbmV4cG9ydCBjb25zdCBBWFBUZXh0QmxvY2tXaWRnZXQ6IEFYUFdpZGdldENvbmZpZyA9IHtcbiAgdGl0bGU6IFwiVGV4dCBCbG9ja1wiLFxuICBuYW1lOiBcInRleHQtYmxvY2tcIixcbiAgaWNvbjogXCJmYS1zb2xpZCBmYS1zcXVhcmVcIixcbiAgcHJvcGVydGllczogW1xuICAgIEFYUF9QTEFDRUhPTERFUl9QUk9QRVJUWSxcbiAgICB7XG4gICAgICBuYW1lOiAnY29udGVudCcsXG4gICAgICB0aXRsZTogJ0NvbnRlbnQnLFxuICAgICAgZ3JvdXA6IEFYUF9EQVRBX1BST1BFUlRZX0dST1VQLFxuICAgICAgc2NoZW1hOiB7XG4gICAgICAgIGRhdGFUeXBlOiAnc3RyaW5nJyxcbiAgICAgICAgZGVmYXVsdFZhbHVlOiBcIlRleHQgQmxvY2tcIixcbiAgICAgICAgaW50ZXJmYWNlOiB7XG4gICAgICAgICAgbmFtZTogJ2NvbnRlbnQnLFxuICAgICAgICAgIHBhdGg6ICdvcHRpb25zLmNvbnRlbnQnLFxuICAgICAgICAgIHR5cGU6ICdyaWNoLXRleHQnLFxuICAgICAgICB9LFxuICAgICAgfSxcbiAgICAgIHZpc2libGU6IHRydWUsXG4gICAgfVxuICBdLFxuICBjb21wb25lbnRzOiB7XG4gICAgdmlldzoge1xuICAgICAgY29tcG9uZW50OiAoKSA9PiBpbXBvcnQoJy4vdGV4dC1ibG9jay13aWRnZXQtdmlldy5jb21wb25lbnQnKS50aGVuKChjKSA9PiBjLkFYUFRleHRCbG9ja1dpZGdldFZpZXdDb21wb25lbnQpLFxuICAgIH0sXG4gICAgZWRpdDoge1xuICAgICAgY29tcG9uZW50OiAoKSA9PiBpbXBvcnQoJy4vdGV4dC1ibG9jay13aWRnZXQtdmlldy5jb21wb25lbnQnKS50aGVuKChjKSA9PiBjLkFYUFRleHRCbG9ja1dpZGdldFZpZXdDb21wb25lbnQpLFxuICAgIH0sXG4gICAgcHJpbnQ6IHtcbiAgICAgIGNvbXBvbmVudDogKCkgPT4gaW1wb3J0KCcuL3RleHQtYmxvY2std2lkZ2V0LXZpZXcuY29tcG9uZW50JykudGhlbigoYykgPT4gYy5BWFBUZXh0QmxvY2tXaWRnZXRWaWV3Q29tcG9uZW50KSxcbiAgICB9LFxuICAgIGRlc2lnbmVyOiB7XG4gICAgICBjb21wb25lbnQ6ICgpID0+IGltcG9ydCgnLi90ZXh0LWJsb2NrLXdpZGdldC12aWV3LmNvbXBvbmVudCcpLnRoZW4oKGMpID0+IGMuQVhQVGV4dEJsb2NrV2lkZ2V0Vmlld0NvbXBvbmVudCksXG4gICAgfSxcbiAgfVxufSJdfQ==