@acorex/platform 18.0.0 → 18.0.2

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 (1210) hide show
  1. package/README.md +7 -7
  2. package/auth/README.md +3 -3
  3. package/auth/lib/auth.strategy.d.ts +6 -3
  4. package/common/README.md +3 -3
  5. package/common/index.d.ts +5 -3
  6. package/common/lib/app/application.types.d.ts +234 -0
  7. package/common/lib/app/index.d.ts +2 -0
  8. package/common/lib/common.module.d.ts +6 -4
  9. package/common/lib/configs/app.config.d.ts +1 -1
  10. package/common/lib/layout/beardcrumb.type.d.ts +6 -0
  11. package/common/lib/layout/grid-layout/grid-layout.directive.d.ts +15 -0
  12. package/common/lib/layout/grid-layout/grid-layout.types.d.ts +19 -0
  13. package/common/lib/layout/grid-layout/index.d.ts +2 -0
  14. package/common/lib/layout/index.d.ts +9 -0
  15. package/common/lib/layout/logo/index.d.ts +2 -0
  16. package/common/lib/layout/sticky.directive.d.ts +25 -0
  17. package/common/lib/layout/theme/components/slots/index.d.ts +3 -0
  18. package/common/lib/layout/theme/components/slots/navbar-slot.component.d.ts +10 -0
  19. package/common/lib/layout/theme/store/admin-layout.selectors.d.ts +5 -0
  20. package/common/lib/schema/entity/entity.class.d.ts +155 -0
  21. package/common/lib/schema/index.d.ts +8 -0
  22. package/common/lib/schema/schema.types.d.ts +15 -0
  23. package/common/lib/schema/widget/index.d.ts +5 -0
  24. package/common/lib/schema/widget/widget-base.d.ts +45 -0
  25. package/common/lib/schema/widget/widget-token.d.ts +16 -0
  26. package/common/lib/schema/widgets/avatar/avatar-widget-edit.component.d.ts +16 -0
  27. package/common/lib/schema/widgets/avatar/avatar-widget-view.component.d.ts +13 -0
  28. package/common/lib/schema/widgets/checkbox/checkbox-widget-column.component.d.ts +11 -0
  29. package/common/lib/schema/widgets/checkbox/checkbox-widget-edit.component.d.ts +6 -0
  30. package/common/lib/schema/widgets/checkbox/checkbox-widget-view.component.d.ts +11 -0
  31. package/common/lib/schema/widgets/common-widget-filter/boolean-widget-filter.component.d.ts +18 -0
  32. package/common/lib/schema/widgets/common-widget-filter/number-widget-filter.component.d.ts +12 -0
  33. package/common/lib/schema/widgets/common-widget-filter/string-widget-filter.component.d.ts +12 -0
  34. package/common/lib/schema/widgets/common-widgets.module.d.ts +32 -0
  35. package/common/lib/schema/widgets/dateTime/dateTime-widget-column.component.d.ts +11 -0
  36. package/common/lib/schema/widgets/dateTime/dateTime-widget-edit.component.d.ts +26 -0
  37. package/common/lib/schema/widgets/dateTime/dateTime-widget-filter.component.d.ts +16 -0
  38. package/common/lib/schema/widgets/dateTime/dateTime-widget-view.component.d.ts +11 -0
  39. package/common/lib/schema/widgets/email/email-widget-column.component.d.ts +16 -0
  40. package/common/lib/schema/widgets/email/email-widget-edit.component.d.ts +28 -0
  41. package/common/lib/schema/widgets/email/email-widget-view.component.d.ts +16 -0
  42. package/common/lib/schema/widgets/file/file-widget-column.component.d.ts +8 -0
  43. package/common/lib/schema/widgets/file/file-widget-edit.component.d.ts +17 -0
  44. package/common/lib/schema/widgets/file/file-widget-filter.component.d.ts +6 -0
  45. package/common/lib/schema/widgets/file/file-widget-view.component.d.ts +17 -0
  46. package/common/lib/schema/widgets/gallery/gallery-widget-edit.component.d.ts +15 -0
  47. package/common/lib/schema/widgets/gallery/gallery-widget-filter.component.d.ts +6 -0
  48. package/common/lib/schema/widgets/gallery/gallery-widget-view.component.d.ts +16 -0
  49. package/common/lib/schema/widgets/lookup/lookup-widget-column.component.d.ts +17 -0
  50. package/common/lib/schema/widgets/lookup/lookup-widget-edit.component.d.ts +15 -0
  51. package/common/lib/schema/widgets/lookup/lookup-widget-filter.component.d.ts +17 -0
  52. package/common/lib/schema/widgets/lookup/lookup-widget-view.component.d.ts +17 -0
  53. package/common/lib/schema/widgets/map/map-widget-edit.component.d.ts +15 -0
  54. package/common/lib/schema/widgets/map/map-widget-view.component.d.ts +17 -0
  55. package/common/lib/schema/widgets/messenger/messenger-widget-column.component.d.ts +15 -0
  56. package/common/lib/schema/widgets/messenger/messenger-widget-edit.component.d.ts +14 -0
  57. package/common/lib/schema/widgets/messenger/messenger-widget-view.component.d.ts +17 -0
  58. package/common/lib/schema/widgets/number/number-widget-edit.component.d.ts +7 -0
  59. package/common/lib/schema/widgets/number/number-widget-view.component.d.ts +8 -0
  60. package/common/lib/schema/widgets/password/password-widget-column.component.d.ts +14 -0
  61. package/common/lib/schema/widgets/password/password-widget-edit.component.d.ts +6 -0
  62. package/common/lib/schema/widgets/password/password-widget-view.component.d.ts +18 -0
  63. package/common/lib/schema/widgets/phone/phone-widget-column.component.d.ts +15 -0
  64. package/common/lib/schema/widgets/phone/phone-widget-edit.component.d.ts +29 -0
  65. package/common/lib/schema/widgets/phone/phone-widget-view.component.d.ts +18 -0
  66. package/common/lib/schema/widgets/rich-text/rich-text-widget-column.component.d.ts +11 -0
  67. package/common/lib/schema/widgets/rich-text/rich-text-widget-edit.component.d.ts +33 -0
  68. package/common/lib/schema/widgets/rich-text/rich-text-widget-view.component.d.ts +10 -0
  69. package/common/lib/schema/widgets/selection-list/selection-list-widget-column.component.d.ts +16 -0
  70. package/common/lib/schema/widgets/selection-list/selection-list-widget-edit.component.d.ts +12 -0
  71. package/common/lib/schema/widgets/selection-list/selection-list-widget-filter.component.d.ts +9 -0
  72. package/common/lib/schema/widgets/selection-list/selection-list-widget-view.component.d.ts +15 -0
  73. package/common/lib/schema/widgets/signature-pad/signature-pad-widget-edit.component.d.ts +19 -0
  74. package/common/lib/schema/widgets/signature-pad/signature-pad-widget-view.component.d.ts +8 -0
  75. package/common/lib/schema/widgets/text/largetext-widget-edit.component.d.ts +6 -0
  76. package/common/lib/schema/widgets/text/text-widget-column.component.d.ts +12 -0
  77. package/common/lib/schema/widgets/text/text-widget-edit.component.d.ts +23 -0
  78. package/common/lib/schema/widgets/text/text-widget-view.component.d.ts +11 -0
  79. package/common/lib/schema/widgets/toggle/toggle-widget-column.component.d.ts +11 -0
  80. package/common/lib/schema/widgets/toggle/toggle-widget-edit.component.d.ts +6 -0
  81. package/common/lib/schema/widgets/toggle/toggle-widget-view.component.d.ts +11 -0
  82. package/common/lib/store/common.actions.d.ts +1 -0
  83. package/common/lib/utils/data-generator.d.ts +12 -0
  84. package/common/lib/utils/index.d.ts +1 -1
  85. package/common/lib/utils/router-util.service.d.ts +1 -1
  86. package/common/lib/workflows/common.workflow.d.ts +38 -0
  87. package/common/lib/workflows/error-handler.d.ts +8 -0
  88. package/esm2022/auth/index.mjs +1 -1
  89. package/esm2022/auth/lib/application/application.loader.mjs +1 -1
  90. package/esm2022/auth/lib/application/application.types.mjs +1 -1
  91. package/esm2022/auth/lib/auth-registry.service.mjs +1 -1
  92. package/esm2022/auth/lib/auth.guard.mjs +1 -1
  93. package/esm2022/auth/lib/auth.module.mjs +1 -1
  94. package/esm2022/auth/lib/auth.strategy.mjs +1 -1
  95. package/esm2022/auth/lib/errors.types.mjs +1 -1
  96. package/esm2022/auth/lib/feature/feature.directive.mjs +1 -1
  97. package/esm2022/auth/lib/feature/feature.guard.mjs +1 -1
  98. package/esm2022/auth/lib/feature/feature.loader.mjs +1 -1
  99. package/esm2022/auth/lib/feature/feature.types.mjs +1 -1
  100. package/esm2022/auth/lib/feature/index.mjs +1 -1
  101. package/esm2022/auth/lib/permission/index.mjs +1 -1
  102. package/esm2022/auth/lib/permission/permission.directive.mjs +1 -1
  103. package/esm2022/auth/lib/permission/permission.guard.mjs +1 -1
  104. package/esm2022/auth/lib/permission/permission.loader.mjs +1 -1
  105. package/esm2022/auth/lib/permission/permission.types.mjs +1 -1
  106. package/esm2022/auth/lib/session.service.mjs +4 -2
  107. package/esm2022/auth/lib/session.types.mjs +1 -1
  108. package/esm2022/auth/lib/tenant/tenant.loader.mjs +1 -1
  109. package/esm2022/auth/lib/tenant/tenant.types.mjs +1 -1
  110. package/esm2022/auth/lib/user/user.types.mjs +1 -1
  111. package/esm2022/common/index.mjs +6 -4
  112. package/esm2022/common/lib/app/application.types.mjs +39 -0
  113. package/esm2022/common/lib/app/index.mjs +3 -0
  114. package/esm2022/common/lib/app/operators.mjs +50 -0
  115. package/esm2022/common/lib/common.module.mjs +20 -44
  116. package/esm2022/common/lib/configs/app.config.mjs +2 -2
  117. package/esm2022/common/lib/configs/config.types.mjs +3 -0
  118. package/esm2022/common/lib/data/data-provider.types.mjs +1 -1
  119. package/esm2022/common/lib/errors/error-handler-registry.service.mjs +1 -1
  120. package/esm2022/common/lib/errors/error-handler.types.mjs +1 -1
  121. package/esm2022/common/lib/errors/global-error-handler.mjs +1 -1
  122. package/esm2022/common/lib/errors/index.mjs +1 -1
  123. package/esm2022/common/lib/layout/beardcrumb.type.mjs +2 -0
  124. package/esm2022/common/lib/layout/component-slot/component-slot-loader.service.mjs +56 -0
  125. package/esm2022/common/lib/layout/component-slot/component-slot-registery.service.mjs +28 -0
  126. package/esm2022/common/lib/layout/component-slot/component-slot.directive.mjs +24 -0
  127. package/esm2022/common/lib/layout/component-slot/component-slot.module.mjs +72 -0
  128. package/esm2022/common/lib/layout/component-slot/component-slot.types.mjs +2 -0
  129. package/esm2022/common/lib/layout/component-slot/index.mjs +6 -0
  130. package/esm2022/common/lib/layout/grid-layout/grid-layout.directive.mjs +61 -0
  131. package/esm2022/common/lib/layout/grid-layout/grid-layout.types.mjs +2 -0
  132. package/esm2022/common/lib/layout/grid-layout/index.mjs +3 -0
  133. package/esm2022/common/lib/layout/index.mjs +10 -0
  134. package/esm2022/common/lib/layout/layout.service.mjs +79 -0
  135. package/esm2022/common/lib/layout/logo/index.mjs +3 -0
  136. package/esm2022/common/lib/layout/logo/logo.component.mjs +38 -0
  137. package/esm2022/common/lib/layout/logo/logo.types.mjs +21 -0
  138. package/esm2022/common/lib/layout/menu/index.mjs +3 -0
  139. package/esm2022/common/lib/layout/menu/menu.loader.mjs +39 -0
  140. package/esm2022/common/lib/layout/menu/menu.types.mjs +2 -0
  141. package/esm2022/common/lib/layout/sticky.directive.mjs +78 -0
  142. package/esm2022/common/lib/layout/theme/components/slots/footer-text-slot.component.mjs +20 -0
  143. package/esm2022/common/lib/layout/theme/components/slots/index.mjs +4 -0
  144. package/esm2022/common/lib/layout/theme/components/slots/navbar-slot.component.mjs +36 -0
  145. package/esm2022/common/lib/layout/theme/components/slots/theme-slot.component.mjs +48 -0
  146. package/esm2022/common/lib/layout/theme/store/admin-layout.actions.mjs +12 -0
  147. package/esm2022/common/lib/layout/theme/store/admin-layout.effects.mjs +29 -0
  148. package/esm2022/common/lib/layout/theme/store/admin-layout.reducers.mjs +60 -0
  149. package/esm2022/common/lib/layout/theme/store/admin-layout.selectors.mjs +8 -0
  150. package/esm2022/common/lib/layout/theme/store/admin-layout.state.mjs +16 -0
  151. package/esm2022/common/lib/layout/theme/store/index.mjs +6 -0
  152. package/esm2022/common/lib/schema/component-loader.mjs +2 -0
  153. package/esm2022/common/lib/schema/entity/entity-registery.service.mjs +70 -0
  154. package/esm2022/common/lib/schema/entity/entity.class.mjs +32 -0
  155. package/esm2022/common/lib/schema/entity/entity.loader.mjs +13 -0
  156. package/esm2022/common/lib/schema/entity/index.mjs +4 -0
  157. package/esm2022/common/lib/schema/formats.mjs +2 -0
  158. package/esm2022/common/lib/schema/index.mjs +9 -0
  159. package/esm2022/common/lib/schema/schema-registery.service.mjs +33 -0
  160. package/esm2022/common/lib/schema/schema.module.mjs +23 -0
  161. package/esm2022/common/lib/schema/schema.types.mjs +2 -0
  162. package/esm2022/common/lib/schema/widget/index.mjs +6 -0
  163. package/esm2022/common/lib/schema/widget/widget-base.mjs +113 -0
  164. package/esm2022/common/lib/schema/widget/widget-column-renderer.mjs +118 -0
  165. package/esm2022/common/lib/schema/widget/widget-filter-renderer.mjs +133 -0
  166. package/esm2022/common/lib/schema/widget/widget-renderer.mjs +144 -0
  167. package/esm2022/common/lib/schema/widget/widget-token.mjs +3 -0
  168. package/esm2022/common/lib/schema/widgets/avatar/avatar-widget-edit.component.mjs +160 -0
  169. package/esm2022/common/lib/schema/widgets/avatar/avatar-widget-view.component.mjs +63 -0
  170. package/esm2022/common/lib/schema/widgets/checkbox/checkbox-widget-column.component.mjs +53 -0
  171. package/esm2022/common/lib/schema/widgets/checkbox/checkbox-widget-edit.component.mjs +22 -0
  172. package/esm2022/common/lib/schema/widgets/checkbox/checkbox-widget-view.component.mjs +47 -0
  173. package/esm2022/common/lib/schema/widgets/common-widget-filter/boolean-widget-filter.component.mjs +147 -0
  174. package/esm2022/common/lib/schema/widgets/common-widget-filter/number-widget-filter.component.mjs +135 -0
  175. package/esm2022/common/lib/schema/widgets/common-widget-filter/string-widget-filter.component.mjs +125 -0
  176. package/esm2022/common/lib/schema/widgets/common-widgets.module.mjs +505 -0
  177. package/esm2022/common/lib/schema/widgets/dateTime/dateTime-widget-column.component.mjs +44 -0
  178. package/esm2022/common/lib/schema/widgets/dateTime/dateTime-widget-edit.component.mjs +178 -0
  179. package/esm2022/common/lib/schema/widgets/dateTime/dateTime-widget-filter.component.mjs +213 -0
  180. package/esm2022/common/lib/schema/widgets/dateTime/dateTime-widget-view.component.mjs +71 -0
  181. package/esm2022/common/lib/schema/widgets/email/email-widget-column.component.mjs +73 -0
  182. package/esm2022/common/lib/schema/widgets/email/email-widget-edit.component.mjs +249 -0
  183. package/esm2022/common/lib/schema/widgets/email/email-widget-view.component.mjs +108 -0
  184. package/esm2022/common/lib/schema/widgets/file/file-widget-column.component.mjs +27 -0
  185. package/esm2022/common/lib/schema/widgets/file/file-widget-edit.component.mjs +200 -0
  186. package/esm2022/common/lib/schema/widgets/file/file-widget-filter.component.mjs +27 -0
  187. package/esm2022/common/lib/schema/widgets/file/file-widget-view.component.mjs +153 -0
  188. package/esm2022/common/lib/schema/widgets/gallery/gallery-widget-edit.component.mjs +189 -0
  189. package/esm2022/common/lib/schema/widgets/gallery/gallery-widget-filter.component.mjs +27 -0
  190. package/esm2022/common/lib/schema/widgets/gallery/gallery-widget-types.mjs +2 -0
  191. package/esm2022/common/lib/schema/widgets/gallery/gallery-widget-view.component.mjs +173 -0
  192. package/esm2022/common/lib/schema/widgets/index.mjs +2 -0
  193. package/esm2022/common/lib/schema/widgets/lookup/lookup-widget-column.component.mjs +43 -0
  194. package/esm2022/common/lib/schema/widgets/lookup/lookup-widget-edit.component.mjs +74 -0
  195. package/esm2022/common/lib/schema/widgets/lookup/lookup-widget-filter.component.mjs +115 -0
  196. package/esm2022/common/lib/schema/widgets/lookup/lookup-widget-view.component.mjs +54 -0
  197. package/esm2022/common/lib/schema/widgets/map/map-widget-edit.component.mjs +91 -0
  198. package/esm2022/common/lib/schema/widgets/map/map-widget-view.component.mjs +63 -0
  199. package/esm2022/common/lib/schema/widgets/messenger/messenger-widget-column.component.mjs +71 -0
  200. package/esm2022/common/lib/schema/widgets/messenger/messenger-widget-edit.component.mjs +136 -0
  201. package/esm2022/common/lib/schema/widgets/messenger/messenger-widget-view.component.mjs +132 -0
  202. package/esm2022/common/lib/schema/widgets/number/number-widget-edit.component.mjs +46 -0
  203. package/esm2022/common/lib/schema/widgets/number/number-widget-view.component.mjs +30 -0
  204. package/esm2022/common/lib/schema/widgets/password/change-password.component.mjs +174 -0
  205. package/esm2022/common/lib/schema/widgets/password/password-widget-column.component.mjs +67 -0
  206. package/esm2022/common/lib/schema/widgets/password/password-widget-edit.component.mjs +41 -0
  207. package/esm2022/common/lib/schema/widgets/password/password-widget-view.component.mjs +109 -0
  208. package/esm2022/common/lib/schema/widgets/phone/phone-widget-column.component.mjs +91 -0
  209. package/esm2022/common/lib/schema/widgets/phone/phone-widget-edit.component.mjs +245 -0
  210. package/esm2022/common/lib/schema/widgets/phone/phone-widget-view.component.mjs +123 -0
  211. package/esm2022/common/lib/schema/widgets/rich-text/rich-text-widget-column.component.mjs +61 -0
  212. package/esm2022/common/lib/schema/widgets/rich-text/rich-text-widget-edit.component.mjs +67 -0
  213. package/esm2022/common/lib/schema/widgets/rich-text/rich-text-widget-view.component.mjs +34 -0
  214. package/esm2022/common/lib/schema/widgets/selection-list/selection-list-widget-column.component.mjs +45 -0
  215. package/esm2022/common/lib/schema/widgets/selection-list/selection-list-widget-edit.component.mjs +53 -0
  216. package/esm2022/common/lib/schema/widgets/selection-list/selection-list-widget-filter.component.mjs +41 -0
  217. package/esm2022/common/lib/schema/widgets/selection-list/selection-list-widget-view.component.mjs +45 -0
  218. package/esm2022/common/lib/schema/widgets/signature-pad/signature-pad-widget-edit.component.mjs +128 -0
  219. package/esm2022/common/lib/schema/widgets/signature-pad/signature-pad-widget-view.component.mjs +41 -0
  220. package/esm2022/common/lib/schema/widgets/text/largetext-widget-edit.component.mjs +37 -0
  221. package/esm2022/common/lib/schema/widgets/text/text-widget-column.component.mjs +46 -0
  222. package/esm2022/common/lib/schema/widgets/text/text-widget-edit.component.mjs +162 -0
  223. package/esm2022/common/lib/schema/widgets/text/text-widget-view.component.mjs +66 -0
  224. package/esm2022/common/lib/schema/widgets/toggle/toggle-widget-column.component.mjs +57 -0
  225. package/esm2022/common/lib/schema/widgets/toggle/toggle-widget-edit.component.mjs +25 -0
  226. package/esm2022/common/lib/schema/widgets/toggle/toggle-widget-view.component.mjs +49 -0
  227. package/esm2022/common/lib/settings/index.mjs +1 -1
  228. package/esm2022/common/lib/settings/settings.loader.mjs +1 -1
  229. package/esm2022/common/lib/settings/settings.service.mjs +1 -1
  230. package/esm2022/common/lib/settings/settings.types.mjs +1 -1
  231. package/esm2022/common/lib/store/common.actions.mjs +2 -1
  232. package/esm2022/common/lib/store/common.effects.mjs +1 -1
  233. package/esm2022/common/lib/store/index.mjs +1 -1
  234. package/esm2022/common/lib/utils/clipboard-service.mjs +1 -1
  235. package/esm2022/common/lib/utils/data-generator.mjs +47 -0
  236. package/esm2022/common/lib/utils/index.mjs +2 -2
  237. package/esm2022/common/lib/utils/router-util.service.mjs +1 -1
  238. package/esm2022/common/lib/workflows/common.workflow.mjs +68 -0
  239. package/esm2022/common/lib/workflows/error-handler.mjs +24 -0
  240. package/esm2022/common/lib/workflows/index.mjs +3 -0
  241. package/esm2022/index.mjs +1 -1
  242. package/esm2022/layout/builder/acorex-platform-layout-builder.mjs +5 -0
  243. package/esm2022/layout/builder/index.mjs +2 -0
  244. package/esm2022/layout/builder/lib/builder/builder.module.mjs +67 -0
  245. package/esm2022/layout/builder/lib/builder/builder.service.mjs +81 -0
  246. package/esm2022/layout/builder/lib/builder/index.mjs +9 -0
  247. package/esm2022/layout/builder/lib/builder/layout.types.mjs +2 -0
  248. package/esm2022/layout/builder/lib/builder/widget-column-renderer.mjs +110 -0
  249. package/esm2022/layout/builder/lib/builder/widget-container.component.mjs +55 -0
  250. package/esm2022/layout/builder/lib/builder/widget-registery.service.mjs +33 -0
  251. package/esm2022/layout/builder/lib/builder/widget-renderer.component.mjs +293 -0
  252. package/esm2022/layout/builder/lib/builder/widget.types.mjs +74 -0
  253. package/esm2022/layout/entity/acorex-platform-layout-entity.mjs +5 -0
  254. package/esm2022/layout/entity/index.mjs +2 -0
  255. package/esm2022/layout/entity/lib/entity-detail-list.viewmodel.mjs +154 -0
  256. package/esm2022/layout/entity/lib/entity-master-create.viewmodel.mjs +128 -0
  257. package/esm2022/layout/entity/lib/entity-master-list.viewmodel.mjs +278 -0
  258. package/esm2022/layout/entity/lib/entity-master-single.viewmodel.mjs +230 -0
  259. package/esm2022/layout/entity/lib/entity-master-update.viewmodel.mjs +101 -0
  260. package/esm2022/layout/entity/lib/entity-registery.service.mjs +69 -0
  261. package/esm2022/layout/entity/lib/entity.config.mjs +4 -0
  262. package/esm2022/layout/entity/lib/entity.module.mjs +134 -0
  263. package/esm2022/layout/entity/lib/entity.viewmodel.mjs +32 -0
  264. package/esm2022/layout/entity/lib/index.mjs +9 -0
  265. package/esm2022/layout/entity/lib/widgets/lookup-widget/index.mjs +8 -0
  266. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-column.component.mjs +19 -0
  267. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-designer.component.mjs +19 -0
  268. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-edit.component.mjs +127 -0
  269. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-filter.component.mjs +20 -0
  270. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-print.component.mjs +19 -0
  271. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-selector.component.mjs +105 -0
  272. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-selector.viewmodel.mjs +85 -0
  273. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-view.component.mjs +19 -0
  274. package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget.config.mjs +24 -0
  275. package/esm2022/layout/entity/lib/workflows/create-entity.workflow.mjs +93 -0
  276. package/esm2022/layout/entity/lib/workflows/delete-entity.workflow.mjs +123 -0
  277. package/esm2022/layout/entity/lib/workflows/modify-section.workflow.mjs +104 -0
  278. package/esm2022/layout/entity/lib/workflows/show-details.workflow.mjs +36 -0
  279. package/esm2022/layouts/index.mjs +1 -3
  280. package/esm2022/layouts/lib/admin/admin.module.mjs +9 -17
  281. package/esm2022/layouts/lib/admin/admin.routes.mjs +7 -8
  282. package/esm2022/layouts/lib/admin/custom-reuse.strategy.mjs +1 -1
  283. package/esm2022/layouts/lib/admin/entity-layout/entity-create-view/entity-create-view.component.mjs +6 -6
  284. package/esm2022/layouts/lib/admin/entity-layout/entity-create-view/entity-create-view.config.mjs +3 -2
  285. package/esm2022/layouts/lib/admin/entity-layout/entity-details-view/detail-view.config.mjs +3 -2
  286. package/esm2022/layouts/lib/admin/entity-layout/entity-details-view/entity-details-view.component.mjs +8 -11
  287. package/esm2022/layouts/lib/admin/entity-layout/entity-details-view/index.mjs +1 -1
  288. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/entity-custom-view/entity-custom-view.component.mjs +5 -5
  289. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/index.mjs +1 -1
  290. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-columns/list-view-option-columns.component.mjs +4 -4
  291. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-conditions/list-view-option-conditions.component.mjs +6 -9
  292. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-conditions/list-view-option-filter-operator.component.mjs +19 -19
  293. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-sorting/list-view-option-sorting.component.mjs +6 -8
  294. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/entity-list-view.component.mjs +6 -7
  295. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/index.mjs +1 -1
  296. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/list-view.config.mjs +3 -3
  297. package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/list-view.module.mjs +2 -3
  298. package/esm2022/layouts/lib/admin/entity-layout/entity-modify-view/entity-modify-view.component.mjs +5 -5
  299. package/esm2022/layouts/lib/admin/entity-layout/entity-modify-view/entity-modify-view.config.mjs +3 -2
  300. package/esm2022/layouts/lib/admin/entity-layout/entity-quick-view/entity-quick-view.component.mjs +5 -6
  301. package/esm2022/layouts/lib/admin/entity-layout/index.mjs +1 -1
  302. package/esm2022/layouts/lib/admin/entity-layout/workflows/create-entity.workflow.mjs +2 -2
  303. package/esm2022/layouts/lib/admin/entity-layout/workflows/delete-entity.workflow.mjs +2 -2
  304. package/esm2022/layouts/lib/admin/entity-layout/workflows/index.mjs +4 -1
  305. package/esm2022/layouts/lib/admin/entity-layout/workflows/modify-entity.workflow.mjs +2 -2
  306. package/esm2022/layouts/lib/admin/entity-layout/workflows/modify-section.workflow.mjs +85 -0
  307. package/esm2022/layouts/lib/admin/entity-layout/workflows/show-details.workflow.mjs +27 -1
  308. package/esm2022/layouts/lib/admin/entity-layout/workflows/show-list.workflow.mjs +26 -1
  309. package/esm2022/layouts/lib/admin/entity-layout/workflows/show-quick-view.workflow.mjs +41 -1
  310. package/esm2022/layouts/lib/admin/entity.resolver.mjs +1 -1
  311. package/esm2022/layouts/lib/admin/index.mjs +1 -3
  312. package/esm2022/layouts/lib/layout.module.mjs +9 -14
  313. package/esm2022/mocks/index.mjs +1 -1
  314. package/esm2022/mocks/lib/mocks.module.mjs +1 -1
  315. package/esm2022/mocks/lib/services/mocker.service.mjs +1 -1
  316. package/esm2022/mocks/lib/storage/storage.mock.service.mjs +1 -1
  317. package/esm2022/native/index.mjs +1 -1
  318. package/esm2022/native/lib/native.service.mjs +1 -1
  319. package/esm2022/themes/default/acorex-platform-themes-default.mjs +5 -0
  320. package/esm2022/themes/default/index.mjs +3 -0
  321. package/esm2022/themes/default/lib/default.module.mjs +74 -0
  322. package/esm2022/themes/default/lib/entity-reuse.strategy.mjs +21 -0
  323. package/esm2022/themes/default/lib/layout.routes.mjs +20 -0
  324. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-detail-list-view/entity-detail-list-view.component.mjs +114 -0
  325. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-create-view/entity-master-create-view.component.mjs +93 -0
  326. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-list-view/entity-list-view.component.mjs +157 -0
  327. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-list-view/list-view-option-columns/list-view-option-columns.component.mjs +64 -0
  328. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-list-view/list-view-option-sorting/list-view-option-sorting.component.mjs +61 -0
  329. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-modify-view/entity-master-modify-view.component.mjs +82 -0
  330. package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-single-view/entity-master-single-view.component.mjs +77 -0
  331. package/esm2022/themes/default/lib/layouts/root-layout/components/footer/footer.component.mjs +14 -0
  332. package/esm2022/themes/default/lib/layouts/root-layout/components/header/header.component.mjs +29 -0
  333. package/esm2022/themes/default/lib/layouts/root-layout/index.mjs +5 -0
  334. package/esm2022/themes/default/lib/layouts/root-layout/root-layout.component.mjs +78 -0
  335. package/esm2022/themes/default/lib/layouts/root-layout/root-layout.module.mjs +91 -0
  336. package/esm2022/themes/default/lib/pages/errors/error-401/error-401.component.mjs +28 -0
  337. package/esm2022/themes/default/lib/pages/errors/error-404/error-404.component.mjs +22 -0
  338. package/esm2022/themes/default/lib/pages/errors/error-offline/error-offline.component.mjs +16 -0
  339. package/esm2022/widgets/index.mjs +1 -1
  340. package/esm2022/widgets/lib/editors/checkbox/checkbox-widget-column.component.mjs +45 -0
  341. package/esm2022/widgets/lib/editors/checkbox/checkbox-widget-edit.component.mjs +10 -10
  342. package/esm2022/widgets/lib/editors/checkbox/checkbox-widget-view.component.mjs +54 -0
  343. package/esm2022/widgets/lib/editors/checkbox/checkbox-widget.config.mjs +10 -4
  344. package/esm2022/widgets/lib/editors/checkbox/index.mjs +1 -1
  345. package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-column.component.mjs +32 -7
  346. package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-designer.component.mjs +2 -2
  347. package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-edit.component.mjs +54 -54
  348. package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-filter.component.mjs +2 -2
  349. package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-print.component.mjs +2 -2
  350. package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-view.component.mjs +18 -18
  351. package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget.config.mjs +1 -1
  352. package/esm2022/widgets/lib/editors/date-time-box-widget/index.mjs +1 -1
  353. package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-column.component.mjs +54 -7
  354. package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-designer.component.mjs +2 -2
  355. package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-edit.component.mjs +173 -141
  356. package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-filter.component.mjs +2 -2
  357. package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-print.component.mjs +2 -2
  358. package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget-view.component.mjs +70 -70
  359. package/esm2022/widgets/lib/editors/email-box-widget/email-box-widget.config.mjs +1 -1
  360. package/esm2022/widgets/lib/editors/email-box-widget/index.mjs +1 -1
  361. package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-column.component.mjs +2 -2
  362. package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-designer.component.mjs +2 -2
  363. package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-edit.component.mjs +112 -112
  364. package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-filter.component.mjs +2 -2
  365. package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-print.component.mjs +2 -2
  366. package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget-view.component.mjs +64 -64
  367. package/esm2022/widgets/lib/editors/file-box-widget/file-box-widget.config.mjs +1 -1
  368. package/esm2022/widgets/lib/editors/file-box-widget/index.mjs +1 -1
  369. package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-column.component.mjs +2 -2
  370. package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-designer.component.mjs +2 -2
  371. package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-edit.component.mjs +108 -108
  372. package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-filter.component.mjs +2 -2
  373. package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-print.component.mjs +2 -2
  374. package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-types.mjs +1 -1
  375. package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget-view.component.mjs +98 -98
  376. package/esm2022/widgets/lib/editors/gallery-widget/gallery-widget.config.mjs +1 -1
  377. package/esm2022/widgets/lib/editors/gallery-widget/index.mjs +1 -1
  378. package/esm2022/widgets/lib/editors/map-box-widget/index.mjs +1 -1
  379. package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-column.component.mjs +2 -2
  380. package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-designer.component.mjs +2 -2
  381. package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-edit.component.mjs +6 -6
  382. package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-filter.component.mjs +2 -2
  383. package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-print.component.mjs +2 -2
  384. package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget-view.component.mjs +6 -6
  385. package/esm2022/widgets/lib/editors/map-box-widget/map-box-widget.config.mjs +1 -1
  386. package/esm2022/widgets/lib/editors/number-box-widget/index.mjs +1 -1
  387. package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-column.component.mjs +26 -7
  388. package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-designer.component.mjs +2 -2
  389. package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-edit.component.mjs +68 -68
  390. package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-filter.component.mjs +2 -2
  391. package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-print.component.mjs +2 -2
  392. package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-view.component.mjs +33 -19
  393. package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget.config.mjs +4 -1
  394. package/esm2022/widgets/lib/editors/password-box-widget/index.mjs +1 -1
  395. package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-column.component.mjs +2 -2
  396. package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-designer.component.mjs +2 -2
  397. package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-edit.component.mjs +10 -10
  398. package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-filter.component.mjs +2 -2
  399. package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-print.component.mjs +2 -2
  400. package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget-view.component.mjs +46 -46
  401. package/esm2022/widgets/lib/editors/password-box-widget/password-box-widget.config.mjs +1 -1
  402. package/esm2022/widgets/lib/editors/phone-box-widget/index.mjs +1 -1
  403. package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-column.component.mjs +54 -7
  404. package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-designer.component.mjs +2 -2
  405. package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-edit.component.mjs +162 -134
  406. package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-filter.component.mjs +2 -2
  407. package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-print.component.mjs +2 -2
  408. package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget-view.component.mjs +70 -70
  409. package/esm2022/widgets/lib/editors/phone-box-widget/phone-box-widget.config.mjs +1 -1
  410. package/esm2022/widgets/lib/editors/rich-text-widget/index.mjs +1 -1
  411. package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-column.component.mjs +2 -2
  412. package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-designer.component.mjs +2 -2
  413. package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-edit.component.mjs +10 -10
  414. package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-filter.component.mjs +2 -2
  415. package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-print.component.mjs +2 -2
  416. package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-view.component.mjs +10 -10
  417. package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget.config.mjs +1 -1
  418. package/esm2022/widgets/lib/editors/select-box-widget/index.mjs +1 -1
  419. package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-column.component.mjs +5 -5
  420. package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-designer.component.mjs +2 -2
  421. package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-edit.component.mjs +26 -26
  422. package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-filter.component.mjs +2 -2
  423. package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-print.component.mjs +2 -2
  424. package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget-view.component.mjs +24 -18
  425. package/esm2022/widgets/lib/editors/select-box-widget/select-box-widget.config.mjs +1 -1
  426. package/esm2022/widgets/lib/editors/selection-list-widget/index.mjs +1 -1
  427. package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-column.component.mjs +30 -8
  428. package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-designer.component.mjs +2 -2
  429. package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-edit.component.mjs +32 -32
  430. package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-filter.component.mjs +2 -2
  431. package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-print.component.mjs +2 -2
  432. package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-view.component.mjs +29 -8
  433. package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget.config.mjs +1 -1
  434. package/esm2022/widgets/lib/editors/signature-pad-widget/index.mjs +1 -1
  435. package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-column.component.mjs +2 -2
  436. package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-designer.component.mjs +2 -2
  437. package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-edit.component.mjs +56 -56
  438. package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-filter.component.mjs +2 -2
  439. package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-print.component.mjs +2 -2
  440. package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-view.component.mjs +18 -18
  441. package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget.config.mjs +1 -1
  442. package/esm2022/widgets/lib/editors/text-box-widget/index.mjs +1 -1
  443. package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-column.component.mjs +7 -6
  444. package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-designer.component.mjs +2 -2
  445. package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-edit.component.mjs +62 -62
  446. package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-filter.component.mjs +2 -2
  447. package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-print.component.mjs +2 -2
  448. package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-view.component.mjs +18 -18
  449. package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget.config.mjs +2 -1
  450. package/esm2022/widgets/lib/editors/toggle-widget/index.mjs +8 -0
  451. package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget-column.component.mjs +47 -0
  452. package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget-designer.component.mjs +19 -0
  453. package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget-edit.component.mjs +27 -0
  454. package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget-filter.component.mjs +20 -0
  455. package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget-print.component.mjs +19 -0
  456. package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget-view.component.mjs +47 -0
  457. package/esm2022/widgets/lib/editors/toggle-widget/toggle-widget.config.mjs +24 -0
  458. package/esm2022/widgets/lib/layout/block-widget/block-widget.component.mjs +14 -14
  459. package/esm2022/widgets/lib/layout/block-widget/block-widget.config.mjs +1 -1
  460. package/esm2022/widgets/lib/layout/block-widget/index.mjs +1 -1
  461. package/esm2022/widgets/lib/widgets.module.mjs +6 -3
  462. package/esm2022/workflow/index.mjs +1 -1
  463. package/esm2022/workflow/lib/errors.types.mjs +1 -1
  464. package/esm2022/workflow/lib/workflow-event-dispatcher.service.mjs +1 -1
  465. package/esm2022/workflow/lib/workflow-registery.service.mjs +1 -1
  466. package/esm2022/workflow/lib/workflow.module.mjs +1 -1
  467. package/esm2022/workflow/lib/workflow.service.mjs +1 -1
  468. package/esm2022/workflow/lib/workflow.types.mjs +1 -1
  469. package/fesm2022/acorex-platform-auth.mjs +3 -1
  470. package/fesm2022/acorex-platform-auth.mjs.map +1 -1
  471. package/fesm2022/acorex-platform-common-avatar-widget-edit.component-DAmNXjDm.mjs +178 -0
  472. package/fesm2022/acorex-platform-common-avatar-widget-edit.component-DAmNXjDm.mjs.map +1 -0
  473. package/fesm2022/acorex-platform-common-avatar-widget-view.component-BlA_cFkP.mjs +85 -0
  474. package/fesm2022/acorex-platform-common-avatar-widget-view.component-BlA_cFkP.mjs.map +1 -0
  475. package/fesm2022/acorex-platform-common-boolean-widget-filter.component-CEqibiML.mjs +169 -0
  476. package/fesm2022/acorex-platform-common-boolean-widget-filter.component-CEqibiML.mjs.map +1 -0
  477. package/fesm2022/acorex-platform-common-change-password.component-NvrMMq9e.mjs +177 -0
  478. package/fesm2022/acorex-platform-common-change-password.component-NvrMMq9e.mjs.map +1 -0
  479. package/fesm2022/acorex-platform-common-checkbox-widget-column.component-BiUHPDqV.mjs +76 -0
  480. package/fesm2022/acorex-platform-common-checkbox-widget-column.component-BiUHPDqV.mjs.map +1 -0
  481. package/fesm2022/acorex-platform-common-checkbox-widget-edit.component-BVG9_XXh.mjs +46 -0
  482. package/fesm2022/acorex-platform-common-checkbox-widget-edit.component-BVG9_XXh.mjs.map +1 -0
  483. package/fesm2022/acorex-platform-common-checkbox-widget-view.component-CfGkMcDi.mjs +70 -0
  484. package/fesm2022/acorex-platform-common-checkbox-widget-view.component-CfGkMcDi.mjs.map +1 -0
  485. package/fesm2022/acorex-platform-common-dateTime-widget-column.component-BlXTU887.mjs +66 -0
  486. package/fesm2022/acorex-platform-common-dateTime-widget-column.component-BlXTU887.mjs.map +1 -0
  487. package/fesm2022/acorex-platform-common-dateTime-widget-edit.component-B0s6FN-g.mjs +198 -0
  488. package/fesm2022/acorex-platform-common-dateTime-widget-edit.component-B0s6FN-g.mjs.map +1 -0
  489. package/fesm2022/acorex-platform-common-dateTime-widget-filter.component-B7KBCsUt.mjs +233 -0
  490. package/fesm2022/acorex-platform-common-dateTime-widget-filter.component-B7KBCsUt.mjs.map +1 -0
  491. package/fesm2022/acorex-platform-common-dateTime-widget-view.component-Dy7pAkGG.mjs +93 -0
  492. package/fesm2022/acorex-platform-common-dateTime-widget-view.component-Dy7pAkGG.mjs.map +1 -0
  493. package/fesm2022/acorex-platform-common-email-widget-column.component-D_UNn2dW.mjs +97 -0
  494. package/fesm2022/acorex-platform-common-email-widget-column.component-D_UNn2dW.mjs.map +1 -0
  495. package/fesm2022/acorex-platform-common-email-widget-edit.component-DWT24mCM.mjs +269 -0
  496. package/fesm2022/acorex-platform-common-email-widget-edit.component-DWT24mCM.mjs.map +1 -0
  497. package/fesm2022/acorex-platform-common-email-widget-view.component-B6puyycL.mjs +130 -0
  498. package/fesm2022/acorex-platform-common-email-widget-view.component-B6puyycL.mjs.map +1 -0
  499. package/fesm2022/acorex-platform-common-file-widget-column.component-C1faGR4K.mjs +49 -0
  500. package/fesm2022/acorex-platform-common-file-widget-column.component-C1faGR4K.mjs.map +1 -0
  501. package/fesm2022/acorex-platform-common-file-widget-edit.component-CTvS9ls8.mjs +221 -0
  502. package/fesm2022/acorex-platform-common-file-widget-edit.component-CTvS9ls8.mjs.map +1 -0
  503. package/fesm2022/acorex-platform-common-file-widget-filter.component-D4AMg5M0.mjs +51 -0
  504. package/fesm2022/acorex-platform-common-file-widget-filter.component-D4AMg5M0.mjs.map +1 -0
  505. package/fesm2022/acorex-platform-common-file-widget-view.component-CHI4VCvt.mjs +174 -0
  506. package/fesm2022/acorex-platform-common-file-widget-view.component-CHI4VCvt.mjs.map +1 -0
  507. package/fesm2022/acorex-platform-common-gallery-widget-edit.component-CAOctYzV.mjs +209 -0
  508. package/fesm2022/acorex-platform-common-gallery-widget-edit.component-CAOctYzV.mjs.map +1 -0
  509. package/fesm2022/acorex-platform-common-gallery-widget-filter.component-lgaYDZeD.mjs +50 -0
  510. package/fesm2022/acorex-platform-common-gallery-widget-filter.component-lgaYDZeD.mjs.map +1 -0
  511. package/fesm2022/acorex-platform-common-gallery-widget-view.component-Ci50jeO5.mjs +193 -0
  512. package/fesm2022/acorex-platform-common-gallery-widget-view.component-Ci50jeO5.mjs.map +1 -0
  513. package/fesm2022/acorex-platform-common-largetext-widget-edit.component-DFKG-kum.mjs +60 -0
  514. package/fesm2022/acorex-platform-common-largetext-widget-edit.component-DFKG-kum.mjs.map +1 -0
  515. package/fesm2022/acorex-platform-common-lookup-widget-column.component-CFzCGcqA.mjs +66 -0
  516. package/fesm2022/acorex-platform-common-lookup-widget-column.component-CFzCGcqA.mjs.map +1 -0
  517. package/fesm2022/acorex-platform-common-lookup-widget-edit.component-CYTSeEOq.mjs +96 -0
  518. package/fesm2022/acorex-platform-common-lookup-widget-edit.component-CYTSeEOq.mjs.map +1 -0
  519. package/fesm2022/acorex-platform-common-lookup-widget-filter.component-BkxT9_Hh.mjs +135 -0
  520. package/fesm2022/acorex-platform-common-lookup-widget-filter.component-BkxT9_Hh.mjs.map +1 -0
  521. package/fesm2022/acorex-platform-common-lookup-widget-view.component-5YeixMp7.mjs +77 -0
  522. package/fesm2022/acorex-platform-common-lookup-widget-view.component-5YeixMp7.mjs.map +1 -0
  523. package/fesm2022/acorex-platform-common-map-widget-edit.component-CE3QQBmX.mjs +114 -0
  524. package/fesm2022/acorex-platform-common-map-widget-edit.component-CE3QQBmX.mjs.map +1 -0
  525. package/fesm2022/acorex-platform-common-map-widget-view.component-Cv4OCTxz.mjs +86 -0
  526. package/fesm2022/acorex-platform-common-map-widget-view.component-Cv4OCTxz.mjs.map +1 -0
  527. package/fesm2022/acorex-platform-common-messenger-widget-column.component-CJdh6TKb.mjs +95 -0
  528. package/fesm2022/acorex-platform-common-messenger-widget-column.component-CJdh6TKb.mjs.map +1 -0
  529. package/fesm2022/acorex-platform-common-messenger-widget-edit.component-kiEHxJia.mjs +157 -0
  530. package/fesm2022/acorex-platform-common-messenger-widget-edit.component-kiEHxJia.mjs.map +1 -0
  531. package/fesm2022/acorex-platform-common-messenger-widget-view.component-DzbjgZA7.mjs +154 -0
  532. package/fesm2022/acorex-platform-common-messenger-widget-view.component-DzbjgZA7.mjs.map +1 -0
  533. package/fesm2022/acorex-platform-common-number-widget-edit.component-BRuIP96Y.mjs +68 -0
  534. package/fesm2022/acorex-platform-common-number-widget-edit.component-BRuIP96Y.mjs.map +1 -0
  535. package/fesm2022/acorex-platform-common-number-widget-filter.component-jQ4DaFQH.mjs +157 -0
  536. package/fesm2022/acorex-platform-common-number-widget-filter.component-jQ4DaFQH.mjs.map +1 -0
  537. package/fesm2022/acorex-platform-common-number-widget-view.component-BzUWjT8m.mjs +54 -0
  538. package/fesm2022/acorex-platform-common-number-widget-view.component-BzUWjT8m.mjs.map +1 -0
  539. package/fesm2022/acorex-platform-common-password-widget-column.component-BRzyuK5c.mjs +89 -0
  540. package/fesm2022/acorex-platform-common-password-widget-column.component-BRzyuK5c.mjs.map +1 -0
  541. package/fesm2022/acorex-platform-common-password-widget-edit.component-q6R2dw5k.mjs +64 -0
  542. package/fesm2022/acorex-platform-common-password-widget-edit.component-q6R2dw5k.mjs.map +1 -0
  543. package/fesm2022/acorex-platform-common-password-widget-view.component-CKaQItON.mjs +128 -0
  544. package/fesm2022/acorex-platform-common-password-widget-view.component-CKaQItON.mjs.map +1 -0
  545. package/fesm2022/acorex-platform-common-phone-widget-column.component-BD7BScjW.mjs +115 -0
  546. package/fesm2022/acorex-platform-common-phone-widget-column.component-BD7BScjW.mjs.map +1 -0
  547. package/fesm2022/acorex-platform-common-phone-widget-edit.component-D8tGKfNj.mjs +265 -0
  548. package/fesm2022/acorex-platform-common-phone-widget-edit.component-D8tGKfNj.mjs.map +1 -0
  549. package/fesm2022/acorex-platform-common-phone-widget-view.component-CFiMsGOB.mjs +145 -0
  550. package/fesm2022/acorex-platform-common-phone-widget-view.component-CFiMsGOB.mjs.map +1 -0
  551. package/fesm2022/acorex-platform-common-rich-text-widget-column.component-BPzwY_8L.mjs +85 -0
  552. package/fesm2022/acorex-platform-common-rich-text-widget-column.component-BPzwY_8L.mjs.map +1 -0
  553. package/fesm2022/acorex-platform-common-rich-text-widget-edit.component-CA2xRfVg.mjs +89 -0
  554. package/fesm2022/acorex-platform-common-rich-text-widget-edit.component-CA2xRfVg.mjs.map +1 -0
  555. package/fesm2022/acorex-platform-common-rich-text-widget-view.component-DYfTZ64H.mjs +58 -0
  556. package/fesm2022/acorex-platform-common-rich-text-widget-view.component-DYfTZ64H.mjs.map +1 -0
  557. package/fesm2022/acorex-platform-common-selection-list-widget-column.component-_MglaOmo.mjs +69 -0
  558. package/fesm2022/acorex-platform-common-selection-list-widget-column.component-_MglaOmo.mjs.map +1 -0
  559. package/fesm2022/acorex-platform-common-selection-list-widget-edit.component-QKw_tyOd.mjs +76 -0
  560. package/fesm2022/acorex-platform-common-selection-list-widget-edit.component-QKw_tyOd.mjs.map +1 -0
  561. package/fesm2022/acorex-platform-common-selection-list-widget-filter.component-DRToTnHQ.mjs +65 -0
  562. package/fesm2022/acorex-platform-common-selection-list-widget-filter.component-DRToTnHQ.mjs.map +1 -0
  563. package/fesm2022/acorex-platform-common-selection-list-widget-view.component-CjDiuUdj.mjs +69 -0
  564. package/fesm2022/acorex-platform-common-selection-list-widget-view.component-CjDiuUdj.mjs.map +1 -0
  565. package/fesm2022/acorex-platform-common-signature-pad-widget-edit.component-DF29uWl2.mjs +148 -0
  566. package/fesm2022/acorex-platform-common-signature-pad-widget-edit.component-DF29uWl2.mjs.map +1 -0
  567. package/fesm2022/acorex-platform-common-signature-pad-widget-view.component-BWzoR4HM.mjs +63 -0
  568. package/fesm2022/acorex-platform-common-signature-pad-widget-view.component-BWzoR4HM.mjs.map +1 -0
  569. package/fesm2022/acorex-platform-common-string-widget-filter.component-Di_GFHme.mjs +147 -0
  570. package/fesm2022/acorex-platform-common-string-widget-filter.component-Di_GFHme.mjs.map +1 -0
  571. package/fesm2022/acorex-platform-common-text-widget-column.component-BSYd1CbC.mjs +70 -0
  572. package/fesm2022/acorex-platform-common-text-widget-column.component-BSYd1CbC.mjs.map +1 -0
  573. package/fesm2022/acorex-platform-common-text-widget-edit.component-K9z9N1qw.mjs +183 -0
  574. package/fesm2022/acorex-platform-common-text-widget-edit.component-K9z9N1qw.mjs.map +1 -0
  575. package/fesm2022/acorex-platform-common-text-widget-view.component-WbZtm_bf.mjs +90 -0
  576. package/fesm2022/acorex-platform-common-text-widget-view.component-WbZtm_bf.mjs.map +1 -0
  577. package/fesm2022/acorex-platform-common-toggle-widget-column.component-ZCBSYMuz.mjs +80 -0
  578. package/fesm2022/acorex-platform-common-toggle-widget-column.component-ZCBSYMuz.mjs.map +1 -0
  579. package/fesm2022/acorex-platform-common-toggle-widget-edit.component-rkDfLA-J.mjs +46 -0
  580. package/fesm2022/acorex-platform-common-toggle-widget-edit.component-rkDfLA-J.mjs.map +1 -0
  581. package/fesm2022/acorex-platform-common-toggle-widget-view.component-DLDIrci1.mjs +72 -0
  582. package/fesm2022/acorex-platform-common-toggle-widget-view.component-DLDIrci1.mjs.map +1 -0
  583. package/fesm2022/acorex-platform-common.mjs +2056 -246
  584. package/fesm2022/acorex-platform-common.mjs.map +1 -1
  585. package/fesm2022/acorex-platform-layout-builder.mjs +687 -0
  586. package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -0
  587. package/fesm2022/acorex-platform-layout-entity.mjs +1848 -0
  588. package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -0
  589. package/fesm2022/acorex-platform-layouts-entity-create-view.component-BmSMt95H.mjs +107 -0
  590. package/fesm2022/acorex-platform-layouts-entity-create-view.component-BmSMt95H.mjs.map +1 -0
  591. package/fesm2022/acorex-platform-layouts-entity-modify-view.component-D1h1xORH.mjs +88 -0
  592. package/fesm2022/acorex-platform-layouts-entity-modify-view.component-D1h1xORH.mjs.map +1 -0
  593. package/fesm2022/acorex-platform-layouts.mjs +1058 -2553
  594. package/fesm2022/acorex-platform-layouts.mjs.map +1 -1
  595. package/fesm2022/acorex-platform-mocks.mjs.map +1 -1
  596. package/fesm2022/acorex-platform-native.mjs.map +1 -1
  597. package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-Buanq4is.mjs +96 -0
  598. package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-Buanq4is.mjs.map +1 -0
  599. package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-F7dr-osu.mjs +85 -0
  600. package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-F7dr-osu.mjs.map +1 -0
  601. package/fesm2022/acorex-platform-themes-default-error-401.component-Djuin07Z.mjs +31 -0
  602. package/fesm2022/acorex-platform-themes-default-error-401.component-Djuin07Z.mjs.map +1 -0
  603. package/fesm2022/acorex-platform-themes-default-error-404.component-C-RyiLkk.mjs +25 -0
  604. package/fesm2022/acorex-platform-themes-default-error-404.component-C-RyiLkk.mjs.map +1 -0
  605. package/fesm2022/acorex-platform-themes-default-error-offline.component-WCfy9-cr.mjs +19 -0
  606. package/fesm2022/acorex-platform-themes-default-error-offline.component-WCfy9-cr.mjs.map +1 -0
  607. package/fesm2022/acorex-platform-themes-default.mjs +681 -0
  608. package/fesm2022/acorex-platform-themes-default.mjs.map +1 -0
  609. package/fesm2022/acorex-platform-widgets-checkbox-widget-column.component-Cx6WLV3_.mjs +48 -0
  610. package/fesm2022/acorex-platform-widgets-checkbox-widget-column.component-Cx6WLV3_.mjs.map +1 -0
  611. package/fesm2022/acorex-platform-widgets-checkbox-widget-view.component-C_68pr-9.mjs +57 -0
  612. package/fesm2022/acorex-platform-widgets-checkbox-widget-view.component-C_68pr-9.mjs.map +1 -0
  613. package/fesm2022/acorex-platform-widgets.mjs +1755 -1293
  614. package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
  615. package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
  616. package/fesm2022/acorex-platform.mjs.map +1 -1
  617. package/layout/builder/README.md +4 -0
  618. package/layout/builder/index.d.ts +1 -0
  619. package/layout/builder/lib/builder/builder.module.d.ts +23 -0
  620. package/layout/builder/lib/builder/builder.service.d.ts +27 -0
  621. package/layout/builder/lib/builder/index.d.ts +8 -0
  622. package/layout/builder/lib/builder/layout.types.d.ts +30 -0
  623. package/layout/builder/lib/builder/widget-column-renderer.d.ts +31 -0
  624. package/layout/builder/lib/builder/widget-container.component.d.ts +15 -0
  625. package/layout/builder/lib/builder/widget-renderer.component.d.ts +43 -0
  626. package/layout/builder/lib/builder/widget.types.d.ts +74 -0
  627. package/layout/entity/README.md +4 -0
  628. package/layout/entity/index.d.ts +1 -0
  629. package/layout/entity/lib/entity-detail-list.viewmodel.d.ts +32 -0
  630. package/layout/entity/lib/entity-master-create.viewmodel.d.ts +49 -0
  631. package/layout/entity/lib/entity-master-list.viewmodel.d.ts +82 -0
  632. package/layout/entity/lib/entity-master-single.viewmodel.d.ts +62 -0
  633. package/layout/entity/lib/entity-master-update.viewmodel.d.ts +39 -0
  634. package/layout/entity/lib/entity-registery.service.d.ts +34 -0
  635. package/layout/entity/lib/entity.config.d.ts +21 -0
  636. package/layout/entity/lib/entity.module.d.ts +9 -0
  637. package/layout/entity/lib/entity.viewmodel.d.ts +22 -0
  638. package/layout/entity/lib/index.d.ts +8 -0
  639. package/layout/entity/lib/widgets/lookup-widget/index.d.ts +7 -0
  640. package/layout/entity/lib/widgets/lookup-widget/lookup-widget-column.component.d.ts +6 -0
  641. package/layout/entity/lib/widgets/lookup-widget/lookup-widget-designer.component.d.ts +6 -0
  642. package/layout/entity/lib/widgets/lookup-widget/lookup-widget-edit.component.d.ts +27 -0
  643. package/layout/entity/lib/widgets/lookup-widget/lookup-widget-filter.component.d.ts +6 -0
  644. package/layout/entity/lib/widgets/lookup-widget/lookup-widget-print.component.d.ts +6 -0
  645. package/layout/entity/lib/widgets/lookup-widget/lookup-widget-selector.component.d.ts +13 -0
  646. package/layout/entity/lib/widgets/lookup-widget/lookup-widget-selector.viewmodel.d.ts +15 -0
  647. package/layout/entity/lib/widgets/lookup-widget/lookup-widget-view.component.d.ts +6 -0
  648. package/layout/entity/lib/widgets/lookup-widget/lookup-widget.config.d.ts +2 -0
  649. package/layout/entity/lib/workflows/create-entity.workflow.d.ts +29 -0
  650. package/layout/entity/lib/workflows/delete-entity.workflow.d.ts +26 -0
  651. package/layout/entity/lib/workflows/modify-section.workflow.d.ts +34 -0
  652. package/layout/entity/lib/workflows/show-details.workflow.d.ts +10 -0
  653. package/layouts/README.md +3 -3
  654. package/layouts/index.d.ts +0 -2
  655. package/layouts/lib/admin/admin.module.d.ts +3 -6
  656. package/layouts/lib/admin/entity-layout/entity-create-view/entity-create-view.component.d.ts +1 -1
  657. package/layouts/lib/admin/entity-layout/entity-create-view/entity-create-view.config.d.ts +3 -3
  658. package/layouts/lib/admin/entity-layout/entity-details-view/detail-view.config.d.ts +3 -3
  659. package/layouts/lib/admin/entity-layout/entity-details-view/entity-details-view.component.d.ts +1 -1
  660. package/layouts/lib/admin/entity-layout/entity-list-view/components/entity-custom-view/entity-custom-view.component.d.ts +2 -3
  661. package/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-columns/list-view-option-columns.component.d.ts +1 -1
  662. package/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-conditions/list-view-option-conditions.component.d.ts +4 -6
  663. package/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-conditions/list-view-option-filter-operator.component.d.ts +1 -1
  664. package/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-sorting/list-view-option-sorting.component.d.ts +3 -4
  665. package/layouts/lib/admin/entity-layout/entity-list-view/entity-list-view.component.d.ts +6 -6
  666. package/layouts/lib/admin/entity-layout/entity-list-view/list-view.config.d.ts +5 -6
  667. package/layouts/lib/admin/entity-layout/entity-list-view/list-view.module.d.ts +3 -4
  668. package/layouts/lib/admin/entity-layout/entity-modify-view/entity-modify-view.component.d.ts +1 -1
  669. package/layouts/lib/admin/entity-layout/entity-modify-view/entity-modify-view.config.d.ts +3 -3
  670. package/layouts/lib/admin/entity-layout/entity-quick-view/entity-quick-view.component.d.ts +2 -2
  671. package/layouts/lib/admin/entity-layout/workflows/index.d.ts +3 -0
  672. package/layouts/lib/admin/entity-layout/workflows/modify-section.workflow.d.ts +12 -0
  673. package/layouts/lib/admin/entity-layout/workflows/show-details.workflow.d.ts +9 -1
  674. package/layouts/lib/admin/entity-layout/workflows/show-list.workflow.d.ts +9 -1
  675. package/layouts/lib/admin/entity-layout/workflows/show-quick-view.workflow.d.ts +11 -1
  676. package/layouts/lib/admin/index.d.ts +0 -2
  677. package/layouts/lib/layout.module.d.ts +4 -4
  678. package/mocks/README.md +3 -3
  679. package/package.json +19 -19
  680. package/themes/default/README.md +3 -0
  681. package/themes/default/index.d.ts +2 -0
  682. package/themes/default/lib/default.module.d.ts +8 -0
  683. package/themes/default/lib/entity-reuse.strategy.d.ts +8 -0
  684. package/themes/default/lib/layouts/entity-layouts/entity-detail-list-view/entity-detail-list-view.component.d.ts +24 -0
  685. package/themes/default/lib/layouts/entity-layouts/entity-master-create-view/entity-master-create-view.component.d.ts +17 -0
  686. package/themes/default/lib/layouts/entity-layouts/entity-master-list-view/entity-list-view.component.d.ts +29 -0
  687. package/themes/default/lib/layouts/entity-layouts/entity-master-list-view/list-view-option-columns/list-view-option-columns.component.d.ts +18 -0
  688. package/themes/default/lib/layouts/entity-layouts/entity-master-list-view/list-view-option-sorting/list-view-option-sorting.component.d.ts +16 -0
  689. package/themes/default/lib/layouts/entity-layouts/entity-master-modify-view/entity-master-modify-view.component.d.ts +16 -0
  690. package/themes/default/lib/layouts/entity-layouts/entity-master-single-view/entity-master-single-view.component.d.ts +13 -0
  691. package/themes/default/lib/layouts/root-layout/components/footer/footer.component.d.ts +5 -0
  692. package/themes/default/lib/layouts/root-layout/components/header/header.component.d.ts +10 -0
  693. package/themes/default/lib/layouts/root-layout/index.d.ts +4 -0
  694. package/themes/default/lib/layouts/root-layout/root-layout.component.d.ts +32 -0
  695. package/themes/default/lib/layouts/root-layout/root-layout.module.d.ts +24 -0
  696. package/widgets/README.md +3 -3
  697. package/widgets/lib/editors/checkbox/checkbox-widget-column.component.d.ts +9 -0
  698. package/widgets/lib/editors/checkbox/checkbox-widget-edit.component.d.ts +1 -1
  699. package/widgets/lib/editors/checkbox/checkbox-widget-view.component.d.ts +9 -0
  700. package/widgets/lib/editors/checkbox/checkbox-widget.config.d.ts +1 -1
  701. package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-column.component.d.ts +11 -3
  702. package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-designer.component.d.ts +1 -1
  703. package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-edit.component.d.ts +1 -1
  704. package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-filter.component.d.ts +1 -1
  705. package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-print.component.d.ts +1 -1
  706. package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-view.component.d.ts +1 -1
  707. package/widgets/lib/editors/date-time-box-widget/date-time-box-widget.config.d.ts +1 -1
  708. package/widgets/lib/editors/email-box-widget/email-box-widget-column.component.d.ts +13 -3
  709. package/widgets/lib/editors/email-box-widget/email-box-widget-designer.component.d.ts +1 -1
  710. package/widgets/lib/editors/email-box-widget/email-box-widget-edit.component.d.ts +7 -1
  711. package/widgets/lib/editors/email-box-widget/email-box-widget-filter.component.d.ts +1 -1
  712. package/widgets/lib/editors/email-box-widget/email-box-widget-print.component.d.ts +1 -1
  713. package/widgets/lib/editors/email-box-widget/email-box-widget-view.component.d.ts +1 -1
  714. package/widgets/lib/editors/email-box-widget/email-box-widget.config.d.ts +1 -1
  715. package/widgets/lib/editors/file-box-widget/file-box-widget-column.component.d.ts +1 -1
  716. package/widgets/lib/editors/file-box-widget/file-box-widget-designer.component.d.ts +1 -1
  717. package/widgets/lib/editors/file-box-widget/file-box-widget-edit.component.d.ts +1 -1
  718. package/widgets/lib/editors/file-box-widget/file-box-widget-filter.component.d.ts +1 -1
  719. package/widgets/lib/editors/file-box-widget/file-box-widget-print.component.d.ts +1 -1
  720. package/widgets/lib/editors/file-box-widget/file-box-widget-view.component.d.ts +1 -1
  721. package/widgets/lib/editors/file-box-widget/file-box-widget.config.d.ts +1 -1
  722. package/widgets/lib/editors/gallery-widget/gallery-widget-column.component.d.ts +1 -1
  723. package/widgets/lib/editors/gallery-widget/gallery-widget-designer.component.d.ts +1 -1
  724. package/widgets/lib/editors/gallery-widget/gallery-widget-edit.component.d.ts +1 -1
  725. package/widgets/lib/editors/gallery-widget/gallery-widget-filter.component.d.ts +1 -1
  726. package/widgets/lib/editors/gallery-widget/gallery-widget-print.component.d.ts +1 -1
  727. package/widgets/lib/editors/gallery-widget/gallery-widget-view.component.d.ts +1 -1
  728. package/widgets/lib/editors/gallery-widget/gallery-widget.config.d.ts +1 -1
  729. package/widgets/lib/editors/map-box-widget/map-box-widget-column.component.d.ts +1 -1
  730. package/widgets/lib/editors/map-box-widget/map-box-widget-designer.component.d.ts +1 -1
  731. package/widgets/lib/editors/map-box-widget/map-box-widget-edit.component.d.ts +1 -1
  732. package/widgets/lib/editors/map-box-widget/map-box-widget-filter.component.d.ts +1 -1
  733. package/widgets/lib/editors/map-box-widget/map-box-widget-print.component.d.ts +1 -1
  734. package/widgets/lib/editors/map-box-widget/map-box-widget-view.component.d.ts +1 -1
  735. package/widgets/lib/editors/map-box-widget/map-box-widget.config.d.ts +1 -1
  736. package/widgets/lib/editors/number-box-widget/number-box-widget-column.component.d.ts +5 -3
  737. package/widgets/lib/editors/number-box-widget/number-box-widget-designer.component.d.ts +1 -1
  738. package/widgets/lib/editors/number-box-widget/number-box-widget-edit.component.d.ts +2 -2
  739. package/widgets/lib/editors/number-box-widget/number-box-widget-filter.component.d.ts +1 -1
  740. package/widgets/lib/editors/number-box-widget/number-box-widget-print.component.d.ts +1 -1
  741. package/widgets/lib/editors/number-box-widget/number-box-widget-view.component.d.ts +8 -2
  742. package/widgets/lib/editors/number-box-widget/number-box-widget.config.d.ts +1 -1
  743. package/widgets/lib/editors/password-box-widget/password-box-widget-column.component.d.ts +1 -1
  744. package/widgets/lib/editors/password-box-widget/password-box-widget-designer.component.d.ts +1 -1
  745. package/widgets/lib/editors/password-box-widget/password-box-widget-edit.component.d.ts +1 -1
  746. package/widgets/lib/editors/password-box-widget/password-box-widget-filter.component.d.ts +1 -1
  747. package/widgets/lib/editors/password-box-widget/password-box-widget-print.component.d.ts +1 -1
  748. package/widgets/lib/editors/password-box-widget/password-box-widget-view.component.d.ts +1 -1
  749. package/widgets/lib/editors/password-box-widget/password-box-widget.config.d.ts +1 -1
  750. package/widgets/lib/editors/phone-box-widget/phone-box-widget-column.component.d.ts +13 -3
  751. package/widgets/lib/editors/phone-box-widget/phone-box-widget-designer.component.d.ts +1 -1
  752. package/widgets/lib/editors/phone-box-widget/phone-box-widget-edit.component.d.ts +6 -1
  753. package/widgets/lib/editors/phone-box-widget/phone-box-widget-filter.component.d.ts +1 -1
  754. package/widgets/lib/editors/phone-box-widget/phone-box-widget-print.component.d.ts +1 -1
  755. package/widgets/lib/editors/phone-box-widget/phone-box-widget-view.component.d.ts +1 -1
  756. package/widgets/lib/editors/phone-box-widget/phone-box-widget.config.d.ts +1 -1
  757. package/widgets/lib/editors/rich-text-widget/rich-text-widget-column.component.d.ts +1 -1
  758. package/widgets/lib/editors/rich-text-widget/rich-text-widget-designer.component.d.ts +1 -1
  759. package/widgets/lib/editors/rich-text-widget/rich-text-widget-edit.component.d.ts +1 -1
  760. package/widgets/lib/editors/rich-text-widget/rich-text-widget-filter.component.d.ts +1 -1
  761. package/widgets/lib/editors/rich-text-widget/rich-text-widget-print.component.d.ts +1 -1
  762. package/widgets/lib/editors/rich-text-widget/rich-text-widget-view.component.d.ts +1 -1
  763. package/widgets/lib/editors/rich-text-widget/rich-text-widget.config.d.ts +1 -1
  764. package/widgets/lib/editors/select-box-widget/select-box-widget-column.component.d.ts +3 -3
  765. package/widgets/lib/editors/select-box-widget/select-box-widget-designer.component.d.ts +1 -1
  766. package/widgets/lib/editors/select-box-widget/select-box-widget-edit.component.d.ts +1 -1
  767. package/widgets/lib/editors/select-box-widget/select-box-widget-filter.component.d.ts +1 -1
  768. package/widgets/lib/editors/select-box-widget/select-box-widget-print.component.d.ts +1 -1
  769. package/widgets/lib/editors/select-box-widget/select-box-widget-view.component.d.ts +1 -1
  770. package/widgets/lib/editors/select-box-widget/select-box-widget.config.d.ts +1 -1
  771. package/widgets/lib/editors/selection-list-widget/selection-list-widget-column.component.d.ts +11 -3
  772. package/widgets/lib/editors/selection-list-widget/selection-list-widget-designer.component.d.ts +1 -1
  773. package/widgets/lib/editors/selection-list-widget/selection-list-widget-edit.component.d.ts +1 -1
  774. package/widgets/lib/editors/selection-list-widget/selection-list-widget-filter.component.d.ts +1 -1
  775. package/widgets/lib/editors/selection-list-widget/selection-list-widget-print.component.d.ts +1 -1
  776. package/widgets/lib/editors/selection-list-widget/selection-list-widget-view.component.d.ts +7 -2
  777. package/widgets/lib/editors/selection-list-widget/selection-list-widget.config.d.ts +1 -1
  778. package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-column.component.d.ts +1 -1
  779. package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-designer.component.d.ts +1 -1
  780. package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-edit.component.d.ts +1 -1
  781. package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-filter.component.d.ts +1 -1
  782. package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-print.component.d.ts +1 -1
  783. package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-view.component.d.ts +1 -1
  784. package/widgets/lib/editors/signature-pad-widget/signature-pad-widget.config.d.ts +1 -1
  785. package/widgets/lib/editors/text-box-widget/text-box-widget-column.component.d.ts +3 -3
  786. package/widgets/lib/editors/text-box-widget/text-box-widget-designer.component.d.ts +1 -1
  787. package/widgets/lib/editors/text-box-widget/text-box-widget-edit.component.d.ts +2 -2
  788. package/widgets/lib/editors/text-box-widget/text-box-widget-filter.component.d.ts +1 -1
  789. package/widgets/lib/editors/text-box-widget/text-box-widget-print.component.d.ts +1 -1
  790. package/widgets/lib/editors/text-box-widget/text-box-widget-view.component.d.ts +1 -1
  791. package/widgets/lib/editors/text-box-widget/text-box-widget.config.d.ts +1 -1
  792. package/widgets/lib/editors/toggle-widget/index.d.ts +7 -0
  793. package/widgets/lib/editors/toggle-widget/toggle-widget-column.component.d.ts +9 -0
  794. package/widgets/lib/editors/toggle-widget/toggle-widget-designer.component.d.ts +6 -0
  795. package/widgets/lib/editors/toggle-widget/toggle-widget-edit.component.d.ts +7 -0
  796. package/widgets/lib/editors/toggle-widget/toggle-widget-filter.component.d.ts +6 -0
  797. package/widgets/lib/editors/toggle-widget/toggle-widget-print.component.d.ts +6 -0
  798. package/widgets/lib/editors/toggle-widget/toggle-widget-view.component.d.ts +9 -0
  799. package/widgets/lib/editors/toggle-widget/toggle-widget.config.d.ts +2 -0
  800. package/widgets/lib/layout/block-widget/block-widget.component.d.ts +2 -2
  801. package/widgets/lib/layout/block-widget/block-widget.config.d.ts +1 -1
  802. package/widgets/lib/widgets.module.d.ts +1 -1
  803. package/workflow/README.md +3 -3
  804. package/workflow/lib/workflow.types.d.ts +2 -2
  805. package/common/lib/shared/state-persistence/index.d.ts +0 -3
  806. package/common/lib/shared/state-persistence/state-persistence.actions.d.ts +0 -1
  807. package/common/lib/shared/state-persistence/state-persistence.module.d.ts +0 -8
  808. package/common/lib/shared/state-persistence/state-persistence.reducers.d.ts +0 -3
  809. package/common/lib/utils/sticky.directive.d.ts +0 -24
  810. package/core/README.md +0 -4
  811. package/core/index.d.ts +0 -4
  812. package/core/lib/app/application.types.d.ts +0 -144
  813. package/core/lib/core.module.d.ts +0 -6
  814. package/esm2022/common/lib/menu/index.mjs +0 -3
  815. package/esm2022/common/lib/menu/menu.loader.mjs +0 -39
  816. package/esm2022/common/lib/menu/menu.types.mjs +0 -2
  817. package/esm2022/common/lib/shared/logo.types.mjs +0 -21
  818. package/esm2022/common/lib/shared/state-persistence/index.mjs +0 -4
  819. package/esm2022/common/lib/shared/state-persistence/state-persistence.actions.mjs +0 -3
  820. package/esm2022/common/lib/shared/state-persistence/state-persistence.module.mjs +0 -36
  821. package/esm2022/common/lib/shared/state-persistence/state-persistence.reducers.mjs +0 -30
  822. package/esm2022/common/lib/utils/sticky.directive.mjs +0 -74
  823. package/esm2022/core/acorex-platform-core.mjs +0 -5
  824. package/esm2022/core/index.mjs +0 -5
  825. package/esm2022/core/lib/app/application.types.mjs +0 -19
  826. package/esm2022/core/lib/app/operators.mjs +0 -50
  827. package/esm2022/core/lib/configs/config.types.mjs +0 -3
  828. package/esm2022/core/lib/core.module.mjs +0 -16
  829. package/esm2022/layout/acorex-platform-layout.mjs +0 -5
  830. package/esm2022/layout/index.mjs +0 -3
  831. package/esm2022/layout/lib/builder/builder.module.mjs +0 -66
  832. package/esm2022/layout/lib/builder/context.service.mjs +0 -64
  833. package/esm2022/layout/lib/builder/index.mjs +0 -8
  834. package/esm2022/layout/lib/builder/widget-column-renderer.mjs +0 -75
  835. package/esm2022/layout/lib/builder/widget-container.mjs +0 -45
  836. package/esm2022/layout/lib/builder/widget-registery.service.mjs +0 -33
  837. package/esm2022/layout/lib/builder/widget-renderer.mjs +0 -279
  838. package/esm2022/layout/lib/builder/widget.types.mjs +0 -49
  839. package/esm2022/layout/lib/component-slot/component-slot-loader.service.mjs +0 -56
  840. package/esm2022/layout/lib/component-slot/component-slot-registery.service.mjs +0 -28
  841. package/esm2022/layout/lib/component-slot/component-slot.directive.mjs +0 -24
  842. package/esm2022/layout/lib/component-slot/component-slot.module.mjs +0 -72
  843. package/esm2022/layout/lib/component-slot/component-slot.types.mjs +0 -2
  844. package/esm2022/layout/lib/component-slot/index.mjs +0 -6
  845. package/esm2022/layouts/lib/admin/admin-child-layout/admin-child-features-list.component.mjs +0 -58
  846. package/esm2022/layouts/lib/admin/admin-child-layout/admin-child-layout.component.mjs +0 -50
  847. package/esm2022/layouts/lib/admin/admin-child-layout/admin-child-layout.module.mjs +0 -57
  848. package/esm2022/layouts/lib/admin/admin-child-layout/index.mjs +0 -4
  849. package/esm2022/layouts/lib/admin/admin-root-layout/admin-root-layout.component.mjs +0 -74
  850. package/esm2022/layouts/lib/admin/admin-root-layout/admin-root-layout.module.mjs +0 -92
  851. package/esm2022/layouts/lib/admin/admin-root-layout/components/admin-footer/admin-footer.component.mjs +0 -14
  852. package/esm2022/layouts/lib/admin/admin-root-layout/components/admin-header/admin-header.component.mjs +0 -29
  853. package/esm2022/layouts/lib/admin/admin-root-layout/index.mjs +0 -5
  854. package/esm2022/layouts/lib/admin/store/admin-layout.actions.mjs +0 -12
  855. package/esm2022/layouts/lib/admin/store/admin-layout.effects.mjs +0 -29
  856. package/esm2022/layouts/lib/admin/store/admin-layout.reducers.mjs +0 -60
  857. package/esm2022/layouts/lib/admin/store/admin-layout.selectors.mjs +0 -8
  858. package/esm2022/layouts/lib/admin/store/admin-layout.state.mjs +0 -16
  859. package/esm2022/layouts/lib/admin/store/index.mjs +0 -6
  860. package/esm2022/layouts/lib/layout.routes.mjs +0 -15
  861. package/esm2022/layouts/lib/shared/components/content-view/content-view.page.mjs +0 -64
  862. package/esm2022/layouts/lib/shared/components/content-view/content-view.type.mjs +0 -2
  863. package/esm2022/layouts/lib/shared/components/error-401/error-401.component.mjs +0 -28
  864. package/esm2022/layouts/lib/shared/components/error-404/error-404.component.mjs +0 -22
  865. package/esm2022/layouts/lib/shared/components/error-offline/error-offline.component.mjs +0 -16
  866. package/esm2022/layouts/lib/shared/components/index.mjs +0 -10
  867. package/esm2022/layouts/lib/shared/components/logo/logo.component.mjs +0 -38
  868. package/esm2022/layouts/lib/shared/components/slots/footer-text-slot.component.mjs +0 -20
  869. package/esm2022/layouts/lib/shared/components/slots/navbar-slot.component.mjs +0 -36
  870. package/esm2022/layouts/lib/shared/components/slots/theme-slot.component.mjs +0 -48
  871. package/esm2022/layouts/lib/shared/entity/entity-registery.service.mjs +0 -70
  872. package/esm2022/layouts/lib/shared/entity/entity.class.mjs +0 -32
  873. package/esm2022/layouts/lib/shared/entity/entity.loader.mjs +0 -13
  874. package/esm2022/layouts/lib/shared/entity/index.mjs +0 -4
  875. package/esm2022/layouts/lib/shared/index.mjs +0 -5
  876. package/esm2022/layouts/lib/shared/services/index.mjs +0 -2
  877. package/esm2022/layouts/lib/shared/services/layout.service.mjs +0 -79
  878. package/esm2022/layouts/lib/shared/workflows/common.workflow.mjs +0 -147
  879. package/esm2022/layouts/lib/shared/workflows/error-handler.mjs +0 -24
  880. package/esm2022/layouts/lib/shared/workflows/index.mjs +0 -3
  881. package/esm2022/layouts/lib/themes/default/entity-layouts/entity-details-view/entity-details-view.component.mjs +0 -73
  882. package/esm2022/layouts/lib/themes/default/entity-layouts/entity-details.viewmodel.mjs +0 -99
  883. package/esm2022/layouts/lib/themes/default/index.mjs +0 -3
  884. package/esm2022/layouts/lib/widgets/avatar/avatar-widget-edit.component.mjs +0 -160
  885. package/esm2022/layouts/lib/widgets/avatar/avatar-widget-view.component.mjs +0 -61
  886. package/esm2022/layouts/lib/widgets/checkbox/checkbox-widget-column.component.mjs +0 -53
  887. package/esm2022/layouts/lib/widgets/checkbox/checkbox-widget-edit.component.mjs +0 -22
  888. package/esm2022/layouts/lib/widgets/checkbox/checkbox-widget-view.component.mjs +0 -47
  889. package/esm2022/layouts/lib/widgets/common-widget-filter/boolean-widget-filter.component.mjs +0 -147
  890. package/esm2022/layouts/lib/widgets/common-widget-filter/number-widget-filter.component.mjs +0 -135
  891. package/esm2022/layouts/lib/widgets/common-widget-filter/string-widget-filter.component.mjs +0 -125
  892. package/esm2022/layouts/lib/widgets/common-widgets.module.mjs +0 -504
  893. package/esm2022/layouts/lib/widgets/dateTime/dateTime-widget-column.component.mjs +0 -44
  894. package/esm2022/layouts/lib/widgets/dateTime/dateTime-widget-edit.component.mjs +0 -178
  895. package/esm2022/layouts/lib/widgets/dateTime/dateTime-widget-filter.component.mjs +0 -214
  896. package/esm2022/layouts/lib/widgets/dateTime/dateTime-widget-view.component.mjs +0 -71
  897. package/esm2022/layouts/lib/widgets/email/email-widget-column.component.mjs +0 -73
  898. package/esm2022/layouts/lib/widgets/email/email-widget-edit.component.mjs +0 -249
  899. package/esm2022/layouts/lib/widgets/email/email-widget-view.component.mjs +0 -108
  900. package/esm2022/layouts/lib/widgets/file/file-widget-column.component.mjs +0 -27
  901. package/esm2022/layouts/lib/widgets/file/file-widget-edit.component.mjs +0 -200
  902. package/esm2022/layouts/lib/widgets/file/file-widget-filter.component.mjs +0 -27
  903. package/esm2022/layouts/lib/widgets/file/file-widget-view.component.mjs +0 -153
  904. package/esm2022/layouts/lib/widgets/gallery/gallery-widget-edit.component.mjs +0 -189
  905. package/esm2022/layouts/lib/widgets/gallery/gallery-widget-filter.component.mjs +0 -27
  906. package/esm2022/layouts/lib/widgets/gallery/gallery-widget-types.mjs +0 -2
  907. package/esm2022/layouts/lib/widgets/gallery/gallery-widget-view.component.mjs +0 -173
  908. package/esm2022/layouts/lib/widgets/index.mjs +0 -2
  909. package/esm2022/layouts/lib/widgets/lookup/lookup-widget-column.component.mjs +0 -43
  910. package/esm2022/layouts/lib/widgets/lookup/lookup-widget-edit.component.mjs +0 -74
  911. package/esm2022/layouts/lib/widgets/lookup/lookup-widget-filter.component.mjs +0 -115
  912. package/esm2022/layouts/lib/widgets/lookup/lookup-widget-view.component.mjs +0 -54
  913. package/esm2022/layouts/lib/widgets/map/map-widget-edit.component.mjs +0 -91
  914. package/esm2022/layouts/lib/widgets/map/map-widget-view.component.mjs +0 -63
  915. package/esm2022/layouts/lib/widgets/messenger/messenger-widget-column.component.mjs +0 -71
  916. package/esm2022/layouts/lib/widgets/messenger/messenger-widget-edit.component.mjs +0 -136
  917. package/esm2022/layouts/lib/widgets/messenger/messenger-widget-view.component.mjs +0 -132
  918. package/esm2022/layouts/lib/widgets/number/number-widget-edit.component.mjs +0 -46
  919. package/esm2022/layouts/lib/widgets/number/number-widget-view.component.mjs +0 -30
  920. package/esm2022/layouts/lib/widgets/password/change-password.component.mjs +0 -175
  921. package/esm2022/layouts/lib/widgets/password/password-widget-column.component.mjs +0 -67
  922. package/esm2022/layouts/lib/widgets/password/password-widget-edit.component.mjs +0 -41
  923. package/esm2022/layouts/lib/widgets/password/password-widget-view.component.mjs +0 -109
  924. package/esm2022/layouts/lib/widgets/phone/phone-widget-column.component.mjs +0 -91
  925. package/esm2022/layouts/lib/widgets/phone/phone-widget-edit.component.mjs +0 -231
  926. package/esm2022/layouts/lib/widgets/phone/phone-widget-view.component.mjs +0 -123
  927. package/esm2022/layouts/lib/widgets/rich-text/rich-text-widget-column.component.mjs +0 -61
  928. package/esm2022/layouts/lib/widgets/rich-text/rich-text-widget-edit.component.mjs +0 -67
  929. package/esm2022/layouts/lib/widgets/rich-text/rich-text-widget-view.component.mjs +0 -34
  930. package/esm2022/layouts/lib/widgets/selection-list/selection-list-widget-column.component.mjs +0 -43
  931. package/esm2022/layouts/lib/widgets/selection-list/selection-list-widget-edit.component.mjs +0 -53
  932. package/esm2022/layouts/lib/widgets/selection-list/selection-list-widget-filter.component.mjs +0 -41
  933. package/esm2022/layouts/lib/widgets/selection-list/selection-list-widget-view.component.mjs +0 -45
  934. package/esm2022/layouts/lib/widgets/signature-pad/signature-pad-widget-edit.component.mjs +0 -128
  935. package/esm2022/layouts/lib/widgets/signature-pad/signature-pad-widget-view.component.mjs +0 -41
  936. package/esm2022/layouts/lib/widgets/text/largetext-widget-edit.component.mjs +0 -37
  937. package/esm2022/layouts/lib/widgets/text/text-widget-column.component.mjs +0 -46
  938. package/esm2022/layouts/lib/widgets/text/text-widget-edit.component.mjs +0 -162
  939. package/esm2022/layouts/lib/widgets/text/text-widget-view.component.mjs +0 -66
  940. package/esm2022/layouts/lib/widgets/toggle/toggle-widget-column.component.mjs +0 -57
  941. package/esm2022/layouts/lib/widgets/toggle/toggle-widget-edit.component.mjs +0 -25
  942. package/esm2022/layouts/lib/widgets/toggle/toggle-widget-view.component.mjs +0 -49
  943. package/esm2022/schema/acorex-platform-schema.mjs +0 -5
  944. package/esm2022/schema/index.mjs +0 -14
  945. package/esm2022/schema/lib/component-loader.mjs +0 -2
  946. package/esm2022/schema/lib/formats.mjs +0 -2
  947. package/esm2022/schema/lib/operators.mjs +0 -50
  948. package/esm2022/schema/lib/schema-registery.service.mjs +0 -33
  949. package/esm2022/schema/lib/schema.module.mjs +0 -23
  950. package/esm2022/schema/lib/schema.types.mjs +0 -2
  951. package/esm2022/schema/lib/widget/widget-base.mjs +0 -113
  952. package/esm2022/schema/lib/widget/widget-column-renderer.mjs +0 -118
  953. package/esm2022/schema/lib/widget/widget-filter-renderer.mjs +0 -133
  954. package/esm2022/schema/lib/widget/widget-renderer.mjs +0 -144
  955. package/esm2022/schema/lib/widget/widget-token.mjs +0 -3
  956. package/fesm2022/acorex-platform-core.mjs +0 -94
  957. package/fesm2022/acorex-platform-core.mjs.map +0 -1
  958. package/fesm2022/acorex-platform-layout.mjs +0 -756
  959. package/fesm2022/acorex-platform-layout.mjs.map +0 -1
  960. package/fesm2022/acorex-platform-layouts-avatar-widget-edit.component-a_eCmVu5.mjs +0 -162
  961. package/fesm2022/acorex-platform-layouts-avatar-widget-edit.component-a_eCmVu5.mjs.map +0 -1
  962. package/fesm2022/acorex-platform-layouts-avatar-widget-view.component-wwI7L0Kc.mjs +0 -64
  963. package/fesm2022/acorex-platform-layouts-avatar-widget-view.component-wwI7L0Kc.mjs.map +0 -1
  964. package/fesm2022/acorex-platform-layouts-boolean-widget-filter.component-CHW4rgxA.mjs +0 -150
  965. package/fesm2022/acorex-platform-layouts-boolean-widget-filter.component-CHW4rgxA.mjs.map +0 -1
  966. package/fesm2022/acorex-platform-layouts-change-password.component-vUZy2W_B.mjs +0 -178
  967. package/fesm2022/acorex-platform-layouts-change-password.component-vUZy2W_B.mjs.map +0 -1
  968. package/fesm2022/acorex-platform-layouts-checkbox-widget-column.component-BNEtAS7g.mjs +0 -56
  969. package/fesm2022/acorex-platform-layouts-checkbox-widget-column.component-BNEtAS7g.mjs.map +0 -1
  970. package/fesm2022/acorex-platform-layouts-checkbox-widget-edit.component-Cqn_QBcv.mjs +0 -25
  971. package/fesm2022/acorex-platform-layouts-checkbox-widget-edit.component-Cqn_QBcv.mjs.map +0 -1
  972. package/fesm2022/acorex-platform-layouts-checkbox-widget-view.component-DQLggJ9x.mjs +0 -50
  973. package/fesm2022/acorex-platform-layouts-checkbox-widget-view.component-DQLggJ9x.mjs.map +0 -1
  974. package/fesm2022/acorex-platform-layouts-dateTime-widget-column.component-D0eNN66F.mjs +0 -47
  975. package/fesm2022/acorex-platform-layouts-dateTime-widget-column.component-D0eNN66F.mjs.map +0 -1
  976. package/fesm2022/acorex-platform-layouts-dateTime-widget-edit.component-BLqAWdRX.mjs +0 -181
  977. package/fesm2022/acorex-platform-layouts-dateTime-widget-edit.component-BLqAWdRX.mjs.map +0 -1
  978. package/fesm2022/acorex-platform-layouts-dateTime-widget-filter.component-tvc-cTos.mjs +0 -217
  979. package/fesm2022/acorex-platform-layouts-dateTime-widget-filter.component-tvc-cTos.mjs.map +0 -1
  980. package/fesm2022/acorex-platform-layouts-dateTime-widget-view.component-CjChqiJw.mjs +0 -74
  981. package/fesm2022/acorex-platform-layouts-dateTime-widget-view.component-CjChqiJw.mjs.map +0 -1
  982. package/fesm2022/acorex-platform-layouts-email-widget-column.component-CUnxKERe.mjs +0 -76
  983. package/fesm2022/acorex-platform-layouts-email-widget-column.component-CUnxKERe.mjs.map +0 -1
  984. package/fesm2022/acorex-platform-layouts-email-widget-edit.component-DqnNien2.mjs +0 -252
  985. package/fesm2022/acorex-platform-layouts-email-widget-edit.component-DqnNien2.mjs.map +0 -1
  986. package/fesm2022/acorex-platform-layouts-email-widget-view.component-BZsLYW2w.mjs +0 -111
  987. package/fesm2022/acorex-platform-layouts-email-widget-view.component-BZsLYW2w.mjs.map +0 -1
  988. package/fesm2022/acorex-platform-layouts-entity-create-view.component-C3TUCnB2.mjs +0 -108
  989. package/fesm2022/acorex-platform-layouts-entity-create-view.component-C3TUCnB2.mjs.map +0 -1
  990. package/fesm2022/acorex-platform-layouts-entity-modify-view.component-BnSfJlc5.mjs +0 -89
  991. package/fesm2022/acorex-platform-layouts-entity-modify-view.component-BnSfJlc5.mjs.map +0 -1
  992. package/fesm2022/acorex-platform-layouts-file-widget-column.component-f54Z9E5C.mjs +0 -30
  993. package/fesm2022/acorex-platform-layouts-file-widget-column.component-f54Z9E5C.mjs.map +0 -1
  994. package/fesm2022/acorex-platform-layouts-file-widget-edit.component-CW9ESi46.mjs +0 -203
  995. package/fesm2022/acorex-platform-layouts-file-widget-edit.component-CW9ESi46.mjs.map +0 -1
  996. package/fesm2022/acorex-platform-layouts-file-widget-filter.component-K3mC1xLX.mjs +0 -30
  997. package/fesm2022/acorex-platform-layouts-file-widget-filter.component-K3mC1xLX.mjs.map +0 -1
  998. package/fesm2022/acorex-platform-layouts-file-widget-view.component-DVlbi33v.mjs +0 -156
  999. package/fesm2022/acorex-platform-layouts-file-widget-view.component-DVlbi33v.mjs.map +0 -1
  1000. package/fesm2022/acorex-platform-layouts-gallery-widget-edit.component-BUlkUU5u.mjs +0 -192
  1001. package/fesm2022/acorex-platform-layouts-gallery-widget-edit.component-BUlkUU5u.mjs.map +0 -1
  1002. package/fesm2022/acorex-platform-layouts-gallery-widget-filter.component-BYFQSXOV.mjs +0 -30
  1003. package/fesm2022/acorex-platform-layouts-gallery-widget-filter.component-BYFQSXOV.mjs.map +0 -1
  1004. package/fesm2022/acorex-platform-layouts-gallery-widget-view.component-BqVO3rDH.mjs +0 -176
  1005. package/fesm2022/acorex-platform-layouts-gallery-widget-view.component-BqVO3rDH.mjs.map +0 -1
  1006. package/fesm2022/acorex-platform-layouts-largetext-widget-edit.component-CmH9daul.mjs +0 -40
  1007. package/fesm2022/acorex-platform-layouts-largetext-widget-edit.component-CmH9daul.mjs.map +0 -1
  1008. package/fesm2022/acorex-platform-layouts-lookup-widget-column.component-C4Bb5AYW.mjs +0 -46
  1009. package/fesm2022/acorex-platform-layouts-lookup-widget-column.component-C4Bb5AYW.mjs.map +0 -1
  1010. package/fesm2022/acorex-platform-layouts-lookup-widget-edit.component-B2Qyoi4Q.mjs +0 -120
  1011. package/fesm2022/acorex-platform-layouts-lookup-widget-edit.component-B2Qyoi4Q.mjs.map +0 -1
  1012. package/fesm2022/acorex-platform-layouts-lookup-widget-filter.component-JJzSun3D.mjs +0 -158
  1013. package/fesm2022/acorex-platform-layouts-lookup-widget-filter.component-JJzSun3D.mjs.map +0 -1
  1014. package/fesm2022/acorex-platform-layouts-lookup-widget-view.component-Bmp_zVcQ.mjs +0 -57
  1015. package/fesm2022/acorex-platform-layouts-lookup-widget-view.component-Bmp_zVcQ.mjs.map +0 -1
  1016. package/fesm2022/acorex-platform-layouts-map-widget-edit.component-EWlgQnx5.mjs +0 -94
  1017. package/fesm2022/acorex-platform-layouts-map-widget-edit.component-EWlgQnx5.mjs.map +0 -1
  1018. package/fesm2022/acorex-platform-layouts-map-widget-view.component-cB5Mq7G7.mjs +0 -66
  1019. package/fesm2022/acorex-platform-layouts-map-widget-view.component-cB5Mq7G7.mjs.map +0 -1
  1020. package/fesm2022/acorex-platform-layouts-messenger-widget-column.component-DWgWrdmz.mjs +0 -74
  1021. package/fesm2022/acorex-platform-layouts-messenger-widget-column.component-DWgWrdmz.mjs.map +0 -1
  1022. package/fesm2022/acorex-platform-layouts-messenger-widget-edit.component-C7VOe49a.mjs +0 -139
  1023. package/fesm2022/acorex-platform-layouts-messenger-widget-edit.component-C7VOe49a.mjs.map +0 -1
  1024. package/fesm2022/acorex-platform-layouts-messenger-widget-view.component-uciMJWYn.mjs +0 -135
  1025. package/fesm2022/acorex-platform-layouts-messenger-widget-view.component-uciMJWYn.mjs.map +0 -1
  1026. package/fesm2022/acorex-platform-layouts-number-widget-edit.component-CXTwKvM4.mjs +0 -49
  1027. package/fesm2022/acorex-platform-layouts-number-widget-edit.component-CXTwKvM4.mjs.map +0 -1
  1028. package/fesm2022/acorex-platform-layouts-number-widget-filter.component-ARH7BdkE.mjs +0 -138
  1029. package/fesm2022/acorex-platform-layouts-number-widget-filter.component-ARH7BdkE.mjs.map +0 -1
  1030. package/fesm2022/acorex-platform-layouts-number-widget-view.component-B0duuEhX.mjs +0 -33
  1031. package/fesm2022/acorex-platform-layouts-number-widget-view.component-B0duuEhX.mjs.map +0 -1
  1032. package/fesm2022/acorex-platform-layouts-password-widget-column.component-Cav_zCe4.mjs +0 -70
  1033. package/fesm2022/acorex-platform-layouts-password-widget-column.component-Cav_zCe4.mjs.map +0 -1
  1034. package/fesm2022/acorex-platform-layouts-password-widget-edit.component-Dm2E5zA_.mjs +0 -44
  1035. package/fesm2022/acorex-platform-layouts-password-widget-edit.component-Dm2E5zA_.mjs.map +0 -1
  1036. package/fesm2022/acorex-platform-layouts-password-widget-view.component-BaipF6fT.mjs +0 -112
  1037. package/fesm2022/acorex-platform-layouts-password-widget-view.component-BaipF6fT.mjs.map +0 -1
  1038. package/fesm2022/acorex-platform-layouts-phone-widget-column.component-BtZ5Qke0.mjs +0 -94
  1039. package/fesm2022/acorex-platform-layouts-phone-widget-column.component-BtZ5Qke0.mjs.map +0 -1
  1040. package/fesm2022/acorex-platform-layouts-phone-widget-edit.component-BugCYS-l.mjs +0 -234
  1041. package/fesm2022/acorex-platform-layouts-phone-widget-edit.component-BugCYS-l.mjs.map +0 -1
  1042. package/fesm2022/acorex-platform-layouts-phone-widget-view.component-C7EN8qDk.mjs +0 -126
  1043. package/fesm2022/acorex-platform-layouts-phone-widget-view.component-C7EN8qDk.mjs.map +0 -1
  1044. package/fesm2022/acorex-platform-layouts-rich-text-widget-column.component-B99s2Zhi.mjs +0 -64
  1045. package/fesm2022/acorex-platform-layouts-rich-text-widget-column.component-B99s2Zhi.mjs.map +0 -1
  1046. package/fesm2022/acorex-platform-layouts-rich-text-widget-edit.component-Di1P6EQV.mjs +0 -70
  1047. package/fesm2022/acorex-platform-layouts-rich-text-widget-edit.component-Di1P6EQV.mjs.map +0 -1
  1048. package/fesm2022/acorex-platform-layouts-rich-text-widget-view.component-B_QG0YJc.mjs +0 -37
  1049. package/fesm2022/acorex-platform-layouts-rich-text-widget-view.component-B_QG0YJc.mjs.map +0 -1
  1050. package/fesm2022/acorex-platform-layouts-selection-list-widget-column.component-Cx9QqR9f.mjs +0 -46
  1051. package/fesm2022/acorex-platform-layouts-selection-list-widget-column.component-Cx9QqR9f.mjs.map +0 -1
  1052. package/fesm2022/acorex-platform-layouts-selection-list-widget-edit.component-DU-U-Af-.mjs +0 -56
  1053. package/fesm2022/acorex-platform-layouts-selection-list-widget-edit.component-DU-U-Af-.mjs.map +0 -1
  1054. package/fesm2022/acorex-platform-layouts-selection-list-widget-filter.component-B8y8heXR.mjs +0 -44
  1055. package/fesm2022/acorex-platform-layouts-selection-list-widget-filter.component-B8y8heXR.mjs.map +0 -1
  1056. package/fesm2022/acorex-platform-layouts-selection-list-widget-view.component-BDupWZy-.mjs +0 -48
  1057. package/fesm2022/acorex-platform-layouts-selection-list-widget-view.component-BDupWZy-.mjs.map +0 -1
  1058. package/fesm2022/acorex-platform-layouts-signature-pad-widget-edit.component-bEDsl8mg.mjs +0 -131
  1059. package/fesm2022/acorex-platform-layouts-signature-pad-widget-edit.component-bEDsl8mg.mjs.map +0 -1
  1060. package/fesm2022/acorex-platform-layouts-signature-pad-widget-view.component-DB903O2F.mjs +0 -44
  1061. package/fesm2022/acorex-platform-layouts-signature-pad-widget-view.component-DB903O2F.mjs.map +0 -1
  1062. package/fesm2022/acorex-platform-layouts-string-widget-filter.component-D3ZxVk6S.mjs +0 -128
  1063. package/fesm2022/acorex-platform-layouts-string-widget-filter.component-D3ZxVk6S.mjs.map +0 -1
  1064. package/fesm2022/acorex-platform-layouts-text-widget-column.component-D8WDAbQB.mjs +0 -49
  1065. package/fesm2022/acorex-platform-layouts-text-widget-column.component-D8WDAbQB.mjs.map +0 -1
  1066. package/fesm2022/acorex-platform-layouts-text-widget-edit.component-BrDbNXgJ.mjs +0 -165
  1067. package/fesm2022/acorex-platform-layouts-text-widget-edit.component-BrDbNXgJ.mjs.map +0 -1
  1068. package/fesm2022/acorex-platform-layouts-text-widget-view.component-XHN41M3T.mjs +0 -69
  1069. package/fesm2022/acorex-platform-layouts-text-widget-view.component-XHN41M3T.mjs.map +0 -1
  1070. package/fesm2022/acorex-platform-layouts-toggle-widget-column.component-BjIyTuZj.mjs +0 -60
  1071. package/fesm2022/acorex-platform-layouts-toggle-widget-column.component-BjIyTuZj.mjs.map +0 -1
  1072. package/fesm2022/acorex-platform-layouts-toggle-widget-edit.component-BKbBile6.mjs +0 -28
  1073. package/fesm2022/acorex-platform-layouts-toggle-widget-edit.component-BKbBile6.mjs.map +0 -1
  1074. package/fesm2022/acorex-platform-layouts-toggle-widget-view.component-CyjhQSiV.mjs +0 -52
  1075. package/fesm2022/acorex-platform-layouts-toggle-widget-view.component-CyjhQSiV.mjs.map +0 -1
  1076. package/fesm2022/acorex-platform-schema.mjs +0 -594
  1077. package/fesm2022/acorex-platform-schema.mjs.map +0 -1
  1078. package/layout/README.md +0 -4
  1079. package/layout/index.d.ts +0 -2
  1080. package/layout/lib/builder/builder.module.d.ts +0 -23
  1081. package/layout/lib/builder/context.service.d.ts +0 -17
  1082. package/layout/lib/builder/index.d.ts +0 -7
  1083. package/layout/lib/builder/widget-column-renderer.d.ts +0 -30
  1084. package/layout/lib/builder/widget-container.d.ts +0 -13
  1085. package/layout/lib/builder/widget-renderer.d.ts +0 -41
  1086. package/layout/lib/builder/widget.types.d.ts +0 -55
  1087. package/layouts/lib/admin/admin-child-layout/admin-child-features-list.component.d.ts +0 -22
  1088. package/layouts/lib/admin/admin-child-layout/admin-child-layout.component.d.ts +0 -21
  1089. package/layouts/lib/admin/admin-child-layout/admin-child-layout.module.d.ts +0 -17
  1090. package/layouts/lib/admin/admin-child-layout/index.d.ts +0 -3
  1091. package/layouts/lib/admin/admin-root-layout/admin-root-layout.component.d.ts +0 -30
  1092. package/layouts/lib/admin/admin-root-layout/admin-root-layout.module.d.ts +0 -25
  1093. package/layouts/lib/admin/admin-root-layout/components/admin-footer/admin-footer.component.d.ts +0 -5
  1094. package/layouts/lib/admin/admin-root-layout/components/admin-header/admin-header.component.d.ts +0 -10
  1095. package/layouts/lib/admin/admin-root-layout/index.d.ts +0 -4
  1096. package/layouts/lib/admin/store/admin-layout.selectors.d.ts +0 -5
  1097. package/layouts/lib/shared/components/content-view/content-view.page.d.ts +0 -23
  1098. package/layouts/lib/shared/components/content-view/content-view.type.d.ts +0 -16
  1099. package/layouts/lib/shared/components/index.d.ts +0 -9
  1100. package/layouts/lib/shared/components/slots/navbar-slot.component.d.ts +0 -10
  1101. package/layouts/lib/shared/entity/entity.class.d.ts +0 -153
  1102. package/layouts/lib/shared/index.d.ts +0 -4
  1103. package/layouts/lib/shared/services/index.d.ts +0 -1
  1104. package/layouts/lib/shared/workflows/common.workflow.d.ts +0 -61
  1105. package/layouts/lib/shared/workflows/error-handler.d.ts +0 -8
  1106. package/layouts/lib/themes/default/entity-layouts/entity-details-view/entity-details-view.component.d.ts +0 -11
  1107. package/layouts/lib/themes/default/entity-layouts/entity-details.viewmodel.d.ts +0 -34
  1108. package/layouts/lib/themes/default/index.d.ts +0 -2
  1109. package/layouts/lib/widgets/avatar/avatar-widget-edit.component.d.ts +0 -16
  1110. package/layouts/lib/widgets/avatar/avatar-widget-view.component.d.ts +0 -13
  1111. package/layouts/lib/widgets/checkbox/checkbox-widget-column.component.d.ts +0 -11
  1112. package/layouts/lib/widgets/checkbox/checkbox-widget-edit.component.d.ts +0 -6
  1113. package/layouts/lib/widgets/checkbox/checkbox-widget-view.component.d.ts +0 -11
  1114. package/layouts/lib/widgets/common-widget-filter/boolean-widget-filter.component.d.ts +0 -17
  1115. package/layouts/lib/widgets/common-widget-filter/number-widget-filter.component.d.ts +0 -11
  1116. package/layouts/lib/widgets/common-widget-filter/string-widget-filter.component.d.ts +0 -11
  1117. package/layouts/lib/widgets/common-widgets.module.d.ts +0 -32
  1118. package/layouts/lib/widgets/dateTime/dateTime-widget-column.component.d.ts +0 -11
  1119. package/layouts/lib/widgets/dateTime/dateTime-widget-edit.component.d.ts +0 -26
  1120. package/layouts/lib/widgets/dateTime/dateTime-widget-filter.component.d.ts +0 -16
  1121. package/layouts/lib/widgets/dateTime/dateTime-widget-view.component.d.ts +0 -11
  1122. package/layouts/lib/widgets/email/email-widget-column.component.d.ts +0 -16
  1123. package/layouts/lib/widgets/email/email-widget-edit.component.d.ts +0 -28
  1124. package/layouts/lib/widgets/email/email-widget-view.component.d.ts +0 -16
  1125. package/layouts/lib/widgets/file/file-widget-column.component.d.ts +0 -8
  1126. package/layouts/lib/widgets/file/file-widget-edit.component.d.ts +0 -17
  1127. package/layouts/lib/widgets/file/file-widget-filter.component.d.ts +0 -6
  1128. package/layouts/lib/widgets/file/file-widget-view.component.d.ts +0 -17
  1129. package/layouts/lib/widgets/gallery/gallery-widget-edit.component.d.ts +0 -15
  1130. package/layouts/lib/widgets/gallery/gallery-widget-filter.component.d.ts +0 -6
  1131. package/layouts/lib/widgets/gallery/gallery-widget-view.component.d.ts +0 -16
  1132. package/layouts/lib/widgets/lookup/lookup-widget-column.component.d.ts +0 -16
  1133. package/layouts/lib/widgets/lookup/lookup-widget-edit.component.d.ts +0 -15
  1134. package/layouts/lib/widgets/lookup/lookup-widget-filter.component.d.ts +0 -16
  1135. package/layouts/lib/widgets/lookup/lookup-widget-view.component.d.ts +0 -17
  1136. package/layouts/lib/widgets/map/map-widget-edit.component.d.ts +0 -15
  1137. package/layouts/lib/widgets/map/map-widget-view.component.d.ts +0 -17
  1138. package/layouts/lib/widgets/messenger/messenger-widget-column.component.d.ts +0 -15
  1139. package/layouts/lib/widgets/messenger/messenger-widget-edit.component.d.ts +0 -14
  1140. package/layouts/lib/widgets/messenger/messenger-widget-view.component.d.ts +0 -17
  1141. package/layouts/lib/widgets/number/number-widget-edit.component.d.ts +0 -7
  1142. package/layouts/lib/widgets/number/number-widget-view.component.d.ts +0 -8
  1143. package/layouts/lib/widgets/password/password-widget-column.component.d.ts +0 -14
  1144. package/layouts/lib/widgets/password/password-widget-edit.component.d.ts +0 -6
  1145. package/layouts/lib/widgets/password/password-widget-view.component.d.ts +0 -18
  1146. package/layouts/lib/widgets/phone/phone-widget-column.component.d.ts +0 -15
  1147. package/layouts/lib/widgets/phone/phone-widget-edit.component.d.ts +0 -29
  1148. package/layouts/lib/widgets/phone/phone-widget-view.component.d.ts +0 -18
  1149. package/layouts/lib/widgets/rich-text/rich-text-widget-column.component.d.ts +0 -11
  1150. package/layouts/lib/widgets/rich-text/rich-text-widget-edit.component.d.ts +0 -33
  1151. package/layouts/lib/widgets/rich-text/rich-text-widget-view.component.d.ts +0 -10
  1152. package/layouts/lib/widgets/selection-list/selection-list-widget-column.component.d.ts +0 -16
  1153. package/layouts/lib/widgets/selection-list/selection-list-widget-edit.component.d.ts +0 -12
  1154. package/layouts/lib/widgets/selection-list/selection-list-widget-filter.component.d.ts +0 -9
  1155. package/layouts/lib/widgets/selection-list/selection-list-widget-view.component.d.ts +0 -15
  1156. package/layouts/lib/widgets/signature-pad/signature-pad-widget-edit.component.d.ts +0 -19
  1157. package/layouts/lib/widgets/signature-pad/signature-pad-widget-view.component.d.ts +0 -8
  1158. package/layouts/lib/widgets/text/largetext-widget-edit.component.d.ts +0 -6
  1159. package/layouts/lib/widgets/text/text-widget-column.component.d.ts +0 -12
  1160. package/layouts/lib/widgets/text/text-widget-edit.component.d.ts +0 -23
  1161. package/layouts/lib/widgets/text/text-widget-view.component.d.ts +0 -11
  1162. package/layouts/lib/widgets/toggle/toggle-widget-column.component.d.ts +0 -11
  1163. package/layouts/lib/widgets/toggle/toggle-widget-edit.component.d.ts +0 -6
  1164. package/layouts/lib/widgets/toggle/toggle-widget-view.component.d.ts +0 -11
  1165. package/schema/README.md +0 -3
  1166. package/schema/index.d.ts +0 -11
  1167. package/schema/lib/operators.d.ts +0 -22
  1168. package/schema/lib/schema.types.d.ts +0 -16
  1169. package/schema/lib/widget/widget-base.d.ts +0 -45
  1170. package/schema/lib/widget/widget-token.d.ts +0 -16
  1171. /package/{core → common}/lib/app/operators.d.ts +0 -0
  1172. /package/{core → common}/lib/configs/config.types.d.ts +0 -0
  1173. /package/{layout/lib → common/lib/layout}/component-slot/component-slot-loader.service.d.ts +0 -0
  1174. /package/{layout/lib → common/lib/layout}/component-slot/component-slot-registery.service.d.ts +0 -0
  1175. /package/{layout/lib → common/lib/layout}/component-slot/component-slot.directive.d.ts +0 -0
  1176. /package/{layout/lib → common/lib/layout}/component-slot/component-slot.module.d.ts +0 -0
  1177. /package/{layout/lib → common/lib/layout}/component-slot/component-slot.types.d.ts +0 -0
  1178. /package/{layout/lib → common/lib/layout}/component-slot/index.d.ts +0 -0
  1179. /package/{layouts/lib/shared/services → common/lib/layout}/layout.service.d.ts +0 -0
  1180. /package/{layouts/lib/shared/components → common/lib/layout}/logo/logo.component.d.ts +0 -0
  1181. /package/common/lib/{shared → layout/logo}/logo.types.d.ts +0 -0
  1182. /package/common/lib/{menu → layout/menu}/index.d.ts +0 -0
  1183. /package/common/lib/{menu → layout/menu}/menu.loader.d.ts +0 -0
  1184. /package/common/lib/{menu → layout/menu}/menu.types.d.ts +0 -0
  1185. /package/{layouts/lib/shared → common/lib/layout/theme}/components/slots/footer-text-slot.component.d.ts +0 -0
  1186. /package/{layouts/lib/shared → common/lib/layout/theme}/components/slots/theme-slot.component.d.ts +0 -0
  1187. /package/{layouts/lib/admin → common/lib/layout/theme}/store/admin-layout.actions.d.ts +0 -0
  1188. /package/{layouts/lib/admin → common/lib/layout/theme}/store/admin-layout.effects.d.ts +0 -0
  1189. /package/{layouts/lib/admin → common/lib/layout/theme}/store/admin-layout.reducers.d.ts +0 -0
  1190. /package/{layouts/lib/admin → common/lib/layout/theme}/store/admin-layout.state.d.ts +0 -0
  1191. /package/{layouts/lib/admin → common/lib/layout/theme}/store/index.d.ts +0 -0
  1192. /package/{schema/lib → common/lib/schema}/component-loader.d.ts +0 -0
  1193. /package/{layouts/lib/shared → common/lib/schema}/entity/entity-registery.service.d.ts +0 -0
  1194. /package/{layouts/lib/shared → common/lib/schema}/entity/entity.loader.d.ts +0 -0
  1195. /package/{layouts/lib/shared → common/lib/schema}/entity/index.d.ts +0 -0
  1196. /package/{schema/lib → common/lib/schema}/formats.d.ts +0 -0
  1197. /package/{schema/lib → common/lib/schema}/schema-registery.service.d.ts +0 -0
  1198. /package/{schema/lib → common/lib/schema}/schema.module.d.ts +0 -0
  1199. /package/{schema/lib → common/lib/schema}/widget/widget-column-renderer.d.ts +0 -0
  1200. /package/{schema/lib → common/lib/schema}/widget/widget-filter-renderer.d.ts +0 -0
  1201. /package/{schema/lib → common/lib/schema}/widget/widget-renderer.d.ts +0 -0
  1202. /package/{layouts/lib → common/lib/schema}/widgets/gallery/gallery-widget-types.d.ts +0 -0
  1203. /package/{layouts/lib → common/lib/schema}/widgets/index.d.ts +0 -0
  1204. /package/{layouts/lib → common/lib/schema}/widgets/password/change-password.component.d.ts +0 -0
  1205. /package/{layouts/lib/shared → common/lib}/workflows/index.d.ts +0 -0
  1206. /package/layout/{lib → builder/lib}/builder/widget-registery.service.d.ts +0 -0
  1207. /package/{layouts → themes/default}/lib/layout.routes.d.ts +0 -0
  1208. /package/{layouts/lib/shared/components → themes/default/lib/pages/errors}/error-401/error-401.component.d.ts +0 -0
  1209. /package/{layouts/lib/shared/components → themes/default/lib/pages/errors}/error-404/error-404.component.d.ts +0 -0
  1210. /package/{layouts/lib/shared/components → themes/default/lib/pages/errors}/error-offline/error-offline.component.d.ts +0 -0
@@ -0,0 +1,109 @@
1
+ import { AXButtonModule } from '@acorex/components/button';
2
+ import { AXPopupService } from '@acorex/components/popup';
3
+ import { AXPlatform } from '@acorex/core/platform';
4
+ import { AXPWidgetBase } from '../../widget/widget-base';
5
+ import { CommonModule } from '@angular/common';
6
+ import { ChangeDetectionStrategy, Component, inject } from '@angular/core';
7
+ import { AXPClipBoardService } from '../../../utils';
8
+ import * as i0 from "@angular/core";
9
+ import * as i1 from "@acorex/components/button";
10
+ export class AXPPasswordWidgetViewComponent extends AXPWidgetBase {
11
+ constructor() {
12
+ super(...arguments);
13
+ this.clipboard = inject(AXPClipBoardService);
14
+ this.platform = inject(AXPlatform);
15
+ this.popopService = inject(AXPopupService);
16
+ this.showPass = false;
17
+ }
18
+ toggleEye() {
19
+ this.showPass = !this.showPass;
20
+ }
21
+ async openPasswordPopup() {
22
+ const compnent = await import('./change-password.component');
23
+ this.popopService.open(compnent.ChangePassword, {
24
+ title: 'Change Password',
25
+ draggable: true,
26
+ header: true,
27
+ size: this.platform.is('Mobile') || this.platform.is('SM') ? 'full' : 'md',
28
+ hasBackdrop: true,
29
+ closeButton: true,
30
+ closeOnBackdropClick: true,
31
+ data: {
32
+ password: this.password,
33
+ currentPass: this.currentPass,
34
+ },
35
+ });
36
+ }
37
+ render() {
38
+ this.password = this.rawValue;
39
+ }
40
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPasswordWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
41
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPPasswordWidgetViewComponent, isStandalone: true, selector: "ng-component", inputs: { hasEye: "hasEye", hasCopy: "hasCopy", currentPass: "currentPass" }, usesInheritance: true, ngImport: i0, template: `<div class="ax-flex ax-justify-between ">
42
+ <div class="ax-col-start-1 ax-col-end-10 lg:ax-col-end-7">
43
+ <div class="ax-flex ax-flex-1 ax-gap-3 ax-group ax-items-start ax-w-max">
44
+ <span>{{ showPass ? password : '*******' }}</span>
45
+ @if(hasEye){
46
+ <span
47
+ class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
48
+ (click)="toggleEye()"
49
+ >
50
+ @if(!showPass){
51
+ <i class="fa-solid fa-eye"></i>
52
+ }@else {
53
+ <i class="fa-solid fa-eye-slash"></i>
54
+ }
55
+ </span>
56
+ } @if(hasCopy && hasEye){
57
+ <span
58
+ class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
59
+ (click)="clipboard.copy('Password', password)"
60
+ >
61
+ <i class="fa-solid fa-copy "></i>
62
+ </span>
63
+ }
64
+ </div>
65
+ </div>
66
+ @if(!this.prop.canEdit){
67
+ <ax-button (onClick)="openPasswordPopup()" color="ghost" text="Change Password"></ax-button>
68
+ }
69
+ </div>`, 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"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
70
+ }
71
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPasswordWidgetViewComponent, decorators: [{
72
+ type: Component,
73
+ args: [{
74
+ template: `<div class="ax-flex ax-justify-between ">
75
+ <div class="ax-col-start-1 ax-col-end-10 lg:ax-col-end-7">
76
+ <div class="ax-flex ax-flex-1 ax-gap-3 ax-group ax-items-start ax-w-max">
77
+ <span>{{ showPass ? password : '*******' }}</span>
78
+ @if(hasEye){
79
+ <span
80
+ class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
81
+ (click)="toggleEye()"
82
+ >
83
+ @if(!showPass){
84
+ <i class="fa-solid fa-eye"></i>
85
+ }@else {
86
+ <i class="fa-solid fa-eye-slash"></i>
87
+ }
88
+ </span>
89
+ } @if(hasCopy && hasEye){
90
+ <span
91
+ class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
92
+ (click)="clipboard.copy('Password', password)"
93
+ >
94
+ <i class="fa-solid fa-copy "></i>
95
+ </span>
96
+ }
97
+ </div>
98
+ </div>
99
+ @if(!this.prop.canEdit){
100
+ <ax-button (onClick)="openPasswordPopup()" color="ghost" text="Change Password"></ax-button>
101
+ }
102
+ </div>`,
103
+ standalone: true,
104
+ changeDetection: ChangeDetectionStrategy.OnPush,
105
+ imports: [CommonModule, AXButtonModule],
106
+ inputs: ['hasEye', 'hasCopy', 'currentPass'],
107
+ }]
108
+ }] });
109
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFzc3dvcmQtd2lkZ2V0LXZpZXcuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS9jb21tb24vc3JjL2xpYi9zY2hlbWEvd2lkZ2V0cy9wYXNzd29yZC9wYXNzd29yZC13aWRnZXQtdmlldy5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBQzNELE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUMxRCxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sdUJBQXVCLENBQUM7QUFDbkQsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQ3pELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMzRSxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQzs7O0FBb0NyRCxNQUFNLE9BQU8sOEJBQStCLFNBQVEsYUFBYTtJQW5DakU7O1FBb0NZLGNBQVMsR0FBRyxNQUFNLENBQUMsbUJBQW1CLENBQUMsQ0FBQztRQUMxQyxhQUFRLEdBQUcsTUFBTSxDQUFDLFVBQVUsQ0FBQyxDQUFDO1FBQzlCLGlCQUFZLEdBQW1CLE1BQU0sQ0FBQyxjQUFjLENBQUMsQ0FBQztRQU05RCxhQUFRLEdBQVksS0FBSyxDQUFDO0tBeUIzQjtJQXZCQyxTQUFTO1FBQ1AsSUFBSSxDQUFDLFFBQVEsR0FBRyxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUM7SUFDakMsQ0FBQztJQUNELEtBQUssQ0FBQyxpQkFBaUI7UUFDckIsTUFBTSxRQUFRLEdBQUcsTUFBTSxNQUFNLENBQUMsNkJBQTZCLENBQUMsQ0FBQztRQUM3RCxJQUFJLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsY0FBYyxFQUFFO1lBQzlDLEtBQUssRUFBRSxpQkFBaUI7WUFDeEIsU0FBUyxFQUFFLElBQUk7WUFDZixNQUFNLEVBQUUsSUFBSTtZQUNaLElBQUksRUFBRSxJQUFJLENBQUMsUUFBUSxDQUFDLEVBQUUsQ0FBQyxRQUFRLENBQUMsSUFBSSxJQUFJLENBQUMsUUFBUSxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxJQUFJO1lBQzFFLFdBQVcsRUFBRSxJQUFJO1lBQ2pCLFdBQVcsRUFBRSxJQUFJO1lBQ2pCLG9CQUFvQixFQUFFLElBQUk7WUFDMUIsSUFBSSxFQUFFO2dCQUNKLFFBQVEsRUFBRSxJQUFJLENBQUMsUUFBUTtnQkFDdkIsV0FBVyxFQUFFLElBQUksQ0FBQyxXQUFXO2FBQzlCO1NBQ0YsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVrQixNQUFNO1FBQ3ZCLElBQUksQ0FBQyxRQUFRLEdBQUcsSUFBSSxDQUFDLFFBQVEsQ0FBQztJQUNoQyxDQUFDOzhHQWpDVSw4QkFBOEI7a0dBQTlCLDhCQUE4Qiw2S0FsQy9COzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O1NBNEJILDJEQUdHLFlBQVksOEJBQUUsY0FBYzs7MkZBRzNCLDhCQUE4QjtrQkFuQzFDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O1NBNEJIO29CQUNQLFVBQVUsRUFBRSxJQUFJO29CQUNoQixlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsT0FBTyxFQUFFLENBQUMsWUFBWSxFQUFFLGNBQWMsQ0FBQztvQkFDdkMsTUFBTSxFQUFFLENBQUMsUUFBUSxFQUFFLFNBQVMsRUFBRSxhQUFhLENBQUM7aUJBQzdDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhCdXR0b25Nb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvYnV0dG9uJztcclxuaW1wb3J0IHsgQVhQb3B1cFNlcnZpY2UgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvcG9wdXAnO1xyXG5pbXBvcnQgeyBBWFBsYXRmb3JtIH0gZnJvbSAnQGFjb3JleC9jb3JlL3BsYXRmb3JtJztcclxuaW1wb3J0IHsgQVhQV2lkZ2V0QmFzZSB9IGZyb20gJy4uLy4uL3dpZGdldC93aWRnZXQtYmFzZSc7XHJcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XHJcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIGluamVjdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBBWFBDbGlwQm9hcmRTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vLi4vdXRpbHMnO1xyXG5AQ29tcG9uZW50KHtcclxuICB0ZW1wbGF0ZTogYDxkaXYgY2xhc3M9XCJheC1mbGV4IGF4LWp1c3RpZnktYmV0d2VlbiBcIj5cclxuICAgIDxkaXYgY2xhc3M9XCJheC1jb2wtc3RhcnQtMSBheC1jb2wtZW5kLTEwIGxnOmF4LWNvbC1lbmQtN1wiPlxyXG4gICAgICA8ZGl2IGNsYXNzPVwiYXgtZmxleCBheC1mbGV4LTEgYXgtZ2FwLTMgYXgtZ3JvdXAgYXgtaXRlbXMtc3RhcnQgYXgtdy1tYXhcIj5cclxuICAgICAgICA8c3Bhbj57eyBzaG93UGFzcyA/IHBhc3N3b3JkIDogJyoqKioqKionIH19PC9zcGFuPlxyXG4gICAgICAgIEBpZihoYXNFeWUpe1xyXG4gICAgICAgIDxzcGFuXHJcbiAgICAgICAgICBjbGFzcz1cImF4LXRleHQtbmV1dHJhbC00MDAgYXgtY3Vyc29yLXBvaW50ZXIgYXgtaW52aXNpYmxlIGdyb3VwLWhvdmVyOmF4LXZpc2libGUgaG92ZXI6IWF4LXRleHQtcHJpbWFyeS01MDBcIlxyXG4gICAgICAgICAgKGNsaWNrKT1cInRvZ2dsZUV5ZSgpXCJcclxuICAgICAgICA+XHJcbiAgICAgICAgICBAaWYoIXNob3dQYXNzKXtcclxuICAgICAgICAgIDxpIGNsYXNzPVwiZmEtc29saWQgZmEtZXllXCI+PC9pPlxyXG4gICAgICAgICAgfUBlbHNlIHtcclxuICAgICAgICAgIDxpIGNsYXNzPVwiZmEtc29saWQgZmEtZXllLXNsYXNoXCI+PC9pPlxyXG4gICAgICAgICAgfVxyXG4gICAgICAgIDwvc3Bhbj5cclxuICAgICAgICB9IEBpZihoYXNDb3B5ICYmIGhhc0V5ZSl7XHJcbiAgICAgICAgPHNwYW5cclxuICAgICAgICAgIGNsYXNzPVwiYXgtdGV4dC1uZXV0cmFsLTQwMCAgYXgtY3Vyc29yLXBvaW50ZXIgYXgtaW52aXNpYmxlIGdyb3VwLWhvdmVyOmF4LXZpc2libGUgaG92ZXI6IWF4LXRleHQtcHJpbWFyeS01MDBcIlxyXG4gICAgICAgICAgKGNsaWNrKT1cImNsaXBib2FyZC5jb3B5KCdQYXNzd29yZCcsIHBhc3N3b3JkKVwiXHJcbiAgICAgICAgPlxyXG4gICAgICAgICAgPGkgY2xhc3M9XCJmYS1zb2xpZCBmYS1jb3B5IFwiPjwvaT5cclxuICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgfVxyXG4gICAgICA8L2Rpdj5cclxuICAgIDwvZGl2PlxyXG4gICAgQGlmKCF0aGlzLnByb3AuY2FuRWRpdCl7XHJcbiAgICA8YXgtYnV0dG9uIChvbkNsaWNrKT1cIm9wZW5QYXNzd29yZFBvcHVwKClcIiBjb2xvcj1cImdob3N0XCIgdGV4dD1cIkNoYW5nZSBQYXNzd29yZFwiPjwvYXgtYnV0dG9uPlxyXG4gICAgfVxyXG4gIDwvZGl2PmAsXHJcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcclxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcclxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBBWEJ1dHRvbk1vZHVsZV0sXHJcbiAgaW5wdXRzOiBbJ2hhc0V5ZScsICdoYXNDb3B5JywgJ2N1cnJlbnRQYXNzJ10sXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBBWFBQYXNzd29yZFdpZGdldFZpZXdDb21wb25lbnQgZXh0ZW5kcyBBWFBXaWRnZXRCYXNlIHtcclxuICBwcm90ZWN0ZWQgY2xpcGJvYXJkID0gaW5qZWN0KEFYUENsaXBCb2FyZFNlcnZpY2UpO1xyXG4gIHByaXZhdGUgcGxhdGZvcm0gPSBpbmplY3QoQVhQbGF0Zm9ybSk7XHJcbiAgcHJpdmF0ZSBwb3BvcFNlcnZpY2U6IEFYUG9wdXBTZXJ2aWNlID0gaW5qZWN0KEFYUG9wdXBTZXJ2aWNlKTtcclxuXHJcbiAgcGFzc3dvcmQhOiBzdHJpbmc7XHJcbiAgaGFzQ29weSE6IGJvb2xlYW47XHJcbiAgaGFzRXllITogYm9vbGVhbjtcclxuICBjdXJyZW50UGFzcyE6IGJvb2xlYW47XHJcbiAgc2hvd1Bhc3M6IGJvb2xlYW4gPSBmYWxzZTtcclxuXHJcbiAgdG9nZ2xlRXllKCkge1xyXG4gICAgdGhpcy5zaG93UGFzcyA9ICF0aGlzLnNob3dQYXNzO1xyXG4gIH1cclxuICBhc3luYyBvcGVuUGFzc3dvcmRQb3B1cCgpIHtcclxuICAgIGNvbnN0IGNvbXBuZW50ID0gYXdhaXQgaW1wb3J0KCcuL2NoYW5nZS1wYXNzd29yZC5jb21wb25lbnQnKTtcclxuICAgIHRoaXMucG9wb3BTZXJ2aWNlLm9wZW4oY29tcG5lbnQuQ2hhbmdlUGFzc3dvcmQsIHtcclxuICAgICAgdGl0bGU6ICdDaGFuZ2UgUGFzc3dvcmQnLFxyXG4gICAgICBkcmFnZ2FibGU6IHRydWUsXHJcbiAgICAgIGhlYWRlcjogdHJ1ZSxcclxuICAgICAgc2l6ZTogdGhpcy5wbGF0Zm9ybS5pcygnTW9iaWxlJykgfHwgdGhpcy5wbGF0Zm9ybS5pcygnU00nKSA/ICdmdWxsJyA6ICdtZCcsXHJcbiAgICAgIGhhc0JhY2tkcm9wOiB0cnVlLFxyXG4gICAgICBjbG9zZUJ1dHRvbjogdHJ1ZSxcclxuICAgICAgY2xvc2VPbkJhY2tkcm9wQ2xpY2s6IHRydWUsXHJcbiAgICAgIGRhdGE6IHtcclxuICAgICAgICBwYXNzd29yZDogdGhpcy5wYXNzd29yZCxcclxuICAgICAgICBjdXJyZW50UGFzczogdGhpcy5jdXJyZW50UGFzcyxcclxuICAgICAgfSxcclxuICAgIH0pO1xyXG4gIH1cclxuXHJcbiAgcHJvdGVjdGVkIG92ZXJyaWRlIHJlbmRlcigpOiB2b2lkIHtcclxuICAgIHRoaXMucGFzc3dvcmQgPSB0aGlzLnJhd1ZhbHVlO1xyXG4gIH1cclxufVxyXG4iXX0=
@@ -0,0 +1,91 @@
1
+ import { AXTooltipModule } from '@acorex/components/tooltip';
2
+ import { AXPWidgetBase } from '../../widget/widget-base';
3
+ import { ChangeDetectionStrategy, Component } from '@angular/core';
4
+ import * as i0 from "@angular/core";
5
+ export class AXPPhoneWidgetColumnComponent extends AXPWidgetBase {
6
+ constructor() {
7
+ super(...arguments);
8
+ this.list = [];
9
+ this.text = '';
10
+ }
11
+ dot3(text) {
12
+ if (this.multiple)
13
+ return text.split('\n')[0] + '...';
14
+ else
15
+ return text.split('\n')[0];
16
+ }
17
+ render() {
18
+ if (this.rawValue) {
19
+ const rawValue = this.rawValue;
20
+ this.list = Array.isArray(rawValue) ? rawValue.map((c) => this.extractItem(c)) : [this.extractItem(rawValue)];
21
+ this.text = this.list.map((item) => item.value).join('\n');
22
+ }
23
+ }
24
+ extractItem(item) {
25
+ return typeof item == 'object'
26
+ ? {
27
+ value: item.value ?? '-',
28
+ type: item.type ?? 'mobile',
29
+ label: item.label,
30
+ }
31
+ : {
32
+ value: item,
33
+ type: 'mobile',
34
+ label: null,
35
+ };
36
+ }
37
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPhoneWidgetColumnComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
38
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPPhoneWidgetColumnComponent, isStandalone: true, selector: "axp-phone-widget-column", inputs: { context: "context", multiple: "multiple", width: "width", hasLabel: "hasLabel", allowResizing: "allowResizing" }, usesInheritance: true, ngImport: i0, template: `<div>
39
+ @if(multiple && list.length>1){
40
+ <div [title]="text">{{ dot3(text) }}</div>
41
+ <!-- <ng-template #allContent>
42
+ <div class="ax-bg-default ax-p-4 ax-border ax-rounded-lg ">
43
+ @for (item of list; track $index) {
44
+ <div>
45
+ {{ item.value }}
46
+ </div>
47
+ }
48
+ </div>
49
+ </ng-template> -->
50
+ }@else {
51
+ <div>
52
+ @if(list && list.length){
53
+ {{ list[0].value }}
54
+ }@else { - }
55
+ </div>
56
+
57
+ }
58
+ </div>`, isInline: true, dependencies: [{ kind: "ngmodule", type: AXTooltipModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
59
+ }
60
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPhoneWidgetColumnComponent, decorators: [{
61
+ type: Component,
62
+ args: [{
63
+ selector: 'axp-phone-widget-column',
64
+ template: `<div>
65
+ @if(multiple && list.length>1){
66
+ <div [title]="text">{{ dot3(text) }}</div>
67
+ <!-- <ng-template #allContent>
68
+ <div class="ax-bg-default ax-p-4 ax-border ax-rounded-lg ">
69
+ @for (item of list; track $index) {
70
+ <div>
71
+ {{ item.value }}
72
+ </div>
73
+ }
74
+ </div>
75
+ </ng-template> -->
76
+ }@else {
77
+ <div>
78
+ @if(list && list.length){
79
+ {{ list[0].value }}
80
+ }@else { - }
81
+ </div>
82
+
83
+ }
84
+ </div>`,
85
+ standalone: true,
86
+ changeDetection: ChangeDetectionStrategy.OnPush,
87
+ imports: [AXTooltipModule],
88
+ inputs: ['context', 'multiple', 'width', 'hasLabel', 'allowResizing'],
89
+ }]
90
+ }] });
91
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGhvbmUtd2lkZ2V0LWNvbHVtbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL2NvbW1vbi9zcmMvbGliL3NjaGVtYS93aWRnZXRzL3Bob25lL3Bob25lLXdpZGdldC1jb2x1bW4uY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUM3RCxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDekQsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUE2Qm5FLE1BQU0sT0FBTyw2QkFBOEIsU0FBUSxhQUFhO0lBNUJoRTs7UUE2QlksU0FBSSxHQUF1QyxFQUFFLENBQUM7UUFDOUMsU0FBSSxHQUFXLEVBQUUsQ0FBQztLQTZCN0I7SUExQlcsSUFBSSxDQUFDLElBQVk7UUFDekIsSUFBSSxJQUFJLENBQUMsUUFBUTtZQUFFLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUMsR0FBRyxLQUFLLENBQUM7O1lBQ2pELE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztJQUNsQyxDQUFDO0lBRWtCLE1BQU07UUFDdkIsSUFBSSxJQUFJLENBQUMsUUFBUSxFQUFFLENBQUM7WUFDbEIsTUFBTSxRQUFRLEdBQUcsSUFBSSxDQUFDLFFBQVEsQ0FBQztZQUMvQixJQUFJLENBQUMsSUFBSSxHQUFHLEtBQUssQ0FBQyxPQUFPLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxDQUFDLFFBQVEsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUM7WUFDOUcsSUFBSSxDQUFDLElBQUksR0FBRyxJQUFJLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUFDLElBQUksRUFBRSxFQUFFLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUM3RCxDQUFDO0lBQ0gsQ0FBQztJQUVPLFdBQVcsQ0FBQyxJQUFTO1FBQzNCLE9BQU8sT0FBTyxJQUFJLElBQUksUUFBUTtZQUM1QixDQUFDLENBQUM7Z0JBQ0EsS0FBSyxFQUFFLElBQUksQ0FBQyxLQUFLLElBQUksR0FBRztnQkFDeEIsSUFBSSxFQUFFLElBQUksQ0FBQyxJQUFJLElBQUksUUFBUTtnQkFDM0IsS0FBSyxFQUFFLElBQUksQ0FBQyxLQUFLO2FBQ2xCO1lBQ0QsQ0FBQyxDQUFDO2dCQUNBLEtBQUssRUFBRSxJQUFJO2dCQUNYLElBQUksRUFBRSxRQUFRO2dCQUNkLEtBQUssRUFBRSxJQUFJO2FBQ1osQ0FBQztJQUNOLENBQUM7OEdBOUJVLDZCQUE2QjtrR0FBN0IsNkJBQTZCLHNPQTFCOUI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O1NBb0JILDJEQUdHLGVBQWU7OzJGQUdkLDZCQUE2QjtrQkE1QnpDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLHlCQUF5QjtvQkFDbkMsUUFBUSxFQUFFOzs7Ozs7Ozs7Ozs7Ozs7Ozs7OztTQW9CSDtvQkFDUCxVQUFVLEVBQUUsSUFBSTtvQkFDaEIsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLE9BQU8sRUFBRSxDQUFDLGVBQWUsQ0FBQztvQkFDMUIsTUFBTSxFQUFFLENBQUMsU0FBUyxFQUFFLFVBQVUsRUFBRSxPQUFPLEVBQUUsVUFBVSxFQUFFLGVBQWUsQ0FBQztpQkFDdEUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWFRvb2x0aXBNb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvdG9vbHRpcCc7XHJcbmltcG9ydCB7IEFYUFdpZGdldEJhc2UgfSBmcm9tICcuLi8uLi93aWRnZXQvd2lkZ2V0LWJhc2UnO1xyXG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnYXhwLXBob25lLXdpZGdldC1jb2x1bW4nLFxyXG4gIHRlbXBsYXRlOiBgPGRpdj5cclxuICAgIEBpZihtdWx0aXBsZSAmJiBsaXN0Lmxlbmd0aD4xKXtcclxuICAgIDxkaXYgW3RpdGxlXT1cInRleHRcIj57eyBkb3QzKHRleHQpIH19PC9kaXY+XHJcbiAgICA8IS0tIDxuZy10ZW1wbGF0ZSAjYWxsQ29udGVudD5cclxuICAgICAgPGRpdiBjbGFzcz1cImF4LWJnLWRlZmF1bHQgYXgtcC00IGF4LWJvcmRlciBheC1yb3VuZGVkLWxnIFwiPlxyXG4gICAgICAgIEBmb3IgKGl0ZW0gb2YgbGlzdDsgdHJhY2sgJGluZGV4KSB7XHJcbiAgICAgICAgPGRpdj5cclxuICAgICAgICAgIHt7IGl0ZW0udmFsdWUgfX1cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgICB9XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgPC9uZy10ZW1wbGF0ZT4gLS0+XHJcbiAgICB9QGVsc2Uge1xyXG4gICAgPGRpdj5cclxuICAgICAgQGlmKGxpc3QgJiYgbGlzdC5sZW5ndGgpe1xyXG4gICAgICB7eyBsaXN0WzBdLnZhbHVlIH19XHJcbiAgICAgIH1AZWxzZSB7IC0gfVxyXG4gICAgPC9kaXY+XHJcblxyXG4gICAgfVxyXG4gIDwvZGl2PmAsXHJcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcclxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcclxuICBpbXBvcnRzOiBbQVhUb29sdGlwTW9kdWxlXSxcclxuICBpbnB1dHM6IFsnY29udGV4dCcsICdtdWx0aXBsZScsICd3aWR0aCcsICdoYXNMYWJlbCcsICdhbGxvd1Jlc2l6aW5nJ10sXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBBWFBQaG9uZVdpZGdldENvbHVtbkNvbXBvbmVudCBleHRlbmRzIEFYUFdpZGdldEJhc2Uge1xyXG4gIHByb3RlY3RlZCBsaXN0OiB7IHZhbHVlOiBzdHJpbmc7IGxhYmVsOiBzdHJpbmcgfVtdID0gW107XHJcbiAgcHJvdGVjdGVkIHRleHQ6IHN0cmluZyA9ICcnO1xyXG4gIHByb3RlY3RlZCBtdWx0aXBsZSE6IGJvb2xlYW47XHJcblxyXG4gIHByb3RlY3RlZCBkb3QzKHRleHQ6IHN0cmluZykge1xyXG4gICAgaWYgKHRoaXMubXVsdGlwbGUpIHJldHVybiB0ZXh0LnNwbGl0KCdcXG4nKVswXSArICcuLi4nO1xyXG4gICAgZWxzZSByZXR1cm4gdGV4dC5zcGxpdCgnXFxuJylbMF07XHJcbiAgfVxyXG5cclxuICBwcm90ZWN0ZWQgb3ZlcnJpZGUgcmVuZGVyKCk6IHZvaWQge1xyXG4gICAgaWYgKHRoaXMucmF3VmFsdWUpIHtcclxuICAgICAgY29uc3QgcmF3VmFsdWUgPSB0aGlzLnJhd1ZhbHVlO1xyXG4gICAgICB0aGlzLmxpc3QgPSBBcnJheS5pc0FycmF5KHJhd1ZhbHVlKSA/IHJhd1ZhbHVlLm1hcCgoYykgPT4gdGhpcy5leHRyYWN0SXRlbShjKSkgOiBbdGhpcy5leHRyYWN0SXRlbShyYXdWYWx1ZSldO1xyXG4gICAgICB0aGlzLnRleHQgPSB0aGlzLmxpc3QubWFwKChpdGVtKSA9PiBpdGVtLnZhbHVlKS5qb2luKCdcXG4nKTtcclxuICAgIH1cclxuICB9XHJcblxyXG4gIHByaXZhdGUgZXh0cmFjdEl0ZW0oaXRlbTogYW55KTogYW55IHtcclxuICAgIHJldHVybiB0eXBlb2YgaXRlbSA9PSAnb2JqZWN0J1xyXG4gICAgICA/IHtcclxuICAgICAgICB2YWx1ZTogaXRlbS52YWx1ZSA/PyAnLScsXHJcbiAgICAgICAgdHlwZTogaXRlbS50eXBlID8/ICdtb2JpbGUnLFxyXG4gICAgICAgIGxhYmVsOiBpdGVtLmxhYmVsLFxyXG4gICAgICB9XHJcbiAgICAgIDoge1xyXG4gICAgICAgIHZhbHVlOiBpdGVtLFxyXG4gICAgICAgIHR5cGU6ICdtb2JpbGUnLFxyXG4gICAgICAgIGxhYmVsOiBudWxsLFxyXG4gICAgICB9O1xyXG4gIH1cclxufVxyXG4iXX0=
@@ -0,0 +1,245 @@
1
+ import { AXButtonModule } from '@acorex/components/button';
2
+ import { AXDecoratorModule } from '@acorex/components/decorators';
3
+ import { AXFormModule } from '@acorex/components/form';
4
+ import { AXSelectBoxModule } from '@acorex/components/select-box';
5
+ import { AXTextBoxModule } from '@acorex/components/text-box';
6
+ import { AXPlatform } from '@acorex/core/platform';
7
+ import { MockDataService } from '@acorex/platform/mocks';
8
+ import { AXPWidgetEditBase } from '../../widget/widget-base';
9
+ import { CommonModule } from '@angular/common';
10
+ import { ChangeDetectionStrategy, Component, effect, inject, signal } from '@angular/core';
11
+ import { FormsModule } from '@angular/forms';
12
+ import * as i0 from "@angular/core";
13
+ import * as i1 from "@angular/common";
14
+ import * as i2 from "@acorex/components/button";
15
+ import * as i3 from "@angular/forms";
16
+ import * as i4 from "@acorex/components/text-box";
17
+ import * as i5 from "@acorex/components/decorators";
18
+ import * as i6 from "@acorex/components/select-box";
19
+ import * as i7 from "@acorex/components/form";
20
+ export class AXPPhoneWidgetEditComponent extends AXPWidgetEditBase {
21
+ constructor() {
22
+ super(...arguments);
23
+ this.mockerService = inject(MockDataService);
24
+ this.platform = inject(AXPlatform);
25
+ this.convertedValue = signal([]);
26
+ this.phoneLabels = ['Mobile', 'Home', 'Work', 'Other'];
27
+ this.changeValueEffect = effect(() => {
28
+ if (this.multiple) {
29
+ if (this.hasLabel)
30
+ this.value = this.convertedValue().map((i) => ({ value: i.value, label: i.label }));
31
+ else
32
+ this.value = this.convertedValue().map((i) => i.value);
33
+ }
34
+ else {
35
+ if (this.hasLabel)
36
+ this.value = this.convertedValue().map((i) => ({ value: i.value, label: i.label }))[0];
37
+ else
38
+ this.value = this.convertedValue().map((i) => i.value)[0];
39
+ }
40
+ });
41
+ }
42
+ handlePhoneChange(e, id) {
43
+ if (e.isUserInteraction) {
44
+ this.convertedValue.update((prev) => prev.map((i) => (i.id === id ? { ...i, value: e.value } : i)));
45
+ }
46
+ }
47
+ handleLabelChange(e, id) {
48
+ if (e.isUserInteraction) {
49
+ this.convertedValue.update((prev) => prev.map((i) => (i.id === id ? { ...i, label: e.value } : i)));
50
+ }
51
+ }
52
+ handleAddItem() {
53
+ // this.value.push({ label: 'Primary', value: undefined });
54
+ this.convertedValue.update((prev) => [...prev, { label: this.hasLabel ? 'Primary' : '', value: '', id: this.mockerService.uid() }]);
55
+ }
56
+ handleRemoveItem(item) {
57
+ this.convertedValue.update((prev) => prev.filter((c) => c != item));
58
+ }
59
+ ngOnInit() {
60
+ // Initialize with an empty array if there's no value or it's empty
61
+ if (!this.value || this.value.length === 0) {
62
+ this.initializeEmptyValue();
63
+ return;
64
+ }
65
+ // Process the input based on `multiple` and `hasLabel`
66
+ if (this.multiple) {
67
+ this.handleMultipleValue();
68
+ }
69
+ else {
70
+ this.handleSingleValue();
71
+ }
72
+ }
73
+ initializeEmptyValue() {
74
+ this.convertedValue.set([{ value: '', label: '', id: this.mockerService.uid() }]);
75
+ }
76
+ handleMultipleValue() {
77
+ const newValue = this.value.map((item) => ({
78
+ value: this.hasLabel ? item.value : item,
79
+ label: this.hasLabel ? item.label : null,
80
+ id: this.mockerService.uid(),
81
+ }));
82
+ this.convertedValue.set(newValue);
83
+ }
84
+ handleSingleValue() {
85
+ const newValue = [
86
+ {
87
+ value: this.hasLabel ? this.value.value : this.value,
88
+ label: this.hasLabel ? this.value.label : null,
89
+ id: this.mockerService.uid(),
90
+ },
91
+ ];
92
+ this.convertedValue.set(newValue);
93
+ }
94
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPhoneWidgetEditComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
95
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPPhoneWidgetEditComponent, isStandalone: true, selector: "ng-component", inputs: { multiple: "multiple", hasLabel: "hasLabel" }, usesInheritance: true, ngImport: i0, template: `
96
+ <div class="ax-grid ax-grid-cols-12 ax-gap-4">
97
+ <ng-container *ngIf="multiple">
98
+ @for(item of convertedValue();track $index) {
99
+ <ax-text-box
100
+ [(ngModel)]="item.value"
101
+ (onValueChanged)="handlePhoneChange($event, item.id)"
102
+ type="text"
103
+ class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
104
+ [class.lg:!ax-col-end-12]="!hasLabel"
105
+ >
106
+ @for(vl of validations;track $index) {
107
+ <ax-validation-rule [rule]="vl.rule" [options]="vl.options"></ax-validation-rule>
108
+ }
109
+ </ax-text-box>
110
+ @if(hasLabel){
111
+ <ax-select-box
112
+ [dataSource]="phoneLabels"
113
+ [(ngModel)]="item.label"
114
+ (onValueChanged)="handleLabelChange($event, item.id)"
115
+ class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-12"
116
+ >
117
+ </ax-select-box>
118
+ }
119
+ <ax-button
120
+ look="twotone"
121
+ color="danger"
122
+ (onClick)="handleRemoveItem(item)"
123
+ class="ax-col-start-11 ax-col-end-13 lg:ax-col-start-12 lg:ax-col-end-13 ax-justify-self-end"
124
+ >
125
+ <ax-icon icon="fa-regular fa-xmark"></ax-icon>
126
+ </ax-button>
127
+ }
128
+ </ng-container>
129
+ <ng-container *ngIf="!multiple">
130
+ <ax-text-box
131
+ [(ngModel)]="convertedValue()[0].value"
132
+ (onValueChanged)="handlePhoneChange($event, convertedValue()[0].id)"
133
+ type="text"
134
+ class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
135
+ [class.lg:!ax-col-end-13]="!hasLabel"
136
+ >
137
+ @for(vl of validations;track $index) {
138
+ <ax-validation-rule [rule]="vl.rule" [options]="vl.options"></ax-validation-rule>
139
+ }
140
+ </ax-text-box>
141
+ @if(hasLabel){
142
+ <ax-select-box
143
+ [dataSource]="phoneLabels"
144
+ [(ngModel)]="convertedValue()[0].label"
145
+ (onValueChanged)="handleLabelChange($event, convertedValue()[0].id)"
146
+ class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-13"
147
+ >
148
+ </ax-select-box>
149
+ }
150
+ </ng-container>
151
+
152
+ <ax-button
153
+ *ngIf="multiple"
154
+ [text]="convertedValue().length == 0 ? 'Add New' : 'Add Another'"
155
+ look="twotone"
156
+ (onClick)="handleAddItem()"
157
+ class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
158
+ >
159
+ <ax-prefix>
160
+ <ax-icon class="fa-solid fa-add"></ax-icon>
161
+ </ax-prefix>
162
+ </ax-button>
163
+ </div>
164
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i2.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: AXTextBoxModule }, { kind: "component", type: i4.AXTextBoxComponent, selector: "ax-text-box", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "id", "placeholder", "maxLength", "allowNull", "type", "autoComplete", "look", "mask-options", "class"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange", "onKeyDown", "onKeyUp", "onKeyPress"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i5.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i5.AXDecoratorGenericComponent, selector: "ax-footer, ax-header, ax-content, ax-divider, ax-form-hint, ax-prefix, ax-suffix, ax-text, ax-title, ax-sub-title, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i6.AXSelectBoxComponent, selector: "ax-select-box", inputs: ["disabled", "readonly", "tabIndex", "placeholder", "minValue", "maxValue", "value", "state", "name", "id", "type", "look", "multiple", "valueField", "textField", "dataSource", "caption", "itemTemplate", "selectedTemplate", "emptyTemplate", "loadingTemplate", "dropdownWidth"], outputs: ["valueChange", "stateChange", "onValueChanged", "onBlur", "onFocus", "readonlyChange", "disabledChange", "onOpened", "onClosed"] }, { kind: "ngmodule", type: AXFormModule }, { kind: "directive", type: i7.AXValidationRuleDirective, selector: "ax-validation-rule", inputs: ["rule", "options", "message"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
165
+ }
166
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPhoneWidgetEditComponent, decorators: [{
167
+ type: Component,
168
+ args: [{
169
+ template: `
170
+ <div class="ax-grid ax-grid-cols-12 ax-gap-4">
171
+ <ng-container *ngIf="multiple">
172
+ @for(item of convertedValue();track $index) {
173
+ <ax-text-box
174
+ [(ngModel)]="item.value"
175
+ (onValueChanged)="handlePhoneChange($event, item.id)"
176
+ type="text"
177
+ class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
178
+ [class.lg:!ax-col-end-12]="!hasLabel"
179
+ >
180
+ @for(vl of validations;track $index) {
181
+ <ax-validation-rule [rule]="vl.rule" [options]="vl.options"></ax-validation-rule>
182
+ }
183
+ </ax-text-box>
184
+ @if(hasLabel){
185
+ <ax-select-box
186
+ [dataSource]="phoneLabels"
187
+ [(ngModel)]="item.label"
188
+ (onValueChanged)="handleLabelChange($event, item.id)"
189
+ class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-12"
190
+ >
191
+ </ax-select-box>
192
+ }
193
+ <ax-button
194
+ look="twotone"
195
+ color="danger"
196
+ (onClick)="handleRemoveItem(item)"
197
+ class="ax-col-start-11 ax-col-end-13 lg:ax-col-start-12 lg:ax-col-end-13 ax-justify-self-end"
198
+ >
199
+ <ax-icon icon="fa-regular fa-xmark"></ax-icon>
200
+ </ax-button>
201
+ }
202
+ </ng-container>
203
+ <ng-container *ngIf="!multiple">
204
+ <ax-text-box
205
+ [(ngModel)]="convertedValue()[0].value"
206
+ (onValueChanged)="handlePhoneChange($event, convertedValue()[0].id)"
207
+ type="text"
208
+ class="ax-col-start-1 ax-col-end-13 lg:ax-col-end-8"
209
+ [class.lg:!ax-col-end-13]="!hasLabel"
210
+ >
211
+ @for(vl of validations;track $index) {
212
+ <ax-validation-rule [rule]="vl.rule" [options]="vl.options"></ax-validation-rule>
213
+ }
214
+ </ax-text-box>
215
+ @if(hasLabel){
216
+ <ax-select-box
217
+ [dataSource]="phoneLabels"
218
+ [(ngModel)]="convertedValue()[0].label"
219
+ (onValueChanged)="handleLabelChange($event, convertedValue()[0].id)"
220
+ class="ax-col-start-1 ax-col-end-11 lg:ax-col-start-8 lg:ax-col-end-13"
221
+ >
222
+ </ax-select-box>
223
+ }
224
+ </ng-container>
225
+
226
+ <ax-button
227
+ *ngIf="multiple"
228
+ [text]="convertedValue().length == 0 ? 'Add New' : 'Add Another'"
229
+ look="twotone"
230
+ (onClick)="handleAddItem()"
231
+ class="ax-col-start-8 lg:ax-col-start-10 2xl:ax-col-start-10 ax-col-end-13"
232
+ >
233
+ <ax-prefix>
234
+ <ax-icon class="fa-solid fa-add"></ax-icon>
235
+ </ax-prefix>
236
+ </ax-button>
237
+ </div>
238
+ `,
239
+ standalone: true,
240
+ changeDetection: ChangeDetectionStrategy.OnPush,
241
+ imports: [CommonModule, AXButtonModule, FormsModule, AXTextBoxModule, AXDecoratorModule, AXSelectBoxModule, AXFormModule],
242
+ inputs: ['multiple', 'hasLabel'],
243
+ }]
244
+ }] });
245
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGhvbmUtd2lkZ2V0LWVkaXQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS9jb21tb24vc3JjL2xpYi9zY2hlbWEvd2lkZ2V0cy9waG9uZS9waG9uZS13aWRnZXQtZWRpdC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBRTNELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQ2xFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUN2RCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUNsRSxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sNkJBQTZCLENBQUM7QUFDOUQsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBQ25ELE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUN6RCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUM3RCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBa0IsTUFBTSxFQUFFLE1BQU0sRUFBRSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDM0csT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdCQUFnQixDQUFDOzs7Ozs7Ozs7QUE4RTdDLE1BQU0sT0FBTywyQkFBNEIsU0FBUSxpQkFBc0I7SUE1RXZFOztRQTZFWSxrQkFBYSxHQUFHLE1BQU0sQ0FBQyxlQUFlLENBQUMsQ0FBQztRQUN4QyxhQUFRLEdBQUcsTUFBTSxDQUFDLFVBQVUsQ0FBQyxDQUFDO1FBSTlCLG1CQUFjLEdBQW9FLE1BQU0sQ0FBQyxFQUFFLENBQUMsQ0FBQztRQUU3RixnQkFBVyxHQUFhLENBQUMsUUFBUSxFQUFFLE1BQU0sRUFBRSxNQUFNLEVBQUUsT0FBTyxDQUFDLENBQUM7UUFFOUQsc0JBQWlCLEdBQUcsTUFBTSxDQUFDLEdBQUcsRUFBRTtZQUN0QyxJQUFJLElBQUksQ0FBQyxRQUFRLEVBQUUsQ0FBQztnQkFDbEIsSUFBSSxJQUFJLENBQUMsUUFBUTtvQkFBRSxJQUFJLENBQUMsS0FBSyxHQUFHLElBQUksQ0FBQyxjQUFjLEVBQUUsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsRUFBRSxLQUFLLEVBQUUsQ0FBQyxDQUFDLEtBQUssRUFBRSxLQUFLLEVBQUUsQ0FBQyxDQUFDLEtBQUssRUFBRSxDQUFDLENBQUMsQ0FBQzs7b0JBQ2xHLElBQUksQ0FBQyxLQUFLLEdBQUcsSUFBSSxDQUFDLGNBQWMsRUFBRSxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxDQUFDO1lBQzlELENBQUM7aUJBQU0sQ0FBQztnQkFDTixJQUFJLElBQUksQ0FBQyxRQUFRO29CQUFFLElBQUksQ0FBQyxLQUFLLEdBQUcsSUFBSSxDQUFDLGNBQWMsRUFBRSxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxFQUFFLEtBQUssRUFBRSxDQUFDLENBQUMsS0FBSyxFQUFFLEtBQUssRUFBRSxDQUFDLENBQUMsS0FBSyxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDOztvQkFDckcsSUFBSSxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUMsY0FBYyxFQUFFLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUM7WUFDakUsQ0FBQztRQUNILENBQUMsQ0FBQyxDQUFDO0tBMkRKO0lBekRXLGlCQUFpQixDQUFDLENBQXNCLEVBQUUsRUFBVTtRQUM1RCxJQUFJLENBQUMsQ0FBQyxpQkFBaUIsRUFBRSxDQUFDO1lBQ3hCLElBQUksQ0FBQyxjQUFjLENBQUMsTUFBTSxDQUFDLENBQUMsSUFBSSxFQUFFLEVBQUUsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsQ0FBQyxFQUFFLEtBQUssRUFBRSxDQUFDLENBQUMsQ0FBQyxFQUFFLEdBQUcsQ0FBQyxFQUFFLEtBQUssRUFBRSxDQUFDLENBQUMsS0FBSyxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUN0RyxDQUFDO0lBQ0gsQ0FBQztJQUNTLGlCQUFpQixDQUFDLENBQXNCLEVBQUUsRUFBVTtRQUM1RCxJQUFJLENBQUMsQ0FBQyxpQkFBaUIsRUFBRSxDQUFDO1lBQ3hCLElBQUksQ0FBQyxjQUFjLENBQUMsTUFBTSxDQUFDLENBQUMsSUFBSSxFQUFFLEVBQUUsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsQ0FBQyxFQUFFLEtBQUssRUFBRSxDQUFDLENBQUMsQ0FBQyxFQUFFLEdBQUcsQ0FBQyxFQUFFLEtBQUssRUFBRSxDQUFDLENBQUMsS0FBSyxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUN0RyxDQUFDO0lBQ0gsQ0FBQztJQUVTLGFBQWE7UUFDckIsMkRBQTJEO1FBQzNELElBQUksQ0FBQyxjQUFjLENBQUMsTUFBTSxDQUFDLENBQUMsSUFBSSxFQUFFLEVBQUUsQ0FBQyxDQUFDLEdBQUcsSUFBSSxFQUFFLEVBQUUsS0FBSyxFQUFFLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLEtBQUssRUFBRSxFQUFFLEVBQUUsRUFBRSxFQUFFLElBQUksQ0FBQyxhQUFhLENBQUMsR0FBRyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUM7SUFDdEksQ0FBQztJQUVTLGdCQUFnQixDQUFDLElBQVM7UUFDbEMsSUFBSSxDQUFDLGNBQWMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxJQUFJLEVBQUUsRUFBRSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsSUFBSSxJQUFJLENBQUMsQ0FBQyxDQUFDO0lBQ3RFLENBQUM7SUFDRCxRQUFRO1FBQ04sbUVBQW1FO1FBQ25FLElBQUksQ0FBQyxJQUFJLENBQUMsS0FBSyxJQUFJLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxLQUFLLENBQUMsRUFBRSxDQUFDO1lBQzNDLElBQUksQ0FBQyxvQkFBb0IsRUFBRSxDQUFDO1lBQzVCLE9BQU87UUFDVCxDQUFDO1FBRUQsdURBQXVEO1FBQ3ZELElBQUksSUFBSSxDQUFDLFFBQVEsRUFBRSxDQUFDO1lBQ2xCLElBQUksQ0FBQyxtQkFBbUIsRUFBRSxDQUFDO1FBQzdCLENBQUM7YUFBTSxDQUFDO1lBQ04sSUFBSSxDQUFDLGlCQUFpQixFQUFFLENBQUM7UUFDM0IsQ0FBQztJQUNILENBQUM7SUFFTyxvQkFBb0I7UUFDMUIsSUFBSSxDQUFDLGNBQWMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxFQUFFLEtBQUssRUFBRSxFQUFFLEVBQUUsS0FBSyxFQUFFLEVBQUUsRUFBRSxFQUFFLEVBQUUsSUFBSSxDQUFDLGFBQWEsQ0FBQyxHQUFHLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQztJQUNwRixDQUFDO0lBRU8sbUJBQW1CO1FBQ3pCLE1BQU0sUUFBUSxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsR0FBRyxDQUFDLENBQUMsSUFBUyxFQUFFLEVBQUUsQ0FBQyxDQUFDO1lBQzlDLEtBQUssRUFBRSxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxJQUFJO1lBQ3hDLEtBQUssRUFBRSxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxJQUFJO1lBQ3hDLEVBQUUsRUFBRSxJQUFJLENBQUMsYUFBYSxDQUFDLEdBQUcsRUFBRTtTQUM3QixDQUFDLENBQUMsQ0FBQztRQUNKLElBQUksQ0FBQyxjQUFjLENBQUMsR0FBRyxDQUFDLFFBQVEsQ0FBQyxDQUFDO0lBQ3BDLENBQUM7SUFFTyxpQkFBaUI7UUFDdkIsTUFBTSxRQUFRLEdBQUc7WUFDZjtnQkFDRSxLQUFLLEVBQUUsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxLQUFLO2dCQUNwRCxLQUFLLEVBQUUsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLElBQUk7Z0JBQzlDLEVBQUUsRUFBRSxJQUFJLENBQUMsYUFBYSxDQUFDLEdBQUcsRUFBRTthQUM3QjtTQUNGLENBQUM7UUFDRixJQUFJLENBQUMsY0FBYyxDQUFDLEdBQUcsQ0FBQyxRQUFRLENBQUMsQ0FBQztJQUNwQyxDQUFDOzhHQTVFVSwyQkFBMkI7a0dBQTNCLDJCQUEyQix1SkEzRTVCOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7R0FxRVQsMkRBR1MsWUFBWSxrSUFBRSxjQUFjLDZVQUFFLFdBQVcsOFZBQUUsZUFBZSxxYkFBRSxpQkFBaUIsdVZBQUUsaUJBQWlCLHloQkFBRSxZQUFZOzsyRkFHN0csMkJBQTJCO2tCQTVFdkMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUU7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztHQXFFVDtvQkFDRCxVQUFVLEVBQUUsSUFBSTtvQkFDaEIsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxjQUFjLEVBQUUsV0FBVyxFQUFFLGVBQWUsRUFBRSxpQkFBaUIsRUFBRSxpQkFBaUIsRUFBRSxZQUFZLENBQUM7b0JBQ3pILE1BQU0sRUFBRSxDQUFDLFVBQVUsRUFBRSxVQUFVLENBQUM7aUJBQ2pDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhCdXR0b25Nb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvYnV0dG9uJztcclxuaW1wb3J0IHsgQVhWYWx1ZUNoYW5nZWRFdmVudCB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9jb21tb24nO1xyXG5pbXBvcnQgeyBBWERlY29yYXRvck1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9kZWNvcmF0b3JzJztcclxuaW1wb3J0IHsgQVhGb3JtTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL2Zvcm0nO1xyXG5pbXBvcnQgeyBBWFNlbGVjdEJveE1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9zZWxlY3QtYm94JztcclxuaW1wb3J0IHsgQVhUZXh0Qm94TW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL3RleHQtYm94JztcclxuaW1wb3J0IHsgQVhQbGF0Zm9ybSB9IGZyb20gJ0BhY29yZXgvY29yZS9wbGF0Zm9ybSc7XHJcbmltcG9ydCB7IE1vY2tEYXRhU2VydmljZSB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vbW9ja3MnO1xyXG5pbXBvcnQgeyBBWFBXaWRnZXRFZGl0QmFzZSB9IGZyb20gJy4uLy4uL3dpZGdldC93aWRnZXQtYmFzZSc7XHJcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XHJcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIFdyaXRhYmxlU2lnbmFsLCBlZmZlY3QsIGluamVjdCwgc2lnbmFsIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IEZvcm1zTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgdGVtcGxhdGU6IGBcclxuICAgIDxkaXYgY2xhc3M9XCJheC1ncmlkIGF4LWdyaWQtY29scy0xMiBheC1nYXAtNFwiPlxyXG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwibXVsdGlwbGVcIj5cclxuICAgICAgICBAZm9yKGl0ZW0gb2YgY29udmVydGVkVmFsdWUoKTt0cmFjayAkaW5kZXgpIHtcclxuICAgICAgICA8YXgtdGV4dC1ib3hcclxuICAgICAgICAgIFsobmdNb2RlbCldPVwiaXRlbS52YWx1ZVwiXHJcbiAgICAgICAgICAob25WYWx1ZUNoYW5nZWQpPVwiaGFuZGxlUGhvbmVDaGFuZ2UoJGV2ZW50LCBpdGVtLmlkKVwiXHJcbiAgICAgICAgICB0eXBlPVwidGV4dFwiXHJcbiAgICAgICAgICBjbGFzcz1cImF4LWNvbC1zdGFydC0xIGF4LWNvbC1lbmQtMTMgbGc6YXgtY29sLWVuZC04XCJcclxuICAgICAgICAgIFtjbGFzcy5sZzohYXgtY29sLWVuZC0xMl09XCIhaGFzTGFiZWxcIlxyXG4gICAgICAgID5cclxuICAgICAgICAgIEBmb3Iodmwgb2YgdmFsaWRhdGlvbnM7dHJhY2sgJGluZGV4KSB7XHJcbiAgICAgICAgICA8YXgtdmFsaWRhdGlvbi1ydWxlIFtydWxlXT1cInZsLnJ1bGVcIiBbb3B0aW9uc109XCJ2bC5vcHRpb25zXCI+PC9heC12YWxpZGF0aW9uLXJ1bGU+XHJcbiAgICAgICAgICB9XHJcbiAgICAgICAgPC9heC10ZXh0LWJveD5cclxuICAgICAgICBAaWYoaGFzTGFiZWwpe1xyXG4gICAgICAgIDxheC1zZWxlY3QtYm94XHJcbiAgICAgICAgICBbZGF0YVNvdXJjZV09XCJwaG9uZUxhYmVsc1wiXHJcbiAgICAgICAgICBbKG5nTW9kZWwpXT1cIml0ZW0ubGFiZWxcIlxyXG4gICAgICAgICAgKG9uVmFsdWVDaGFuZ2VkKT1cImhhbmRsZUxhYmVsQ2hhbmdlKCRldmVudCwgaXRlbS5pZClcIlxyXG4gICAgICAgICAgY2xhc3M9XCJheC1jb2wtc3RhcnQtMSBheC1jb2wtZW5kLTExIGxnOmF4LWNvbC1zdGFydC04IGxnOmF4LWNvbC1lbmQtMTJcIlxyXG4gICAgICAgID5cclxuICAgICAgICA8L2F4LXNlbGVjdC1ib3g+XHJcbiAgICAgICAgfVxyXG4gICAgICAgIDxheC1idXR0b25cclxuICAgICAgICAgIGxvb2s9XCJ0d290b25lXCJcclxuICAgICAgICAgIGNvbG9yPVwiZGFuZ2VyXCJcclxuICAgICAgICAgIChvbkNsaWNrKT1cImhhbmRsZVJlbW92ZUl0ZW0oaXRlbSlcIlxyXG4gICAgICAgICAgY2xhc3M9XCJheC1jb2wtc3RhcnQtMTEgYXgtY29sLWVuZC0xMyBsZzpheC1jb2wtc3RhcnQtMTIgbGc6YXgtY29sLWVuZC0xMyBheC1qdXN0aWZ5LXNlbGYtZW5kXCJcclxuICAgICAgICA+XHJcbiAgICAgICAgICA8YXgtaWNvbiBpY29uPVwiZmEtcmVndWxhciBmYS14bWFya1wiPjwvYXgtaWNvbj5cclxuICAgICAgICA8L2F4LWJ1dHRvbj5cclxuICAgICAgICB9XHJcbiAgICAgIDwvbmctY29udGFpbmVyPlxyXG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiIW11bHRpcGxlXCI+XHJcbiAgICAgICAgPGF4LXRleHQtYm94XHJcbiAgICAgICAgICBbKG5nTW9kZWwpXT1cImNvbnZlcnRlZFZhbHVlKClbMF0udmFsdWVcIlxyXG4gICAgICAgICAgKG9uVmFsdWVDaGFuZ2VkKT1cImhhbmRsZVBob25lQ2hhbmdlKCRldmVudCwgY29udmVydGVkVmFsdWUoKVswXS5pZClcIlxyXG4gICAgICAgICAgdHlwZT1cInRleHRcIlxyXG4gICAgICAgICAgY2xhc3M9XCJheC1jb2wtc3RhcnQtMSBheC1jb2wtZW5kLTEzIGxnOmF4LWNvbC1lbmQtOFwiXHJcbiAgICAgICAgICBbY2xhc3MubGc6IWF4LWNvbC1lbmQtMTNdPVwiIWhhc0xhYmVsXCJcclxuICAgICAgICA+XHJcbiAgICAgICAgICBAZm9yKHZsIG9mIHZhbGlkYXRpb25zO3RyYWNrICRpbmRleCkge1xyXG4gICAgICAgICAgPGF4LXZhbGlkYXRpb24tcnVsZSBbcnVsZV09XCJ2bC5ydWxlXCIgW29wdGlvbnNdPVwidmwub3B0aW9uc1wiPjwvYXgtdmFsaWRhdGlvbi1ydWxlPlxyXG4gICAgICAgICAgfVxyXG4gICAgICAgIDwvYXgtdGV4dC1ib3g+XHJcbiAgICAgICAgQGlmKGhhc0xhYmVsKXtcclxuICAgICAgICA8YXgtc2VsZWN0LWJveFxyXG4gICAgICAgICAgW2RhdGFTb3VyY2VdPVwicGhvbmVMYWJlbHNcIlxyXG4gICAgICAgICAgWyhuZ01vZGVsKV09XCJjb252ZXJ0ZWRWYWx1ZSgpWzBdLmxhYmVsXCJcclxuICAgICAgICAgIChvblZhbHVlQ2hhbmdlZCk9XCJoYW5kbGVMYWJlbENoYW5nZSgkZXZlbnQsIGNvbnZlcnRlZFZhbHVlKClbMF0uaWQpXCJcclxuICAgICAgICAgIGNsYXNzPVwiYXgtY29sLXN0YXJ0LTEgYXgtY29sLWVuZC0xMSBsZzpheC1jb2wtc3RhcnQtOCBsZzpheC1jb2wtZW5kLTEzXCJcclxuICAgICAgICA+XHJcbiAgICAgICAgPC9heC1zZWxlY3QtYm94PlxyXG4gICAgICAgIH1cclxuICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICA8YXgtYnV0dG9uXHJcbiAgICAgICAgKm5nSWY9XCJtdWx0aXBsZVwiXHJcbiAgICAgICAgW3RleHRdPVwiY29udmVydGVkVmFsdWUoKS5sZW5ndGggPT0gMCA/ICdBZGQgTmV3JyA6ICdBZGQgQW5vdGhlcidcIlxyXG4gICAgICAgIGxvb2s9XCJ0d290b25lXCJcclxuICAgICAgICAob25DbGljayk9XCJoYW5kbGVBZGRJdGVtKClcIlxyXG4gICAgICAgIGNsYXNzPVwiYXgtY29sLXN0YXJ0LTggbGc6YXgtY29sLXN0YXJ0LTEwIDJ4bDpheC1jb2wtc3RhcnQtMTAgYXgtY29sLWVuZC0xM1wiXHJcbiAgICAgID5cclxuICAgICAgICA8YXgtcHJlZml4PlxyXG4gICAgICAgICAgPGF4LWljb24gY2xhc3M9XCJmYS1zb2xpZCBmYS1hZGRcIj48L2F4LWljb24+XHJcbiAgICAgICAgPC9heC1wcmVmaXg+XHJcbiAgICAgIDwvYXgtYnV0dG9uPlxyXG4gICAgPC9kaXY+XHJcbiAgYCxcclxuICBzdGFuZGFsb25lOiB0cnVlLFxyXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxyXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGUsIEFYQnV0dG9uTW9kdWxlLCBGb3Jtc01vZHVsZSwgQVhUZXh0Qm94TW9kdWxlLCBBWERlY29yYXRvck1vZHVsZSwgQVhTZWxlY3RCb3hNb2R1bGUsIEFYRm9ybU1vZHVsZV0sXHJcbiAgaW5wdXRzOiBbJ211bHRpcGxlJywgJ2hhc0xhYmVsJ10sXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBBWFBQaG9uZVdpZGdldEVkaXRDb21wb25lbnQgZXh0ZW5kcyBBWFBXaWRnZXRFZGl0QmFzZTxhbnk+IHtcclxuICBwcm90ZWN0ZWQgbW9ja2VyU2VydmljZSA9IGluamVjdChNb2NrRGF0YVNlcnZpY2UpO1xyXG4gIHByb3RlY3RlZCBwbGF0Zm9ybSA9IGluamVjdChBWFBsYXRmb3JtKTtcclxuXHJcbiAgcHJvdGVjdGVkIG11bHRpcGxlITogYm9vbGVhbjtcclxuICBwcm90ZWN0ZWQgaGFzTGFiZWwhOiBib29sZWFuO1xyXG4gIHByb3RlY3RlZCBjb252ZXJ0ZWRWYWx1ZTogV3JpdGFibGVTaWduYWw8eyB2YWx1ZTogc3RyaW5nOyBsYWJlbD86IHN0cmluZzsgaWQ6IHN0cmluZyB9W10+ID0gc2lnbmFsKFtdKTtcclxuXHJcbiAgcHJvdGVjdGVkIHBob25lTGFiZWxzOiBzdHJpbmdbXSA9IFsnTW9iaWxlJywgJ0hvbWUnLCAnV29yaycsICdPdGhlciddO1xyXG5cclxuICBwcml2YXRlIGNoYW5nZVZhbHVlRWZmZWN0ID0gZWZmZWN0KCgpID0+IHtcclxuICAgIGlmICh0aGlzLm11bHRpcGxlKSB7XHJcbiAgICAgIGlmICh0aGlzLmhhc0xhYmVsKSB0aGlzLnZhbHVlID0gdGhpcy5jb252ZXJ0ZWRWYWx1ZSgpLm1hcCgoaSkgPT4gKHsgdmFsdWU6IGkudmFsdWUsIGxhYmVsOiBpLmxhYmVsIH0pKTtcclxuICAgICAgZWxzZSB0aGlzLnZhbHVlID0gdGhpcy5jb252ZXJ0ZWRWYWx1ZSgpLm1hcCgoaSkgPT4gaS52YWx1ZSk7XHJcbiAgICB9IGVsc2Uge1xyXG4gICAgICBpZiAodGhpcy5oYXNMYWJlbCkgdGhpcy52YWx1ZSA9IHRoaXMuY29udmVydGVkVmFsdWUoKS5tYXAoKGkpID0+ICh7IHZhbHVlOiBpLnZhbHVlLCBsYWJlbDogaS5sYWJlbCB9KSlbMF07XHJcbiAgICAgIGVsc2UgdGhpcy52YWx1ZSA9IHRoaXMuY29udmVydGVkVmFsdWUoKS5tYXAoKGkpID0+IGkudmFsdWUpWzBdO1xyXG4gICAgfVxyXG4gIH0pO1xyXG5cclxuICBwcm90ZWN0ZWQgaGFuZGxlUGhvbmVDaGFuZ2UoZTogQVhWYWx1ZUNoYW5nZWRFdmVudCwgaWQ6IHN0cmluZykge1xyXG4gICAgaWYgKGUuaXNVc2VySW50ZXJhY3Rpb24pIHtcclxuICAgICAgdGhpcy5jb252ZXJ0ZWRWYWx1ZS51cGRhdGUoKHByZXYpID0+IHByZXYubWFwKChpKSA9PiAoaS5pZCA9PT0gaWQgPyB7IC4uLmksIHZhbHVlOiBlLnZhbHVlIH0gOiBpKSkpO1xyXG4gICAgfVxyXG4gIH1cclxuICBwcm90ZWN0ZWQgaGFuZGxlTGFiZWxDaGFuZ2UoZTogQVhWYWx1ZUNoYW5nZWRFdmVudCwgaWQ6IHN0cmluZykge1xyXG4gICAgaWYgKGUuaXNVc2VySW50ZXJhY3Rpb24pIHtcclxuICAgICAgdGhpcy5jb252ZXJ0ZWRWYWx1ZS51cGRhdGUoKHByZXYpID0+IHByZXYubWFwKChpKSA9PiAoaS5pZCA9PT0gaWQgPyB7IC4uLmksIGxhYmVsOiBlLnZhbHVlIH0gOiBpKSkpO1xyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgcHJvdGVjdGVkIGhhbmRsZUFkZEl0ZW0oKSB7XHJcbiAgICAvLyB0aGlzLnZhbHVlLnB1c2goeyBsYWJlbDogJ1ByaW1hcnknLCB2YWx1ZTogdW5kZWZpbmVkIH0pO1xyXG4gICAgdGhpcy5jb252ZXJ0ZWRWYWx1ZS51cGRhdGUoKHByZXYpID0+IFsuLi5wcmV2LCB7IGxhYmVsOiB0aGlzLmhhc0xhYmVsID8gJ1ByaW1hcnknIDogJycsIHZhbHVlOiAnJywgaWQ6IHRoaXMubW9ja2VyU2VydmljZS51aWQoKSB9XSk7XHJcbiAgfVxyXG5cclxuICBwcm90ZWN0ZWQgaGFuZGxlUmVtb3ZlSXRlbShpdGVtOiBhbnkpIHtcclxuICAgIHRoaXMuY29udmVydGVkVmFsdWUudXBkYXRlKChwcmV2KSA9PiBwcmV2LmZpbHRlcigoYykgPT4gYyAhPSBpdGVtKSk7XHJcbiAgfVxyXG4gIG5nT25Jbml0KCk6IHZvaWQge1xyXG4gICAgLy8gSW5pdGlhbGl6ZSB3aXRoIGFuIGVtcHR5IGFycmF5IGlmIHRoZXJlJ3Mgbm8gdmFsdWUgb3IgaXQncyBlbXB0eVxyXG4gICAgaWYgKCF0aGlzLnZhbHVlIHx8IHRoaXMudmFsdWUubGVuZ3RoID09PSAwKSB7XHJcbiAgICAgIHRoaXMuaW5pdGlhbGl6ZUVtcHR5VmFsdWUoKTtcclxuICAgICAgcmV0dXJuO1xyXG4gICAgfVxyXG5cclxuICAgIC8vIFByb2Nlc3MgdGhlIGlucHV0IGJhc2VkIG9uIGBtdWx0aXBsZWAgYW5kIGBoYXNMYWJlbGBcclxuICAgIGlmICh0aGlzLm11bHRpcGxlKSB7XHJcbiAgICAgIHRoaXMuaGFuZGxlTXVsdGlwbGVWYWx1ZSgpO1xyXG4gICAgfSBlbHNlIHtcclxuICAgICAgdGhpcy5oYW5kbGVTaW5nbGVWYWx1ZSgpO1xyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgcHJpdmF0ZSBpbml0aWFsaXplRW1wdHlWYWx1ZSgpOiB2b2lkIHtcclxuICAgIHRoaXMuY29udmVydGVkVmFsdWUuc2V0KFt7IHZhbHVlOiAnJywgbGFiZWw6ICcnLCBpZDogdGhpcy5tb2NrZXJTZXJ2aWNlLnVpZCgpIH1dKTtcclxuICB9XHJcblxyXG4gIHByaXZhdGUgaGFuZGxlTXVsdGlwbGVWYWx1ZSgpOiB2b2lkIHtcclxuICAgIGNvbnN0IG5ld1ZhbHVlID0gdGhpcy52YWx1ZS5tYXAoKGl0ZW06IGFueSkgPT4gKHtcclxuICAgICAgdmFsdWU6IHRoaXMuaGFzTGFiZWwgPyBpdGVtLnZhbHVlIDogaXRlbSxcclxuICAgICAgbGFiZWw6IHRoaXMuaGFzTGFiZWwgPyBpdGVtLmxhYmVsIDogbnVsbCxcclxuICAgICAgaWQ6IHRoaXMubW9ja2VyU2VydmljZS51aWQoKSxcclxuICAgIH0pKTtcclxuICAgIHRoaXMuY29udmVydGVkVmFsdWUuc2V0KG5ld1ZhbHVlKTtcclxuICB9XHJcblxyXG4gIHByaXZhdGUgaGFuZGxlU2luZ2xlVmFsdWUoKTogdm9pZCB7XHJcbiAgICBjb25zdCBuZXdWYWx1ZSA9IFtcclxuICAgICAge1xyXG4gICAgICAgIHZhbHVlOiB0aGlzLmhhc0xhYmVsID8gdGhpcy52YWx1ZS52YWx1ZSA6IHRoaXMudmFsdWUsXHJcbiAgICAgICAgbGFiZWw6IHRoaXMuaGFzTGFiZWwgPyB0aGlzLnZhbHVlLmxhYmVsIDogbnVsbCxcclxuICAgICAgICBpZDogdGhpcy5tb2NrZXJTZXJ2aWNlLnVpZCgpLFxyXG4gICAgICB9LFxyXG4gICAgXTtcclxuICAgIHRoaXMuY29udmVydGVkVmFsdWUuc2V0KG5ld1ZhbHVlKTtcclxuICB9XHJcbn1cclxuIl19
@@ -0,0 +1,123 @@
1
+ import { AXBadgeModule } from '@acorex/components/badge';
2
+ import { AXPWidgetBase } from '../../widget/widget-base';
3
+ import { CommonModule } from '@angular/common';
4
+ import { ChangeDetectionStrategy, Component, inject } from '@angular/core';
5
+ import { AXPClipBoardService } from '../../../utils';
6
+ import * as i0 from "@angular/core";
7
+ import * as i1 from "@angular/common";
8
+ import * as i2 from "@acorex/components/badge";
9
+ export class AXPPhoneWidgetViewComponent extends AXPWidgetBase {
10
+ constructor() {
11
+ super(...arguments);
12
+ this.clipboard = inject(AXPClipBoardService);
13
+ this.list = [];
14
+ }
15
+ getIcon(type) {
16
+ switch (type) {
17
+ case 'home':
18
+ return 'fa-home';
19
+ case 'mobile':
20
+ return 'fa-phone';
21
+ default:
22
+ return 'fa-phone';
23
+ }
24
+ }
25
+ render() {
26
+ const rawValue = this.rawValue;
27
+ this.list = Array.isArray(rawValue) ? rawValue.map((c) => this.extractItem(c)) : [this.extractItem(rawValue)];
28
+ }
29
+ extractItem(item) {
30
+ return typeof item == 'object'
31
+ ? {
32
+ value: item.value ?? '-',
33
+ type: item.type ?? 'mobile',
34
+ label: item.label,
35
+ }
36
+ : {
37
+ value: item,
38
+ type: 'mobile',
39
+ label: null,
40
+ };
41
+ }
42
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPhoneWidgetViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
43
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPPhoneWidgetViewComponent, isStandalone: true, selector: "ng-component", inputs: { context: "context", value: "value", multiple: "multiple", hasLabel: "hasLabel" }, usesInheritance: true, ngImport: i0, template: `
44
+ <div class="ax-grid ax-grid-cols-12 ax-gap-2 ">
45
+ <ng-container *ngIf="multiple">
46
+ @for(item of list;track item?.value) {
47
+ <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: item }" ]></ng-template>
48
+ }
49
+ </ng-container>
50
+
51
+ <ng-container *ngIf="!multiple">
52
+ <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: list[0] }" ]></ng-template>
53
+ </ng-container>
54
+
55
+ <ng-template #itemTemplate let-item="data">
56
+ <ng-container *ngIf="item">
57
+ <div class="ax-col-start-1 ax-col-end-10 lg:ax-col-end-7">
58
+ <div class="ax-flex ax-flex-1 ax-gap-3 ax-items-center ax-w-max ax-group">
59
+ <div class="ax-w-6 ax-h-6 ax-flex ax-items-center ax-justify-center">
60
+ <i class="fa-solid ax-text-neutral-400 fa-phone"></i>
61
+ </div>
62
+ <a class="group-hover:!ax-text-primary-500" href="tel:{{ item.value }}">{{ item.value }}</a>
63
+ <span
64
+ class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
65
+ (click)="clipboard.copy('Phone Number', item.value)"
66
+ >
67
+ <i class="fa-solid fa-copy "></i>
68
+ </span>
69
+ @if(hasLabel){
70
+ <ax-badge color="primary" [look]="'twotone'" [text]="item.label"></ax-badge>
71
+ }
72
+ </div>
73
+ </div>
74
+ </ng-container>
75
+ </ng-template>
76
+ </div>
77
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: AXBadgeModule }, { kind: "component", type: i2.AXBadgeComponent, selector: "ax-badge", inputs: ["color", "look", "text"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
78
+ }
79
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPhoneWidgetViewComponent, decorators: [{
80
+ type: Component,
81
+ args: [{
82
+ template: `
83
+ <div class="ax-grid ax-grid-cols-12 ax-gap-2 ">
84
+ <ng-container *ngIf="multiple">
85
+ @for(item of list;track item?.value) {
86
+ <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: item }" ]></ng-template>
87
+ }
88
+ </ng-container>
89
+
90
+ <ng-container *ngIf="!multiple">
91
+ <ng-template [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ data: list[0] }" ]></ng-template>
92
+ </ng-container>
93
+
94
+ <ng-template #itemTemplate let-item="data">
95
+ <ng-container *ngIf="item">
96
+ <div class="ax-col-start-1 ax-col-end-10 lg:ax-col-end-7">
97
+ <div class="ax-flex ax-flex-1 ax-gap-3 ax-items-center ax-w-max ax-group">
98
+ <div class="ax-w-6 ax-h-6 ax-flex ax-items-center ax-justify-center">
99
+ <i class="fa-solid ax-text-neutral-400 fa-phone"></i>
100
+ </div>
101
+ <a class="group-hover:!ax-text-primary-500" href="tel:{{ item.value }}">{{ item.value }}</a>
102
+ <span
103
+ class="ax-text-neutral-400 ax-cursor-pointer ax-invisible group-hover:ax-visible hover:!ax-text-primary-500"
104
+ (click)="clipboard.copy('Phone Number', item.value)"
105
+ >
106
+ <i class="fa-solid fa-copy "></i>
107
+ </span>
108
+ @if(hasLabel){
109
+ <ax-badge color="primary" [look]="'twotone'" [text]="item.label"></ax-badge>
110
+ }
111
+ </div>
112
+ </div>
113
+ </ng-container>
114
+ </ng-template>
115
+ </div>
116
+ `,
117
+ standalone: true,
118
+ changeDetection: ChangeDetectionStrategy.OnPush,
119
+ imports: [CommonModule, AXBadgeModule],
120
+ inputs: ['context', 'value', 'multiple', 'hasLabel'],
121
+ }]
122
+ }] });
123
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGhvbmUtd2lkZ2V0LXZpZXcuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS9jb21tb24vc3JjL2xpYi9zY2hlbWEvd2lkZ2V0cy9waG9uZS9waG9uZS13aWRnZXQtdmlldy5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQ3pELE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUN6RCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDM0UsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7Ozs7QUEyQ3JELE1BQU0sT0FBTywyQkFBNEIsU0FBUSxhQUFhO0lBekM5RDs7UUEwQ1ksY0FBUyxHQUFHLE1BQU0sQ0FBQyxtQkFBbUIsQ0FBQyxDQUFDO1FBSXhDLFNBQUksR0FBcUQsRUFBRSxDQUFDO0tBaUN2RTtJQS9CVyxPQUFPLENBQUMsSUFBWTtRQUM1QixRQUFRLElBQUksRUFBRSxDQUFDO1lBQ2IsS0FBSyxNQUFNO2dCQUNULE9BQU8sU0FBUyxDQUFDO1lBRW5CLEtBQUssUUFBUTtnQkFDWCxPQUFPLFVBQVUsQ0FBQztZQUVwQjtnQkFDRSxPQUFPLFVBQVUsQ0FBQztRQUN0QixDQUFDO0lBQ0gsQ0FBQztJQUVRLE1BQU07UUFDYixNQUFNLFFBQVEsR0FBRyxJQUFJLENBQUMsUUFBUSxDQUFDO1FBQy9CLElBQUksQ0FBQyxJQUFJLEdBQUcsS0FBSyxDQUFDLE9BQU8sQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLENBQUMsUUFBUSxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQztJQUNoSCxDQUFDO0lBRU8sV0FBVyxDQUFDLElBQVM7UUFDM0IsT0FBTyxPQUFPLElBQUksSUFBSSxRQUFRO1lBQzVCLENBQUMsQ0FBQztnQkFDQSxLQUFLLEVBQUUsSUFBSSxDQUFDLEtBQUssSUFBSSxHQUFHO2dCQUN4QixJQUFJLEVBQUUsSUFBSSxDQUFDLElBQUksSUFBSSxRQUFRO2dCQUMzQixLQUFLLEVBQUUsSUFBSSxDQUFDLEtBQUs7YUFDbEI7WUFDRCxDQUFDLENBQUM7Z0JBQ0EsS0FBSyxFQUFFLElBQUk7Z0JBQ1gsSUFBSSxFQUFFLFFBQVE7Z0JBQ2QsS0FBSyxFQUFFLElBQUk7YUFDWixDQUFDO0lBQ04sQ0FBQzs4R0FyQ1UsMkJBQTJCO2tHQUEzQiwyQkFBMkIsMkxBeEM1Qjs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztHQWtDVCwyREFHUyxZQUFZLHlTQUFFLGFBQWE7OzJGQUcxQiwyQkFBMkI7a0JBekN2QyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztHQWtDVDtvQkFDRCxVQUFVLEVBQUUsSUFBSTtvQkFDaEIsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxhQUFhLENBQUM7b0JBQ3RDLE1BQU0sRUFBRSxDQUFDLFNBQVMsRUFBRSxPQUFPLEVBQUUsVUFBVSxFQUFFLFVBQVUsQ0FBQztpQkFDckQiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWEJhZGdlTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL2JhZGdlJztcclxuaW1wb3J0IHsgQVhQV2lkZ2V0QmFzZSB9IGZyb20gJy4uLy4uL3dpZGdldC93aWRnZXQtYmFzZSc7XHJcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XHJcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIGluamVjdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBBWFBDbGlwQm9hcmRTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vLi4vdXRpbHMnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgdGVtcGxhdGU6IGBcclxuICAgIDxkaXYgY2xhc3M9XCJheC1ncmlkIGF4LWdyaWQtY29scy0xMiBheC1nYXAtMiBcIj5cclxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cIm11bHRpcGxlXCI+XHJcbiAgICAgICAgQGZvcihpdGVtIG9mIGxpc3Q7dHJhY2sgaXRlbT8udmFsdWUpIHtcclxuICAgICAgICA8bmctdGVtcGxhdGUgW25nVGVtcGxhdGVPdXRsZXRdPVwiaXRlbVRlbXBsYXRlXCIgW25nVGVtcGxhdGVPdXRsZXRDb250ZXh0XT1cInsgZGF0YTogaXRlbSB9XCIgXT48L25nLXRlbXBsYXRlPlxyXG4gICAgICAgIH1cclxuICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiIW11bHRpcGxlXCI+XHJcbiAgICAgICAgPG5nLXRlbXBsYXRlIFtuZ1RlbXBsYXRlT3V0bGV0XT1cIml0ZW1UZW1wbGF0ZVwiIFtuZ1RlbXBsYXRlT3V0bGV0Q29udGV4dF09XCJ7IGRhdGE6IGxpc3RbMF0gfVwiIF0+PC9uZy10ZW1wbGF0ZT5cclxuICAgICAgPC9uZy1jb250YWluZXI+XHJcblxyXG4gICAgICA8bmctdGVtcGxhdGUgI2l0ZW1UZW1wbGF0ZSBsZXQtaXRlbT1cImRhdGFcIj5cclxuICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiaXRlbVwiPlxyXG4gICAgICAgICAgPGRpdiBjbGFzcz1cImF4LWNvbC1zdGFydC0xIGF4LWNvbC1lbmQtMTAgbGc6YXgtY29sLWVuZC03XCI+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJheC1mbGV4IGF4LWZsZXgtMSBheC1nYXAtMyBheC1pdGVtcy1jZW50ZXIgYXgtdy1tYXggYXgtZ3JvdXBcIj5cclxuICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiYXgtdy02IGF4LWgtNiBheC1mbGV4IGF4LWl0ZW1zLWNlbnRlciBheC1qdXN0aWZ5LWNlbnRlclwiPlxyXG4gICAgICAgICAgICAgICAgPGkgY2xhc3M9XCJmYS1zb2xpZCBheC10ZXh0LW5ldXRyYWwtNDAwIGZhLXBob25lXCI+PC9pPlxyXG4gICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgIDxhIGNsYXNzPVwiZ3JvdXAtaG92ZXI6IWF4LXRleHQtcHJpbWFyeS01MDBcIiBocmVmPVwidGVsOnt7IGl0ZW0udmFsdWUgfX1cIj57eyBpdGVtLnZhbHVlIH19PC9hPlxyXG4gICAgICAgICAgICAgIDxzcGFuXHJcbiAgICAgICAgICAgICAgICBjbGFzcz1cImF4LXRleHQtbmV1dHJhbC00MDAgIGF4LWN1cnNvci1wb2ludGVyIGF4LWludmlzaWJsZSBncm91cC1ob3ZlcjpheC12aXNpYmxlIGhvdmVyOiFheC10ZXh0LXByaW1hcnktNTAwXCJcclxuICAgICAgICAgICAgICAgIChjbGljayk9XCJjbGlwYm9hcmQuY29weSgnUGhvbmUgTnVtYmVyJywgaXRlbS52YWx1ZSlcIlxyXG4gICAgICAgICAgICAgID5cclxuICAgICAgICAgICAgICAgIDxpIGNsYXNzPVwiZmEtc29saWQgZmEtY29weSBcIj48L2k+XHJcbiAgICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgICAgICAgIEBpZihoYXNMYWJlbCl7XHJcbiAgICAgICAgICAgICAgPGF4LWJhZGdlIGNvbG9yPVwicHJpbWFyeVwiIFtsb29rXT1cIid0d290b25lJ1wiIFt0ZXh0XT1cIml0ZW0ubGFiZWxcIj48L2F4LWJhZGdlPlxyXG4gICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgIDwvZGl2PlxyXG4gIGAsXHJcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcclxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcclxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBBWEJhZGdlTW9kdWxlXSxcclxuICBpbnB1dHM6IFsnY29udGV4dCcsICd2YWx1ZScsICdtdWx0aXBsZScsICdoYXNMYWJlbCddLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgQVhQUGhvbmVXaWRnZXRWaWV3Q29tcG9uZW50IGV4dGVuZHMgQVhQV2lkZ2V0QmFzZSB7XHJcbiAgcHJvdGVjdGVkIGNsaXBib2FyZCA9IGluamVjdChBWFBDbGlwQm9hcmRTZXJ2aWNlKTtcclxuICBwcm90ZWN0ZWQgbXVsdGlwbGUhOiBib29sZWFuO1xyXG4gIHByb3RlY3RlZCBoYXNMYWJlbCE6IGJvb2xlYW47XHJcblxyXG4gIHByb3RlY3RlZCBsaXN0OiB7IHZhbHVlOiBzdHJpbmc7IHR5cGU6IHN0cmluZzsgbGFiZWw6IHN0cmluZyB9W10gPSBbXTtcclxuXHJcbiAgcHJvdGVjdGVkIGdldEljb24odHlwZTogc3RyaW5nKSB7XHJcbiAgICBzd2l0Y2ggKHR5cGUpIHtcclxuICAgICAgY2FzZSAnaG9tZSc6XHJcbiAgICAgICAgcmV0dXJuICdmYS1ob21lJztcclxuXHJcbiAgICAgIGNhc2UgJ21vYmlsZSc6XHJcbiAgICAgICAgcmV0dXJuICdmYS1waG9uZSc7XHJcblxyXG4gICAgICBkZWZhdWx0OlxyXG4gICAgICAgIHJldHVybiAnZmEtcGhvbmUnO1xyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgb3ZlcnJpZGUgcmVuZGVyKCkge1xyXG4gICAgY29uc3QgcmF3VmFsdWUgPSB0aGlzLnJhd1ZhbHVlO1xyXG4gICAgdGhpcy5saXN0ID0gQXJyYXkuaXNBcnJheShyYXdWYWx1ZSkgPyByYXdWYWx1ZS5tYXAoKGMpID0+IHRoaXMuZXh0cmFjdEl0ZW0oYykpIDogW3RoaXMuZXh0cmFjdEl0ZW0ocmF3VmFsdWUpXTtcclxuICB9XHJcblxyXG4gIHByaXZhdGUgZXh0cmFjdEl0ZW0oaXRlbTogYW55KTogYW55IHtcclxuICAgIHJldHVybiB0eXBlb2YgaXRlbSA9PSAnb2JqZWN0J1xyXG4gICAgICA/IHtcclxuICAgICAgICB2YWx1ZTogaXRlbS52YWx1ZSA/PyAnLScsXHJcbiAgICAgICAgdHlwZTogaXRlbS50eXBlID8/ICdtb2JpbGUnLFxyXG4gICAgICAgIGxhYmVsOiBpdGVtLmxhYmVsLFxyXG4gICAgICB9XHJcbiAgICAgIDoge1xyXG4gICAgICAgIHZhbHVlOiBpdGVtLFxyXG4gICAgICAgIHR5cGU6ICdtb2JpbGUnLFxyXG4gICAgICAgIGxhYmVsOiBudWxsLFxyXG4gICAgICB9O1xyXG4gIH1cclxufVxyXG4iXX0=