@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
@@ -18,11 +18,11 @@ export class AXPError401Component {
18
18
  handleSignInClick() {
19
19
  this.router.navigate([`/auth/login`]);
20
20
  }
21
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPError401Component, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
22
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPError401Component, isStandalone: true, selector: "axp-error-401", ngImport: i0, template: "<div class=\"ax-h-full ax-flex ax-flex-col ax-gap-8 ax-items-center ax-justify-center\">\n <img class=\"ax-w-3/4 md:ax-w-1/2 lg:ax-w-1/3 xl:ax-w-1/4\" src=\"/assets/images/error/error-401.svg\"\n alt=\"Oops! Error 404. No result found.\">\n <div class=\"ax-flex ax-flex-col ax-items-center ax-gap-2 md:ax-gap-4\">\n <h1 class=\"ax-font-bold ax-text-2xl md:ax-text-4xl\">Hold on a second!</h1>\n <p class=\"md:ax-text-lg ax-text-neutral-400\">Sorry, but you are not authorized to view this page.</p>\n </div>\n <div class=\"ax-flex ax-flex-col ax-gap-2 md:ax-gap-4 md:ax-flex-row\">\n @if((isAuthorized$ | async))\n {\n <ax-button (onClick)=\"handleHomeClick()\" class=\"ax-px-4\" color=\"primary\" text=\"Go back to home\"></ax-button>\n } @else {\n <ax-button (onClick)=\"handleSignInClick()\" class=\"ax-px-4\" color=\"primary\" text=\"Sign Up / Sign In\"></ax-button>\n }\n <ax-button class=\"ax-px-4\" color=\"ghost\" text=\"Contact us\"></ax-button>\n </div>\n</div>", dependencies: [{ kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i1.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: CommonModule }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }] }); }
21
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPError401Component, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
22
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPError401Component, isStandalone: true, selector: "axp-error-401", ngImport: i0, template: "<div class=\"ax-h-full ax-flex ax-flex-col ax-gap-8 ax-items-center ax-justify-center\">\n <img class=\"ax-w-3/4 md:ax-w-1/2 lg:ax-w-1/3 xl:ax-w-1/4\" src=\"/assets/images/error/error-401.svg\"\n alt=\"Oops! Error 404. No result found.\">\n <div class=\"ax-flex ax-flex-col ax-items-center ax-gap-2 md:ax-gap-4\">\n <h1 class=\"ax-font-bold ax-text-2xl md:ax-text-4xl\">Hold on a second!</h1>\n <p class=\"md:ax-text-lg ax-text-neutral-400\">Sorry, but you are not authorized to view this page.</p>\n </div>\n <div class=\"ax-flex ax-flex-col ax-gap-2 md:ax-gap-4 md:ax-flex-row\">\n @if((isAuthorized$ | async))\n {\n <ax-button (onClick)=\"handleHomeClick()\" class=\"ax-px-4\" color=\"primary\" text=\"Go back to home\"></ax-button>\n } @else {\n <ax-button (onClick)=\"handleSignInClick()\" class=\"ax-px-4\" color=\"primary\" text=\"Sign Up / Sign In\"></ax-button>\n }\n <ax-button class=\"ax-px-4\" color=\"ghost\" text=\"Contact us\"></ax-button>\n </div>\n</div>", dependencies: [{ kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i1.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }, { kind: "ngmodule", type: CommonModule }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }] }); }
23
23
  }
24
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPError401Component, decorators: [{
24
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPError401Component, decorators: [{
25
25
  type: Component,
26
26
  args: [{ selector: 'axp-error-401', imports: [AXButtonModule, CommonModule], standalone: true, template: "<div class=\"ax-h-full ax-flex ax-flex-col ax-gap-8 ax-items-center ax-justify-center\">\n <img class=\"ax-w-3/4 md:ax-w-1/2 lg:ax-w-1/3 xl:ax-w-1/4\" src=\"/assets/images/error/error-401.svg\"\n alt=\"Oops! Error 404. No result found.\">\n <div class=\"ax-flex ax-flex-col ax-items-center ax-gap-2 md:ax-gap-4\">\n <h1 class=\"ax-font-bold ax-text-2xl md:ax-text-4xl\">Hold on a second!</h1>\n <p class=\"md:ax-text-lg ax-text-neutral-400\">Sorry, but you are not authorized to view this page.</p>\n </div>\n <div class=\"ax-flex ax-flex-col ax-gap-2 md:ax-gap-4 md:ax-flex-row\">\n @if((isAuthorized$ | async))\n {\n <ax-button (onClick)=\"handleHomeClick()\" class=\"ax-px-4\" color=\"primary\" text=\"Go back to home\"></ax-button>\n } @else {\n <ax-button (onClick)=\"handleSignInClick()\" class=\"ax-px-4\" color=\"primary\" text=\"Sign Up / Sign In\"></ax-button>\n }\n <ax-button class=\"ax-px-4\" color=\"ghost\" text=\"Contact us\"></ax-button>\n </div>\n</div>" }]
27
27
  }] });
28
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXJyb3ItNDAxLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vdGhlbWVzL2RlZmF1bHQvc3JjL2xpYi9wYWdlcy9lcnJvcnMvZXJyb3ItNDAxL2Vycm9yLTQwMS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3RoZW1lcy9kZWZhdWx0L3NyYy9saWIvcGFnZXMvZXJyb3JzL2Vycm9yLTQwMS9lcnJvci00MDEuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBQzNELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBQzFELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUUvQyxPQUFPLEVBQUUsU0FBUyxFQUFVLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMxRCxPQUFPLEVBQUUsTUFBTSxFQUFFLE1BQU0saUJBQWlCLENBQUM7Ozs7QUFRekMsTUFBTSxPQUFPLG9CQUFvQjtJQU5qQztRQVFVLG1CQUFjLEdBQUcsTUFBTSxDQUFDLGlCQUFpQixDQUFDLENBQUM7UUFDM0MsV0FBTSxHQUFHLE1BQU0sQ0FBQyxNQUFNLENBQUMsQ0FBQztRQUN0QixrQkFBYSxHQUFHLElBQUksQ0FBQyxjQUFjLENBQUMsYUFBYSxDQUFDO0tBUzdEO0lBUFcsZUFBZTtRQUN2QixJQUFJLENBQUMsTUFBTSxDQUFDLFFBQVEsQ0FBQyxDQUFDLElBQUksSUFBSSxDQUFDLGNBQWMsQ0FBQyxXQUFXLEVBQUUsSUFBSSxPQUFPLENBQUMsQ0FBQyxDQUFDO0lBQzNFLENBQUM7SUFFUyxpQkFBaUI7UUFDekIsSUFBSSxDQUFDLE1BQU0sQ0FBQyxRQUFRLENBQUMsQ0FBQyxhQUFhLENBQUMsQ0FBQyxDQUFDO0lBQ3hDLENBQUM7OEdBWlUsb0JBQW9CO2tHQUFwQixvQkFBb0IseUVDYmpDLGtpQ0FnQk0sMkNETk0sY0FBYyxpWEFBRSxZQUFZOzsyRkFHM0Isb0JBQW9CO2tCQU5oQyxTQUFTOytCQUNFLGVBQWUsV0FFaEIsQ0FBQyxjQUFjLEVBQUUsWUFBWSxDQUFDLGNBQzNCLElBQUkiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWEJ1dHRvbk1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9idXR0b24nO1xuaW1wb3J0IHsgQVhQU2Vzc2lvblNlcnZpY2UgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2F1dGgnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcblxuaW1wb3J0IHsgQ29tcG9uZW50LCBPbkluaXQsIGluamVjdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgUm91dGVyIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXhwLWVycm9yLTQwMScsXG4gIHRlbXBsYXRlVXJsOiAnLi9lcnJvci00MDEuY29tcG9uZW50Lmh0bWwnLFxuICBpbXBvcnRzOiBbQVhCdXR0b25Nb2R1bGUsIENvbW1vbk1vZHVsZV0sXG4gIHN0YW5kYWxvbmU6IHRydWUsXG59KVxuZXhwb3J0IGNsYXNzIEFYUEVycm9yNDAxQ29tcG9uZW50IHtcblxuICBwcml2YXRlIHNlc3Npb25TZXJ2aWNlID0gaW5qZWN0KEFYUFNlc3Npb25TZXJ2aWNlKTtcbiAgcHJpdmF0ZSByb3V0ZXIgPSBpbmplY3QoUm91dGVyKTtcbiAgcHJvdGVjdGVkIGlzQXV0aG9yaXplZCQgPSB0aGlzLnNlc3Npb25TZXJ2aWNlLmlzQXV0aG9yaXplZCQ7XG5cbiAgcHJvdGVjdGVkIGhhbmRsZUhvbWVDbGljaygpIHtcbiAgICB0aGlzLnJvdXRlci5uYXZpZ2F0ZShbYC8ke3RoaXMuc2Vzc2lvblNlcnZpY2UuYXBwbGljYXRpb24/Lm5hbWV9L2hvbWVgXSk7XG4gIH1cblxuICBwcm90ZWN0ZWQgaGFuZGxlU2lnbkluQ2xpY2soKSB7XG4gICAgdGhpcy5yb3V0ZXIubmF2aWdhdGUoW2AvYXV0aC9sb2dpbmBdKTtcbiAgfVxufVxuIiwiPGRpdiBjbGFzcz1cImF4LWgtZnVsbCBheC1mbGV4IGF4LWZsZXgtY29sIGF4LWdhcC04IGF4LWl0ZW1zLWNlbnRlciBheC1qdXN0aWZ5LWNlbnRlclwiPlxuICAgIDxpbWcgY2xhc3M9XCJheC13LTMvNCBtZDpheC13LTEvMiBsZzpheC13LTEvMyB4bDpheC13LTEvNFwiIHNyYz1cIi9hc3NldHMvaW1hZ2VzL2Vycm9yL2Vycm9yLTQwMS5zdmdcIlxuICAgICAgICBhbHQ9XCJPb3BzISBFcnJvciA0MDQuIE5vIHJlc3VsdCBmb3VuZC5cIj5cbiAgICA8ZGl2IGNsYXNzPVwiYXgtZmxleCBheC1mbGV4LWNvbCBheC1pdGVtcy1jZW50ZXIgYXgtZ2FwLTIgbWQ6YXgtZ2FwLTRcIj5cbiAgICAgICAgPGgxIGNsYXNzPVwiYXgtZm9udC1ib2xkIGF4LXRleHQtMnhsIG1kOmF4LXRleHQtNHhsXCI+SG9sZCBvbiBhIHNlY29uZCE8L2gxPlxuICAgICAgICA8cCBjbGFzcz1cIm1kOmF4LXRleHQtbGcgYXgtdGV4dC1uZXV0cmFsLTQwMFwiPlNvcnJ5LCBidXQgeW91IGFyZSBub3QgYXV0aG9yaXplZCB0byB2aWV3IHRoaXMgcGFnZS48L3A+XG4gICAgPC9kaXY+XG4gICAgPGRpdiBjbGFzcz1cImF4LWZsZXggYXgtZmxleC1jb2wgYXgtZ2FwLTIgbWQ6YXgtZ2FwLTQgbWQ6YXgtZmxleC1yb3dcIj5cbiAgICAgICAgQGlmKChpc0F1dGhvcml6ZWQkIHwgYXN5bmMpKVxuICAgICAgICB7XG4gICAgICAgIDxheC1idXR0b24gKG9uQ2xpY2spPVwiaGFuZGxlSG9tZUNsaWNrKClcIiBjbGFzcz1cImF4LXB4LTRcIiBjb2xvcj1cInByaW1hcnlcIiB0ZXh0PVwiR28gYmFjayB0byBob21lXCI+PC9heC1idXR0b24+XG4gICAgICAgIH0gQGVsc2Uge1xuICAgICAgICA8YXgtYnV0dG9uIChvbkNsaWNrKT1cImhhbmRsZVNpZ25JbkNsaWNrKClcIiBjbGFzcz1cImF4LXB4LTRcIiBjb2xvcj1cInByaW1hcnlcIiB0ZXh0PVwiU2lnbiBVcCAvIFNpZ24gSW5cIj48L2F4LWJ1dHRvbj5cbiAgICAgICAgfVxuICAgICAgICA8YXgtYnV0dG9uIGNsYXNzPVwiYXgtcHgtNFwiIGNvbG9yPVwiZ2hvc3RcIiB0ZXh0PVwiQ29udGFjdCB1c1wiPjwvYXgtYnV0dG9uPlxuICAgIDwvZGl2PlxuPC9kaXY+Il19
28
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXJyb3ItNDAxLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vdGhlbWVzL2RlZmF1bHQvc3JjL2xpYi9wYWdlcy9lcnJvcnMvZXJyb3ItNDAxL2Vycm9yLTQwMS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3RoZW1lcy9kZWZhdWx0L3NyYy9saWIvcGFnZXMvZXJyb3JzL2Vycm9yLTQwMS9lcnJvci00MDEuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBQzNELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBQzFELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUUvQyxPQUFPLEVBQUUsU0FBUyxFQUFVLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMxRCxPQUFPLEVBQUUsTUFBTSxFQUFFLE1BQU0saUJBQWlCLENBQUM7Ozs7QUFRekMsTUFBTSxPQUFPLG9CQUFvQjtJQU5qQztRQVFVLG1CQUFjLEdBQUcsTUFBTSxDQUFDLGlCQUFpQixDQUFDLENBQUM7UUFDM0MsV0FBTSxHQUFHLE1BQU0sQ0FBQyxNQUFNLENBQUMsQ0FBQztRQUN0QixrQkFBYSxHQUFHLElBQUksQ0FBQyxjQUFjLENBQUMsYUFBYSxDQUFDO0tBUzdEO0lBUFcsZUFBZTtRQUN2QixJQUFJLENBQUMsTUFBTSxDQUFDLFFBQVEsQ0FBQyxDQUFDLElBQUksSUFBSSxDQUFDLGNBQWMsQ0FBQyxXQUFXLEVBQUUsSUFBSSxPQUFPLENBQUMsQ0FBQyxDQUFDO0lBQzNFLENBQUM7SUFFUyxpQkFBaUI7UUFDekIsSUFBSSxDQUFDLE1BQU0sQ0FBQyxRQUFRLENBQUMsQ0FBQyxhQUFhLENBQUMsQ0FBQyxDQUFDO0lBQ3hDLENBQUM7OEdBWlUsb0JBQW9CO2tHQUFwQixvQkFBb0IseUVDYmpDLGtpQ0FnQk0sMkNETk0sY0FBYyx1WkFBRSxZQUFZOzsyRkFHM0Isb0JBQW9CO2tCQU5oQyxTQUFTOytCQUNFLGVBQWUsV0FFaEIsQ0FBQyxjQUFjLEVBQUUsWUFBWSxDQUFDLGNBQzNCLElBQUkiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWEJ1dHRvbk1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9idXR0b24nO1xuaW1wb3J0IHsgQVhQU2Vzc2lvblNlcnZpY2UgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2F1dGgnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcblxuaW1wb3J0IHsgQ29tcG9uZW50LCBPbkluaXQsIGluamVjdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgUm91dGVyIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXhwLWVycm9yLTQwMScsXG4gIHRlbXBsYXRlVXJsOiAnLi9lcnJvci00MDEuY29tcG9uZW50Lmh0bWwnLFxuICBpbXBvcnRzOiBbQVhCdXR0b25Nb2R1bGUsIENvbW1vbk1vZHVsZV0sXG4gIHN0YW5kYWxvbmU6IHRydWUsXG59KVxuZXhwb3J0IGNsYXNzIEFYUEVycm9yNDAxQ29tcG9uZW50IHtcblxuICBwcml2YXRlIHNlc3Npb25TZXJ2aWNlID0gaW5qZWN0KEFYUFNlc3Npb25TZXJ2aWNlKTtcbiAgcHJpdmF0ZSByb3V0ZXIgPSBpbmplY3QoUm91dGVyKTtcbiAgcHJvdGVjdGVkIGlzQXV0aG9yaXplZCQgPSB0aGlzLnNlc3Npb25TZXJ2aWNlLmlzQXV0aG9yaXplZCQ7XG5cbiAgcHJvdGVjdGVkIGhhbmRsZUhvbWVDbGljaygpIHtcbiAgICB0aGlzLnJvdXRlci5uYXZpZ2F0ZShbYC8ke3RoaXMuc2Vzc2lvblNlcnZpY2UuYXBwbGljYXRpb24/Lm5hbWV9L2hvbWVgXSk7XG4gIH1cblxuICBwcm90ZWN0ZWQgaGFuZGxlU2lnbkluQ2xpY2soKSB7XG4gICAgdGhpcy5yb3V0ZXIubmF2aWdhdGUoW2AvYXV0aC9sb2dpbmBdKTtcbiAgfVxufVxuIiwiPGRpdiBjbGFzcz1cImF4LWgtZnVsbCBheC1mbGV4IGF4LWZsZXgtY29sIGF4LWdhcC04IGF4LWl0ZW1zLWNlbnRlciBheC1qdXN0aWZ5LWNlbnRlclwiPlxuICAgIDxpbWcgY2xhc3M9XCJheC13LTMvNCBtZDpheC13LTEvMiBsZzpheC13LTEvMyB4bDpheC13LTEvNFwiIHNyYz1cIi9hc3NldHMvaW1hZ2VzL2Vycm9yL2Vycm9yLTQwMS5zdmdcIlxuICAgICAgICBhbHQ9XCJPb3BzISBFcnJvciA0MDQuIE5vIHJlc3VsdCBmb3VuZC5cIj5cbiAgICA8ZGl2IGNsYXNzPVwiYXgtZmxleCBheC1mbGV4LWNvbCBheC1pdGVtcy1jZW50ZXIgYXgtZ2FwLTIgbWQ6YXgtZ2FwLTRcIj5cbiAgICAgICAgPGgxIGNsYXNzPVwiYXgtZm9udC1ib2xkIGF4LXRleHQtMnhsIG1kOmF4LXRleHQtNHhsXCI+SG9sZCBvbiBhIHNlY29uZCE8L2gxPlxuICAgICAgICA8cCBjbGFzcz1cIm1kOmF4LXRleHQtbGcgYXgtdGV4dC1uZXV0cmFsLTQwMFwiPlNvcnJ5LCBidXQgeW91IGFyZSBub3QgYXV0aG9yaXplZCB0byB2aWV3IHRoaXMgcGFnZS48L3A+XG4gICAgPC9kaXY+XG4gICAgPGRpdiBjbGFzcz1cImF4LWZsZXggYXgtZmxleC1jb2wgYXgtZ2FwLTIgbWQ6YXgtZ2FwLTQgbWQ6YXgtZmxleC1yb3dcIj5cbiAgICAgICAgQGlmKChpc0F1dGhvcml6ZWQkIHwgYXN5bmMpKVxuICAgICAgICB7XG4gICAgICAgIDxheC1idXR0b24gKG9uQ2xpY2spPVwiaGFuZGxlSG9tZUNsaWNrKClcIiBjbGFzcz1cImF4LXB4LTRcIiBjb2xvcj1cInByaW1hcnlcIiB0ZXh0PVwiR28gYmFjayB0byBob21lXCI+PC9heC1idXR0b24+XG4gICAgICAgIH0gQGVsc2Uge1xuICAgICAgICA8YXgtYnV0dG9uIChvbkNsaWNrKT1cImhhbmRsZVNpZ25JbkNsaWNrKClcIiBjbGFzcz1cImF4LXB4LTRcIiBjb2xvcj1cInByaW1hcnlcIiB0ZXh0PVwiU2lnbiBVcCAvIFNpZ24gSW5cIj48L2F4LWJ1dHRvbj5cbiAgICAgICAgfVxuICAgICAgICA8YXgtYnV0dG9uIGNsYXNzPVwiYXgtcHgtNFwiIGNvbG9yPVwiZ2hvc3RcIiB0ZXh0PVwiQ29udGFjdCB1c1wiPjwvYXgtYnV0dG9uPlxuICAgIDwvZGl2PlxuPC9kaXY+Il19
@@ -12,10 +12,10 @@ export class AXPError404Component {
12
12
  goHome() {
13
13
  this.router.navigate([`/${this.sessionService.application?.name}/home`]);
14
14
  }
15
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPError404Component, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
16
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPError404Component, isStandalone: true, selector: "axp-error-404", ngImport: i0, template: "<div class=\"ax-h-full ax-flex ax-flex-col ax-gap-8 ax-items-center ax-justify-center\">\n <img class=\"ax-w-3/4 md:ax-w-1/2 lg:ax-w-1/3 xl:ax-w-1/3\" src=\" /assets/images/error/error-404.svg\"\n alt=\"Oops! Error 404. No result found.\">\n <div class=\"ax-flex ax-flex-col ax-items-center ax-gap-2 md:ax-gap-4\">\n <h1 class=\"ax-font-bold ax-text-2xl md:ax-text-4xl\">No Result Found.</h1>\n <p class=\"md:ax-text-lg ax-text-neutral-400\">Whoops! Looks like that page doesn't exist.</p>\n </div>\n <div class=\"ax-flex ax-flex-col ax-gap-2 md:ax-gap-4 md:ax-flex-row\">\n <ax-button (onClick)=\"goHome()\" class=\"ax-px-4\" color=\"primary\" text=\"Go back to home\"></ax-button>\n <ax-button class=\"ax-px-4\" color=\"ghost\" text=\"Contact us\"></ax-button>\n </div>\n</div>", styles: [""], dependencies: [{ kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i1.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"] }] }); }
15
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPError404Component, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
16
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPError404Component, isStandalone: true, selector: "axp-error-404", ngImport: i0, template: "<div class=\"ax-h-full ax-flex ax-flex-col ax-gap-8 ax-items-center ax-justify-center\">\n <img class=\"ax-w-3/4 md:ax-w-1/2 lg:ax-w-1/3 xl:ax-w-1/3\" src=\" /assets/images/error/error-404.svg\"\n alt=\"Oops! Error 404. No result found.\">\n <div class=\"ax-flex ax-flex-col ax-items-center ax-gap-2 md:ax-gap-4\">\n <h1 class=\"ax-font-bold ax-text-2xl md:ax-text-4xl\">No Result Found.</h1>\n <p class=\"md:ax-text-lg ax-text-neutral-400\">Whoops! Looks like that page doesn't exist.</p>\n </div>\n <div class=\"ax-flex ax-flex-col ax-gap-2 md:ax-gap-4 md:ax-flex-row\">\n <ax-button (onClick)=\"goHome()\" class=\"ax-px-4\" color=\"primary\" text=\"Go back to home\"></ax-button>\n <ax-button class=\"ax-px-4\" color=\"ghost\" text=\"Contact us\"></ax-button>\n </div>\n</div>", styles: [""], dependencies: [{ kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i1.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }] }); }
17
17
  }
18
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPError404Component, decorators: [{
18
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPError404Component, decorators: [{
19
19
  type: Component,
20
20
  args: [{ selector: 'axp-error-404', imports: [AXButtonModule], standalone: true, template: "<div class=\"ax-h-full ax-flex ax-flex-col ax-gap-8 ax-items-center ax-justify-center\">\n <img class=\"ax-w-3/4 md:ax-w-1/2 lg:ax-w-1/3 xl:ax-w-1/3\" src=\" /assets/images/error/error-404.svg\"\n alt=\"Oops! Error 404. No result found.\">\n <div class=\"ax-flex ax-flex-col ax-items-center ax-gap-2 md:ax-gap-4\">\n <h1 class=\"ax-font-bold ax-text-2xl md:ax-text-4xl\">No Result Found.</h1>\n <p class=\"md:ax-text-lg ax-text-neutral-400\">Whoops! Looks like that page doesn't exist.</p>\n </div>\n <div class=\"ax-flex ax-flex-col ax-gap-2 md:ax-gap-4 md:ax-flex-row\">\n <ax-button (onClick)=\"goHome()\" class=\"ax-px-4\" color=\"primary\" text=\"Go back to home\"></ax-button>\n <ax-button class=\"ax-px-4\" color=\"ghost\" text=\"Contact us\"></ax-button>\n </div>\n</div>" }]
21
21
  }] });
@@ -6,10 +6,10 @@ export class AXPErrorOfflineComponent {
6
6
  constructor() { }
7
7
  ngOnInit() { }
8
8
  goHome() { }
9
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPErrorOfflineComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
10
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPErrorOfflineComponent, isStandalone: true, selector: "axp-error-offline", ngImport: i0, template: "<div class=\"ax-h-full ax-flex ax-flex-col ax-gap-8 ax-items-center ax-justify-center\">\n <img class=\"ax-w-3/4 md:ax-w-1/2 lg:ax-w-1/3 xl:ax-w-1/4\" src=\"/assets/images/error/error-offline.png\"\n alt=\"Oops! Error 404. No result found.\">\n <div class=\"ax-flex ax-flex-col ax-items-center ax-gap-2 md:ax-gap-4\">\n <h1 class=\"ax-font-bold ax-text-2xl md:ax-text-4xl\">Please check your connectivity!</h1>\n <p class=\"md:ax-text-lg ax-text-neutral-400\">Sorry, it seems you don't have access to the internet.</p>\n\n </div>\n <div class=\"ax-flex ax-flex-col ax-gap-2 md:ax-gap-4 md:ax-flex-row\">\n <ax-button (onClick)=\"goHome()\" class=\"ax-px-4\" color=\"primary\" text=\"Go back to home\"></ax-button>\n <ax-button class=\"ax-px-4\" color=\"ghost\" text=\"Contact us\"></ax-button>\n </div>\n</div>", styles: [""], dependencies: [{ kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i1.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"] }] }); }
9
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPErrorOfflineComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
10
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPErrorOfflineComponent, isStandalone: true, selector: "axp-error-offline", ngImport: i0, template: "<div class=\"ax-h-full ax-flex ax-flex-col ax-gap-8 ax-items-center ax-justify-center\">\n <img class=\"ax-w-3/4 md:ax-w-1/2 lg:ax-w-1/3 xl:ax-w-1/4\" src=\"/assets/images/error/error-offline.png\"\n alt=\"Oops! Error 404. No result found.\">\n <div class=\"ax-flex ax-flex-col ax-items-center ax-gap-2 md:ax-gap-4\">\n <h1 class=\"ax-font-bold ax-text-2xl md:ax-text-4xl\">Please check your connectivity!</h1>\n <p class=\"md:ax-text-lg ax-text-neutral-400\">Sorry, it seems you don't have access to the internet.</p>\n\n </div>\n <div class=\"ax-flex ax-flex-col ax-gap-2 md:ax-gap-4 md:ax-flex-row\">\n <ax-button (onClick)=\"goHome()\" class=\"ax-px-4\" color=\"primary\" text=\"Go back to home\"></ax-button>\n <ax-button class=\"ax-px-4\" color=\"ghost\" text=\"Contact us\"></ax-button>\n </div>\n</div>", styles: [""], dependencies: [{ kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i1.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }] }); }
11
11
  }
12
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPErrorOfflineComponent, decorators: [{
12
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPErrorOfflineComponent, decorators: [{
13
13
  type: Component,
14
14
  args: [{ selector: 'axp-error-offline', imports: [AXButtonModule], standalone: true, template: "<div class=\"ax-h-full ax-flex ax-flex-col ax-gap-8 ax-items-center ax-justify-center\">\n <img class=\"ax-w-3/4 md:ax-w-1/2 lg:ax-w-1/3 xl:ax-w-1/4\" src=\"/assets/images/error/error-offline.png\"\n alt=\"Oops! Error 404. No result found.\">\n <div class=\"ax-flex ax-flex-col ax-items-center ax-gap-2 md:ax-gap-4\">\n <h1 class=\"ax-font-bold ax-text-2xl md:ax-text-4xl\">Please check your connectivity!</h1>\n <p class=\"md:ax-text-lg ax-text-neutral-400\">Sorry, it seems you don't have access to the internet.</p>\n\n </div>\n <div class=\"ax-flex ax-flex-col ax-gap-2 md:ax-gap-4 md:ax-flex-row\">\n <ax-button (onClick)=\"goHome()\" class=\"ax-px-4\" color=\"primary\" text=\"Go back to home\"></ax-button>\n <ax-button class=\"ax-px-4\" color=\"ghost\" text=\"Contact us\"></ax-button>\n </div>\n</div>" }]
15
15
  }], ctorParameters: () => [] });
@@ -1,2 +1,4 @@
1
+ export * from './lib/widgets';
2
+ export * from './lib/properties';
1
3
  export * from './lib/widgets.module';
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLGNBQWMsc0JBQXNCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJcbmV4cG9ydCAqIGZyb20gJy4vbGliL3dpZGdldHMubW9kdWxlJztcbiAgICAgICAgICAgICAgICAiXX0=
4
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLGNBQWMsZUFBZSxDQUFDO0FBQzlCLGNBQWMsa0JBQWtCLENBQUM7QUFDakMsY0FBYyxzQkFBc0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIlxuZXhwb3J0ICogZnJvbSAnLi9saWIvd2lkZ2V0cyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9wcm9wZXJ0aWVzJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3dpZGdldHMubW9kdWxlJztcbiJdfQ==
@@ -0,0 +1,389 @@
1
+ import { AX_STYLE_COLOR_TYPES } from '@acorex/components/common';
2
+ import { AXP_BEHAVIOR_PROPERTY_GROUP, AXP_DATA_PROPERTY_GROUP, AXP_STYLING_PROPERTY_GROUP, AXP_WIDGET_PROPERTY_GROUP } from './groups';
3
+ export const AXP_VALIDATION_PROPERTY = {
4
+ name: 'validationRules',
5
+ title: 'Validation Rules',
6
+ group: AXP_DATA_PROPERTY_GROUP,
7
+ schema: {
8
+ dataType: 'array',
9
+ defaultValue: [],
10
+ interface: {
11
+ type: 'text-box',
12
+ path: 'validationRules',
13
+ },
14
+ },
15
+ visible: true,
16
+ };
17
+ export const AXP_NAME_PROPERTY = {
18
+ name: 'name',
19
+ title: 'Name',
20
+ group: AXP_WIDGET_PROPERTY_GROUP,
21
+ schema: {
22
+ dataType: 'string',
23
+ interface: {
24
+ name: 'name',
25
+ path: 'name',
26
+ type: 'text-box',
27
+ },
28
+ },
29
+ visible: true,
30
+ };
31
+ export const AXP_DISABLED_PROPERTY = {
32
+ name: 'disabled',
33
+ title: 'Disabled',
34
+ group: AXP_BEHAVIOR_PROPERTY_GROUP,
35
+ schema: {
36
+ dataType: 'boolean',
37
+ interface: {
38
+ name: 'disabled',
39
+ path: 'options.disabled',
40
+ type: 'toggle',
41
+ },
42
+ },
43
+ visible: true,
44
+ };
45
+ export const AXP_PLACEHOLDER_PROPERTY = {
46
+ name: 'placeholder',
47
+ title: 'Placeholder',
48
+ group: AXP_BEHAVIOR_PROPERTY_GROUP,
49
+ schema: {
50
+ dataType: 'string',
51
+ interface: {
52
+ name: 'placeholder',
53
+ path: 'options.placeholder',
54
+ type: 'text-box',
55
+ },
56
+ },
57
+ visible: true,
58
+ };
59
+ export const AXP_DATA_PATH_PROPERTY = {
60
+ name: 'path',
61
+ title: 'Data Path',
62
+ group: AXP_DATA_PROPERTY_GROUP,
63
+ schema: {
64
+ dataType: 'string',
65
+ interface: {
66
+ name: 'path',
67
+ path: 'path',
68
+ type: 'text-box',
69
+ },
70
+ },
71
+ visible: true,
72
+ };
73
+ export const AXP_ALLOW_MULTIPLE_PROPERTY = {
74
+ name: 'multiple',
75
+ title: 'Multiple',
76
+ group: AXP_BEHAVIOR_PROPERTY_GROUP,
77
+ schema: {
78
+ dataType: 'boolean',
79
+ defaultValue: false,
80
+ interface: {
81
+ name: 'multiple',
82
+ path: 'options.multiple',
83
+ type: 'toggle',
84
+ },
85
+ },
86
+ visible: true,
87
+ };
88
+ export const AXP_HAS_LABEL_PROPERTY = {
89
+ name: 'hasLabel',
90
+ title: 'Label',
91
+ group: AXP_BEHAVIOR_PROPERTY_GROUP,
92
+ schema: {
93
+ dataType: 'boolean',
94
+ defaultValue: true,
95
+ interface: {
96
+ name: 'hasLabel',
97
+ path: 'options.hasLabel',
98
+ type: 'toggle',
99
+ },
100
+ },
101
+ visible: true,
102
+ };
103
+ export const AXP_HAS_ICON_PROPERTY = {
104
+ name: 'hasIcon',
105
+ title: 'Icon',
106
+ group: AXP_BEHAVIOR_PROPERTY_GROUP,
107
+ schema: {
108
+ dataType: 'boolean',
109
+ defaultValue: true,
110
+ interface: {
111
+ name: 'hasIcon',
112
+ path: 'options.hasIcon',
113
+ type: 'toggle',
114
+ },
115
+ },
116
+ visible: true,
117
+ };
118
+ export const AXP_FONT_SIZE_PROPERTY = {
119
+ name: 'fontSize',
120
+ title: 'Font Size',
121
+ group: AXP_STYLING_PROPERTY_GROUP,
122
+ schema: {
123
+ dataType: 'string',
124
+ defaultValue: '12px',
125
+ interface: {
126
+ name: 'fontSize',
127
+ path: 'options.fontSize',
128
+ type: 'text-box',
129
+ },
130
+ },
131
+ visible: true,
132
+ };
133
+ export const AXP_BG_COLOR_PROPERTY = {
134
+ name: 'backgroundColor',
135
+ title: 'Background Color',
136
+ group: AXP_STYLING_PROPERTY_GROUP,
137
+ schema: {
138
+ dataType: 'string',
139
+ defaultValue: '#FFFFFF',
140
+ interface: {
141
+ path: 'options.backgroundColor',
142
+ type: 'color-box',
143
+ },
144
+ },
145
+ visible: true,
146
+ };
147
+ export const AXP_HAS_CLEAR_BUTTON_PROPERTY = {
148
+ name: 'hasClearButton',
149
+ title: 'has Clear Button',
150
+ group: AXP_BEHAVIOR_PROPERTY_GROUP,
151
+ schema: {
152
+ dataType: 'boolean',
153
+ interface: {
154
+ name: 'hasClearButton',
155
+ path: 'options.hasClearButton',
156
+ type: 'toggle',
157
+ },
158
+ },
159
+ visible: true,
160
+ };
161
+ export const AXP_HAS_COPY_ICON_PROPERTY = {
162
+ name: 'hasCopyIcon',
163
+ title: 'has Copy Icon',
164
+ group: AXP_BEHAVIOR_PROPERTY_GROUP,
165
+ schema: {
166
+ dataType: 'boolean',
167
+ interface: {
168
+ name: 'hasCopyIcon',
169
+ path: 'options.hasCopyIcon',
170
+ type: 'toggle',
171
+ },
172
+ },
173
+ visible: true,
174
+ };
175
+ export const AXP_HAS_EYE_ICON_PROPERTY = {
176
+ name: 'hasEyeIcon',
177
+ title: 'has Eye Icon',
178
+ group: AXP_BEHAVIOR_PROPERTY_GROUP,
179
+ schema: {
180
+ dataType: 'boolean',
181
+ interface: {
182
+ name: 'hasEyeIcon',
183
+ path: 'options.hasEyeIcon',
184
+ type: 'toggle',
185
+ },
186
+ },
187
+ visible: true,
188
+ };
189
+ export const AXP_DOWNLOADABLE_PROPERTY = {
190
+ name: 'downloadable',
191
+ title: 'Downloadable',
192
+ group: AXP_BEHAVIOR_PROPERTY_GROUP,
193
+ schema: {
194
+ dataType: 'boolean',
195
+ interface: {
196
+ name: 'downloadable',
197
+ path: 'options.downloadable',
198
+ type: 'toggle',
199
+ },
200
+ },
201
+ visible: true,
202
+ };
203
+ export const AXP_TRULY_TEXT_PROPERTY = {
204
+ name: 'trulyText',
205
+ title: 'Truly Text',
206
+ group: AXP_BEHAVIOR_PROPERTY_GROUP,
207
+ schema: {
208
+ dataType: 'string',
209
+ interface: {
210
+ name: 'trulyText',
211
+ path: 'options.trulyText',
212
+ type: 'text-box',
213
+ },
214
+ },
215
+ visible: true,
216
+ };
217
+ export const AXP_FALSY_TEXT_PROPERTY = {
218
+ name: 'falsyText',
219
+ title: 'Falsy Text',
220
+ group: AXP_BEHAVIOR_PROPERTY_GROUP,
221
+ schema: {
222
+ dataType: 'string',
223
+ interface: {
224
+ name: 'falsyText',
225
+ path: 'options.falsyText',
226
+ type: 'text-box',
227
+ },
228
+ },
229
+ visible: true,
230
+ };
231
+ export const AXP_TEXT_PROPERTY = {
232
+ name: 'text',
233
+ title: 'Text',
234
+ group: AXP_BEHAVIOR_PROPERTY_GROUP,
235
+ schema: {
236
+ dataType: 'string',
237
+ interface: {
238
+ name: 'text',
239
+ path: 'options.text',
240
+ type: 'text-box',
241
+ },
242
+ },
243
+ visible: true,
244
+ };
245
+ export const AXP_VALUE_FIELD_PROPERTY = {
246
+ name: 'valueField',
247
+ title: 'Value Field',
248
+ group: AXP_DATA_PROPERTY_GROUP,
249
+ schema: {
250
+ dataType: 'string',
251
+ interface: {
252
+ name: 'valueField',
253
+ path: 'options.valueField',
254
+ type: 'text-box',
255
+ },
256
+ },
257
+ visible: true,
258
+ };
259
+ export const AXP_TEXT_FIELD_PROPERTY = {
260
+ name: 'textField',
261
+ title: 'Text Field',
262
+ group: AXP_DATA_PROPERTY_GROUP,
263
+ schema: {
264
+ dataType: 'string',
265
+ interface: {
266
+ name: 'textField',
267
+ path: 'options.textField',
268
+ type: 'text-box',
269
+ },
270
+ },
271
+ visible: true,
272
+ };
273
+ export const AXP_DESCRIPTION_PROPERTY = {
274
+ name: 'description',
275
+ title: 'Description',
276
+ group: AXP_BEHAVIOR_PROPERTY_GROUP,
277
+ schema: {
278
+ dataType: 'string',
279
+ interface: {
280
+ name: 'description',
281
+ path: 'options.description',
282
+ type: 'text-box',
283
+ },
284
+ },
285
+ visible: true,
286
+ };
287
+ export const AXP_STYLE_COLOR_PROPERTY = {
288
+ name: 'color',
289
+ title: 'Color',
290
+ group: AXP_BEHAVIOR_PROPERTY_GROUP,
291
+ schema: {
292
+ dataType: 'string',
293
+ defaultValue: { id: 'primary' },
294
+ interface: {
295
+ name: 'color',
296
+ path: 'options.color',
297
+ type: 'select-box',
298
+ options: {
299
+ dataSource: AX_STYLE_COLOR_TYPES.map((i) => ({ id: i, title: i })),
300
+ },
301
+ },
302
+ },
303
+ visible: true,
304
+ };
305
+ export const AXP_STYLE_LOOK_PROPERTY = {
306
+ name: 'look',
307
+ title: 'Look',
308
+ group: AXP_BEHAVIOR_PROPERTY_GROUP,
309
+ schema: {
310
+ dataType: 'string',
311
+ defaultValue: { id: 'solid' },
312
+ interface: {
313
+ name: 'look',
314
+ path: 'options.look',
315
+ type: 'select-box',
316
+ options: {
317
+ dataSource: ['solid', 'blank', 'outline', 'twotone', 'flat', 'fill', 'none'].map((i) => ({ id: i, title: i })), //TODO remove this array and use AX_STYLE_LOOK_TYPES instead
318
+ },
319
+ },
320
+ },
321
+ visible: true,
322
+ };
323
+ export const AXP_DATE_FROMAT_PROPERTY = {
324
+ name: 'format',
325
+ title: 'Format',
326
+ group: AXP_BEHAVIOR_PROPERTY_GROUP,
327
+ schema: {
328
+ dataType: 'string',
329
+ defaultValue: { id: 'date', title: 'Date' },
330
+ interface: {
331
+ name: 'format',
332
+ path: 'options.format',
333
+ type: 'select-box',
334
+ options: {
335
+ dataSource: [
336
+ { id: 'date', title: 'Date' },
337
+ { id: 'datetime', title: 'DateTime' },
338
+ { id: 'time', title: 'Time' },
339
+ ],
340
+ },
341
+ },
342
+ },
343
+ visible: true,
344
+ };
345
+ export function booleanDefaultProperty() {
346
+ return {
347
+ name: 'defaultValue',
348
+ title: 'Default Value',
349
+ group: AXP_DATA_PROPERTY_GROUP,
350
+ schema: {
351
+ dataType: 'boolean',
352
+ interface: {
353
+ defaultValue: true,
354
+ name: 'defaultValue',
355
+ path: 'defaultValue',
356
+ type: 'toggle',
357
+ },
358
+ // interface: {
359
+ // name: 'defaultValue',
360
+ // path: 'defaultValue',
361
+ // type: 'select-box',
362
+ // options: {
363
+ // dataSource: [
364
+ // { id: 0, title: 'False' },
365
+ // { id: 1, title: 'True' },
366
+ // ],
367
+ // },
368
+ // },
369
+ },
370
+ visible: true,
371
+ };
372
+ }
373
+ export function plainTextDefaultProperty() {
374
+ return {
375
+ name: 'defaultValue',
376
+ title: 'Default Value',
377
+ group: AXP_DATA_PROPERTY_GROUP,
378
+ schema: {
379
+ dataType: 'string',
380
+ interface: {
381
+ name: 'defaultValue',
382
+ path: 'defaultValue',
383
+ type: 'text-box',
384
+ },
385
+ },
386
+ visible: true,
387
+ };
388
+ }
389
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWRpdG9ycy5wcm9wcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vd2lkZ2V0cy9zcmMvbGliL3Byb3BlcnRpZXMvZWRpdG9ycy5wcm9wcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUVqRSxPQUFPLEVBQUUsMkJBQTJCLEVBQUUsdUJBQXVCLEVBQUUsMEJBQTBCLEVBQUUseUJBQXlCLEVBQUUsTUFBTSxVQUFVLENBQUM7QUFFdkksTUFBTSxDQUFDLE1BQU0sdUJBQXVCLEdBQXNCO0lBQ3hELElBQUksRUFBRSxpQkFBaUI7SUFDdkIsS0FBSyxFQUFFLGtCQUFrQjtJQUN6QixLQUFLLEVBQUUsdUJBQXVCO0lBQzlCLE1BQU0sRUFBRTtRQUNOLFFBQVEsRUFBRSxPQUFPO1FBQ2pCLFlBQVksRUFBRSxFQUFFO1FBQ2hCLFNBQVMsRUFBRTtZQUNULElBQUksRUFBRSxVQUFVO1lBQ2hCLElBQUksRUFBRSxpQkFBaUI7U0FDeEI7S0FDRjtJQUNELE9BQU8sRUFBRSxJQUFJO0NBQ2QsQ0FBQztBQUVGLE1BQU0sQ0FBQyxNQUFNLGlCQUFpQixHQUFzQjtJQUNsRCxJQUFJLEVBQUUsTUFBTTtJQUNaLEtBQUssRUFBRSxNQUFNO0lBQ2IsS0FBSyxFQUFFLHlCQUF5QjtJQUNoQyxNQUFNLEVBQUU7UUFDTixRQUFRLEVBQUUsUUFBUTtRQUNsQixTQUFTLEVBQUU7WUFDVCxJQUFJLEVBQUUsTUFBTTtZQUNaLElBQUksRUFBRSxNQUFNO1lBQ1osSUFBSSxFQUFFLFVBQVU7U0FDakI7S0FDRjtJQUNELE9BQU8sRUFBRSxJQUFJO0NBQ2QsQ0FBQztBQUVGLE1BQU0sQ0FBQyxNQUFNLHFCQUFxQixHQUFzQjtJQUN0RCxJQUFJLEVBQUUsVUFBVTtJQUNoQixLQUFLLEVBQUUsVUFBVTtJQUNqQixLQUFLLEVBQUUsMkJBQTJCO0lBQ2xDLE1BQU0sRUFBRTtRQUNOLFFBQVEsRUFBRSxTQUFTO1FBQ25CLFNBQVMsRUFBRTtZQUNULElBQUksRUFBRSxVQUFVO1lBQ2hCLElBQUksRUFBRSxrQkFBa0I7WUFDeEIsSUFBSSxFQUFFLFFBQVE7U0FDZjtLQUNGO0lBQ0QsT0FBTyxFQUFFLElBQUk7Q0FDZCxDQUFDO0FBRUYsTUFBTSxDQUFDLE1BQU0sd0JBQXdCLEdBQXNCO0lBQ3pELElBQUksRUFBRSxhQUFhO0lBQ25CLEtBQUssRUFBRSxhQUFhO0lBQ3BCLEtBQUssRUFBRSwyQkFBMkI7SUFDbEMsTUFBTSxFQUFFO1FBQ04sUUFBUSxFQUFFLFFBQVE7UUFDbEIsU0FBUyxFQUFFO1lBQ1QsSUFBSSxFQUFFLGFBQWE7WUFDbkIsSUFBSSxFQUFFLHFCQUFxQjtZQUMzQixJQUFJLEVBQUUsVUFBVTtTQUNqQjtLQUNGO0lBQ0QsT0FBTyxFQUFFLElBQUk7Q0FDZCxDQUFDO0FBRUYsTUFBTSxDQUFDLE1BQU0sc0JBQXNCLEdBQXNCO0lBQ3ZELElBQUksRUFBRSxNQUFNO0lBQ1osS0FBSyxFQUFFLFdBQVc7SUFDbEIsS0FBSyxFQUFFLHVCQUF1QjtJQUM5QixNQUFNLEVBQUU7UUFDTixRQUFRLEVBQUUsUUFBUTtRQUNsQixTQUFTLEVBQUU7WUFDVCxJQUFJLEVBQUUsTUFBTTtZQUNaLElBQUksRUFBRSxNQUFNO1lBQ1osSUFBSSxFQUFFLFVBQVU7U0FDakI7S0FDRjtJQUNELE9BQU8sRUFBRSxJQUFJO0NBQ2QsQ0FBQztBQUVGLE1BQU0sQ0FBQyxNQUFNLDJCQUEyQixHQUFzQjtJQUM1RCxJQUFJLEVBQUUsVUFBVTtJQUNoQixLQUFLLEVBQUUsVUFBVTtJQUNqQixLQUFLLEVBQUUsMkJBQTJCO0lBQ2xDLE1BQU0sRUFBRTtRQUNOLFFBQVEsRUFBRSxTQUFTO1FBQ25CLFlBQVksRUFBRSxLQUFLO1FBQ25CLFNBQVMsRUFBRTtZQUNULElBQUksRUFBRSxVQUFVO1lBQ2hCLElBQUksRUFBRSxrQkFBa0I7WUFDeEIsSUFBSSxFQUFFLFFBQVE7U0FDZjtLQUNGO0lBQ0QsT0FBTyxFQUFFLElBQUk7Q0FDZCxDQUFDO0FBRUYsTUFBTSxDQUFDLE1BQU0sc0JBQXNCLEdBQXNCO0lBQ3ZELElBQUksRUFBRSxVQUFVO0lBQ2hCLEtBQUssRUFBRSxPQUFPO0lBQ2QsS0FBSyxFQUFFLDJCQUEyQjtJQUNsQyxNQUFNLEVBQUU7UUFDTixRQUFRLEVBQUUsU0FBUztRQUNuQixZQUFZLEVBQUUsSUFBSTtRQUNsQixTQUFTLEVBQUU7WUFDVCxJQUFJLEVBQUUsVUFBVTtZQUNoQixJQUFJLEVBQUUsa0JBQWtCO1lBQ3hCLElBQUksRUFBRSxRQUFRO1NBQ2Y7S0FDRjtJQUNELE9BQU8sRUFBRSxJQUFJO0NBQ2QsQ0FBQztBQUVGLE1BQU0sQ0FBQyxNQUFNLHFCQUFxQixHQUFzQjtJQUN0RCxJQUFJLEVBQUUsU0FBUztJQUNmLEtBQUssRUFBRSxNQUFNO0lBQ2IsS0FBSyxFQUFFLDJCQUEyQjtJQUNsQyxNQUFNLEVBQUU7UUFDTixRQUFRLEVBQUUsU0FBUztRQUNuQixZQUFZLEVBQUUsSUFBSTtRQUNsQixTQUFTLEVBQUU7WUFDVCxJQUFJLEVBQUUsU0FBUztZQUNmLElBQUksRUFBRSxpQkFBaUI7WUFDdkIsSUFBSSxFQUFFLFFBQVE7U0FDZjtLQUNGO0lBQ0QsT0FBTyxFQUFFLElBQUk7Q0FDZCxDQUFDO0FBRUYsTUFBTSxDQUFDLE1BQU0sc0JBQXNCLEdBQXNCO0lBQ3ZELElBQUksRUFBRSxVQUFVO0lBQ2hCLEtBQUssRUFBRSxXQUFXO0lBQ2xCLEtBQUssRUFBRSwwQkFBMEI7SUFDakMsTUFBTSxFQUFFO1FBQ04sUUFBUSxFQUFFLFFBQVE7UUFDbEIsWUFBWSxFQUFFLE1BQU07UUFDcEIsU0FBUyxFQUFFO1lBQ1QsSUFBSSxFQUFFLFVBQVU7WUFDaEIsSUFBSSxFQUFFLGtCQUFrQjtZQUN4QixJQUFJLEVBQUUsVUFBVTtTQUNqQjtLQUNGO0lBQ0QsT0FBTyxFQUFFLElBQUk7Q0FDZCxDQUFDO0FBRUYsTUFBTSxDQUFDLE1BQU0scUJBQXFCLEdBQXNCO0lBQ3RELElBQUksRUFBRSxpQkFBaUI7SUFDdkIsS0FBSyxFQUFFLGtCQUFrQjtJQUN6QixLQUFLLEVBQUUsMEJBQTBCO0lBQ2pDLE1BQU0sRUFBRTtRQUNOLFFBQVEsRUFBRSxRQUFRO1FBQ2xCLFlBQVksRUFBRSxTQUFTO1FBQ3ZCLFNBQVMsRUFBRTtZQUNULElBQUksRUFBRSx5QkFBeUI7WUFDL0IsSUFBSSxFQUFFLFdBQVc7U0FDbEI7S0FDRjtJQUNELE9BQU8sRUFBRSxJQUFJO0NBQ2QsQ0FBQztBQUVGLE1BQU0sQ0FBQyxNQUFNLDZCQUE2QixHQUFzQjtJQUM5RCxJQUFJLEVBQUUsZ0JBQWdCO0lBQ3RCLEtBQUssRUFBRSxrQkFBa0I7SUFDekIsS0FBSyxFQUFFLDJCQUEyQjtJQUNsQyxNQUFNLEVBQUU7UUFDTixRQUFRLEVBQUUsU0FBUztRQUNuQixTQUFTLEVBQUU7WUFDVCxJQUFJLEVBQUUsZ0JBQWdCO1lBQ3RCLElBQUksRUFBRSx3QkFBd0I7WUFDOUIsSUFBSSxFQUFFLFFBQVE7U0FDZjtLQUNGO0lBQ0QsT0FBTyxFQUFFLElBQUk7Q0FDZCxDQUFDO0FBQ0YsTUFBTSxDQUFDLE1BQU0sMEJBQTBCLEdBQXNCO0lBQzNELElBQUksRUFBRSxhQUFhO0lBQ25CLEtBQUssRUFBRSxlQUFlO0lBQ3RCLEtBQUssRUFBRSwyQkFBMkI7SUFDbEMsTUFBTSxFQUFFO1FBQ04sUUFBUSxFQUFFLFNBQVM7UUFDbkIsU0FBUyxFQUFFO1lBQ1QsSUFBSSxFQUFFLGFBQWE7WUFDbkIsSUFBSSxFQUFFLHFCQUFxQjtZQUMzQixJQUFJLEVBQUUsUUFBUTtTQUNmO0tBQ0Y7SUFDRCxPQUFPLEVBQUUsSUFBSTtDQUNkLENBQUM7QUFDRixNQUFNLENBQUMsTUFBTSx5QkFBeUIsR0FBc0I7SUFDMUQsSUFBSSxFQUFFLFlBQVk7SUFDbEIsS0FBSyxFQUFFLGNBQWM7SUFDckIsS0FBSyxFQUFFLDJCQUEyQjtJQUNsQyxNQUFNLEVBQUU7UUFDTixRQUFRLEVBQUUsU0FBUztRQUNuQixTQUFTLEVBQUU7WUFDVCxJQUFJLEVBQUUsWUFBWTtZQUNsQixJQUFJLEVBQUUsb0JBQW9CO1lBQzFCLElBQUksRUFBRSxRQUFRO1NBQ2Y7S0FDRjtJQUNELE9BQU8sRUFBRSxJQUFJO0NBQ2QsQ0FBQztBQUNGLE1BQU0sQ0FBQyxNQUFNLHlCQUF5QixHQUFzQjtJQUMxRCxJQUFJLEVBQUUsY0FBYztJQUNwQixLQUFLLEVBQUUsY0FBYztJQUNyQixLQUFLLEVBQUUsMkJBQTJCO0lBQ2xDLE1BQU0sRUFBRTtRQUNOLFFBQVEsRUFBRSxTQUFTO1FBQ25CLFNBQVMsRUFBRTtZQUNULElBQUksRUFBRSxjQUFjO1lBQ3BCLElBQUksRUFBRSxzQkFBc0I7WUFDNUIsSUFBSSxFQUFFLFFBQVE7U0FDZjtLQUNGO0lBQ0QsT0FBTyxFQUFFLElBQUk7Q0FDZCxDQUFDO0FBRUYsTUFBTSxDQUFDLE1BQU0sdUJBQXVCLEdBQXNCO0lBQ3hELElBQUksRUFBRSxXQUFXO0lBQ2pCLEtBQUssRUFBRSxZQUFZO0lBQ25CLEtBQUssRUFBRSwyQkFBMkI7SUFDbEMsTUFBTSxFQUFFO1FBQ04sUUFBUSxFQUFFLFFBQVE7UUFDbEIsU0FBUyxFQUFFO1lBQ1QsSUFBSSxFQUFFLFdBQVc7WUFDakIsSUFBSSxFQUFFLG1CQUFtQjtZQUN6QixJQUFJLEVBQUUsVUFBVTtTQUNqQjtLQUNGO0lBQ0QsT0FBTyxFQUFFLElBQUk7Q0FDZCxDQUFDO0FBQ0YsTUFBTSxDQUFDLE1BQU0sdUJBQXVCLEdBQXNCO0lBQ3hELElBQUksRUFBRSxXQUFXO0lBQ2pCLEtBQUssRUFBRSxZQUFZO0lBQ25CLEtBQUssRUFBRSwyQkFBMkI7SUFDbEMsTUFBTSxFQUFFO1FBQ04sUUFBUSxFQUFFLFFBQVE7UUFDbEIsU0FBUyxFQUFFO1lBQ1QsSUFBSSxFQUFFLFdBQVc7WUFDakIsSUFBSSxFQUFFLG1CQUFtQjtZQUN6QixJQUFJLEVBQUUsVUFBVTtTQUNqQjtLQUNGO0lBQ0QsT0FBTyxFQUFFLElBQUk7Q0FDZCxDQUFDO0FBRUYsTUFBTSxDQUFDLE1BQU0saUJBQWlCLEdBQXNCO0lBQ2xELElBQUksRUFBRSxNQUFNO0lBQ1osS0FBSyxFQUFFLE1BQU07SUFDYixLQUFLLEVBQUUsMkJBQTJCO0lBQ2xDLE1BQU0sRUFBRTtRQUNOLFFBQVEsRUFBRSxRQUFRO1FBQ2xCLFNBQVMsRUFBRTtZQUNULElBQUksRUFBRSxNQUFNO1lBQ1osSUFBSSxFQUFFLGNBQWM7WUFDcEIsSUFBSSxFQUFFLFVBQVU7U0FDakI7S0FDRjtJQUNELE9BQU8sRUFBRSxJQUFJO0NBQ2QsQ0FBQztBQUVGLE1BQU0sQ0FBQyxNQUFNLHdCQUF3QixHQUFzQjtJQUN6RCxJQUFJLEVBQUUsWUFBWTtJQUNsQixLQUFLLEVBQUUsYUFBYTtJQUNwQixLQUFLLEVBQUUsdUJBQXVCO0lBQzlCLE1BQU0sRUFBRTtRQUNOLFFBQVEsRUFBRSxRQUFRO1FBQ2xCLFNBQVMsRUFBRTtZQUNULElBQUksRUFBRSxZQUFZO1lBQ2xCLElBQUksRUFBRSxvQkFBb0I7WUFDMUIsSUFBSSxFQUFFLFVBQVU7U0FDakI7S0FDRjtJQUNELE9BQU8sRUFBRSxJQUFJO0NBQ2QsQ0FBQztBQUNGLE1BQU0sQ0FBQyxNQUFNLHVCQUF1QixHQUFzQjtJQUN4RCxJQUFJLEVBQUUsV0FBVztJQUNqQixLQUFLLEVBQUUsWUFBWTtJQUNuQixLQUFLLEVBQUUsdUJBQXVCO0lBQzlCLE1BQU0sRUFBRTtRQUNOLFFBQVEsRUFBRSxRQUFRO1FBQ2xCLFNBQVMsRUFBRTtZQUNULElBQUksRUFBRSxXQUFXO1lBQ2pCLElBQUksRUFBRSxtQkFBbUI7WUFDekIsSUFBSSxFQUFFLFVBQVU7U0FDakI7S0FDRjtJQUNELE9BQU8sRUFBRSxJQUFJO0NBQ2QsQ0FBQztBQUNGLE1BQU0sQ0FBQyxNQUFNLHdCQUF3QixHQUFzQjtJQUN6RCxJQUFJLEVBQUUsYUFBYTtJQUNuQixLQUFLLEVBQUUsYUFBYTtJQUNwQixLQUFLLEVBQUUsMkJBQTJCO0lBQ2xDLE1BQU0sRUFBRTtRQUNOLFFBQVEsRUFBRSxRQUFRO1FBQ2xCLFNBQVMsRUFBRTtZQUNULElBQUksRUFBRSxhQUFhO1lBQ25CLElBQUksRUFBRSxxQkFBcUI7WUFDM0IsSUFBSSxFQUFFLFVBQVU7U0FDakI7S0FDRjtJQUNELE9BQU8sRUFBRSxJQUFJO0NBQ2QsQ0FBQztBQUVGLE1BQU0sQ0FBQyxNQUFNLHdCQUF3QixHQUFzQjtJQUN6RCxJQUFJLEVBQUUsT0FBTztJQUNiLEtBQUssRUFBRSxPQUFPO0lBQ2QsS0FBSyxFQUFFLDJCQUEyQjtJQUNsQyxNQUFNLEVBQUU7UUFDTixRQUFRLEVBQUUsUUFBUTtRQUNsQixZQUFZLEVBQUUsRUFBRSxFQUFFLEVBQUUsU0FBUyxFQUFFO1FBQy9CLFNBQVMsRUFBRTtZQUNULElBQUksRUFBRSxPQUFPO1lBQ2IsSUFBSSxFQUFFLGVBQWU7WUFDckIsSUFBSSxFQUFFLFlBQVk7WUFDbEIsT0FBTyxFQUFFO2dCQUNQLFVBQVUsRUFBRSxvQkFBb0IsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsRUFBRSxFQUFFLEVBQUUsQ0FBQyxFQUFFLEtBQUssRUFBRSxDQUFDLEVBQUUsQ0FBQyxDQUFDO2FBQ25FO1NBQ0Y7S0FDRjtJQUNELE9BQU8sRUFBRSxJQUFJO0NBQ2QsQ0FBQztBQUNGLE1BQU0sQ0FBQyxNQUFNLHVCQUF1QixHQUFzQjtJQUN4RCxJQUFJLEVBQUUsTUFBTTtJQUNaLEtBQUssRUFBRSxNQUFNO0lBQ2IsS0FBSyxFQUFFLDJCQUEyQjtJQUNsQyxNQUFNLEVBQUU7UUFDTixRQUFRLEVBQUUsUUFBUTtRQUNsQixZQUFZLEVBQUUsRUFBRSxFQUFFLEVBQUUsT0FBTyxFQUFFO1FBQzdCLFNBQVMsRUFBRTtZQUNULElBQUksRUFBRSxNQUFNO1lBQ1osSUFBSSxFQUFFLGNBQWM7WUFDcEIsSUFBSSxFQUFFLFlBQVk7WUFDbEIsT0FBTyxFQUFFO2dCQUNQLFVBQVUsRUFBRSxDQUFDLE9BQU8sRUFBRSxPQUFPLEVBQUUsU0FBUyxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsTUFBTSxFQUFFLE1BQU0sQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxFQUFFLEVBQUUsRUFBRSxDQUFDLEVBQUUsS0FBSyxFQUFFLENBQUMsRUFBRSxDQUFDLENBQUMsRUFBRSw0REFBNEQ7YUFDN0s7U0FDRjtLQUNGO0lBQ0QsT0FBTyxFQUFFLElBQUk7Q0FDZCxDQUFDO0FBRUYsTUFBTSxDQUFDLE1BQU0sd0JBQXdCLEdBQXNCO0lBQ3pELElBQUksRUFBRSxRQUFRO0lBQ2QsS0FBSyxFQUFFLFFBQVE7SUFDZixLQUFLLEVBQUUsMkJBQTJCO0lBQ2xDLE1BQU0sRUFBRTtRQUNOLFFBQVEsRUFBRSxRQUFRO1FBQ2xCLFlBQVksRUFBRSxFQUFFLEVBQUUsRUFBRSxNQUFNLEVBQUUsS0FBSyxFQUFFLE1BQU0sRUFBRTtRQUMzQyxTQUFTLEVBQUU7WUFDVCxJQUFJLEVBQUUsUUFBUTtZQUNkLElBQUksRUFBRSxnQkFBZ0I7WUFDdEIsSUFBSSxFQUFFLFlBQVk7WUFDbEIsT0FBTyxFQUFFO2dCQUNQLFVBQVUsRUFBRTtvQkFDVixFQUFFLEVBQUUsRUFBRSxNQUFNLEVBQUUsS0FBSyxFQUFFLE1BQU0sRUFBRTtvQkFDN0IsRUFBRSxFQUFFLEVBQUUsVUFBVSxFQUFFLEtBQUssRUFBRSxVQUFVLEVBQUU7b0JBQ3JDLEVBQUUsRUFBRSxFQUFFLE1BQU0sRUFBRSxLQUFLLEVBQUUsTUFBTSxFQUFFO2lCQUM5QjthQUNGO1NBQ0Y7S0FDRjtJQUNELE9BQU8sRUFBRSxJQUFJO0NBQ2QsQ0FBQztBQUVGLE1BQU0sVUFBVSxzQkFBc0I7SUFDcEMsT0FBTztRQUNMLElBQUksRUFBRSxjQUFjO1FBQ3BCLEtBQUssRUFBRSxlQUFlO1FBQ3RCLEtBQUssRUFBRSx1QkFBdUI7UUFDOUIsTUFBTSxFQUFFO1lBQ04sUUFBUSxFQUFFLFNBQVM7WUFDbkIsU0FBUyxFQUFFO2dCQUNULFlBQVksRUFBRSxJQUFJO2dCQUNsQixJQUFJLEVBQUUsY0FBYztnQkFDcEIsSUFBSSxFQUFFLGNBQWM7Z0JBQ3BCLElBQUksRUFBRSxRQUFRO2FBQ2Y7WUFDRCxlQUFlO1lBQ2YsMEJBQTBCO1lBQzFCLDBCQUEwQjtZQUMxQix3QkFBd0I7WUFDeEIsZUFBZTtZQUNmLG9CQUFvQjtZQUNwQixtQ0FBbUM7WUFDbkMsa0NBQWtDO1lBQ2xDLFNBQVM7WUFDVCxPQUFPO1lBQ1AsS0FBSztTQUNOO1FBQ0QsT0FBTyxFQUFFLElBQUk7S0FDZCxDQUFDO0FBQ0osQ0FBQztBQUVELE1BQU0sVUFBVSx3QkFBd0I7SUFDdEMsT0FBTztRQUNMLElBQUksRUFBRSxjQUFjO1FBQ3BCLEtBQUssRUFBRSxlQUFlO1FBQ3RCLEtBQUssRUFBRSx1QkFBdUI7UUFDOUIsTUFBTSxFQUFFO1lBQ04sUUFBUSxFQUFFLFFBQVE7WUFDbEIsU0FBUyxFQUFFO2dCQUNULElBQUksRUFBRSxjQUFjO2dCQUNwQixJQUFJLEVBQUUsY0FBYztnQkFDcEIsSUFBSSxFQUFFLFVBQVU7YUFDakI7U0FDRjtRQUNELE9BQU8sRUFBRSxJQUFJO0tBQ2QsQ0FBQztBQUNKLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWF9TVFlMRV9DT0xPUl9UWVBFUyB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9jb21tb24nO1xuaW1wb3J0IHsgQVhQV2lkZ2V0UHJvcGVydHkgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9idWlsZGVyJztcbmltcG9ydCB7IEFYUF9CRUhBVklPUl9QUk9QRVJUWV9HUk9VUCwgQVhQX0RBVEFfUFJPUEVSVFlfR1JPVVAsIEFYUF9TVFlMSU5HX1BST1BFUlRZX0dST1VQLCBBWFBfV0lER0VUX1BST1BFUlRZX0dST1VQIH0gZnJvbSAnLi9ncm91cHMnO1xuXG5leHBvcnQgY29uc3QgQVhQX1ZBTElEQVRJT05fUFJPUEVSVFk6IEFYUFdpZGdldFByb3BlcnR5ID0ge1xuICBuYW1lOiAndmFsaWRhdGlvblJ1bGVzJyxcbiAgdGl0bGU6ICdWYWxpZGF0aW9uIFJ1bGVzJyxcbiAgZ3JvdXA6IEFYUF9EQVRBX1BST1BFUlRZX0dST1VQLFxuICBzY2hlbWE6IHtcbiAgICBkYXRhVHlwZTogJ2FycmF5JyxcbiAgICBkZWZhdWx0VmFsdWU6IFtdLFxuICAgIGludGVyZmFjZToge1xuICAgICAgdHlwZTogJ3RleHQtYm94JyxcbiAgICAgIHBhdGg6ICd2YWxpZGF0aW9uUnVsZXMnLFxuICAgIH0sXG4gIH0sXG4gIHZpc2libGU6IHRydWUsXG59O1xuXG5leHBvcnQgY29uc3QgQVhQX05BTUVfUFJPUEVSVFk6IEFYUFdpZGdldFByb3BlcnR5ID0ge1xuICBuYW1lOiAnbmFtZScsXG4gIHRpdGxlOiAnTmFtZScsXG4gIGdyb3VwOiBBWFBfV0lER0VUX1BST1BFUlRZX0dST1VQLFxuICBzY2hlbWE6IHtcbiAgICBkYXRhVHlwZTogJ3N0cmluZycsXG4gICAgaW50ZXJmYWNlOiB7XG4gICAgICBuYW1lOiAnbmFtZScsXG4gICAgICBwYXRoOiAnbmFtZScsXG4gICAgICB0eXBlOiAndGV4dC1ib3gnLFxuICAgIH0sXG4gIH0sXG4gIHZpc2libGU6IHRydWUsXG59O1xuXG5leHBvcnQgY29uc3QgQVhQX0RJU0FCTEVEX1BST1BFUlRZOiBBWFBXaWRnZXRQcm9wZXJ0eSA9IHtcbiAgbmFtZTogJ2Rpc2FibGVkJyxcbiAgdGl0bGU6ICdEaXNhYmxlZCcsXG4gIGdyb3VwOiBBWFBfQkVIQVZJT1JfUFJPUEVSVFlfR1JPVVAsXG4gIHNjaGVtYToge1xuICAgIGRhdGFUeXBlOiAnYm9vbGVhbicsXG4gICAgaW50ZXJmYWNlOiB7XG4gICAgICBuYW1lOiAnZGlzYWJsZWQnLFxuICAgICAgcGF0aDogJ29wdGlvbnMuZGlzYWJsZWQnLFxuICAgICAgdHlwZTogJ3RvZ2dsZScsXG4gICAgfSxcbiAgfSxcbiAgdmlzaWJsZTogdHJ1ZSxcbn07XG5cbmV4cG9ydCBjb25zdCBBWFBfUExBQ0VIT0xERVJfUFJPUEVSVFk6IEFYUFdpZGdldFByb3BlcnR5ID0ge1xuICBuYW1lOiAncGxhY2Vob2xkZXInLFxuICB0aXRsZTogJ1BsYWNlaG9sZGVyJyxcbiAgZ3JvdXA6IEFYUF9CRUhBVklPUl9QUk9QRVJUWV9HUk9VUCxcbiAgc2NoZW1hOiB7XG4gICAgZGF0YVR5cGU6ICdzdHJpbmcnLFxuICAgIGludGVyZmFjZToge1xuICAgICAgbmFtZTogJ3BsYWNlaG9sZGVyJyxcbiAgICAgIHBhdGg6ICdvcHRpb25zLnBsYWNlaG9sZGVyJyxcbiAgICAgIHR5cGU6ICd0ZXh0LWJveCcsXG4gICAgfSxcbiAgfSxcbiAgdmlzaWJsZTogdHJ1ZSxcbn07XG5cbmV4cG9ydCBjb25zdCBBWFBfREFUQV9QQVRIX1BST1BFUlRZOiBBWFBXaWRnZXRQcm9wZXJ0eSA9IHtcbiAgbmFtZTogJ3BhdGgnLFxuICB0aXRsZTogJ0RhdGEgUGF0aCcsXG4gIGdyb3VwOiBBWFBfREFUQV9QUk9QRVJUWV9HUk9VUCxcbiAgc2NoZW1hOiB7XG4gICAgZGF0YVR5cGU6ICdzdHJpbmcnLFxuICAgIGludGVyZmFjZToge1xuICAgICAgbmFtZTogJ3BhdGgnLFxuICAgICAgcGF0aDogJ3BhdGgnLFxuICAgICAgdHlwZTogJ3RleHQtYm94JyxcbiAgICB9LFxuICB9LFxuICB2aXNpYmxlOiB0cnVlLFxufTtcblxuZXhwb3J0IGNvbnN0IEFYUF9BTExPV19NVUxUSVBMRV9QUk9QRVJUWTogQVhQV2lkZ2V0UHJvcGVydHkgPSB7XG4gIG5hbWU6ICdtdWx0aXBsZScsXG4gIHRpdGxlOiAnTXVsdGlwbGUnLFxuICBncm91cDogQVhQX0JFSEFWSU9SX1BST1BFUlRZX0dST1VQLFxuICBzY2hlbWE6IHtcbiAgICBkYXRhVHlwZTogJ2Jvb2xlYW4nLFxuICAgIGRlZmF1bHRWYWx1ZTogZmFsc2UsXG4gICAgaW50ZXJmYWNlOiB7XG4gICAgICBuYW1lOiAnbXVsdGlwbGUnLFxuICAgICAgcGF0aDogJ29wdGlvbnMubXVsdGlwbGUnLFxuICAgICAgdHlwZTogJ3RvZ2dsZScsXG4gICAgfSxcbiAgfSxcbiAgdmlzaWJsZTogdHJ1ZSxcbn07XG5cbmV4cG9ydCBjb25zdCBBWFBfSEFTX0xBQkVMX1BST1BFUlRZOiBBWFBXaWRnZXRQcm9wZXJ0eSA9IHtcbiAgbmFtZTogJ2hhc0xhYmVsJyxcbiAgdGl0bGU6ICdMYWJlbCcsXG4gIGdyb3VwOiBBWFBfQkVIQVZJT1JfUFJPUEVSVFlfR1JPVVAsXG4gIHNjaGVtYToge1xuICAgIGRhdGFUeXBlOiAnYm9vbGVhbicsXG4gICAgZGVmYXVsdFZhbHVlOiB0cnVlLFxuICAgIGludGVyZmFjZToge1xuICAgICAgbmFtZTogJ2hhc0xhYmVsJyxcbiAgICAgIHBhdGg6ICdvcHRpb25zLmhhc0xhYmVsJyxcbiAgICAgIHR5cGU6ICd0b2dnbGUnLFxuICAgIH0sXG4gIH0sXG4gIHZpc2libGU6IHRydWUsXG59O1xuXG5leHBvcnQgY29uc3QgQVhQX0hBU19JQ09OX1BST1BFUlRZOiBBWFBXaWRnZXRQcm9wZXJ0eSA9IHtcbiAgbmFtZTogJ2hhc0ljb24nLFxuICB0aXRsZTogJ0ljb24nLFxuICBncm91cDogQVhQX0JFSEFWSU9SX1BST1BFUlRZX0dST1VQLFxuICBzY2hlbWE6IHtcbiAgICBkYXRhVHlwZTogJ2Jvb2xlYW4nLFxuICAgIGRlZmF1bHRWYWx1ZTogdHJ1ZSxcbiAgICBpbnRlcmZhY2U6IHtcbiAgICAgIG5hbWU6ICdoYXNJY29uJyxcbiAgICAgIHBhdGg6ICdvcHRpb25zLmhhc0ljb24nLFxuICAgICAgdHlwZTogJ3RvZ2dsZScsXG4gICAgfSxcbiAgfSxcbiAgdmlzaWJsZTogdHJ1ZSxcbn07XG5cbmV4cG9ydCBjb25zdCBBWFBfRk9OVF9TSVpFX1BST1BFUlRZOiBBWFBXaWRnZXRQcm9wZXJ0eSA9IHtcbiAgbmFtZTogJ2ZvbnRTaXplJyxcbiAgdGl0bGU6ICdGb250IFNpemUnLFxuICBncm91cDogQVhQX1NUWUxJTkdfUFJPUEVSVFlfR1JPVVAsXG4gIHNjaGVtYToge1xuICAgIGRhdGFUeXBlOiAnc3RyaW5nJyxcbiAgICBkZWZhdWx0VmFsdWU6ICcxMnB4JyxcbiAgICBpbnRlcmZhY2U6IHtcbiAgICAgIG5hbWU6ICdmb250U2l6ZScsXG4gICAgICBwYXRoOiAnb3B0aW9ucy5mb250U2l6ZScsXG4gICAgICB0eXBlOiAndGV4dC1ib3gnLFxuICAgIH0sXG4gIH0sXG4gIHZpc2libGU6IHRydWUsXG59O1xuXG5leHBvcnQgY29uc3QgQVhQX0JHX0NPTE9SX1BST1BFUlRZOiBBWFBXaWRnZXRQcm9wZXJ0eSA9IHtcbiAgbmFtZTogJ2JhY2tncm91bmRDb2xvcicsXG4gIHRpdGxlOiAnQmFja2dyb3VuZCBDb2xvcicsXG4gIGdyb3VwOiBBWFBfU1RZTElOR19QUk9QRVJUWV9HUk9VUCxcbiAgc2NoZW1hOiB7XG4gICAgZGF0YVR5cGU6ICdzdHJpbmcnLFxuICAgIGRlZmF1bHRWYWx1ZTogJyNGRkZGRkYnLFxuICAgIGludGVyZmFjZToge1xuICAgICAgcGF0aDogJ29wdGlvbnMuYmFja2dyb3VuZENvbG9yJyxcbiAgICAgIHR5cGU6ICdjb2xvci1ib3gnLFxuICAgIH0sXG4gIH0sXG4gIHZpc2libGU6IHRydWUsXG59O1xuXG5leHBvcnQgY29uc3QgQVhQX0hBU19DTEVBUl9CVVRUT05fUFJPUEVSVFk6IEFYUFdpZGdldFByb3BlcnR5ID0ge1xuICBuYW1lOiAnaGFzQ2xlYXJCdXR0b24nLFxuICB0aXRsZTogJ2hhcyBDbGVhciBCdXR0b24nLFxuICBncm91cDogQVhQX0JFSEFWSU9SX1BST1BFUlRZX0dST1VQLFxuICBzY2hlbWE6IHtcbiAgICBkYXRhVHlwZTogJ2Jvb2xlYW4nLFxuICAgIGludGVyZmFjZToge1xuICAgICAgbmFtZTogJ2hhc0NsZWFyQnV0dG9uJyxcbiAgICAgIHBhdGg6ICdvcHRpb25zLmhhc0NsZWFyQnV0dG9uJyxcbiAgICAgIHR5cGU6ICd0b2dnbGUnLFxuICAgIH0sXG4gIH0sXG4gIHZpc2libGU6IHRydWUsXG59O1xuZXhwb3J0IGNvbnN0IEFYUF9IQVNfQ09QWV9JQ09OX1BST1BFUlRZOiBBWFBXaWRnZXRQcm9wZXJ0eSA9IHtcbiAgbmFtZTogJ2hhc0NvcHlJY29uJyxcbiAgdGl0bGU6ICdoYXMgQ29weSBJY29uJyxcbiAgZ3JvdXA6IEFYUF9CRUhBVklPUl9QUk9QRVJUWV9HUk9VUCxcbiAgc2NoZW1hOiB7XG4gICAgZGF0YVR5cGU6ICdib29sZWFuJyxcbiAgICBpbnRlcmZhY2U6IHtcbiAgICAgIG5hbWU6ICdoYXNDb3B5SWNvbicsXG4gICAgICBwYXRoOiAnb3B0aW9ucy5oYXNDb3B5SWNvbicsXG4gICAgICB0eXBlOiAndG9nZ2xlJyxcbiAgICB9LFxuICB9LFxuICB2aXNpYmxlOiB0cnVlLFxufTtcbmV4cG9ydCBjb25zdCBBWFBfSEFTX0VZRV9JQ09OX1BST1BFUlRZOiBBWFBXaWRnZXRQcm9wZXJ0eSA9IHtcbiAgbmFtZTogJ2hhc0V5ZUljb24nLFxuICB0aXRsZTogJ2hhcyBFeWUgSWNvbicsXG4gIGdyb3VwOiBBWFBfQkVIQVZJT1JfUFJPUEVSVFlfR1JPVVAsXG4gIHNjaGVtYToge1xuICAgIGRhdGFUeXBlOiAnYm9vbGVhbicsXG4gICAgaW50ZXJmYWNlOiB7XG4gICAgICBuYW1lOiAnaGFzRXllSWNvbicsXG4gICAgICBwYXRoOiAnb3B0aW9ucy5oYXNFeWVJY29uJyxcbiAgICAgIHR5cGU6ICd0b2dnbGUnLFxuICAgIH0sXG4gIH0sXG4gIHZpc2libGU6IHRydWUsXG59O1xuZXhwb3J0IGNvbnN0IEFYUF9ET1dOTE9BREFCTEVfUFJPUEVSVFk6IEFYUFdpZGdldFByb3BlcnR5ID0ge1xuICBuYW1lOiAnZG93bmxvYWRhYmxlJyxcbiAgdGl0bGU6ICdEb3dubG9hZGFibGUnLFxuICBncm91cDogQVhQX0JFSEFWSU9SX1BST1BFUlRZX0dST1VQLFxuICBzY2hlbWE6IHtcbiAgICBkYXRhVHlwZTogJ2Jvb2xlYW4nLFxuICAgIGludGVyZmFjZToge1xuICAgICAgbmFtZTogJ2Rvd25sb2FkYWJsZScsXG4gICAgICBwYXRoOiAnb3B0aW9ucy5kb3dubG9hZGFibGUnLFxuICAgICAgdHlwZTogJ3RvZ2dsZScsXG4gICAgfSxcbiAgfSxcbiAgdmlzaWJsZTogdHJ1ZSxcbn07XG5cbmV4cG9ydCBjb25zdCBBWFBfVFJVTFlfVEVYVF9QUk9QRVJUWTogQVhQV2lkZ2V0UHJvcGVydHkgPSB7XG4gIG5hbWU6ICd0cnVseVRleHQnLFxuICB0aXRsZTogJ1RydWx5IFRleHQnLFxuICBncm91cDogQVhQX0JFSEFWSU9SX1BST1BFUlRZX0dST1VQLFxuICBzY2hlbWE6IHtcbiAgICBkYXRhVHlwZTogJ3N0cmluZycsXG4gICAgaW50ZXJmYWNlOiB7XG4gICAgICBuYW1lOiAndHJ1bHlUZXh0JyxcbiAgICAgIHBhdGg6ICdvcHRpb25zLnRydWx5VGV4dCcsXG4gICAgICB0eXBlOiAndGV4dC1ib3gnLFxuICAgIH0sXG4gIH0sXG4gIHZpc2libGU6IHRydWUsXG59O1xuZXhwb3J0IGNvbnN0IEFYUF9GQUxTWV9URVhUX1BST1BFUlRZOiBBWFBXaWRnZXRQcm9wZXJ0eSA9IHtcbiAgbmFtZTogJ2ZhbHN5VGV4dCcsXG4gIHRpdGxlOiAnRmFsc3kgVGV4dCcsXG4gIGdyb3VwOiBBWFBfQkVIQVZJT1JfUFJPUEVSVFlfR1JPVVAsXG4gIHNjaGVtYToge1xuICAgIGRhdGFUeXBlOiAnc3RyaW5nJyxcbiAgICBpbnRlcmZhY2U6IHtcbiAgICAgIG5hbWU6ICdmYWxzeVRleHQnLFxuICAgICAgcGF0aDogJ29wdGlvbnMuZmFsc3lUZXh0JyxcbiAgICAgIHR5cGU6ICd0ZXh0LWJveCcsXG4gICAgfSxcbiAgfSxcbiAgdmlzaWJsZTogdHJ1ZSxcbn07XG5cbmV4cG9ydCBjb25zdCBBWFBfVEVYVF9QUk9QRVJUWTogQVhQV2lkZ2V0UHJvcGVydHkgPSB7XG4gIG5hbWU6ICd0ZXh0JyxcbiAgdGl0bGU6ICdUZXh0JyxcbiAgZ3JvdXA6IEFYUF9CRUhBVklPUl9QUk9QRVJUWV9HUk9VUCxcbiAgc2NoZW1hOiB7XG4gICAgZGF0YVR5cGU6ICdzdHJpbmcnLFxuICAgIGludGVyZmFjZToge1xuICAgICAgbmFtZTogJ3RleHQnLFxuICAgICAgcGF0aDogJ29wdGlvbnMudGV4dCcsXG4gICAgICB0eXBlOiAndGV4dC1ib3gnLFxuICAgIH0sXG4gIH0sXG4gIHZpc2libGU6IHRydWUsXG59O1xuXG5leHBvcnQgY29uc3QgQVhQX1ZBTFVFX0ZJRUxEX1BST1BFUlRZOiBBWFBXaWRnZXRQcm9wZXJ0eSA9IHtcbiAgbmFtZTogJ3ZhbHVlRmllbGQnLFxuICB0aXRsZTogJ1ZhbHVlIEZpZWxkJyxcbiAgZ3JvdXA6IEFYUF9EQVRBX1BST1BFUlRZX0dST1VQLFxuICBzY2hlbWE6IHtcbiAgICBkYXRhVHlwZTogJ3N0cmluZycsXG4gICAgaW50ZXJmYWNlOiB7XG4gICAgICBuYW1lOiAndmFsdWVGaWVsZCcsXG4gICAgICBwYXRoOiAnb3B0aW9ucy52YWx1ZUZpZWxkJyxcbiAgICAgIHR5cGU6ICd0ZXh0LWJveCcsXG4gICAgfSxcbiAgfSxcbiAgdmlzaWJsZTogdHJ1ZSxcbn07XG5leHBvcnQgY29uc3QgQVhQX1RFWFRfRklFTERfUFJPUEVSVFk6IEFYUFdpZGdldFByb3BlcnR5ID0ge1xuICBuYW1lOiAndGV4dEZpZWxkJyxcbiAgdGl0bGU6ICdUZXh0IEZpZWxkJyxcbiAgZ3JvdXA6IEFYUF9EQVRBX1BST1BFUlRZX0dST1VQLFxuICBzY2hlbWE6IHtcbiAgICBkYXRhVHlwZTogJ3N0cmluZycsXG4gICAgaW50ZXJmYWNlOiB7XG4gICAgICBuYW1lOiAndGV4dEZpZWxkJyxcbiAgICAgIHBhdGg6ICdvcHRpb25zLnRleHRGaWVsZCcsXG4gICAgICB0eXBlOiAndGV4dC1ib3gnLFxuICAgIH0sXG4gIH0sXG4gIHZpc2libGU6IHRydWUsXG59O1xuZXhwb3J0IGNvbnN0IEFYUF9ERVNDUklQVElPTl9QUk9QRVJUWTogQVhQV2lkZ2V0UHJvcGVydHkgPSB7XG4gIG5hbWU6ICdkZXNjcmlwdGlvbicsXG4gIHRpdGxlOiAnRGVzY3JpcHRpb24nLFxuICBncm91cDogQVhQX0JFSEFWSU9SX1BST1BFUlRZX0dST1VQLFxuICBzY2hlbWE6IHtcbiAgICBkYXRhVHlwZTogJ3N0cmluZycsXG4gICAgaW50ZXJmYWNlOiB7XG4gICAgICBuYW1lOiAnZGVzY3JpcHRpb24nLFxuICAgICAgcGF0aDogJ29wdGlvbnMuZGVzY3JpcHRpb24nLFxuICAgICAgdHlwZTogJ3RleHQtYm94JyxcbiAgICB9LFxuICB9LFxuICB2aXNpYmxlOiB0cnVlLFxufTtcblxuZXhwb3J0IGNvbnN0IEFYUF9TVFlMRV9DT0xPUl9QUk9QRVJUWTogQVhQV2lkZ2V0UHJvcGVydHkgPSB7XG4gIG5hbWU6ICdjb2xvcicsXG4gIHRpdGxlOiAnQ29sb3InLFxuICBncm91cDogQVhQX0JFSEFWSU9SX1BST1BFUlRZX0dST1VQLFxuICBzY2hlbWE6IHtcbiAgICBkYXRhVHlwZTogJ3N0cmluZycsXG4gICAgZGVmYXVsdFZhbHVlOiB7IGlkOiAncHJpbWFyeScgfSxcbiAgICBpbnRlcmZhY2U6IHtcbiAgICAgIG5hbWU6ICdjb2xvcicsXG4gICAgICBwYXRoOiAnb3B0aW9ucy5jb2xvcicsXG4gICAgICB0eXBlOiAnc2VsZWN0LWJveCcsXG4gICAgICBvcHRpb25zOiB7XG4gICAgICAgIGRhdGFTb3VyY2U6IEFYX1NUWUxFX0NPTE9SX1RZUEVTLm1hcCgoaSkgPT4gKHsgaWQ6IGksIHRpdGxlOiBpIH0pKSxcbiAgICAgIH0sXG4gICAgfSxcbiAgfSxcbiAgdmlzaWJsZTogdHJ1ZSxcbn07XG5leHBvcnQgY29uc3QgQVhQX1NUWUxFX0xPT0tfUFJPUEVSVFk6IEFYUFdpZGdldFByb3BlcnR5ID0ge1xuICBuYW1lOiAnbG9vaycsXG4gIHRpdGxlOiAnTG9vaycsXG4gIGdyb3VwOiBBWFBfQkVIQVZJT1JfUFJPUEVSVFlfR1JPVVAsXG4gIHNjaGVtYToge1xuICAgIGRhdGFUeXBlOiAnc3RyaW5nJyxcbiAgICBkZWZhdWx0VmFsdWU6IHsgaWQ6ICdzb2xpZCcgfSxcbiAgICBpbnRlcmZhY2U6IHtcbiAgICAgIG5hbWU6ICdsb29rJyxcbiAgICAgIHBhdGg6ICdvcHRpb25zLmxvb2snLFxuICAgICAgdHlwZTogJ3NlbGVjdC1ib3gnLFxuICAgICAgb3B0aW9uczoge1xuICAgICAgICBkYXRhU291cmNlOiBbJ3NvbGlkJywgJ2JsYW5rJywgJ291dGxpbmUnLCAndHdvdG9uZScsICdmbGF0JywgJ2ZpbGwnLCAnbm9uZSddLm1hcCgoaSkgPT4gKHsgaWQ6IGksIHRpdGxlOiBpIH0pKSwgLy9UT0RPIHJlbW92ZSB0aGlzIGFycmF5IGFuZCB1c2UgQVhfU1RZTEVfTE9PS19UWVBFUyBpbnN0ZWFkXG4gICAgICB9LFxuICAgIH0sXG4gIH0sXG4gIHZpc2libGU6IHRydWUsXG59O1xuXG5leHBvcnQgY29uc3QgQVhQX0RBVEVfRlJPTUFUX1BST1BFUlRZOiBBWFBXaWRnZXRQcm9wZXJ0eSA9IHtcbiAgbmFtZTogJ2Zvcm1hdCcsXG4gIHRpdGxlOiAnRm9ybWF0JyxcbiAgZ3JvdXA6IEFYUF9CRUhBVklPUl9QUk9QRVJUWV9HUk9VUCxcbiAgc2NoZW1hOiB7XG4gICAgZGF0YVR5cGU6ICdzdHJpbmcnLFxuICAgIGRlZmF1bHRWYWx1ZTogeyBpZDogJ2RhdGUnLCB0aXRsZTogJ0RhdGUnIH0sXG4gICAgaW50ZXJmYWNlOiB7XG4gICAgICBuYW1lOiAnZm9ybWF0JyxcbiAgICAgIHBhdGg6ICdvcHRpb25zLmZvcm1hdCcsXG4gICAgICB0eXBlOiAnc2VsZWN0LWJveCcsXG4gICAgICBvcHRpb25zOiB7XG4gICAgICAgIGRhdGFTb3VyY2U6IFtcbiAgICAgICAgICB7IGlkOiAnZGF0ZScsIHRpdGxlOiAnRGF0ZScgfSxcbiAgICAgICAgICB7IGlkOiAnZGF0ZXRpbWUnLCB0aXRsZTogJ0RhdGVUaW1lJyB9LFxuICAgICAgICAgIHsgaWQ6ICd0aW1lJywgdGl0bGU6ICdUaW1lJyB9LFxuICAgICAgICBdLFxuICAgICAgfSxcbiAgICB9LFxuICB9LFxuICB2aXNpYmxlOiB0cnVlLFxufTtcblxuZXhwb3J0IGZ1bmN0aW9uIGJvb2xlYW5EZWZhdWx0UHJvcGVydHkoKTogQVhQV2lkZ2V0UHJvcGVydHkge1xuICByZXR1cm4ge1xuICAgIG5hbWU6ICdkZWZhdWx0VmFsdWUnLFxuICAgIHRpdGxlOiAnRGVmYXVsdCBWYWx1ZScsXG4gICAgZ3JvdXA6IEFYUF9EQVRBX1BST1BFUlRZX0dST1VQLFxuICAgIHNjaGVtYToge1xuICAgICAgZGF0YVR5cGU6ICdib29sZWFuJyxcbiAgICAgIGludGVyZmFjZToge1xuICAgICAgICBkZWZhdWx0VmFsdWU6IHRydWUsXG4gICAgICAgIG5hbWU6ICdkZWZhdWx0VmFsdWUnLFxuICAgICAgICBwYXRoOiAnZGVmYXVsdFZhbHVlJyxcbiAgICAgICAgdHlwZTogJ3RvZ2dsZScsXG4gICAgICB9LFxuICAgICAgLy8gaW50ZXJmYWNlOiB7XG4gICAgICAvLyAgIG5hbWU6ICdkZWZhdWx0VmFsdWUnLFxuICAgICAgLy8gICBwYXRoOiAnZGVmYXVsdFZhbHVlJyxcbiAgICAgIC8vICAgdHlwZTogJ3NlbGVjdC1ib3gnLFxuICAgICAgLy8gICBvcHRpb25zOiB7XG4gICAgICAvLyAgICAgZGF0YVNvdXJjZTogW1xuICAgICAgLy8gICAgICAgeyBpZDogMCwgdGl0bGU6ICdGYWxzZScgfSxcbiAgICAgIC8vICAgICAgIHsgaWQ6IDEsIHRpdGxlOiAnVHJ1ZScgfSxcbiAgICAgIC8vICAgICBdLFxuICAgICAgLy8gICB9LFxuICAgICAgLy8gfSxcbiAgICB9LFxuICAgIHZpc2libGU6IHRydWUsXG4gIH07XG59XG5cbmV4cG9ydCBmdW5jdGlvbiBwbGFpblRleHREZWZhdWx0UHJvcGVydHkoKTogQVhQV2lkZ2V0UHJvcGVydHkge1xuICByZXR1cm4ge1xuICAgIG5hbWU6ICdkZWZhdWx0VmFsdWUnLFxuICAgIHRpdGxlOiAnRGVmYXVsdCBWYWx1ZScsXG4gICAgZ3JvdXA6IEFYUF9EQVRBX1BST1BFUlRZX0dST1VQLFxuICAgIHNjaGVtYToge1xuICAgICAgZGF0YVR5cGU6ICdzdHJpbmcnLFxuICAgICAgaW50ZXJmYWNlOiB7XG4gICAgICAgIG5hbWU6ICdkZWZhdWx0VmFsdWUnLFxuICAgICAgICBwYXRoOiAnZGVmYXVsdFZhbHVlJyxcbiAgICAgICAgdHlwZTogJ3RleHQtYm94JyxcbiAgICAgIH0sXG4gICAgfSxcbiAgICB2aXNpYmxlOiB0cnVlLFxuICB9O1xufVxuIl19
@@ -0,0 +1,21 @@
1
+ export const AXP_STYLING_PROPERTY_GROUP = {
2
+ name: "styling",
3
+ order: 1,
4
+ title: "Styling"
5
+ };
6
+ export const AXP_DATA_PROPERTY_GROUP = {
7
+ name: "data",
8
+ order: 3,
9
+ title: "Data"
10
+ };
11
+ export const AXP_BEHAVIOR_PROPERTY_GROUP = {
12
+ name: "behavior",
13
+ order: 2,
14
+ title: "Behavior"
15
+ };
16
+ export const AXP_WIDGET_PROPERTY_GROUP = {
17
+ name: "widget",
18
+ order: 0,
19
+ title: "Widget"
20
+ };
21
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ3JvdXBzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS93aWRnZXRzL3NyYy9saWIvcHJvcGVydGllcy9ncm91cHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsTUFBTSxDQUFDLE1BQU0sMEJBQTBCLEdBQTJCO0lBQzlELElBQUksRUFBRSxTQUFTO0lBQ2YsS0FBSyxFQUFFLENBQUM7SUFDUixLQUFLLEVBQUUsU0FBUztDQUNuQixDQUFBO0FBRUQsTUFBTSxDQUFDLE1BQU0sdUJBQXVCLEdBQTJCO0lBQzNELElBQUksRUFBRSxNQUFNO0lBQ1osS0FBSyxFQUFFLENBQUM7SUFDUixLQUFLLEVBQUUsTUFBTTtDQUNoQixDQUFBO0FBRUQsTUFBTSxDQUFDLE1BQU0sMkJBQTJCLEdBQTJCO0lBQy9ELElBQUksRUFBRSxVQUFVO0lBQ2hCLEtBQUssRUFBRSxDQUFDO0lBQ1IsS0FBSyxFQUFFLFVBQVU7Q0FDcEIsQ0FBQTtBQUdELE1BQU0sQ0FBQyxNQUFNLHlCQUF5QixHQUEyQjtJQUM3RCxJQUFJLEVBQUUsUUFBUTtJQUNkLEtBQUssRUFBRSxDQUFDO0lBQ1IsS0FBSyxFQUFFLFFBQVE7Q0FDbEIsQ0FBQSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFYUFdpZGdldFByb3BlcnR5R3JvdXAgfSBmcm9tIFwiQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlclwiXG5cbmV4cG9ydCBjb25zdCBBWFBfU1RZTElOR19QUk9QRVJUWV9HUk9VUDogQVhQV2lkZ2V0UHJvcGVydHlHcm91cCA9IHtcbiAgICBuYW1lOiBcInN0eWxpbmdcIixcbiAgICBvcmRlcjogMSxcbiAgICB0aXRsZTogXCJTdHlsaW5nXCJcbn1cblxuZXhwb3J0IGNvbnN0IEFYUF9EQVRBX1BST1BFUlRZX0dST1VQOiBBWFBXaWRnZXRQcm9wZXJ0eUdyb3VwID0ge1xuICAgIG5hbWU6IFwiZGF0YVwiLFxuICAgIG9yZGVyOiAzLFxuICAgIHRpdGxlOiBcIkRhdGFcIlxufVxuXG5leHBvcnQgY29uc3QgQVhQX0JFSEFWSU9SX1BST1BFUlRZX0dST1VQOiBBWFBXaWRnZXRQcm9wZXJ0eUdyb3VwID0ge1xuICAgIG5hbWU6IFwiYmVoYXZpb3JcIixcbiAgICBvcmRlcjogMixcbiAgICB0aXRsZTogXCJCZWhhdmlvclwiXG59XG5cblxuZXhwb3J0IGNvbnN0IEFYUF9XSURHRVRfUFJPUEVSVFlfR1JPVVA6IEFYUFdpZGdldFByb3BlcnR5R3JvdXAgPSB7XG4gICAgbmFtZTogXCJ3aWRnZXRcIixcbiAgICBvcmRlcjogMCxcbiAgICB0aXRsZTogXCJXaWRnZXRcIlxufSJdfQ==
@@ -0,0 +1,4 @@
1
+ export * from './groups';
2
+ export * from './editors.props';
3
+ export * from './table-column.props';
4
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3dpZGdldHMvc3JjL2xpYi9wcm9wZXJ0aWVzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsVUFBVSxDQUFDO0FBQ3pCLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyxzQkFBc0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vZ3JvdXBzJztcbmV4cG9ydCAqIGZyb20gJy4vZWRpdG9ycy5wcm9wcyc7XG5leHBvcnQgKiBmcm9tICcuL3RhYmxlLWNvbHVtbi5wcm9wcyc7Il19
@@ -0,0 +1,17 @@
1
+ import { AXP_STYLING_PROPERTY_GROUP } from './groups';
2
+ export const AXP_TABLE_COLUMN_WIDTH_PROPERTY = {
3
+ name: 'width',
4
+ title: 'Width',
5
+ group: AXP_STYLING_PROPERTY_GROUP,
6
+ schema: {
7
+ dataType: 'string',
8
+ defaultValue: '200px',
9
+ interface: {
10
+ name: 'width',
11
+ path: 'options.width',
12
+ type: 'text-box',
13
+ },
14
+ },
15
+ visible: true,
16
+ };
17
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtY29sdW1uLnByb3BzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS93aWRnZXRzL3NyYy9saWIvcHJvcGVydGllcy90YWJsZS1jb2x1bW4ucHJvcHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sVUFBVSxDQUFDO0FBRXRELE1BQU0sQ0FBQyxNQUFNLCtCQUErQixHQUFzQjtJQUNoRSxJQUFJLEVBQUUsT0FBTztJQUNiLEtBQUssRUFBRSxPQUFPO0lBQ2QsS0FBSyxFQUFFLDBCQUEwQjtJQUNqQyxNQUFNLEVBQUU7UUFDTixRQUFRLEVBQUUsUUFBUTtRQUNsQixZQUFZLEVBQUUsT0FBTztRQUNyQixTQUFTLEVBQUU7WUFDVCxJQUFJLEVBQUUsT0FBTztZQUNiLElBQUksRUFBRSxlQUFlO1lBQ3JCLElBQUksRUFBRSxVQUFVO1NBQ2pCO0tBQ0Y7SUFDRCxPQUFPLEVBQUUsSUFBSTtDQUNkLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWFBXaWRnZXRQcm9wZXJ0eSB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vbGF5b3V0L2J1aWxkZXInO1xuaW1wb3J0IHsgQVhQX1NUWUxJTkdfUFJPUEVSVFlfR1JPVVAgfSBmcm9tICcuL2dyb3Vwcyc7XG5cbmV4cG9ydCBjb25zdCBBWFBfVEFCTEVfQ09MVU1OX1dJRFRIX1BST1BFUlRZOiBBWFBXaWRnZXRQcm9wZXJ0eSA9IHtcbiAgbmFtZTogJ3dpZHRoJyxcbiAgdGl0bGU6ICdXaWR0aCcsXG4gIGdyb3VwOiBBWFBfU1RZTElOR19QUk9QRVJUWV9HUk9VUCxcbiAgc2NoZW1hOiB7XG4gICAgZGF0YVR5cGU6ICdzdHJpbmcnLFxuICAgIGRlZmF1bHRWYWx1ZTogJzIwMHB4JyxcbiAgICBpbnRlcmZhY2U6IHtcbiAgICAgIG5hbWU6ICd3aWR0aCcsXG4gICAgICBwYXRoOiAnb3B0aW9ucy53aWR0aCcsXG4gICAgICB0eXBlOiAndGV4dC1ib3gnLFxuICAgIH0sXG4gIH0sXG4gIHZpc2libGU6IHRydWUsXG59O1xuIl19
@@ -0,0 +1,37 @@
1
+ import { AXButtonModule } from '@acorex/components/button';
2
+ import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
3
+ import { CommonModule } from '@angular/common';
4
+ import { ChangeDetectionStrategy, Component, computed, EventEmitter } from '@angular/core';
5
+ import * as i0 from "@angular/core";
6
+ import * as i1 from "@acorex/components/button";
7
+ export class AXPButtonWidgetViewComponent extends AXPWidgetComponent {
8
+ constructor() {
9
+ super(...arguments);
10
+ this.disabled = computed(() => this.options()['disabled']);
11
+ this.color = computed(() => this.options()['color']?.id ?? 'primary');
12
+ this.look = computed(() => this.options()['look']?.id ?? 'solid');
13
+ this.text = computed(() => this.options()['text']);
14
+ this.onClick = new EventEmitter();
15
+ }
16
+ handleClick(e) {
17
+ this.onClick.emit(e);
18
+ }
19
+ api() {
20
+ return {
21
+ onClick: this.onClick,
22
+ };
23
+ }
24
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPButtonWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
25
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPButtonWidgetViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: ` <ax-button (onClick)="handleClick($event)" [disabled]="disabled()" [color]="color()" [look]="look()" [text]="text()"></ax-button> `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i1.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "responsiveOn", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "responsiveOnChange", "loadingTextChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
26
+ }
27
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPButtonWidgetViewComponent, decorators: [{
28
+ type: Component,
29
+ args: [{
30
+ template: ` <ax-button (onClick)="handleClick($event)" [disabled]="disabled()" [color]="color()" [look]="look()" [text]="text()"></ax-button> `,
31
+ standalone: true,
32
+ changeDetection: ChangeDetectionStrategy.OnPush,
33
+ imports: [CommonModule, AXButtonModule],
34
+ inputs: [],
35
+ }]
36
+ }] });
37
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLXdpZGdldC12aWV3LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vd2lkZ2V0cy9zcmMvbGliL3dpZGdldHMvYWN0aW9ucy9idXR0b24td2lkZ2V0L2J1dHRvbi13aWRnZXQtdmlldy5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBRTNELE9BQU8sRUFBdUIsa0JBQWtCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUMxRixPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxRQUFRLEVBQUUsWUFBWSxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7QUFRM0YsTUFBTSxPQUFPLDRCQUE2QixTQUFRLGtCQUF1QjtJQVB6RTs7UUFRWSxhQUFRLEdBQUcsUUFBUSxDQUFVLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDO1FBQy9ELFVBQUssR0FBRyxRQUFRLENBQW1CLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQyxPQUFPLENBQUMsRUFBRSxFQUFFLElBQUksU0FBUyxDQUFDLENBQUM7UUFDbkYsU0FBSSxHQUFHLFFBQVEsQ0FBa0IsR0FBRyxFQUFFLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDLE1BQU0sQ0FBQyxFQUFFLEVBQUUsSUFBSSxPQUFPLENBQUMsQ0FBQztRQUM5RSxTQUFJLEdBQUcsUUFBUSxDQUFTLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDO1FBRXpELFlBQU8sR0FBRyxJQUFJLFlBQVksRUFBZ0IsQ0FBQztLQVduRDtJQVRXLFdBQVcsQ0FBQyxDQUFlO1FBQ25DLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDO0lBQ3ZCLENBQUM7SUFFUSxHQUFHO1FBQ1YsT0FBTztZQUNMLE9BQU8sRUFBRSxJQUFJLENBQUMsT0FBTztTQUN0QixDQUFDO0lBQ0osQ0FBQzs4R0FoQlUsNEJBQTRCO2tHQUE1Qiw0QkFBNEIsK0ZBTjdCLHFJQUFxSSwyREFHckksWUFBWSw4QkFBRSxjQUFjOzsyRkFHM0IsNEJBQTRCO2tCQVB4QyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxxSUFBcUk7b0JBQy9JLFVBQVUsRUFBRSxJQUFJO29CQUNoQixlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsT0FBTyxFQUFFLENBQUMsWUFBWSxFQUFFLGNBQWMsQ0FBQztvQkFDdkMsTUFBTSxFQUFFLEVBQUU7aUJBQ1giLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWEJ1dHRvbk1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9idXR0b24nO1xuaW1wb3J0IHsgQVhDbGlja0V2ZW50LCBBWFN0eWxlQ29sb3JUeXBlLCBBWFN0eWxlTG9va1R5cGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvY29tbW9uJztcbmltcG9ydCB7IEFYUExheW91dEVsZW1lbnRBUEksIEFYUFdpZGdldENvbXBvbmVudCB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vbGF5b3V0L2J1aWxkZXInO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIGNvbXB1dGVkLCBFdmVudEVtaXR0ZXIgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbkBDb21wb25lbnQoe1xuICB0ZW1wbGF0ZTogYCA8YXgtYnV0dG9uIChvbkNsaWNrKT1cImhhbmRsZUNsaWNrKCRldmVudClcIiBbZGlzYWJsZWRdPVwiZGlzYWJsZWQoKVwiIFtjb2xvcl09XCJjb2xvcigpXCIgW2xvb2tdPVwibG9vaygpXCIgW3RleHRdPVwidGV4dCgpXCI+PC9heC1idXR0b24+IGAsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBBWEJ1dHRvbk1vZHVsZV0sXG4gIGlucHV0czogW10sXG59KVxuZXhwb3J0IGNsYXNzIEFYUEJ1dHRvbldpZGdldFZpZXdDb21wb25lbnQgZXh0ZW5kcyBBWFBXaWRnZXRDb21wb25lbnQ8YW55PiB7XG4gIHByb3RlY3RlZCBkaXNhYmxlZCA9IGNvbXB1dGVkPGJvb2xlYW4+KCgpID0+IHRoaXMub3B0aW9ucygpWydkaXNhYmxlZCddKTtcbiAgcHJvdGVjdGVkIGNvbG9yID0gY29tcHV0ZWQ8QVhTdHlsZUNvbG9yVHlwZT4oKCkgPT4gdGhpcy5vcHRpb25zKClbJ2NvbG9yJ10/LmlkID8/ICdwcmltYXJ5Jyk7XG4gIHByb3RlY3RlZCBsb29rID0gY29tcHV0ZWQ8QVhTdHlsZUxvb2tUeXBlPigoKSA9PiB0aGlzLm9wdGlvbnMoKVsnbG9vayddPy5pZCA/PyAnc29saWQnKTtcbiAgcHJvdGVjdGVkIHRleHQgPSBjb21wdXRlZDxzdHJpbmc+KCgpID0+IHRoaXMub3B0aW9ucygpWyd0ZXh0J10pO1xuXG4gIHB1YmxpYyBvbkNsaWNrID0gbmV3IEV2ZW50RW1pdHRlcjxBWENsaWNrRXZlbnQ+KCk7XG5cbiAgcHJvdGVjdGVkIGhhbmRsZUNsaWNrKGU6IEFYQ2xpY2tFdmVudCkge1xuICAgIHRoaXMub25DbGljay5lbWl0KGUpO1xuICB9XG5cbiAgb3ZlcnJpZGUgYXBpKCk6IEFYUExheW91dEVsZW1lbnRBUEkge1xuICAgIHJldHVybiB7XG4gICAgICBvbkNsaWNrOiB0aGlzLm9uQ2xpY2ssXG4gICAgfTtcbiAgfVxufVxuIl19