@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
@@ -1,19 +0,0 @@
1
- import { AXPWidgetBase } 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 AXPLookupWidgetDesignerComponent extends AXPWidgetBase {
6
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPLookupWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
7
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPLookupWidgetDesignerComponent, 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.0.2", ngImport: i0, type: AXPLookupWidgetDesignerComponent, 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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9va3VwLXdpZGdldC1kZXNpZ25lci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL2xheW91dC9lbnRpdHkvc3JjL2xpYi93aWRnZXRzL2xvb2t1cC13aWRnZXQvbG9va3VwLXdpZGdldC1kZXNpZ25lci5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ2hFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFVLE1BQU0sZUFBZSxDQUFDOztBQVEzRSxNQUFNLE9BQU8sZ0NBQWlDLFNBQVEsYUFBa0I7OEdBQTNELGdDQUFnQztrR0FBaEMsZ0NBQWdDLCtGQU5qQyxFQUFFLDJEQUdGLFlBQVk7OzJGQUdYLGdDQUFnQztrQkFQNUMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsRUFBRTtvQkFDWixVQUFVLEVBQUUsSUFBSTtvQkFDaEIsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLE9BQU8sRUFBRSxDQUFDLFlBQVksQ0FBQztvQkFDdkIsTUFBTSxFQUFFLEVBQUU7aUJBQ1giLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWFBXaWRnZXRCYXNlIH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgaW5qZWN0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5AQ29tcG9uZW50KHtcbiAgdGVtcGxhdGU6IGBgLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gIGlucHV0czogW11cbn0pXG5leHBvcnQgY2xhc3MgQVhQTG9va3VwV2lkZ2V0RGVzaWduZXJDb21wb25lbnQgZXh0ZW5kcyBBWFBXaWRnZXRCYXNlPGFueT4ge30iXX0=
@@ -1,45 +0,0 @@
1
- import { AXDecoratorModule } from '@acorex/components/decorators';
2
- import { AXPColumnWidgetBase } from '@acorex/platform/layout/builder';
3
- import { CommonModule } from '@angular/common';
4
- import { ChangeDetectionStrategy, Component } from '@angular/core';
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "@acorex/components/decorators";
7
- export class AXPCheckBoxWidgetColumnComponent extends AXPColumnWidgetBase {
8
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPCheckBoxWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
9
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPCheckBoxWidgetColumnComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ` <div>
10
- @if(this.rawValue){ @if(trulyText){
11
- <span [class]="negative ? 'ax-text-danger' : 'ax-text-success'">{{ trulyText }}</span>
12
- }@else {
13
-
14
- <ax-icon class="fa-solid fa-check ax-text-success"> </ax-icon>
15
- } }@else { @if(falsyText){
16
- <span [class]="negative ? 'ax-text-success' : 'ax-text-danger'">{{ falsyText }}</span>
17
- }@else {
18
-
19
- <ax-icon class="fa-solid fa-xmark ax-text-danger"> </ax-icon>
20
- } }
21
- </div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
22
- }
23
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPCheckBoxWidgetColumnComponent, decorators: [{
24
- type: Component,
25
- args: [{
26
- template: ` <div>
27
- @if(this.rawValue){ @if(trulyText){
28
- <span [class]="negative ? 'ax-text-danger' : 'ax-text-success'">{{ trulyText }}</span>
29
- }@else {
30
-
31
- <ax-icon class="fa-solid fa-check ax-text-success"> </ax-icon>
32
- } }@else { @if(falsyText){
33
- <span [class]="negative ? 'ax-text-success' : 'ax-text-danger'">{{ falsyText }}</span>
34
- }@else {
35
-
36
- <ax-icon class="fa-solid fa-xmark ax-text-danger"> </ax-icon>
37
- } }
38
- </div>`,
39
- standalone: true,
40
- changeDetection: ChangeDetectionStrategy.OnPush,
41
- imports: [CommonModule, AXDecoratorModule],
42
- inputs: [],
43
- }]
44
- }] });
45
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hlY2tib3gtd2lkZ2V0LWNvbHVtbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2xpYi9lZGl0b3JzL2NoZWNrYm94L2NoZWNrYm94LXdpZGdldC1jb2x1bW4uY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQ2xFLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ3RFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7QUFvQm5FLE1BQU0sT0FBTyxnQ0FBaUMsU0FBUSxtQkFBd0I7OEdBQWpFLGdDQUFnQztrR0FBaEMsZ0NBQWdDLCtGQWxCakM7Ozs7Ozs7Ozs7OztTQVlILDJEQUdHLFlBQVksOEJBQUUsaUJBQWlCOzsyRkFHOUIsZ0NBQWdDO2tCQW5CNUMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUU7Ozs7Ozs7Ozs7OztTQVlIO29CQUNQLFVBQVUsRUFBRSxJQUFJO29CQUNoQixlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsT0FBTyxFQUFFLENBQUMsWUFBWSxFQUFFLGlCQUFpQixDQUFDO29CQUMxQyxNQUFNLEVBQUUsRUFBRTtpQkFDWCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFYRGVjb3JhdG9yTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL2RlY29yYXRvcnMnO1xuaW1wb3J0IHsgQVhQQ29sdW1uV2lkZ2V0QmFzZSB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vbGF5b3V0L2J1aWxkZXInO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbkBDb21wb25lbnQoe1xuICB0ZW1wbGF0ZTogYCA8ZGl2PlxuICAgIEBpZih0aGlzLnJhd1ZhbHVlKXsgQGlmKHRydWx5VGV4dCl7XG4gICAgPHNwYW4gW2NsYXNzXT1cIm5lZ2F0aXZlID8gJ2F4LXRleHQtZGFuZ2VyJyA6ICdheC10ZXh0LXN1Y2Nlc3MnXCI+e3sgdHJ1bHlUZXh0IH19PC9zcGFuPlxuICAgIH1AZWxzZSB7XG5cbiAgICA8YXgtaWNvbiBjbGFzcz1cImZhLXNvbGlkIGZhLWNoZWNrIGF4LXRleHQtc3VjY2Vzc1wiPiA8L2F4LWljb24+XG4gICAgfSB9QGVsc2UgeyBAaWYoZmFsc3lUZXh0KXtcbiAgICA8c3BhbiBbY2xhc3NdPVwibmVnYXRpdmUgPyAnYXgtdGV4dC1zdWNjZXNzJyA6ICdheC10ZXh0LWRhbmdlcidcIj57eyBmYWxzeVRleHQgfX08L3NwYW4+XG4gICAgfUBlbHNlIHtcblxuICAgIDxheC1pY29uIGNsYXNzPVwiZmEtc29saWQgZmEteG1hcmsgYXgtdGV4dC1kYW5nZXJcIj4gPC9heC1pY29uPlxuICAgIH0gfVxuICA8L2Rpdj5gLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgQVhEZWNvcmF0b3JNb2R1bGVdLFxuICBpbnB1dHM6IFtdLFxufSlcbmV4cG9ydCBjbGFzcyBBWFBDaGVja0JveFdpZGdldENvbHVtbkNvbXBvbmVudCBleHRlbmRzIEFYUENvbHVtbldpZGdldEJhc2U8YW55PiB7XG4gIHByb3RlY3RlZCBuZWdhdGl2ZSE6IGJvb2xlYW47XG4gIHByb3RlY3RlZCB0cnVseVRleHQhOiBib29sZWFuO1xuICBwcm90ZWN0ZWQgZmFsc3lUZXh0ITogYm9vbGVhbjtcbn1cbiJdfQ==
@@ -1,45 +0,0 @@
1
- import { AXButtonModule } from '@acorex/components/button';
2
- import { AXCheckBoxModule } from '@acorex/components/check-box';
3
- import { AXDecoratorModule } from '@acorex/components/decorators';
4
- import { AXFormModule } from '@acorex/components/form';
5
- import { AXValidationModule, AXValidationService } from '@acorex/core/validation';
6
- import { AXPWidgetBase } from '@acorex/platform/layout/builder';
7
- import { CommonModule } from '@angular/common';
8
- import { ChangeDetectionStrategy, Component, inject } from '@angular/core';
9
- import { FormsModule } from '@angular/forms';
10
- import * as i0 from "@angular/core";
11
- import * as i1 from "@acorex/components/check-box";
12
- import * as i2 from "@angular/forms";
13
- export class AXPCheckBoxWidgetEditComponent extends AXPWidgetBase {
14
- constructor() {
15
- super(...arguments);
16
- this.validationService = inject(AXValidationService);
17
- this.disabled = false;
18
- }
19
- handleValueChange(e) {
20
- if (e.isUserInteraction) {
21
- this.setValue(e.value);
22
- }
23
- }
24
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPCheckBoxWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
25
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPCheckBoxWidgetEditComponent, isStandalone: true, selector: "axp-checkbox-widget-edit", usesInheritance: true, ngImport: i0, template: `
26
- <div class="ax-grid ax-grid-cols-12 ax-gap-4">
27
- <ax-check-box [ngModel]="this.getValue()" (onValueChanged)="handleValueChange($event)" [disabled]="disabled"> </ax-check-box>
28
- </div>
29
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXCheckBoxModule }, { kind: "component", type: i1.AXCheckBoxComponent, selector: "ax-check-box", inputs: ["disabled", "tabIndex", "readonly", "value", "name", "id", "checked", "indeterminate"], outputs: ["onBlur", "onFocus", "valueChange", "onValueChanged"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXButtonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
30
- }
31
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPCheckBoxWidgetEditComponent, decorators: [{
32
- type: Component,
33
- args: [{
34
- selector: 'axp-checkbox-widget-edit',
35
- template: `
36
- <div class="ax-grid ax-grid-cols-12 ax-gap-4">
37
- <ax-check-box [ngModel]="this.getValue()" (onValueChanged)="handleValueChange($event)" [disabled]="disabled"> </ax-check-box>
38
- </div>
39
- `,
40
- standalone: true,
41
- changeDetection: ChangeDetectionStrategy.OnPush,
42
- imports: [CommonModule, AXCheckBoxModule, FormsModule, AXFormModule, AXDecoratorModule, AXValidationModule, AXButtonModule],
43
- }]
44
- }] });
45
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hlY2tib3gtd2lkZ2V0LWVkaXQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS93aWRnZXRzL3NyYy9saWIvZWRpdG9ycy9jaGVja2JveC9jaGVja2JveC13aWRnZXQtZWRpdC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBQzNELE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBRWhFLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQ2xFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUN2RCxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUNsRixPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDaEUsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzNFLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQzs7OztBQWE3QyxNQUFNLE9BQU8sOEJBQStCLFNBQVEsYUFBNkI7SUFYakY7O1FBWVksc0JBQWlCLEdBQUcsTUFBTSxDQUFDLG1CQUFtQixDQUFDLENBQUM7UUFLbkQsYUFBUSxHQUFZLEtBQUssQ0FBQztLQU9sQztJQUxXLGlCQUFpQixDQUFDLENBQXNCO1FBQ2hELElBQUksQ0FBQyxDQUFDLGlCQUFpQixFQUFFLENBQUM7WUFDeEIsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDekIsQ0FBQztJQUNILENBQUM7OEdBWlUsOEJBQThCO2tHQUE5Qiw4QkFBOEIsMkdBVC9COzs7O0dBSVQsMkRBR1MsWUFBWSw4QkFBRSxnQkFBZ0IsK1FBQUUsV0FBVyw4VkFBRSxZQUFZLDhCQUFFLGlCQUFpQiw4QkFBRSxrQkFBa0IsOEJBQUUsY0FBYzs7MkZBRS9HLDhCQUE4QjtrQkFYMUMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsMEJBQTBCO29CQUNwQyxRQUFRLEVBQUU7Ozs7R0FJVDtvQkFDRCxVQUFVLEVBQUUsSUFBSTtvQkFDaEIsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxnQkFBZ0IsRUFBRSxXQUFXLEVBQUUsWUFBWSxFQUFFLGlCQUFpQixFQUFFLGtCQUFrQixFQUFFLGNBQWMsQ0FBQztpQkFDNUgiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWEJ1dHRvbk1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9idXR0b24nO1xuaW1wb3J0IHsgQVhDaGVja0JveE1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9jaGVjay1ib3gnO1xuaW1wb3J0IHsgQVhWYWx1ZUNoYW5nZWRFdmVudCB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9jb21tb24nO1xuaW1wb3J0IHsgQVhEZWNvcmF0b3JNb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvZGVjb3JhdG9ycyc7XG5pbXBvcnQgeyBBWEZvcm1Nb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvZm9ybSc7XG5pbXBvcnQgeyBBWFZhbGlkYXRpb25Nb2R1bGUsIEFYVmFsaWRhdGlvblNlcnZpY2UgfSBmcm9tICdAYWNvcmV4L2NvcmUvdmFsaWRhdGlvbic7XG5pbXBvcnQgeyBBWFBXaWRnZXRCYXNlIH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgaW5qZWN0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGb3Jtc01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXhwLWNoZWNrYm94LXdpZGdldC1lZGl0JyxcbiAgdGVtcGxhdGU6IGBcbiAgICA8ZGl2IGNsYXNzPVwiYXgtZ3JpZCBheC1ncmlkLWNvbHMtMTIgYXgtZ2FwLTRcIj5cbiAgICAgIDxheC1jaGVjay1ib3ggW25nTW9kZWxdPVwidGhpcy5nZXRWYWx1ZSgpXCIgKG9uVmFsdWVDaGFuZ2VkKT1cImhhbmRsZVZhbHVlQ2hhbmdlKCRldmVudClcIiBbZGlzYWJsZWRdPVwiZGlzYWJsZWRcIj4gPC9heC1jaGVjay1ib3g+XG4gICAgPC9kaXY+XG4gIGAsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBBWENoZWNrQm94TW9kdWxlLCBGb3Jtc01vZHVsZSwgQVhGb3JtTW9kdWxlLCBBWERlY29yYXRvck1vZHVsZSwgQVhWYWxpZGF0aW9uTW9kdWxlLCBBWEJ1dHRvbk1vZHVsZV0sXG59KVxuZXhwb3J0IGNsYXNzIEFYUENoZWNrQm94V2lkZ2V0RWRpdENvbXBvbmVudCBleHRlbmRzIEFYUFdpZGdldEJhc2U8Ym9vbGVhbiB8IG51bGw+IHtcbiAgcHJvdGVjdGVkIHZhbGlkYXRpb25TZXJ2aWNlID0gaW5qZWN0KEFYVmFsaWRhdGlvblNlcnZpY2UpO1xuXG4gIHByb3RlY3RlZCBtdWx0aXBsZSE6IGJvb2xlYW47XG4gIHByb3RlY3RlZCB2YWxpZGF0aW9uTWVzc2FnZT86IHN0cmluZyB8IG51bGw7XG5cbiAgcHVibGljIGRpc2FibGVkOiBib29sZWFuID0gZmFsc2U7XG5cbiAgcHJvdGVjdGVkIGhhbmRsZVZhbHVlQ2hhbmdlKGU6IEFYVmFsdWVDaGFuZ2VkRXZlbnQpIHtcbiAgICBpZiAoZS5pc1VzZXJJbnRlcmFjdGlvbikge1xuICAgICAgdGhpcy5zZXRWYWx1ZShlLnZhbHVlKTtcbiAgICB9XG4gIH1cbn1cbiJdfQ==
@@ -1,54 +0,0 @@
1
- import { AXButtonModule } from '@acorex/components/button';
2
- import { AXCheckBoxModule } from '@acorex/components/check-box';
3
- import { AXDecoratorModule } from '@acorex/components/decorators';
4
- import { AXFormModule } from '@acorex/components/form';
5
- import { AXValidationModule } from '@acorex/core/validation';
6
- import { AXPWidgetBase } from '@acorex/platform/layout/builder';
7
- import { CommonModule } from '@angular/common';
8
- import { ChangeDetectionStrategy, Component } from '@angular/core';
9
- import { FormsModule } from '@angular/forms';
10
- import * as i0 from "@angular/core";
11
- import * as i1 from "@acorex/components/decorators";
12
- export class AXPCheckBoxWidgetViewComponent extends AXPWidgetBase {
13
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPCheckBoxWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
14
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPCheckBoxWidgetViewComponent, isStandalone: true, selector: "axp-checkbox-widget-view", usesInheritance: true, ngImport: i0, template: `
15
- <div class="ax-font-semibold">
16
- @if(this.getValue()){ @if(trulyText){
17
- <span [class]="negative ? 'ax-text-danger' : 'ax-text-success'">{{ trulyText }}</span>
18
- }@else {
19
-
20
- <ax-icon class="fa-solid fa-check ax-text-success"> </ax-icon>
21
- } }@else { @if(falsyText){
22
- <span [class]="negative ? 'ax-text-success' : 'ax-text-danger'">{{ falsyText }}</span>
23
- }@else {
24
-
25
- <ax-icon class="fa-solid fa-xmark ax-text-danger"> </ax-icon>
26
- } }
27
- </div>
28
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXCheckBoxModule }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i1.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXButtonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
29
- }
30
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPCheckBoxWidgetViewComponent, decorators: [{
31
- type: Component,
32
- args: [{
33
- selector: 'axp-checkbox-widget-view',
34
- template: `
35
- <div class="ax-font-semibold">
36
- @if(this.getValue()){ @if(trulyText){
37
- <span [class]="negative ? 'ax-text-danger' : 'ax-text-success'">{{ trulyText }}</span>
38
- }@else {
39
-
40
- <ax-icon class="fa-solid fa-check ax-text-success"> </ax-icon>
41
- } }@else { @if(falsyText){
42
- <span [class]="negative ? 'ax-text-success' : 'ax-text-danger'">{{ falsyText }}</span>
43
- }@else {
44
-
45
- <ax-icon class="fa-solid fa-xmark ax-text-danger"> </ax-icon>
46
- } }
47
- </div>
48
- `,
49
- standalone: true,
50
- changeDetection: ChangeDetectionStrategy.OnPush,
51
- imports: [CommonModule, AXCheckBoxModule, FormsModule, AXFormModule, AXDecoratorModule, AXValidationModule, AXButtonModule],
52
- }]
53
- }] });
54
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hlY2tib3gtd2lkZ2V0LXZpZXcuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS93aWRnZXRzL3NyYy9saWIvZWRpdG9ycy9jaGVja2JveC9jaGVja2JveC13aWRnZXQtdmlldy5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBQzNELE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBQ2hFLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQ2xFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUN2RCxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUM3RCxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDaEUsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDbkUsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdCQUFnQixDQUFDOzs7QUF1QjdDLE1BQU0sT0FBTyw4QkFBK0IsU0FBUSxhQUE2Qjs4R0FBcEUsOEJBQThCO2tHQUE5Qiw4QkFBOEIsMkdBbkIvQjs7Ozs7Ozs7Ozs7Ozs7R0FjVCwyREFHUyxZQUFZLDhCQUFFLGdCQUFnQiw4QkFBRSxXQUFXLDhCQUFFLFlBQVksOEJBQUUsaUJBQWlCLCtIQUFFLGtCQUFrQiw4QkFBRSxjQUFjOzsyRkFFL0csOEJBQThCO2tCQXJCMUMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsMEJBQTBCO29CQUNwQyxRQUFRLEVBQUU7Ozs7Ozs7Ozs7Ozs7O0dBY1Q7b0JBQ0QsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO29CQUMvQyxPQUFPLEVBQUUsQ0FBQyxZQUFZLEVBQUUsZ0JBQWdCLEVBQUUsV0FBVyxFQUFFLFlBQVksRUFBRSxpQkFBaUIsRUFBRSxrQkFBa0IsRUFBRSxjQUFjLENBQUM7aUJBQzVIIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhCdXR0b25Nb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvYnV0dG9uJztcbmltcG9ydCB7IEFYQ2hlY2tCb3hNb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvY2hlY2stYm94JztcbmltcG9ydCB7IEFYRGVjb3JhdG9yTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL2RlY29yYXRvcnMnO1xuaW1wb3J0IHsgQVhGb3JtTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL2Zvcm0nO1xuaW1wb3J0IHsgQVhWYWxpZGF0aW9uTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb3JlL3ZhbGlkYXRpb24nO1xuaW1wb3J0IHsgQVhQV2lkZ2V0QmFzZSB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vbGF5b3V0L2J1aWxkZXInO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEZvcm1zTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdheHAtY2hlY2tib3gtd2lkZ2V0LXZpZXcnLFxuICB0ZW1wbGF0ZTogYFxuICAgIDxkaXYgY2xhc3M9XCJheC1mb250LXNlbWlib2xkXCI+XG4gICAgICBAaWYodGhpcy5nZXRWYWx1ZSgpKXsgQGlmKHRydWx5VGV4dCl7XG4gICAgICA8c3BhbiBbY2xhc3NdPVwibmVnYXRpdmUgPyAnYXgtdGV4dC1kYW5nZXInIDogJ2F4LXRleHQtc3VjY2VzcydcIj57eyB0cnVseVRleHQgfX08L3NwYW4+XG4gICAgICB9QGVsc2Uge1xuXG4gICAgICA8YXgtaWNvbiBjbGFzcz1cImZhLXNvbGlkIGZhLWNoZWNrIGF4LXRleHQtc3VjY2Vzc1wiPiA8L2F4LWljb24+XG4gICAgICB9IH1AZWxzZSB7IEBpZihmYWxzeVRleHQpe1xuICAgICAgPHNwYW4gW2NsYXNzXT1cIm5lZ2F0aXZlID8gJ2F4LXRleHQtc3VjY2VzcycgOiAnYXgtdGV4dC1kYW5nZXInXCI+e3sgZmFsc3lUZXh0IH19PC9zcGFuPlxuICAgICAgfUBlbHNlIHtcblxuICAgICAgPGF4LWljb24gY2xhc3M9XCJmYS1zb2xpZCBmYS14bWFyayBheC10ZXh0LWRhbmdlclwiPiA8L2F4LWljb24+XG4gICAgICB9IH1cbiAgICA8L2Rpdj5cbiAgYCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGUsIEFYQ2hlY2tCb3hNb2R1bGUsIEZvcm1zTW9kdWxlLCBBWEZvcm1Nb2R1bGUsIEFYRGVjb3JhdG9yTW9kdWxlLCBBWFZhbGlkYXRpb25Nb2R1bGUsIEFYQnV0dG9uTW9kdWxlXSxcbn0pXG5leHBvcnQgY2xhc3MgQVhQQ2hlY2tCb3hXaWRnZXRWaWV3Q29tcG9uZW50IGV4dGVuZHMgQVhQV2lkZ2V0QmFzZTxib29sZWFuIHwgbnVsbD4ge1xuICBwcm90ZWN0ZWQgbmVnYXRpdmUhOiBib29sZWFuO1xuICBwcm90ZWN0ZWQgdHJ1bHlUZXh0ITogYm9vbGVhbjtcbiAgcHJvdGVjdGVkIGZhbHN5VGV4dCE6IGJvb2xlYW47XG59XG4iXX0=
@@ -1,15 +0,0 @@
1
- export const AXPCheckBoxWidget = {
2
- name: 'checkbox',
3
- components: {
4
- view: {
5
- component: () => import('./checkbox-widget-view.component').then((c) => c.AXPCheckBoxWidgetViewComponent),
6
- },
7
- edit: {
8
- component: () => import('./checkbox-widget-edit.component').then((c) => c.AXPCheckBoxWidgetEditComponent),
9
- },
10
- column: {
11
- component: () => import('./checkbox-widget-column.component').then((c) => c.AXPCheckBoxWidgetColumnComponent),
12
- },
13
- },
14
- };
15
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hlY2tib3gtd2lkZ2V0LmNvbmZpZy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vd2lkZ2V0cy9zcmMvbGliL2VkaXRvcnMvY2hlY2tib3gvY2hlY2tib3gtd2lkZ2V0LmNvbmZpZy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFFQSxNQUFNLENBQUMsTUFBTSxpQkFBaUIsR0FBb0I7SUFDaEQsSUFBSSxFQUFFLFVBQVU7SUFDaEIsVUFBVSxFQUFFO1FBQ1YsSUFBSSxFQUFFO1lBQ0osU0FBUyxFQUFFLEdBQUcsRUFBRSxDQUFDLE1BQU0sQ0FBQyxrQ0FBa0MsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDLDhCQUE4QixDQUFDO1NBQzFHO1FBQ0QsSUFBSSxFQUFFO1lBQ0osU0FBUyxFQUFFLEdBQUcsRUFBRSxDQUFDLE1BQU0sQ0FBQyxrQ0FBa0MsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDLDhCQUE4QixDQUFDO1NBQzFHO1FBQ0QsTUFBTSxFQUFFO1lBQ04sU0FBUyxFQUFFLEdBQUcsRUFBRSxDQUFDLE1BQU0sQ0FBQyxvQ0FBb0MsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDLGdDQUFnQyxDQUFDO1NBQzlHO0tBQ0Y7Q0FDRixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhQV2lkZ2V0Q29uZmlnIH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5cbmV4cG9ydCBjb25zdCBBWFBDaGVja0JveFdpZGdldDogQVhQV2lkZ2V0Q29uZmlnID0ge1xuICBuYW1lOiAnY2hlY2tib3gnLFxuICBjb21wb25lbnRzOiB7XG4gICAgdmlldzoge1xuICAgICAgY29tcG9uZW50OiAoKSA9PiBpbXBvcnQoJy4vY2hlY2tib3gtd2lkZ2V0LXZpZXcuY29tcG9uZW50JykudGhlbigoYykgPT4gYy5BWFBDaGVja0JveFdpZGdldFZpZXdDb21wb25lbnQpLFxuICAgIH0sXG4gICAgZWRpdDoge1xuICAgICAgY29tcG9uZW50OiAoKSA9PiBpbXBvcnQoJy4vY2hlY2tib3gtd2lkZ2V0LWVkaXQuY29tcG9uZW50JykudGhlbigoYykgPT4gYy5BWFBDaGVja0JveFdpZGdldEVkaXRDb21wb25lbnQpLFxuICAgIH0sXG4gICAgY29sdW1uOiB7XG4gICAgICBjb21wb25lbnQ6ICgpID0+IGltcG9ydCgnLi9jaGVja2JveC13aWRnZXQtY29sdW1uLmNvbXBvbmVudCcpLnRoZW4oKGMpID0+IGMuQVhQQ2hlY2tCb3hXaWRnZXRDb2x1bW5Db21wb25lbnQpLFxuICAgIH0sXG4gIH0sXG59O1xuIl19
@@ -1,3 +0,0 @@
1
- export * from './checkbox-widget-edit.component';
2
- export * from './checkbox-widget.config';
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2xpYi9lZGl0b3JzL2NoZWNrYm94L2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsa0NBQWtDLENBQUM7QUFDakQsY0FBYywwQkFBMEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vY2hlY2tib3gtd2lkZ2V0LWVkaXQuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vY2hlY2tib3gtd2lkZ2V0LmNvbmZpZyc7Il19
@@ -1,19 +0,0 @@
1
- import { AXPColumnWidgetBase } 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 AXPContactWidgetColumnComponent extends AXPColumnWidgetBase {
6
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPContactWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
7
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPContactWidgetColumnComponent, isStandalone: true, selector: "ng-component", inputs: { rawValue: "rawValue" }, usesInheritance: true, ngImport: i0, template: `{{rawValue}}`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
8
- }
9
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPContactWidgetColumnComponent, decorators: [{
10
- type: Component,
11
- args: [{
12
- template: `{{rawValue}}`,
13
- standalone: true,
14
- changeDetection: ChangeDetectionStrategy.OnPush,
15
- imports: [CommonModule],
16
- inputs: ['rawValue']
17
- }]
18
- }] });
19
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udGFjdC13aWRnZXQtY29sdW1uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vd2lkZ2V0cy9zcmMvbGliL2VkaXRvcnMvY29udGFjdC13aWRnZXQvY29udGFjdC13aWRnZXQtY29sdW1uLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUN0RSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFRbkUsTUFBTSxPQUFPLCtCQUFnQyxTQUFRLG1CQUF3Qjs4R0FBaEUsK0JBQStCO2tHQUEvQiwrQkFBK0IsaUlBTmhDLGNBQWMsMkRBR2QsWUFBWTs7MkZBR1gsK0JBQStCO2tCQVAzQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxjQUFjO29CQUN4QixVQUFVLEVBQUUsSUFBSTtvQkFDaEIsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLE9BQU8sRUFBRSxDQUFDLFlBQVksQ0FBQztvQkFDdkIsTUFBTSxFQUFFLENBQUMsVUFBVSxDQUFDO2lCQUNyQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFYUENvbHVtbldpZGdldEJhc2UgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9idWlsZGVyJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5AQ29tcG9uZW50KHtcbiAgdGVtcGxhdGU6IGB7e3Jhd1ZhbHVlfX1gLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gIGlucHV0czogWydyYXdWYWx1ZSddXG59KVxuZXhwb3J0IGNsYXNzIEFYUENvbnRhY3RXaWRnZXRDb2x1bW5Db21wb25lbnQgZXh0ZW5kcyBBWFBDb2x1bW5XaWRnZXRCYXNlPGFueT4ge30iXX0=
@@ -1,19 +0,0 @@
1
- import { AXPWidgetBase } 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 AXPContactWidgetDesignerComponent extends AXPWidgetBase {
6
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPContactWidgetDesignerComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
7
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPContactWidgetDesignerComponent, 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.0.2", ngImport: i0, type: AXPContactWidgetDesignerComponent, 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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udGFjdC13aWRnZXQtZGVzaWduZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS93aWRnZXRzL3NyYy9saWIvZWRpdG9ycy9jb250YWN0LXdpZGdldC9jb250YWN0LXdpZGdldC1kZXNpZ25lci5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ2hFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFVLE1BQU0sZUFBZSxDQUFDOztBQVEzRSxNQUFNLE9BQU8saUNBQWtDLFNBQVEsYUFBa0I7OEdBQTVELGlDQUFpQztrR0FBakMsaUNBQWlDLCtGQU5sQyxFQUFFLDJEQUdGLFlBQVk7OzJGQUdYLGlDQUFpQztrQkFQN0MsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsRUFBRTtvQkFDWixVQUFVLEVBQUUsSUFBSTtvQkFDaEIsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLE9BQU8sRUFBRSxDQUFDLFlBQVksQ0FBQztvQkFDdkIsTUFBTSxFQUFFLEVBQUU7aUJBQ1giLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWFBXaWRnZXRCYXNlIH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgaW5qZWN0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5AQ29tcG9uZW50KHtcbiAgdGVtcGxhdGU6IGBgLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gIGlucHV0czogW11cbn0pXG5leHBvcnQgY2xhc3MgQVhQQ29udGFjdFdpZGdldERlc2lnbmVyQ29tcG9uZW50IGV4dGVuZHMgQVhQV2lkZ2V0QmFzZTxhbnk+IHt9Il19
@@ -1,267 +0,0 @@
1
- import { AXButtonModule } from '@acorex/components/button';
2
- import { AXDataSource } from '@acorex/components/common';
3
- import { AXDecoratorModule } from '@acorex/components/decorators';
4
- import { AXFormModule } from '@acorex/components/form';
5
- import { AXPopupService } from '@acorex/components/popup';
6
- import { AXSelectBoxModule } from '@acorex/components/select-box';
7
- import { AXTextBoxModule } from '@acorex/components/text-box';
8
- import { AXTranslationModule } from '@acorex/core/translation';
9
- import { AXValidationModule, AXValidationService } from '@acorex/core/validation';
10
- import { AXPWidgetBase } from '@acorex/platform/layout/builder';
11
- import { CommonModule } from '@angular/common';
12
- import { ChangeDetectionStrategy, Component, computed, inject, signal } from '@angular/core';
13
- import { FormsModule } from '@angular/forms';
14
- import { popupComponent } from './popup-component';
15
- import * as i0 from "@angular/core";
16
- import * as i1 from "@angular/common";
17
- import * as i2 from "@angular/forms";
18
- import * as i3 from "@acorex/components/select-box";
19
- import * as i4 from "@acorex/components/form";
20
- import * as i5 from "@acorex/components/button";
21
- import * as i6 from "@acorex/components/decorators";
22
- import * as i7 from "@acorex/components/text-box";
23
- export class AXPContactWidgetEditComponent extends AXPWidgetBase {
24
- constructor() {
25
- super(...arguments);
26
- this.lableList = signal(['primary', 'secondary', 'Add New']);
27
- this.popup = inject(AXPopupService);
28
- this.dataSource = new AXDataSource({
29
- pageSize: this.lableList().length,
30
- load: (e) => {
31
- return Promise.resolve({
32
- items: this.lableList().slice(e.skip, (e.skip ?? 0) + (e.take ?? 0)),
33
- total: this.lableList().length,
34
- });
35
- },
36
- byKey: (key) => {
37
- return Promise.resolve(this.lableList().find((i) => i === key));
38
- },
39
- });
40
- this.internalValue = computed(() => this.valueToArray());
41
- this.validationService = inject(AXValidationService);
42
- this._validationRules = [];
43
- this.itemToArray = (item) => {
44
- if (typeof item === 'object')
45
- return {
46
- value: item.value ?? '',
47
- lable: this.hasLable ? item.lable || this.lableList()[0] : undefined,
48
- icon: this.hasIcon ? item.icon || this.chooseIcon() : undefined,
49
- };
50
- else
51
- return {
52
- value: item,
53
- lable: this.hasLable ? this.lableList()[0] : undefined,
54
- icon: this.hasIcon ? this.chooseIcon() : undefined,
55
- };
56
- };
57
- this.chooseIcon = () => {
58
- switch (this.widgetType) {
59
- case 'email':
60
- return 'fa-link';
61
- case 'link':
62
- return 'fa-envelope';
63
- case 'phone':
64
- return 'fa-phone';
65
- default:
66
- return 'fa-info';
67
- }
68
- };
69
- }
70
- addItem() {
71
- const newValues = [...this.internalValue(), this.emptyValue()];
72
- this.setValue(newValues);
73
- }
74
- deleteItem(deletedIndex) {
75
- const newValues = this.internalValue().filter((_, index) => index != deletedIndex);
76
- this.setValue(newValues);
77
- }
78
- async handleValueChange(e, selectedIndex) {
79
- let { name, value, isUserInteraction } = e;
80
- if (isUserInteraction) {
81
- if (e.name === 'lable') {
82
- if (e.value === 'Add New') {
83
- const options = {
84
- title: 'Enter Lable...',
85
- // header: false,
86
- // footer: true,
87
- size: 'sm',
88
- draggable: true,
89
- // hasBackdrop: true,
90
- // closeButton: true,
91
- // closeOnBackdropClick: true,
92
- };
93
- const newValue = await this.popup.open(popupComponent, { ...options }).then((e) => e.data);
94
- value = newValue.value;
95
- this.lableList().pop();
96
- this.lableList().push(value, 'Add New');
97
- this.dataSource.refresh();
98
- }
99
- }
100
- }
101
- const newValues = this.internalValue().map((item, index) => (selectedIndex === index ? { ...item, [name]: value } : item));
102
- if (this.multiple)
103
- this.setValue(newValues);
104
- else
105
- this.setValue(newValues[0]);
106
- }
107
- generateClasses(element) {
108
- if (this.multiple) {
109
- if (this.hasLable) {
110
- if (element === 'value') {
111
- return 'ax-col-start-1 ax-col-end-13 lg:ax-col-end-7';
112
- }
113
- else {
114
- return 'ax-col-start-1 ax-col-end-11 lg:ax-col-start-7 lg:ax-col-end-12';
115
- }
116
- }
117
- else {
118
- if (element === 'value') {
119
- return 'ax-col-start-1 ax-col-end-12';
120
- }
121
- }
122
- }
123
- else {
124
- if (this.hasLable) {
125
- if (element === 'value') {
126
- return 'ax-col-start-1 ax-col-end-13 lg:ax-col-end-7';
127
- }
128
- else {
129
- return 'ax-col-start-1 ax-col-end-13 lg:ax-col-start-7 lg:ax-col-end-13';
130
- }
131
- }
132
- else {
133
- if (element === 'value') {
134
- return 'ax-col-start-1 ax-col-end-13';
135
- }
136
- }
137
- }
138
- }
139
- get validationRules() {
140
- return this._validationRules;
141
- }
142
- set validationRules(v) {
143
- this._validationRules = v;
144
- }
145
- valueToArray() {
146
- const value = this.getValue();
147
- if (Array.isArray(value)) {
148
- return value.map((item) => this.itemToArray(item));
149
- }
150
- else {
151
- return [this.itemToArray(value)];
152
- }
153
- }
154
- emptyValue() {
155
- return {
156
- value: '',
157
- };
158
- }
159
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPContactWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
160
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPContactWidgetEditComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: `<div class="ax-grid ax-grid-cols-12 ax-gap-4">
161
- @for(item of internalValue();track $index) {
162
- <ax-text-box
163
- [ngModel]="item.value"
164
- (onValueChanged)="handleValueChange($event, $index)"
165
- type="text"
166
- name="value"
167
- placeholder="Enter {{ widgetType }} ..."
168
- [ngClass]="generateClasses('value')"
169
- >
170
- @for (validation of validationRules; track $index) {
171
- <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
172
- }
173
- <ax-validation-rule message="field can't be empty" rule="required"> </ax-validation-rule>
174
- </ax-text-box>
175
- @if(hasLable){
176
- <ax-select-box
177
- [dataSource]="dataSource"
178
- [ngModel]="item.lable"
179
- (onValueChanged)="handleValueChange($event, $index)"
180
- placeholder="Choose lable..."
181
- name="lable"
182
- [ngClass]="generateClasses('lable')"
183
- >
184
- </ax-select-box>
185
- } @if(multiple){
186
- <ax-button look="twotone" color="danger" (onClick)="deleteItem($index)" class="ax-col-start-12 ax-col-end-13 ax-justify-self-end">
187
- <ax-icon icon="fa-regular fa-xmark"></ax-icon>
188
- </ax-button>
189
- } } @if(multiple){
190
-
191
- <ax-button
192
- [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
193
- look="twotone"
194
- (onClick)="addItem()"
195
- class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
196
- >
197
- <ax-prefix>
198
- <ax-icon class="fa-solid fa-add"></ax-icon>
199
- </ax-prefix>
200
- </ax-button>
201
- }
202
- </div> `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i3.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "textTemplate", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i4.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i5.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "loadingTextChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i6.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i6.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i7.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXTranslationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
203
- }
204
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPContactWidgetEditComponent, decorators: [{
205
- type: Component,
206
- args: [{
207
- template: `<div class="ax-grid ax-grid-cols-12 ax-gap-4">
208
- @for(item of internalValue();track $index) {
209
- <ax-text-box
210
- [ngModel]="item.value"
211
- (onValueChanged)="handleValueChange($event, $index)"
212
- type="text"
213
- name="value"
214
- placeholder="Enter {{ widgetType }} ..."
215
- [ngClass]="generateClasses('value')"
216
- >
217
- @for (validation of validationRules; track $index) {
218
- <ax-validation-rule [rule]="validation.rule" [message]="validation.options?.message" [options]="validation.options"></ax-validation-rule>
219
- }
220
- <ax-validation-rule message="field can't be empty" rule="required"> </ax-validation-rule>
221
- </ax-text-box>
222
- @if(hasLable){
223
- <ax-select-box
224
- [dataSource]="dataSource"
225
- [ngModel]="item.lable"
226
- (onValueChanged)="handleValueChange($event, $index)"
227
- placeholder="Choose lable..."
228
- name="lable"
229
- [ngClass]="generateClasses('lable')"
230
- >
231
- </ax-select-box>
232
- } @if(multiple){
233
- <ax-button look="twotone" color="danger" (onClick)="deleteItem($index)" class="ax-col-start-12 ax-col-end-13 ax-justify-self-end">
234
- <ax-icon icon="fa-regular fa-xmark"></ax-icon>
235
- </ax-button>
236
- } } @if(multiple){
237
-
238
- <ax-button
239
- [text]="internalValue().length == 0 ? 'Add New' : 'Add Another'"
240
- look="twotone"
241
- (onClick)="addItem()"
242
- class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
243
- >
244
- <ax-prefix>
245
- <ax-icon class="fa-solid fa-add"></ax-icon>
246
- </ax-prefix>
247
- </ax-button>
248
- }
249
- </div> `,
250
- standalone: true,
251
- changeDetection: ChangeDetectionStrategy.OnPush,
252
- imports: [
253
- CommonModule,
254
- FormsModule,
255
- AXSelectBoxModule,
256
- AXFormModule,
257
- AXButtonModule,
258
- AXDecoratorModule,
259
- AXSelectBoxModule,
260
- AXTextBoxModule,
261
- AXValidationModule,
262
- AXTranslationModule,
263
- ],
264
- inputs: [],
265
- }]
266
- }] });
267
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udGFjdC13aWRnZXQtZWRpdC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2xpYi9lZGl0b3JzL2NvbnRhY3Qtd2lkZ2V0L2NvbnRhY3Qtd2lkZ2V0LWVkaXQuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUMzRCxPQUFPLEVBQUUsWUFBWSxFQUF1QixNQUFNLDJCQUEyQixDQUFDO0FBQzlFLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQ2xFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUN2RCxPQUFPLEVBQWlCLGNBQWMsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQ3pFLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQ2xFLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSw2QkFBNkIsQ0FBQztBQUM5RCxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUMvRCxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUVsRixPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDaEUsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQVUsUUFBUSxFQUFFLE1BQU0sRUFBRSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDckcsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQzdDLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQzs7Ozs7Ozs7O0FBOERuRCxNQUFNLE9BQU8sNkJBQThCLFNBQVEsYUFBa0I7SUE1RHJFOztRQStEWSxjQUFTLEdBQUcsTUFBTSxDQUFDLENBQUMsU0FBUyxFQUFFLFdBQVcsRUFBRSxTQUFTLENBQUMsQ0FBQyxDQUFDO1FBSTFELFVBQUssR0FBbUIsTUFBTSxDQUFDLGNBQWMsQ0FBQyxDQUFDO1FBQzdDLGVBQVUsR0FBRyxJQUFJLFlBQVksQ0FBQztZQUN0QyxRQUFRLEVBQUUsSUFBSSxDQUFDLFNBQVMsRUFBRSxDQUFDLE1BQU07WUFDakMsSUFBSSxFQUFFLENBQUMsQ0FBQyxFQUFFLEVBQUU7Z0JBQ1YsT0FBTyxPQUFPLENBQUMsT0FBTyxDQUFDO29CQUNyQixLQUFLLEVBQUUsSUFBSSxDQUFDLFNBQVMsRUFBRSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQyxDQUFDLElBQUksSUFBSSxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxJQUFJLElBQUksQ0FBQyxDQUFDLENBQUM7b0JBQ3BFLEtBQUssRUFBRSxJQUFJLENBQUMsU0FBUyxFQUFFLENBQUMsTUFBTTtpQkFDL0IsQ0FBQyxDQUFDO1lBQ0wsQ0FBQztZQUNELEtBQUssRUFBRSxDQUFDLEdBQUcsRUFBRSxFQUFFO2dCQUNiLE9BQU8sT0FBTyxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsU0FBUyxFQUFFLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLEtBQUssR0FBRyxDQUFDLENBQUMsQ0FBQztZQUNsRSxDQUFDO1NBQ0YsQ0FBQyxDQUFDO1FBQ08sa0JBQWEsR0FBaUMsUUFBUSxDQUFDLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxZQUFZLEVBQUUsQ0FBQyxDQUFDO1FBK0RsRixzQkFBaUIsR0FBRyxNQUFNLENBQUMsbUJBQW1CLENBQUMsQ0FBQztRQUNsRCxxQkFBZ0IsR0FBdUIsRUFBRSxDQUFDO1FBZTFDLGdCQUFXLEdBQUcsQ0FBQyxJQUFpQyxFQUFzQixFQUFFO1lBQzlFLElBQUksT0FBTyxJQUFJLEtBQUssUUFBUTtnQkFDMUIsT0FBTztvQkFDTCxLQUFLLEVBQUUsSUFBSSxDQUFDLEtBQUssSUFBSSxFQUFFO29CQUN2QixLQUFLLEVBQUUsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLEtBQUssSUFBSSxJQUFJLENBQUMsU0FBUyxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLFNBQVM7b0JBQ3BFLElBQUksRUFBRSxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsSUFBSSxJQUFJLElBQUksQ0FBQyxVQUFVLEVBQUUsQ0FBQyxDQUFDLENBQUMsU0FBUztpQkFDaEUsQ0FBQzs7Z0JBRUYsT0FBTztvQkFDTCxLQUFLLEVBQUUsSUFBSTtvQkFDWCxLQUFLLEVBQUUsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLFNBQVMsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxTQUFTO29CQUN0RCxJQUFJLEVBQUUsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLFVBQVUsRUFBRSxDQUFDLENBQUMsQ0FBQyxTQUFTO2lCQUNuRCxDQUFDO1FBQ04sQ0FBQyxDQUFDO1FBTU0sZUFBVSxHQUFHLEdBQVcsRUFBRTtZQUNoQyxRQUFRLElBQUksQ0FBQyxVQUFVLEVBQUUsQ0FBQztnQkFDeEIsS0FBSyxPQUFPO29CQUNWLE9BQU8sU0FBUyxDQUFDO2dCQUNuQixLQUFLLE1BQU07b0JBQ1QsT0FBTyxhQUFhLENBQUM7Z0JBQ3ZCLEtBQUssT0FBTztvQkFDVixPQUFPLFVBQVUsQ0FBQztnQkFDcEI7b0JBQ0UsT0FBTyxTQUFTLENBQUM7WUFDckIsQ0FBQztRQUNILENBQUMsQ0FBQztLQUNIO0lBN0dXLE9BQU87UUFDZixNQUFNLFNBQVMsR0FBeUIsQ0FBQyxHQUFHLElBQUksQ0FBQyxhQUFhLEVBQUUsRUFBRSxJQUFJLENBQUMsVUFBVSxFQUFFLENBQUMsQ0FBQztRQUNyRixJQUFJLENBQUMsUUFBUSxDQUFDLFNBQVMsQ0FBQyxDQUFDO0lBQzNCLENBQUM7SUFDUyxVQUFVLENBQUMsWUFBb0I7UUFDdkMsTUFBTSxTQUFTLEdBQUcsSUFBSSxDQUFDLGFBQWEsRUFBRSxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsRUFBRSxLQUFLLEVBQUUsRUFBRSxDQUFDLEtBQUssSUFBSSxZQUFZLENBQUMsQ0FBQztRQUNuRixJQUFJLENBQUMsUUFBUSxDQUFDLFNBQVMsQ0FBQyxDQUFDO0lBQzNCLENBQUM7SUFDUyxLQUFLLENBQUMsaUJBQWlCLENBQUMsQ0FBc0IsRUFBRSxhQUFxQjtRQUM3RSxJQUFJLEVBQUUsSUFBSSxFQUFFLEtBQUssRUFBRSxpQkFBaUIsRUFBRSxHQUFHLENBQUMsQ0FBQztRQUMzQyxJQUFJLGlCQUFpQixFQUFFLENBQUM7WUFDdEIsSUFBSSxDQUFDLENBQUMsSUFBSSxLQUFLLE9BQU8sRUFBRSxDQUFDO2dCQUN2QixJQUFJLENBQUMsQ0FBQyxLQUFLLEtBQUssU0FBUyxFQUFFLENBQUM7b0JBQzFCLE1BQU0sT0FBTyxHQUFrQjt3QkFDN0IsS0FBSyxFQUFFLGdCQUFnQjt3QkFDdkIsaUJBQWlCO3dCQUNqQixnQkFBZ0I7d0JBQ2hCLElBQUksRUFBRSxJQUFJO3dCQUNWLFNBQVMsRUFBRSxJQUFJO3dCQUNmLHFCQUFxQjt3QkFDckIscUJBQXFCO3dCQUNyQiw4QkFBOEI7cUJBQy9CLENBQUM7b0JBQ0YsTUFBTSxRQUFRLEdBQUcsTUFBTSxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxjQUFjLEVBQUUsRUFBRSxHQUFHLE9BQU8sRUFBRSxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUM7b0JBQzNGLEtBQUssR0FBRyxRQUFRLENBQUMsS0FBSyxDQUFDO29CQUN2QixJQUFJLENBQUMsU0FBUyxFQUFFLENBQUMsR0FBRyxFQUFFLENBQUM7b0JBQ3ZCLElBQUksQ0FBQyxTQUFTLEVBQUUsQ0FBQyxJQUFJLENBQUMsS0FBSyxFQUFFLFNBQVMsQ0FBQyxDQUFDO29CQUN4QyxJQUFJLENBQUMsVUFBVSxDQUFDLE9BQU8sRUFBRSxDQUFDO2dCQUM1QixDQUFDO1lBQ0gsQ0FBQztRQUNILENBQUM7UUFDRCxNQUFNLFNBQVMsR0FBRyxJQUFJLENBQUMsYUFBYSxFQUFFLENBQUMsR0FBRyxDQUFDLENBQUMsSUFBSSxFQUFFLEtBQUssRUFBRSxFQUFFLENBQUMsQ0FBQyxhQUFhLEtBQUssS0FBSyxDQUFDLENBQUMsQ0FBQyxFQUFFLEdBQUcsSUFBSSxFQUFFLENBQUMsSUFBYyxDQUFDLEVBQUUsS0FBSyxFQUFFLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUM7UUFDckksSUFBSSxJQUFJLENBQUMsUUFBUTtZQUFFLElBQUksQ0FBQyxRQUFRLENBQUMsU0FBUyxDQUFDLENBQUM7O1lBQ3ZDLElBQUksQ0FBQyxRQUFRLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUM7SUFDbkMsQ0FBQztJQUNTLGVBQWUsQ0FBQyxPQUEwQjtRQUNsRCxJQUFJLElBQUksQ0FBQyxRQUFRLEVBQUUsQ0FBQztZQUNsQixJQUFJLElBQUksQ0FBQyxRQUFRLEVBQUUsQ0FBQztnQkFDbEIsSUFBSSxPQUFPLEtBQUssT0FBTyxFQUFFLENBQUM7b0JBQ3hCLE9BQU8sOENBQThDLENBQUM7Z0JBQ3hELENBQUM7cUJBQU0sQ0FBQztvQkFDTixPQUFPLGlFQUFpRSxDQUFDO2dCQUMzRSxDQUFDO1lBQ0gsQ0FBQztpQkFBTSxDQUFDO2dCQUNOLElBQUksT0FBTyxLQUFLLE9BQU8sRUFBRSxDQUFDO29CQUN4QixPQUFPLDhCQUE4QixDQUFDO2dCQUN4QyxDQUFDO1lBQ0gsQ0FBQztRQUNILENBQUM7YUFBTSxDQUFDO1lBQ04sSUFBSSxJQUFJLENBQUMsUUFBUSxFQUFFLENBQUM7Z0JBQ2xCLElBQUksT0FBTyxLQUFLLE9BQU8sRUFBRSxDQUFDO29CQUN4QixPQUFPLDhDQUE4QyxDQUFDO2dCQUN4RCxDQUFDO3FCQUFNLENBQUM7b0JBQ04sT0FBTyxpRUFBaUUsQ0FBQztnQkFDM0UsQ0FBQztZQUNILENBQUM7aUJBQU0sQ0FBQztnQkFDTixJQUFJLE9BQU8sS0FBSyxPQUFPLEVBQUUsQ0FBQztvQkFDeEIsT0FBTyw4QkFBOEIsQ0FBQztnQkFDeEMsQ0FBQztZQUNILENBQUM7UUFDSCxDQUFDO0lBQ0gsQ0FBQztJQUdELElBQVcsZUFBZTtRQUN4QixPQUFPLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQztJQUMvQixDQUFDO0lBQ0QsSUFBVyxlQUFlLENBQUMsQ0FBcUI7UUFDOUMsSUFBSSxDQUFDLGdCQUFnQixHQUFHLENBQUMsQ0FBQztJQUM1QixDQUFDO0lBQ08sWUFBWTtRQUNsQixNQUFNLEtBQUssR0FBZ0MsSUFBSSxDQUFDLFFBQVEsRUFBRSxDQUFDO1FBQzNELElBQUksS0FBSyxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDO1lBQ3pCLE9BQU8sS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFDLElBQUksRUFBRSxFQUFFLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDO1FBQ3JELENBQUM7YUFBTSxDQUFDO1lBQ04sT0FBTyxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQztRQUNuQyxDQUFDO0lBQ0gsQ0FBQztJQWVPLFVBQVU7UUFDaEIsT0FBTztZQUNMLEtBQUssRUFBRSxFQUFFO1NBQ1YsQ0FBQztJQUNKLENBQUM7OEdBckhVLDZCQUE2QjtrR0FBN0IsNkJBQTZCLCtGQTNEOUI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztVQTBDRiwyREFJTixZQUFZLDRIQUNaLFdBQVcsOFZBQ1gsaUJBQWlCLHlpQkFDakIsWUFBWSxpS0FDWixjQUFjLGlYQUNkLGlCQUFpQix1VkFFakIsZUFBZSxxYkFDZixrQkFBa0IsOEJBQ2xCLG1CQUFtQjs7MkZBSVYsNkJBQTZCO2tCQTVEekMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUU7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztVQTBDRjtvQkFDUixVQUFVLEVBQUUsSUFBSTtvQkFDaEIsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLE9BQU8sRUFBRTt3QkFDUCxZQUFZO3dCQUNaLFdBQVc7d0JBQ1gsaUJBQWlCO3dCQUNqQixZQUFZO3dCQUNaLGNBQWM7d0JBQ2QsaUJBQWlCO3dCQUNqQixpQkFBaUI7d0JBQ2pCLGVBQWU7d0JBQ2Ysa0JBQWtCO3dCQUNsQixtQkFBbUI7cUJBQ3BCO29CQUNELE1BQU0sRUFBRSxFQUFFO2lCQUNYIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhCdXR0b25Nb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvYnV0dG9uJztcbmltcG9ydCB7IEFYRGF0YVNvdXJjZSwgQVhWYWx1ZUNoYW5nZWRFdmVudCB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9jb21tb24nO1xuaW1wb3J0IHsgQVhEZWNvcmF0b3JNb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvZGVjb3JhdG9ycyc7XG5pbXBvcnQgeyBBWEZvcm1Nb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvZm9ybSc7XG5pbXBvcnQgeyBBWFBvcHVwQ29uZmlnLCBBWFBvcHVwU2VydmljZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9wb3B1cCc7XG5pbXBvcnQgeyBBWFNlbGVjdEJveE1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9zZWxlY3QtYm94JztcbmltcG9ydCB7IEFYVGV4dEJveE1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy90ZXh0LWJveCc7XG5pbXBvcnQgeyBBWFRyYW5zbGF0aW9uTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb3JlL3RyYW5zbGF0aW9uJztcbmltcG9ydCB7IEFYVmFsaWRhdGlvbk1vZHVsZSwgQVhWYWxpZGF0aW9uU2VydmljZSB9IGZyb20gJ0BhY29yZXgvY29yZS92YWxpZGF0aW9uJztcbmltcG9ydCB7IEFYUFZhbGlkYXRpb25SdWxlcyB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vY29tbW9uJztcbmltcG9ydCB7IEFYUFdpZGdldEJhc2UgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9idWlsZGVyJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBTaWduYWwsIGNvbXB1dGVkLCBpbmplY3QsIHNpZ25hbCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRm9ybXNNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBwb3B1cENvbXBvbmVudCB9IGZyb20gJy4vcG9wdXAtY29tcG9uZW50JztcblxuQENvbXBvbmVudCh7XG4gIHRlbXBsYXRlOiBgPGRpdiBjbGFzcz1cImF4LWdyaWQgYXgtZ3JpZC1jb2xzLTEyIGF4LWdhcC00XCI+XG4gICAgQGZvcihpdGVtIG9mIGludGVybmFsVmFsdWUoKTt0cmFjayAkaW5kZXgpIHtcbiAgICA8YXgtdGV4dC1ib3hcbiAgICAgIFtuZ01vZGVsXT1cIml0ZW0udmFsdWVcIlxuICAgICAgKG9uVmFsdWVDaGFuZ2VkKT1cImhhbmRsZVZhbHVlQ2hhbmdlKCRldmVudCwgJGluZGV4KVwiXG4gICAgICB0eXBlPVwidGV4dFwiXG4gICAgICBuYW1lPVwidmFsdWVcIlxuICAgICAgcGxhY2Vob2xkZXI9XCJFbnRlciB7eyB3aWRnZXRUeXBlIH19IC4uLlwiXG4gICAgICBbbmdDbGFzc109XCJnZW5lcmF0ZUNsYXNzZXMoJ3ZhbHVlJylcIlxuICAgID5cbiAgICAgIEBmb3IgKHZhbGlkYXRpb24gb2YgdmFsaWRhdGlvblJ1bGVzOyB0cmFjayAkaW5kZXgpIHtcbiAgICAgIDxheC12YWxpZGF0aW9uLXJ1bGUgW3J1bGVdPVwidmFsaWRhdGlvbi5ydWxlXCIgW21lc3NhZ2VdPVwidmFsaWRhdGlvbi5vcHRpb25zPy5tZXNzYWdlXCIgW29wdGlvbnNdPVwidmFsaWRhdGlvbi5vcHRpb25zXCI+PC9heC12YWxpZGF0aW9uLXJ1bGU+XG4gICAgICB9XG4gICAgICA8YXgtdmFsaWRhdGlvbi1ydWxlIG1lc3NhZ2U9XCJmaWVsZCBjYW4ndCBiZSBlbXB0eVwiIHJ1bGU9XCJyZXF1aXJlZFwiPiA8L2F4LXZhbGlkYXRpb24tcnVsZT5cbiAgICA8L2F4LXRleHQtYm94PlxuICAgIEBpZihoYXNMYWJsZSl7XG4gICAgPGF4LXNlbGVjdC1ib3hcbiAgICAgIFtkYXRhU291cmNlXT1cImRhdGFTb3VyY2VcIlxuICAgICAgW25nTW9kZWxdPVwiaXRlbS5sYWJsZVwiXG4gICAgICAob25WYWx1ZUNoYW5nZWQpPVwiaGFuZGxlVmFsdWVDaGFuZ2UoJGV2ZW50LCAkaW5kZXgpXCJcbiAgICAgIHBsYWNlaG9sZGVyPVwiQ2hvb3NlIGxhYmxlLi4uXCJcbiAgICAgIG5hbWU9XCJsYWJsZVwiXG4gICAgICBbbmdDbGFzc109XCJnZW5lcmF0ZUNsYXNzZXMoJ2xhYmxlJylcIlxuICAgID5cbiAgICA8L2F4LXNlbGVjdC1ib3g+XG4gICAgfSBAaWYobXVsdGlwbGUpe1xuICAgIDxheC1idXR0b24gbG9vaz1cInR3b3RvbmVcIiBjb2xvcj1cImRhbmdlclwiIChvbkNsaWNrKT1cImRlbGV0ZUl0ZW0oJGluZGV4KVwiIGNsYXNzPVwiYXgtY29sLXN0YXJ0LTEyIGF4LWNvbC1lbmQtMTMgYXgtanVzdGlmeS1zZWxmLWVuZFwiPlxuICAgICAgPGF4LWljb24gaWNvbj1cImZhLXJlZ3VsYXIgZmEteG1hcmtcIj48L2F4LWljb24+XG4gICAgPC9heC1idXR0b24+XG4gICAgfSB9IEBpZihtdWx0aXBsZSl7XG5cbiAgICA8YXgtYnV0dG9uXG4gICAgICBbdGV4dF09XCJpbnRlcm5hbFZhbHVlKCkubGVuZ3RoID09IDAgPyAnQWRkIE5ldycgOiAnQWRkIEFub3RoZXInXCJcbiAgICAgIGxvb2s9XCJ0d290b25lXCJcbiAgICAgIChvbkNsaWNrKT1cImFkZEl0ZW0oKVwiXG4gICAgICBjbGFzcz1cImF4LWNvbC1zdGFydC04IGxnOmF4LWNvbC1zdGFydC0xMCAyeGw6YXgtY29sLXN0YXJ0LTEwIGF4LWNvbC1lbmQtMTNcIlxuICAgID5cbiAgICAgIDxheC1wcmVmaXg+XG4gICAgICAgIDxheC1pY29uIGNsYXNzPVwiZmEtc29saWQgZmEtYWRkXCI+PC9heC1pY29uPlxuICAgICAgPC9heC1wcmVmaXg+XG4gICAgPC9heC1idXR0b24+XG4gICAgfVxuICA8L2Rpdj4gYCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgRm9ybXNNb2R1bGUsXG4gICAgQVhTZWxlY3RCb3hNb2R1bGUsXG4gICAgQVhGb3JtTW9kdWxlLFxuICAgIEFYQnV0dG9uTW9kdWxlLFxuICAgIEFYRGVjb3JhdG9yTW9kdWxlLFxuICAgIEFYU2VsZWN0Qm94TW9kdWxlLFxuICAgIEFYVGV4dEJveE1vZHVsZSxcbiAgICBBWFZhbGlkYXRpb25Nb2R1bGUsXG4gICAgQVhUcmFuc2xhdGlvbk1vZHVsZSxcbiAgXSxcbiAgaW5wdXRzOiBbXSxcbn0pXG5leHBvcnQgY2xhc3MgQVhQQ29udGFjdFdpZGdldEVkaXRDb21wb25lbnQgZXh0ZW5kcyBBWFBXaWRnZXRCYXNlPGFueT4ge1xuICAvL3Byb3BlcnRpZXNcbiAgcHJvdGVjdGVkIHdpZGdldFR5cGUhOiAnbGluaycgfCAncGhvbmUnIHwgJ2VtYWlsJztcbiAgcHJvdGVjdGVkIGxhYmxlTGlzdCA9IHNpZ25hbChbJ3ByaW1hcnknLCAnc2Vjb25kYXJ5JywgJ0FkZCBOZXcnXSk7XG4gIHByb3RlY3RlZCBtdWx0aXBsZSE6IGJvb2xlYW47XG4gIHByb3RlY3RlZCBoYXNMYWJsZSE6IGJvb2xlYW47XG4gIHByb3RlY3RlZCBoYXNJY29uITogYm9vbGVhbjtcbiAgcHJpdmF0ZSBwb3B1cDogQVhQb3B1cFNlcnZpY2UgPSBpbmplY3QoQVhQb3B1cFNlcnZpY2UpO1xuICBwcm90ZWN0ZWQgZGF0YVNvdXJjZSA9IG5ldyBBWERhdGFTb3VyY2Uoe1xuICAgIHBhZ2VTaXplOiB0aGlzLmxhYmxlTGlzdCgpLmxlbmd0aCxcbiAgICBsb2FkOiAoZSkgPT4ge1xuICAgICAgcmV0dXJuIFByb21pc2UucmVzb2x2ZSh7XG4gICAgICAgIGl0ZW1zOiB0aGlzLmxhYmxlTGlzdCgpLnNsaWNlKGUuc2tpcCwgKGUuc2tpcCA/PyAwKSArIChlLnRha2UgPz8gMCkpLFxuICAgICAgICB0b3RhbDogdGhpcy5sYWJsZUxpc3QoKS5sZW5ndGgsXG4gICAgICB9KTtcbiAgICB9LFxuICAgIGJ5S2V5OiAoa2V5KSA9PiB7XG4gICAgICByZXR1cm4gUHJvbWlzZS5yZXNvbHZlKHRoaXMubGFibGVMaXN0KCkuZmluZCgoaSkgPT4gaSA9PT0ga2V5KSk7XG4gICAgfSxcbiAgfSk7XG4gIHByb3RlY3RlZCBpbnRlcm5hbFZhbHVlOiBTaWduYWw8QVhQQ29udGFjdERhdGFUeXBlW10+ID0gY29tcHV0ZWQoKCkgPT4gdGhpcy52YWx1ZVRvQXJyYXkoKSk7XG4gIHByb3RlY3RlZCBhZGRJdGVtKCkge1xuICAgIGNvbnN0IG5ld1ZhbHVlczogQVhQQ29udGFjdERhdGFUeXBlW10gPSBbLi4udGhpcy5pbnRlcm5hbFZhbHVlKCksIHRoaXMuZW1wdHlWYWx1ZSgpXTtcbiAgICB0aGlzLnNldFZhbHVlKG5ld1ZhbHVlcyk7XG4gIH1cbiAgcHJvdGVjdGVkIGRlbGV0ZUl0ZW0oZGVsZXRlZEluZGV4OiBudW1iZXIpIHtcbiAgICBjb25zdCBuZXdWYWx1ZXMgPSB0aGlzLmludGVybmFsVmFsdWUoKS5maWx0ZXIoKF8sIGluZGV4KSA9PiBpbmRleCAhPSBkZWxldGVkSW5kZXgpO1xuICAgIHRoaXMuc2V0VmFsdWUobmV3VmFsdWVzKTtcbiAgfVxuICBwcm90ZWN0ZWQgYXN5bmMgaGFuZGxlVmFsdWVDaGFuZ2UoZTogQVhWYWx1ZUNoYW5nZWRFdmVudCwgc2VsZWN0ZWRJbmRleDogbnVtYmVyKSB7XG4gICAgbGV0IHsgbmFtZSwgdmFsdWUsIGlzVXNlckludGVyYWN0aW9uIH0gPSBlO1xuICAgIGlmIChpc1VzZXJJbnRlcmFjdGlvbikge1xuICAgICAgaWYgKGUubmFtZSA9PT0gJ2xhYmxlJykge1xuICAgICAgICBpZiAoZS52YWx1ZSA9PT0gJ0FkZCBOZXcnKSB7XG4gICAgICAgICAgY29uc3Qgb3B0aW9uczogQVhQb3B1cENvbmZpZyA9IHtcbiAgICAgICAgICAgIHRpdGxlOiAnRW50ZXIgTGFibGUuLi4nLFxuICAgICAgICAgICAgLy8gaGVhZGVyOiBmYWxzZSxcbiAgICAgICAgICAgIC8vIGZvb3RlcjogdHJ1ZSxcbiAgICAgICAgICAgIHNpemU6ICdzbScsXG4gICAgICAgICAgICBkcmFnZ2FibGU6IHRydWUsXG4gICAgICAgICAgICAvLyBoYXNCYWNrZHJvcDogdHJ1ZSxcbiAgICAgICAgICAgIC8vIGNsb3NlQnV0dG9uOiB0cnVlLFxuICAgICAgICAgICAgLy8gY2xvc2VPbkJhY2tkcm9wQ2xpY2s6IHRydWUsXG4gICAgICAgICAgfTtcbiAgICAgICAgICBjb25zdCBuZXdWYWx1ZSA9IGF3YWl0IHRoaXMucG9wdXAub3Blbihwb3B1cENvbXBvbmVudCwgeyAuLi5vcHRpb25zIH0pLnRoZW4oKGUpID0+IGUuZGF0YSk7XG4gICAgICAgICAgdmFsdWUgPSBuZXdWYWx1ZS52YWx1ZTtcbiAgICAgICAgICB0aGlzLmxhYmxlTGlzdCgpLnBvcCgpO1xuICAgICAgICAgIHRoaXMubGFibGVMaXN0KCkucHVzaCh2YWx1ZSwgJ0FkZCBOZXcnKTtcbiAgICAgICAgICB0aGlzLmRhdGFTb3VyY2UucmVmcmVzaCgpO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuICAgIGNvbnN0IG5ld1ZhbHVlcyA9IHRoaXMuaW50ZXJuYWxWYWx1ZSgpLm1hcCgoaXRlbSwgaW5kZXgpID0+IChzZWxlY3RlZEluZGV4ID09PSBpbmRleCA/IHsgLi4uaXRlbSwgW25hbWUgYXMgc3RyaW5nXTogdmFsdWUgfSA6IGl0ZW0pKTtcbiAgICBpZiAodGhpcy5tdWx0aXBsZSkgdGhpcy5zZXRWYWx1ZShuZXdWYWx1ZXMpO1xuICAgIGVsc2UgdGhpcy5zZXRWYWx1ZShuZXdWYWx1ZXNbMF0pO1xuICB9XG4gIHByb3RlY3RlZCBnZW5lcmF0ZUNsYXNzZXMoZWxlbWVudDogJ3ZhbHVlJyB8ICdsYWJsZScpOiBzdHJpbmcgfCBhbnkge1xuICAgIGlmICh0aGlzLm11bHRpcGxlKSB7XG4gICAgICBpZiAodGhpcy5oYXNMYWJsZSkge1xuICAgICAgICBpZiAoZWxlbWVudCA9PT0gJ3ZhbHVlJykge1xuICAgICAgICAgIHJldHVybiAnYXgtY29sLXN0YXJ0LTEgYXgtY29sLWVuZC0xMyBsZzpheC1jb2wtZW5kLTcnO1xuICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgIHJldHVybiAnYXgtY29sLXN0YXJ0LTEgYXgtY29sLWVuZC0xMSBsZzpheC1jb2wtc3RhcnQtNyBsZzpheC1jb2wtZW5kLTEyJztcbiAgICAgICAgfVxuICAgICAgfSBlbHNlIHtcbiAgICAgICAgaWYgKGVsZW1lbnQgPT09ICd2YWx1ZScpIHtcbiAgICAgICAgICByZXR1cm4gJ2F4LWNvbC1zdGFydC0xIGF4LWNvbC1lbmQtMTInO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfSBlbHNlIHtcbiAgICAgIGlmICh0aGlzLmhhc0xhYmxlKSB7XG4gICAgICAgIGlmIChlbGVtZW50ID09PSAndmFsdWUnKSB7XG4gICAgICAgICAgcmV0dXJuICdheC1jb2wtc3RhcnQtMSBheC1jb2wtZW5kLTEzIGxnOmF4LWNvbC1lbmQtNyc7XG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgcmV0dXJuICdheC1jb2wtc3RhcnQtMSBheC1jb2wtZW5kLTEzIGxnOmF4LWNvbC1zdGFydC03IGxnOmF4LWNvbC1lbmQtMTMnO1xuICAgICAgICB9XG4gICAgICB9IGVsc2Uge1xuICAgICAgICBpZiAoZWxlbWVudCA9PT0gJ3ZhbHVlJykge1xuICAgICAgICAgIHJldHVybiAnYXgtY29sLXN0YXJ0LTEgYXgtY29sLWVuZC0xMyc7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9XG4gIH1cbiAgcHJvdGVjdGVkIHZhbGlkYXRpb25TZXJ2aWNlID0gaW5qZWN0KEFYVmFsaWRhdGlvblNlcnZpY2UpO1xuICBwcml2YXRlIF92YWxpZGF0aW9uUnVsZXM6IEFYUFZhbGlkYXRpb25SdWxlcyA9IFtdO1xuICBwdWJsaWMgZ2V0IHZhbGlkYXRpb25SdWxlcygpOiBBWFBWYWxpZGF0aW9uUnVsZXMge1xuICAgIHJldHVybiB0aGlzLl92YWxpZGF0aW9uUnVsZXM7XG4gIH1cbiAgcHVibGljIHNldCB2YWxpZGF0aW9uUnVsZXModjogQVhQVmFsaWRhdGlvblJ1bGVzKSB7XG4gICAgdGhpcy5fdmFsaWRhdGlvblJ1bGVzID0gdjtcbiAgfVxuICBwcml2YXRlIHZhbHVlVG9BcnJheSgpOiBBWFBDb250YWN0RGF0YVR5cGVbXSB7XG4gICAgY29uc3QgdmFsdWU6IEFYUENvbnRhY3REYXRhVHlwZSB8IHN0cmluZyA9IHRoaXMuZ2V0VmFsdWUoKTtcbiAgICBpZiAoQXJyYXkuaXNBcnJheSh2YWx1ZSkpIHtcbiAgICAgIHJldHVybiB2YWx1ZS5tYXAoKGl0ZW0pID0+IHRoaXMuaXRlbVRvQXJyYXkoaXRlbSkpO1xuICAgIH0gZWxzZSB7XG4gICAgICByZXR1cm4gW3RoaXMuaXRlbVRvQXJyYXkodmFsdWUpXTtcbiAgICB9XG4gIH1cbiAgcHJpdmF0ZSBpdGVtVG9BcnJheSA9IChpdGVtOiBBWFBDb250YWN0RGF0YVR5cGUgfCBzdHJpbmcpOiBBWFBDb250YWN0RGF0YVR5cGUgPT4ge1xuICAgIGlmICh0eXBlb2YgaXRlbSA9PT0gJ29iamVjdCcpXG4gICAgICByZXR1cm4ge1xuICAgICAgICB2YWx1ZTogaXRlbS52YWx1ZSA/PyAnJyxcbiAgICAgICAgbGFibGU6IHRoaXMuaGFzTGFibGUgPyBpdGVtLmxhYmxlIHx8IHRoaXMubGFibGVMaXN0KClbMF0gOiB1bmRlZmluZWQsXG4gICAgICAgIGljb246IHRoaXMuaGFzSWNvbiA/IGl0ZW0uaWNvbiB8fCB0aGlzLmNob29zZUljb24oKSA6IHVuZGVmaW5lZCxcbiAgICAgIH07XG4gICAgZWxzZVxuICAgICAgcmV0dXJuIHtcbiAgICAgICAgdmFsdWU6IGl0ZW0sXG4gICAgICAgIGxhYmxlOiB0aGlzLmhhc0xhYmxlID8gdGhpcy5sYWJsZUxpc3QoKVswXSA6IHVuZGVmaW5lZCxcbiAgICAgICAgaWNvbjogdGhpcy5oYXNJY29uID8gdGhpcy5jaG9vc2VJY29uKCkgOiB1bmRlZmluZWQsXG4gICAgICB9O1xuICB9O1xuICBwcml2YXRlIGVtcHR5VmFsdWUoKTogQVhQQ29udGFjdERhdGFUeXBlIHtcbiAgICByZXR1cm4ge1xuICAgICAgdmFsdWU6ICcnLFxuICAgIH07XG4gIH1cbiAgcHJpdmF0ZSBjaG9vc2VJY29uID0gKCk6IHN0cmluZyA9PiB7XG4gICAgc3dpdGNoICh0aGlzLndpZGdldFR5cGUpIHtcbiAgICAgIGNhc2UgJ2VtYWlsJzpcbiAgICAgICAgcmV0dXJuICdmYS1saW5rJztcbiAgICAgIGNhc2UgJ2xpbmsnOlxuICAgICAgICByZXR1cm4gJ2ZhLWVudmVsb3BlJztcbiAgICAgIGNhc2UgJ3Bob25lJzpcbiAgICAgICAgcmV0dXJuICdmYS1waG9uZSc7XG4gICAgICBkZWZhdWx0OlxuICAgICAgICByZXR1cm4gJ2ZhLWluZm8nO1xuICAgIH1cbiAgfTtcbn1cbmludGVyZmFjZSBBWFBDb250YWN0RGF0YVR5cGUge1xuICB2YWx1ZTogc3RyaW5nO1xuICBsYWJsZT86IHN0cmluZztcbiAgaWNvbj86IHN0cmluZztcbn1cbiJdfQ==
@@ -1,20 +0,0 @@
1
- import { AXPWidgetBase } 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 AXPContactWidgetFilterComponent extends AXPWidgetBase {
7
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPContactWidgetFilterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
8
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPContactWidgetFilterComponent, 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.0.2", ngImport: i0, type: AXPContactWidgetFilterComponent, 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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udGFjdC13aWRnZXQtZmlsdGVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vd2lkZ2V0cy9zcmMvbGliL2VkaXRvcnMvY29udGFjdC13aWRnZXQvY29udGFjdC13aWRnZXQtZmlsdGVyLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDaEUsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQVUsTUFBTSxlQUFlLENBQUM7QUFDM0UsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdCQUFnQixDQUFDOztBQVM3QyxNQUFNLE9BQU8sK0JBQWdDLFNBQVEsYUFBa0I7OEdBQTFELCtCQUErQjtrR0FBL0IsK0JBQStCLCtGQU5oQyxFQUFFLDJEQUdGLFlBQVksOEJBQUUsV0FBVzs7MkZBR3hCLCtCQUErQjtrQkFQM0MsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsRUFBRTtvQkFDWixVQUFVLEVBQUUsSUFBSTtvQkFDaEIsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxXQUFXLENBQUM7b0JBQ3BDLE1BQU0sRUFBRSxFQUFFO2lCQUNYIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhQV2lkZ2V0QmFzZSB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vbGF5b3V0L2J1aWxkZXInO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIGluamVjdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRm9ybXNNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5cbkBDb21wb25lbnQoe1xuICB0ZW1wbGF0ZTogYGAsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBGb3Jtc01vZHVsZV0sXG4gIGlucHV0czogW11cbn0pXG5leHBvcnQgY2xhc3MgQVhQQ29udGFjdFdpZGdldEZpbHRlckNvbXBvbmVudCBleHRlbmRzIEFYUFdpZGdldEJhc2U8YW55PiB7fSJdfQ==
@@ -1,19 +0,0 @@
1
- import { AXPWidgetBase } 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 AXPContactWidgetPrintComponent extends AXPWidgetBase {
6
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPContactWidgetPrintComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
7
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPContactWidgetPrintComponent, 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.0.2", ngImport: i0, type: AXPContactWidgetPrintComponent, 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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udGFjdC13aWRnZXQtcHJpbnQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS93aWRnZXRzL3NyYy9saWIvZWRpdG9ycy9jb250YWN0LXdpZGdldC9jb250YWN0LXdpZGdldC1wcmludC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ2hFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFVLE1BQU0sZUFBZSxDQUFDOztBQVEzRSxNQUFNLE9BQU8sOEJBQStCLFNBQVEsYUFBa0I7OEdBQXpELDhCQUE4QjtrR0FBOUIsOEJBQThCLCtGQU4vQixFQUFFLDJEQUdGLFlBQVk7OzJGQUdYLDhCQUE4QjtrQkFQMUMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsRUFBRTtvQkFDWixVQUFVLEVBQUUsSUFBSTtvQkFDaEIsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLE9BQU8sRUFBRSxDQUFDLFlBQVksQ0FBQztvQkFDdkIsTUFBTSxFQUFFLEVBQUU7aUJBQ1giLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWFBXaWRnZXRCYXNlIH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgaW5qZWN0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5AQ29tcG9uZW50KHtcbiAgdGVtcGxhdGU6IGBgLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gIGlucHV0czogW11cbn0pXG5leHBvcnQgY2xhc3MgQVhQQ29udGFjdFdpZGdldFByaW50Q29tcG9uZW50IGV4dGVuZHMgQVhQV2lkZ2V0QmFzZTxhbnk+IHt9Il19