@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,61 @@
1
+ import { CdkDrag, CdkDragHandle, CdkDragPlaceholder, CdkDropList, moveItemInArray } from '@angular/cdk/drag-drop';
2
+ import { Component, EventEmitter, Input, Output } from '@angular/core';
3
+ import { CommonModule } from '@angular/common';
4
+ import { AXButtonModule } from '@acorex/components/button';
5
+ import { AXDecoratorModule } from '@acorex/components/decorators';
6
+ import { AXSwitchModule } from '@acorex/components/switch';
7
+ import { FormsModule } from '@angular/forms';
8
+ import { AXImageModule } from '@acorex/components/image';
9
+ import { AXSelectBoxModule } from '@acorex/components/select-box';
10
+ import { AXPEntityMasterListViewModel } from '@acorex/platform/layout/entity';
11
+ import * as i0 from "@angular/core";
12
+ import * as i1 from "@angular/forms";
13
+ import * as i2 from "@acorex/components/button";
14
+ import * as i3 from "@acorex/components/image";
15
+ import * as i4 from "@acorex/components/decorators";
16
+ import * as i5 from "@acorex/components/select-box";
17
+ export class AXPListViewOptionSortingComponent {
18
+ constructor() {
19
+ this.isSM = false;
20
+ this.onClosed = new EventEmitter();
21
+ }
22
+ drop(event) {
23
+ moveItemInArray(this.vm.sortableFields(), event.previousIndex, event.currentIndex);
24
+ }
25
+ changeItemSort(item) {
26
+ item.dir = ((item.dir == 'asc' ? 'desc' : 'asc'));
27
+ }
28
+ handleClose() {
29
+ this.onClosed.emit();
30
+ }
31
+ handleResetClick() {
32
+ this.vm.resetSorts();
33
+ }
34
+ handleApplyClick() {
35
+ this.onClosed.emit();
36
+ }
37
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPListViewOptionSortingComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
38
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPListViewOptionSortingComponent, isStandalone: true, selector: "axp-list-view-option-sorting", inputs: { vm: ["viewModel", "vm"] }, outputs: { onClosed: "onClosed" }, ngImport: i0, template: "<ax-header class=\"ax-flex ax-items-center\">\r\n <h2 class=\"ax-text-xl ax-font-bold\">Sorts</h2>\r\n <ax-button (onClick)=\"handleClose()\" [look]=\"'blank'\">\r\n <ax-icon class=\"fa-solid fa-close ax-text-neutral-400 ax-text-xl\"> </ax-icon>\r\n </ax-button>\r\n</ax-header>\r\n<div class=\"ax-flex ax-p-4 ax-flex-col ax-justify-center ax-gap-4 ax-select-none\"\r\n [class.ax-h-[calc(100vh-310px)]]=\"vm.sortedCount()==0\">\r\n @if(vm.sortedCount()==0){\r\n <div class=\"ax-flex ax-flex-col ax-items-center ax-justify-center\">\r\n <ax-image src=\"assets/documents.svg\"></ax-image>\r\n <p class=\"ax-mt-6 ax-mb-1 ax-font-bold\">No Sorts Selected</p>\r\n <span class=\"ax-text-neutral-400 ax-text-sm md:ax-text-md\">Please select field(s) that you want to sort</span>\r\n </div>\r\n }\r\n <div cdkDropList (cdkDropListDropped)=\"drop($event)\"\r\n class=\"ax-flex ax-flex-col ax-gap-3 ax-w-full ax-sorted-list ax-py-1 ax-max-h-[calc(100vh-310px)] ax-overflow-auto\">\r\n @for(item of vm.sortedFields();track $index)\r\n {\r\n <div class=\"ax-flex ax-gap-2 ax-items-center\" cdkDrag cdkDragBoundary=\".ax-sorted-list\">\r\n <ax-icon class=\"fa-solid fa-grip-dots-vertical ax-cursor-move\" cdkDragHandle></ax-icon>\r\n <ax-select-box [dataSource]=\"vm.sortableFields()\" valueField=\"name\" textField=\"title\" [(ngModel)]=\"item.name\">\r\n </ax-select-box>\r\n <ax-button [color]=\"'default'\" class=\"ax-sm\" (click)=\"changeItemSort(item)\">\r\n <ax-icon [class.ax-text-primary]=\"item.dir == 'asc'\"\r\n class=\"fa-solid fa-arrow-up-long ax-text-neutral-400\"></ax-icon>\r\n <ax-icon [class.ax-text-primary]=\"item.dir == 'desc'\"\r\n class=\"fa-solid fa-arrow-down-long ax-text-neutral-400\"></ax-icon>\r\n </ax-button>\r\n <ax-button look=\"blank\" (onClick)=\"vm.removeSort(item.name)\">\r\n <ax-icon class=\"fa-solid fa-trash-can ax-text-danger-500\"></ax-icon>\r\n </ax-button>\r\n </div>\r\n }\r\n </div>\r\n\r\n <div class=\"ax-flex ax-gap-2\">\r\n <div class=\"ax-w-full\" #addField>\r\n @if(vm.sortedCount()==0){\r\n <div class=\"ax-flex ax-justify-center ax-w-full\">\r\n <ax-button (onClick)=\"vm.addSort()\" color=\"primary\" text=\"Add field\" look=\"outline\"\r\n class=\"ax-md ax-w-56\"></ax-button>\r\n </div>\r\n }@else if(vm.canAddMoreSort()) {\r\n <ax-button (onClick)=\"vm.addSort()\" color=\"primary\" text=\"Add field\" look=\"blank\" class=\"ax-sm\"></ax-button>\r\n }\r\n </div>\r\n </div>\r\n</div>\r\n<ax-footer class=\"!ax-justify-start ax-absolute ax-bottom-0 ax-w-full\">\r\n <ax-button text=\"Apply\" color=\"primary\" (onClick)=\"handleApplyClick()\"></ax-button>\r\n <ax-button text=\"Reset\" color=\"ghost\" (onClick)=\"handleResetClick()\"></ax-button>\r\n</ax-footer>", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }, { kind: "directive", type: CdkDragHandle, selector: "[cdkDragHandle]", inputs: ["cdkDragHandleDisabled"] }, { 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: AXImageModule }, { kind: "component", type: i3.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i4.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i4.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: AXSwitchModule }, { kind: "ngmodule", type: AXSelectBoxModule }, { kind: "component", type: i5.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"] }] }); }
39
+ }
40
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPListViewOptionSortingComponent, decorators: [{
41
+ type: Component,
42
+ args: [{ selector: 'axp-list-view-option-sorting', standalone: true, imports: [
43
+ CommonModule,
44
+ FormsModule,
45
+ CdkDropList,
46
+ CdkDrag,
47
+ CdkDragPlaceholder,
48
+ CdkDragHandle,
49
+ AXButtonModule,
50
+ AXImageModule,
51
+ AXDecoratorModule,
52
+ AXSwitchModule,
53
+ AXSelectBoxModule
54
+ ], template: "<ax-header class=\"ax-flex ax-items-center\">\r\n <h2 class=\"ax-text-xl ax-font-bold\">Sorts</h2>\r\n <ax-button (onClick)=\"handleClose()\" [look]=\"'blank'\">\r\n <ax-icon class=\"fa-solid fa-close ax-text-neutral-400 ax-text-xl\"> </ax-icon>\r\n </ax-button>\r\n</ax-header>\r\n<div class=\"ax-flex ax-p-4 ax-flex-col ax-justify-center ax-gap-4 ax-select-none\"\r\n [class.ax-h-[calc(100vh-310px)]]=\"vm.sortedCount()==0\">\r\n @if(vm.sortedCount()==0){\r\n <div class=\"ax-flex ax-flex-col ax-items-center ax-justify-center\">\r\n <ax-image src=\"assets/documents.svg\"></ax-image>\r\n <p class=\"ax-mt-6 ax-mb-1 ax-font-bold\">No Sorts Selected</p>\r\n <span class=\"ax-text-neutral-400 ax-text-sm md:ax-text-md\">Please select field(s) that you want to sort</span>\r\n </div>\r\n }\r\n <div cdkDropList (cdkDropListDropped)=\"drop($event)\"\r\n class=\"ax-flex ax-flex-col ax-gap-3 ax-w-full ax-sorted-list ax-py-1 ax-max-h-[calc(100vh-310px)] ax-overflow-auto\">\r\n @for(item of vm.sortedFields();track $index)\r\n {\r\n <div class=\"ax-flex ax-gap-2 ax-items-center\" cdkDrag cdkDragBoundary=\".ax-sorted-list\">\r\n <ax-icon class=\"fa-solid fa-grip-dots-vertical ax-cursor-move\" cdkDragHandle></ax-icon>\r\n <ax-select-box [dataSource]=\"vm.sortableFields()\" valueField=\"name\" textField=\"title\" [(ngModel)]=\"item.name\">\r\n </ax-select-box>\r\n <ax-button [color]=\"'default'\" class=\"ax-sm\" (click)=\"changeItemSort(item)\">\r\n <ax-icon [class.ax-text-primary]=\"item.dir == 'asc'\"\r\n class=\"fa-solid fa-arrow-up-long ax-text-neutral-400\"></ax-icon>\r\n <ax-icon [class.ax-text-primary]=\"item.dir == 'desc'\"\r\n class=\"fa-solid fa-arrow-down-long ax-text-neutral-400\"></ax-icon>\r\n </ax-button>\r\n <ax-button look=\"blank\" (onClick)=\"vm.removeSort(item.name)\">\r\n <ax-icon class=\"fa-solid fa-trash-can ax-text-danger-500\"></ax-icon>\r\n </ax-button>\r\n </div>\r\n }\r\n </div>\r\n\r\n <div class=\"ax-flex ax-gap-2\">\r\n <div class=\"ax-w-full\" #addField>\r\n @if(vm.sortedCount()==0){\r\n <div class=\"ax-flex ax-justify-center ax-w-full\">\r\n <ax-button (onClick)=\"vm.addSort()\" color=\"primary\" text=\"Add field\" look=\"outline\"\r\n class=\"ax-md ax-w-56\"></ax-button>\r\n </div>\r\n }@else if(vm.canAddMoreSort()) {\r\n <ax-button (onClick)=\"vm.addSort()\" color=\"primary\" text=\"Add field\" look=\"blank\" class=\"ax-sm\"></ax-button>\r\n }\r\n </div>\r\n </div>\r\n</div>\r\n<ax-footer class=\"!ax-justify-start ax-absolute ax-bottom-0 ax-w-full\">\r\n <ax-button text=\"Apply\" color=\"primary\" (onClick)=\"handleApplyClick()\"></ax-button>\r\n <ax-button text=\"Reset\" color=\"ghost\" (onClick)=\"handleResetClick()\"></ax-button>\r\n</ax-footer>" }]
55
+ }], propDecorators: { onClosed: [{
56
+ type: Output
57
+ }], vm: [{
58
+ type: Input,
59
+ args: ['viewModel']
60
+ }] } });
61
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGlzdC12aWV3LW9wdGlvbi1zb3J0aW5nLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vdGhlbWVzL2RlZmF1bHQvc3JjL2xpYi9sYXlvdXRzL2VudGl0eS1sYXlvdXRzL2VudGl0eS1tYXN0ZXItbGlzdC12aWV3L2xpc3Qtdmlldy1vcHRpb24tc29ydGluZy9saXN0LXZpZXctb3B0aW9uLXNvcnRpbmcuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS90aGVtZXMvZGVmYXVsdC9zcmMvbGliL2xheW91dHMvZW50aXR5LWxheW91dHMvZW50aXR5LW1hc3Rlci1saXN0LXZpZXcvbGlzdC12aWV3LW9wdGlvbi1zb3J0aW5nL2xpc3Qtdmlldy1vcHRpb24tc29ydGluZy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsT0FBTyxFQUFlLGFBQWEsRUFBRSxrQkFBa0IsRUFBRSxXQUFXLEVBQUUsZUFBZSxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDL0gsT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFFLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN2RSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBQzNELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQ2xFLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUMzRCxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDN0MsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQ3pELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQ2xFLE9BQU8sRUFBRSw0QkFBNEIsRUFBNEMsTUFBTSxnQ0FBZ0MsQ0FBQzs7Ozs7OztBQW9CeEgsTUFBTSxPQUFPLGlDQUFpQztJQWxCOUM7UUFtQlksU0FBSSxHQUFHLEtBQUssQ0FBQztRQUdoQixhQUFRLEdBQUcsSUFBSSxZQUFZLEVBQVEsQ0FBQztLQXdCNUM7SUFsQlcsSUFBSSxDQUFDLEtBQTZCO1FBQzFDLGVBQWUsQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLGNBQWMsRUFBRSxFQUFFLEtBQUssQ0FBQyxhQUFhLEVBQUUsS0FBSyxDQUFDLFlBQVksQ0FBQyxDQUFDO0lBQ3JGLENBQUM7SUFFUyxjQUFjLENBQUMsSUFBOEM7UUFDckUsSUFBSSxDQUFDLEdBQUcsR0FBRyxDQUFDLENBQUMsSUFBSSxDQUFDLEdBQUcsSUFBSSxLQUFLLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQztJQUNwRCxDQUFDO0lBRVMsV0FBVztRQUNuQixJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksRUFBRSxDQUFDO0lBQ3ZCLENBQUM7SUFDUyxnQkFBZ0I7UUFDeEIsSUFBSSxDQUFDLEVBQUUsQ0FBQyxVQUFVLEVBQUUsQ0FBQztJQUN2QixDQUFDO0lBRVMsZ0JBQWdCO1FBQ3hCLElBQUksQ0FBQyxRQUFRLENBQUMsSUFBSSxFQUFFLENBQUM7SUFDdkIsQ0FBQzs4R0EzQlUsaUNBQWlDO2tHQUFqQyxpQ0FBaUMsZ0tDN0I5QyxpMEZBb0RZLDJDRHBDUixZQUFZLDhCQUNaLFdBQVcsK1ZBQ1gsV0FBVywrZEFDWCxPQUFPLHdiQUVQLGFBQWEsOEZBQ2IsY0FBYyw2VUFDZCxhQUFhLGlNQUNiLGlCQUFpQix1VkFDakIsY0FBYyw4QkFDZCxpQkFBaUI7OzJGQUdSLGlDQUFpQztrQkFsQjdDLFNBQVM7K0JBQ0UsOEJBQThCLGNBRTVCLElBQUksV0FDUDt3QkFDUCxZQUFZO3dCQUNaLFdBQVc7d0JBQ1gsV0FBVzt3QkFDWCxPQUFPO3dCQUNQLGtCQUFrQjt3QkFDbEIsYUFBYTt3QkFDYixjQUFjO3dCQUNkLGFBQWE7d0JBQ2IsaUJBQWlCO3dCQUNqQixjQUFjO3dCQUNkLGlCQUFpQjtxQkFDbEI7OEJBTU0sUUFBUTtzQkFEZCxNQUFNO2dCQUlBLEVBQUU7c0JBRFIsS0FBSzt1QkFBQyxXQUFXIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2RrRHJhZywgQ2RrRHJhZ0Ryb3AsIENka0RyYWdIYW5kbGUsIENka0RyYWdQbGFjZWhvbGRlciwgQ2RrRHJvcExpc3QsIG1vdmVJdGVtSW5BcnJheSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9kcmFnLWRyb3AnO1xyXG5pbXBvcnQgeyBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE91dHB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xyXG5pbXBvcnQgeyBBWEJ1dHRvbk1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9idXR0b24nO1xyXG5pbXBvcnQgeyBBWERlY29yYXRvck1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9kZWNvcmF0b3JzJztcclxuaW1wb3J0IHsgQVhTd2l0Y2hNb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvc3dpdGNoJztcclxuaW1wb3J0IHsgRm9ybXNNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XHJcbmltcG9ydCB7IEFYSW1hZ2VNb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvaW1hZ2UnO1xyXG5pbXBvcnQgeyBBWFNlbGVjdEJveE1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9zZWxlY3QtYm94JztcclxuaW1wb3J0IHsgQVhQRW50aXR5TWFzdGVyTGlzdFZpZXdNb2RlbCwgQVhQRW50aXR5TWFzdGVyTGlzdFZpZXdTb3J0UHJvcFZpZXdNb2RlbCB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vbGF5b3V0L2VudGl0eSc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2F4cC1saXN0LXZpZXctb3B0aW9uLXNvcnRpbmcnLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9saXN0LXZpZXctb3B0aW9uLXNvcnRpbmcuY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0YW5kYWxvbmU6IHRydWUsXHJcbiAgaW1wb3J0czogW1xyXG4gICAgQ29tbW9uTW9kdWxlLFxyXG4gICAgRm9ybXNNb2R1bGUsXHJcbiAgICBDZGtEcm9wTGlzdCxcclxuICAgIENka0RyYWcsXHJcbiAgICBDZGtEcmFnUGxhY2Vob2xkZXIsXHJcbiAgICBDZGtEcmFnSGFuZGxlLFxyXG4gICAgQVhCdXR0b25Nb2R1bGUsXHJcbiAgICBBWEltYWdlTW9kdWxlLFxyXG4gICAgQVhEZWNvcmF0b3JNb2R1bGUsXHJcbiAgICBBWFN3aXRjaE1vZHVsZSxcclxuICAgIEFYU2VsZWN0Qm94TW9kdWxlXHJcbiAgXSxcclxufSlcclxuZXhwb3J0IGNsYXNzIEFYUExpc3RWaWV3T3B0aW9uU29ydGluZ0NvbXBvbmVudCB7XHJcbiAgcHJvdGVjdGVkIGlzU00gPSBmYWxzZTtcclxuXHJcbiAgQE91dHB1dCgpXHJcbiAgcHVibGljIG9uQ2xvc2VkID0gbmV3IEV2ZW50RW1pdHRlcjx2b2lkPigpO1xyXG5cclxuICBASW5wdXQoJ3ZpZXdNb2RlbCcpXHJcbiAgcHVibGljIHZtITogQVhQRW50aXR5TWFzdGVyTGlzdFZpZXdNb2RlbDtcclxuXHJcblxyXG4gIHByb3RlY3RlZCBkcm9wKGV2ZW50OiBDZGtEcmFnRHJvcDx1bmtub3duW10+KSB7XHJcbiAgICBtb3ZlSXRlbUluQXJyYXkodGhpcy52bS5zb3J0YWJsZUZpZWxkcygpLCBldmVudC5wcmV2aW91c0luZGV4LCBldmVudC5jdXJyZW50SW5kZXgpO1xyXG4gIH1cclxuXHJcbiAgcHJvdGVjdGVkIGNoYW5nZUl0ZW1Tb3J0KGl0ZW06IEFYUEVudGl0eU1hc3Rlckxpc3RWaWV3U29ydFByb3BWaWV3TW9kZWwpIHtcclxuICAgIGl0ZW0uZGlyID0gKChpdGVtLmRpciA9PSAnYXNjJyA/ICdkZXNjJyA6ICdhc2MnKSk7XHJcbiAgfVxyXG5cclxuICBwcm90ZWN0ZWQgaGFuZGxlQ2xvc2UoKSB7XHJcbiAgICB0aGlzLm9uQ2xvc2VkLmVtaXQoKTtcclxuICB9XHJcbiAgcHJvdGVjdGVkIGhhbmRsZVJlc2V0Q2xpY2soKSB7XHJcbiAgICB0aGlzLnZtLnJlc2V0U29ydHMoKTtcclxuICB9XHJcblxyXG4gIHByb3RlY3RlZCBoYW5kbGVBcHBseUNsaWNrKCkge1xyXG4gICAgdGhpcy5vbkNsb3NlZC5lbWl0KCk7XHJcbiAgfVxyXG59XHJcbiIsIjxheC1oZWFkZXIgY2xhc3M9XCJheC1mbGV4IGF4LWl0ZW1zLWNlbnRlclwiPlxyXG4gIDxoMiBjbGFzcz1cImF4LXRleHQteGwgYXgtZm9udC1ib2xkXCI+U29ydHM8L2gyPlxyXG4gIDxheC1idXR0b24gKG9uQ2xpY2spPVwiaGFuZGxlQ2xvc2UoKVwiIFtsb29rXT1cIidibGFuaydcIj5cclxuICAgIDxheC1pY29uIGNsYXNzPVwiZmEtc29saWQgZmEtY2xvc2UgYXgtdGV4dC1uZXV0cmFsLTQwMCBheC10ZXh0LXhsXCI+IDwvYXgtaWNvbj5cclxuICA8L2F4LWJ1dHRvbj5cclxuPC9heC1oZWFkZXI+XHJcbjxkaXYgY2xhc3M9XCJheC1mbGV4IGF4LXAtNCBheC1mbGV4LWNvbCBheC1qdXN0aWZ5LWNlbnRlciBheC1nYXAtNCBheC1zZWxlY3Qtbm9uZVwiXHJcbiAgW2NsYXNzLmF4LWgtW2NhbGMoMTAwdmgtMzEwcHgpXV09XCJ2bS5zb3J0ZWRDb3VudCgpPT0wXCI+XHJcbiAgQGlmKHZtLnNvcnRlZENvdW50KCk9PTApe1xyXG4gIDxkaXYgY2xhc3M9XCJheC1mbGV4IGF4LWZsZXgtY29sIGF4LWl0ZW1zLWNlbnRlciBheC1qdXN0aWZ5LWNlbnRlclwiPlxyXG4gICAgPGF4LWltYWdlIHNyYz1cImFzc2V0cy9kb2N1bWVudHMuc3ZnXCI+PC9heC1pbWFnZT5cclxuICAgIDxwIGNsYXNzPVwiYXgtbXQtNiBheC1tYi0xIGF4LWZvbnQtYm9sZFwiPk5vIFNvcnRzIFNlbGVjdGVkPC9wPlxyXG4gICAgPHNwYW4gY2xhc3M9XCJheC10ZXh0LW5ldXRyYWwtNDAwIGF4LXRleHQtc20gbWQ6YXgtdGV4dC1tZFwiPlBsZWFzZSBzZWxlY3QgZmllbGQocykgdGhhdCB5b3Ugd2FudCB0byBzb3J0PC9zcGFuPlxyXG4gIDwvZGl2PlxyXG4gIH1cclxuICA8ZGl2IGNka0Ryb3BMaXN0IChjZGtEcm9wTGlzdERyb3BwZWQpPVwiZHJvcCgkZXZlbnQpXCJcclxuICAgIGNsYXNzPVwiYXgtZmxleCBheC1mbGV4LWNvbCBheC1nYXAtMyBheC13LWZ1bGwgYXgtc29ydGVkLWxpc3QgYXgtcHktMSBheC1tYXgtaC1bY2FsYygxMDB2aC0zMTBweCldIGF4LW92ZXJmbG93LWF1dG9cIj5cclxuICAgIEBmb3IoaXRlbSBvZiB2bS5zb3J0ZWRGaWVsZHMoKTt0cmFjayAkaW5kZXgpXHJcbiAgICB7XHJcbiAgICA8ZGl2IGNsYXNzPVwiYXgtZmxleCBheC1nYXAtMiBheC1pdGVtcy1jZW50ZXJcIiBjZGtEcmFnIGNka0RyYWdCb3VuZGFyeT1cIi5heC1zb3J0ZWQtbGlzdFwiPlxyXG4gICAgICA8YXgtaWNvbiBjbGFzcz1cImZhLXNvbGlkIGZhLWdyaXAtZG90cy12ZXJ0aWNhbCBheC1jdXJzb3ItbW92ZVwiIGNka0RyYWdIYW5kbGU+PC9heC1pY29uPlxyXG4gICAgICA8YXgtc2VsZWN0LWJveCBbZGF0YVNvdXJjZV09XCJ2bS5zb3J0YWJsZUZpZWxkcygpXCIgdmFsdWVGaWVsZD1cIm5hbWVcIiB0ZXh0RmllbGQ9XCJ0aXRsZVwiIFsobmdNb2RlbCldPVwiaXRlbS5uYW1lXCI+XHJcbiAgICAgIDwvYXgtc2VsZWN0LWJveD5cclxuICAgICAgPGF4LWJ1dHRvbiBbY29sb3JdPVwiJ2RlZmF1bHQnXCIgY2xhc3M9XCJheC1zbVwiIChjbGljayk9XCJjaGFuZ2VJdGVtU29ydChpdGVtKVwiPlxyXG4gICAgICAgIDxheC1pY29uIFtjbGFzcy5heC10ZXh0LXByaW1hcnldPVwiaXRlbS5kaXIgPT0gJ2FzYydcIlxyXG4gICAgICAgICAgY2xhc3M9XCJmYS1zb2xpZCBmYS1hcnJvdy11cC1sb25nIGF4LXRleHQtbmV1dHJhbC00MDBcIj48L2F4LWljb24+XHJcbiAgICAgICAgPGF4LWljb24gW2NsYXNzLmF4LXRleHQtcHJpbWFyeV09XCJpdGVtLmRpciA9PSAnZGVzYydcIlxyXG4gICAgICAgICAgY2xhc3M9XCJmYS1zb2xpZCBmYS1hcnJvdy1kb3duLWxvbmcgYXgtdGV4dC1uZXV0cmFsLTQwMFwiPjwvYXgtaWNvbj5cclxuICAgICAgPC9heC1idXR0b24+XHJcbiAgICAgIDxheC1idXR0b24gbG9vaz1cImJsYW5rXCIgKG9uQ2xpY2spPVwidm0ucmVtb3ZlU29ydChpdGVtLm5hbWUpXCI+XHJcbiAgICAgICAgPGF4LWljb24gY2xhc3M9XCJmYS1zb2xpZCBmYS10cmFzaC1jYW4gYXgtdGV4dC1kYW5nZXItNTAwXCI+PC9heC1pY29uPlxyXG4gICAgICA8L2F4LWJ1dHRvbj5cclxuICAgIDwvZGl2PlxyXG4gICAgfVxyXG4gIDwvZGl2PlxyXG5cclxuICA8ZGl2IGNsYXNzPVwiYXgtZmxleCBheC1nYXAtMlwiPlxyXG4gICAgPGRpdiBjbGFzcz1cImF4LXctZnVsbFwiICNhZGRGaWVsZD5cclxuICAgICAgQGlmKHZtLnNvcnRlZENvdW50KCk9PTApe1xyXG4gICAgICA8ZGl2IGNsYXNzPVwiYXgtZmxleCBheC1qdXN0aWZ5LWNlbnRlciBheC13LWZ1bGxcIj5cclxuICAgICAgICA8YXgtYnV0dG9uIChvbkNsaWNrKT1cInZtLmFkZFNvcnQoKVwiIGNvbG9yPVwicHJpbWFyeVwiIHRleHQ9XCJBZGQgZmllbGRcIiBsb29rPVwib3V0bGluZVwiXHJcbiAgICAgICAgICBjbGFzcz1cImF4LW1kIGF4LXctNTZcIj48L2F4LWJ1dHRvbj5cclxuICAgICAgPC9kaXY+XHJcbiAgICAgIH1AZWxzZSBpZih2bS5jYW5BZGRNb3JlU29ydCgpKSB7XHJcbiAgICAgIDxheC1idXR0b24gKG9uQ2xpY2spPVwidm0uYWRkU29ydCgpXCIgY29sb3I9XCJwcmltYXJ5XCIgdGV4dD1cIkFkZCBmaWVsZFwiIGxvb2s9XCJibGFua1wiIGNsYXNzPVwiYXgtc21cIj48L2F4LWJ1dHRvbj5cclxuICAgICAgfVxyXG4gICAgPC9kaXY+XHJcbiAgPC9kaXY+XHJcbjwvZGl2PlxyXG48YXgtZm9vdGVyIGNsYXNzPVwiIWF4LWp1c3RpZnktc3RhcnQgYXgtYWJzb2x1dGUgYXgtYm90dG9tLTAgYXgtdy1mdWxsXCI+XHJcbiAgPGF4LWJ1dHRvbiB0ZXh0PVwiQXBwbHlcIiBjb2xvcj1cInByaW1hcnlcIiAob25DbGljayk9XCJoYW5kbGVBcHBseUNsaWNrKClcIj48L2F4LWJ1dHRvbj5cclxuICA8YXgtYnV0dG9uIHRleHQ9XCJSZXNldFwiIGNvbG9yPVwiZ2hvc3RcIiAob25DbGljayk9XCJoYW5kbGVSZXNldENsaWNrKClcIj48L2F4LWJ1dHRvbj5cclxuPC9heC1mb290ZXI+Il19
@@ -0,0 +1,82 @@
1
+ import { AXButtonModule } from '@acorex/components/button';
2
+ import { AXDecoratorModule } from '@acorex/components/decorators';
3
+ import { AXDialogModule } from '@acorex/components/dialog';
4
+ import { AXDropdownButtonModule } from '@acorex/components/dropdown-button';
5
+ import { AXFormModule } from '@acorex/components/form';
6
+ import { AXLabelModule } from '@acorex/components/label';
7
+ import { AXLoadingModule } from '@acorex/components/loading';
8
+ import { AXBasePageComponent } from '@acorex/components/page';
9
+ import { AXTabsModule } from '@acorex/components/tabs';
10
+ import { AXTooltipModule } from '@acorex/components/tooltip';
11
+ import { CommonModule } from '@angular/common';
12
+ import { ChangeDetectionStrategy, Component, inject } from '@angular/core';
13
+ import { FormsModule } from '@angular/forms';
14
+ import { AXValidationModule } from '@acorex/core/validation';
15
+ import { AXDropdownModule } from '@acorex/components/dropdown';
16
+ import { AXPGridLayoutDirective, AXPStickyDirective } from '@acorex/platform/common';
17
+ import { AXPWorkflowService } from '@acorex/platform/workflow';
18
+ import { AXPLayoutBuilderModule } from '@acorex/platform/layout/builder';
19
+ import { AXPWidgetsModule } from '@acorex/platform/widgets';
20
+ import * as i0 from "@angular/core";
21
+ import * as i1 from "@angular/common";
22
+ import * as i2 from "@acorex/components/form";
23
+ import * as i3 from "@acorex/components/decorators";
24
+ import * as i4 from "@acorex/components/button";
25
+ import * as i5 from "@acorex/components/loading";
26
+ import * as i6 from "@acorex/components/label";
27
+ import * as i7 from "@acorex/components/dropdown-button";
28
+ import * as i8 from "@acorex/platform/layout/builder";
29
+ export class AXPEntityMasterModifyViewComponent extends AXBasePageComponent {
30
+ constructor() {
31
+ super(...arguments);
32
+ this.workflow = inject(AXPWorkflowService);
33
+ }
34
+ handleCloseClick() {
35
+ this.close();
36
+ }
37
+ async handleSaveClick(form) {
38
+ const formResult = await form.validate();
39
+ if (formResult.result) {
40
+ await this.vm.save();
41
+ this.close({ result: true, context: this.vm.context() });
42
+ }
43
+ }
44
+ async handleSectionDiscard(form) {
45
+ this.close({ result: false });
46
+ }
47
+ async handleSectionReset(form) {
48
+ this.vm.reset();
49
+ }
50
+ async handleContextChange(data) {
51
+ this.vm.context.set(data);
52
+ }
53
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPEntityMasterModifyViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
54
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPEntityMasterModifyViewComponent, isStandalone: true, selector: "ng-component", usesInheritance: true, ngImport: i0, template: "<div class=\"ax-p-4 ax-pb-8\">\r\n <axp-widgets-container [context]=\"vm.context()\" (contextChange)=\"handleContextChange($event)\">\r\n <ax-form #form [messageStyle]=\"'bottom'\" [updateOn]=\"'blur'\">\r\n <div class=\"ax-grid ax-grid-cols-12 ax-gap-4\">\r\n @for(attr of vm.elements(); track $index) {\r\n <ax-form-field class=\"ax-flex ax-flex-col ax-gap-1\" [gridLayout]=\"attr.layout()\">\r\n <ax-label class=\"ax-font-semibold ax-text-sm\" [required]=\"attr.isRequired()\">{{ attr.title()\r\n }}</ax-label>\r\n <axp-widget-renderer [node]=\"attr.node()\"> </axp-widget-renderer>\r\n </ax-form-field>\r\n }\r\n </div>\r\n </ax-form>\r\n </axp-widgets-container>\r\n <ax-footer>\r\n <ax-suffix>\r\n <ax-dropdown-button text=\"Discard\" (onClick)=\"handleSectionDiscard(form)\">\r\n <ax-button-item-list>\r\n <ax-button-item text=\"Reset\" (onClick)=\"handleSectionReset(form)\">\r\n <ax-prefix>\r\n <ax-icon icon=\"fa-solid fa-rotate-left fa-flip-horizontal\"></ax-icon>\r\n </ax-prefix>\r\n </ax-button-item>\r\n </ax-button-item-list>\r\n </ax-dropdown-button>\r\n <ax-button [disabled]=\"vm.isInProgress()\" color=\"primary\" text=\"Apply\" (onClick)=\"handleSaveClick(form)\">\r\n <ax-loading *ngIf=\"vm.isInProgress()\"></ax-loading>\r\n </ax-button>\r\n </ax-suffix>\r\n </ax-footer>\r\n</div>", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "component", type: i2.AXFormFieldComponent, selector: "ax-form-field", inputs: ["labelMode"] }, { kind: "component", type: i2.AXFormComponent, selector: "ax-form", inputs: ["labelMode", "messageStyle", "updateOn"], outputs: ["onValidate", "updateOnChange"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.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: AXButtonModule }, { kind: "component", type: i4.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }, { kind: "component", type: i4.AXButtonItemComponent, selector: "ax-button-item", inputs: ["color", "disabled", "text", "selected", "divided", "data", "name"], outputs: ["onClick", "onFocus", "onBlur", "disabledChange"] }, { kind: "component", type: i4.AXButtonItemListComponent, selector: "ax-button-item-list", inputs: ["items"], outputs: ["onItemClick"] }, { kind: "ngmodule", type: AXDialogModule }, { kind: "ngmodule", type: AXLoadingModule }, { kind: "component", type: i5.AXLoadingComponent, selector: "ax-loading", inputs: ["visible", "type", "context"], outputs: ["visibleChange"] }, { kind: "ngmodule", type: AXTabsModule }, { kind: "ngmodule", type: AXTooltipModule }, { kind: "ngmodule", type: AXValidationModule }, { kind: "ngmodule", type: AXLabelModule }, { kind: "component", type: i6.AXLabelComponent, selector: "ax-label", inputs: ["required", "for"], outputs: ["requiredChange"] }, { kind: "ngmodule", type: AXDropdownModule }, { kind: "ngmodule", type: AXDropdownButtonModule }, { kind: "component", type: i7.AXDropdownButtonComponent, selector: "ax-dropdown-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "type", "mode"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "lookChange", "colorChange", "disabledChange"] }, { kind: "ngmodule", type:
55
+ //
56
+ AXPLayoutBuilderModule }, { kind: "component", type: i8.AXPWidgetContainerComponent, selector: "axp-widgets-container", inputs: ["context", "variables", "functions"], outputs: ["contextChange"] }, { kind: "component", type: i8.AXPWidgetRendererComponent, selector: "axp-widget-renderer", inputs: ["node"] }, { kind: "ngmodule", type: AXPWidgetsModule }, { kind: "directive", type: AXPGridLayoutDirective, selector: "[gridLayout]", inputs: ["gridLayout"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
57
+ }
58
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPEntityMasterModifyViewComponent, decorators: [{
59
+ type: Component,
60
+ args: [{ imports: [
61
+ CommonModule,
62
+ FormsModule,
63
+ AXFormModule,
64
+ AXDecoratorModule,
65
+ CommonModule,
66
+ AXButtonModule,
67
+ AXDialogModule,
68
+ AXLoadingModule,
69
+ AXTabsModule,
70
+ AXTooltipModule,
71
+ AXValidationModule,
72
+ AXLabelModule,
73
+ AXDropdownModule,
74
+ AXDropdownButtonModule,
75
+ //
76
+ AXPLayoutBuilderModule,
77
+ AXPWidgetsModule,
78
+ AXPStickyDirective,
79
+ AXPGridLayoutDirective
80
+ ], standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"ax-p-4 ax-pb-8\">\r\n <axp-widgets-container [context]=\"vm.context()\" (contextChange)=\"handleContextChange($event)\">\r\n <ax-form #form [messageStyle]=\"'bottom'\" [updateOn]=\"'blur'\">\r\n <div class=\"ax-grid ax-grid-cols-12 ax-gap-4\">\r\n @for(attr of vm.elements(); track $index) {\r\n <ax-form-field class=\"ax-flex ax-flex-col ax-gap-1\" [gridLayout]=\"attr.layout()\">\r\n <ax-label class=\"ax-font-semibold ax-text-sm\" [required]=\"attr.isRequired()\">{{ attr.title()\r\n }}</ax-label>\r\n <axp-widget-renderer [node]=\"attr.node()\"> </axp-widget-renderer>\r\n </ax-form-field>\r\n }\r\n </div>\r\n </ax-form>\r\n </axp-widgets-container>\r\n <ax-footer>\r\n <ax-suffix>\r\n <ax-dropdown-button text=\"Discard\" (onClick)=\"handleSectionDiscard(form)\">\r\n <ax-button-item-list>\r\n <ax-button-item text=\"Reset\" (onClick)=\"handleSectionReset(form)\">\r\n <ax-prefix>\r\n <ax-icon icon=\"fa-solid fa-rotate-left fa-flip-horizontal\"></ax-icon>\r\n </ax-prefix>\r\n </ax-button-item>\r\n </ax-button-item-list>\r\n </ax-dropdown-button>\r\n <ax-button [disabled]=\"vm.isInProgress()\" color=\"primary\" text=\"Apply\" (onClick)=\"handleSaveClick(form)\">\r\n <ax-loading *ngIf=\"vm.isInProgress()\"></ax-loading>\r\n </ax-button>\r\n </ax-suffix>\r\n </ax-footer>\r\n</div>" }]
81
+ }] });
82
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW50aXR5LW1hc3Rlci1tb2RpZnktdmlldy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3RoZW1lcy9kZWZhdWx0L3NyYy9saWIvbGF5b3V0cy9lbnRpdHktbGF5b3V0cy9lbnRpdHktbWFzdGVyLW1vZGlmeS12aWV3L2VudGl0eS1tYXN0ZXItbW9kaWZ5LXZpZXcuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS90aGVtZXMvZGVmYXVsdC9zcmMvbGliL2xheW91dHMvZW50aXR5LWxheW91dHMvZW50aXR5LW1hc3Rlci1tb2RpZnktdmlldy9lbnRpdHktbWFzdGVyLW1vZGlmeS12aWV3LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUMzRCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUNsRSxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sMkJBQTJCLENBQUM7QUFDM0QsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sb0NBQW9DLENBQUM7QUFDNUUsT0FBTyxFQUFtQixZQUFZLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUN4RSxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDekQsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBQzdELE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQzlELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUN2RCxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFDN0QsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzNFLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUM3QyxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUM3RCxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSw2QkFBNkIsQ0FBQztBQUMvRCxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUNyRixPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUMvRCxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUN6RSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQzs7Ozs7Ozs7OztBQThCNUQsTUFBTSxPQUFPLGtDQUFtQyxTQUFRLG1CQUFtQjtJQTFCM0U7O1FBNkJZLGFBQVEsR0FBRyxNQUFNLENBQUMsa0JBQWtCLENBQUMsQ0FBQztLQXlCakQ7SUF2QlcsZ0JBQWdCO1FBQ3hCLElBQUksQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUNmLENBQUM7SUFFUyxLQUFLLENBQUMsZUFBZSxDQUFDLElBQXFCO1FBQ25ELE1BQU0sVUFBVSxHQUFHLE1BQU0sSUFBSSxDQUFDLFFBQVEsRUFBRSxDQUFDO1FBQ3pDLElBQUksVUFBVSxDQUFDLE1BQU0sRUFBRSxDQUFDO1lBQ3RCLE1BQU0sSUFBSSxDQUFDLEVBQUUsQ0FBQyxJQUFJLEVBQUUsQ0FBQztZQUNyQixJQUFJLENBQUMsS0FBSyxDQUFDLEVBQUUsTUFBTSxFQUFFLElBQUksRUFBRSxPQUFPLEVBQUUsSUFBSSxDQUFDLEVBQUUsQ0FBQyxPQUFPLEVBQUUsRUFBRSxDQUFDLENBQUM7UUFDM0QsQ0FBQztJQUNILENBQUM7SUFFUyxLQUFLLENBQUMsb0JBQW9CLENBQUMsSUFBcUI7UUFDeEQsSUFBSSxDQUFDLEtBQUssQ0FBQyxFQUFFLE1BQU0sRUFBRSxLQUFLLEVBQUUsQ0FBQyxDQUFDO0lBQ2hDLENBQUM7SUFFUyxLQUFLLENBQUMsa0JBQWtCLENBQUMsSUFBcUI7UUFDdEQsSUFBSSxDQUFDLEVBQUUsQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUNsQixDQUFDO0lBRVMsS0FBSyxDQUFDLG1CQUFtQixDQUFDLElBQVM7UUFDM0MsSUFBSSxDQUFDLEVBQUUsQ0FBQyxPQUFPLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQzVCLENBQUM7OEdBM0JVLGtDQUFrQztrR0FBbEMsa0NBQWtDLCtGQ2hEL0MsNDhDQThCTSwyQ0RMRixZQUFZLGtJQUNaLFdBQVcsOEJBQ1gsWUFBWSwwU0FDWixpQkFBaUIsdVZBRWpCLGNBQWMsb3JCQUNkLGNBQWMsOEJBQ2QsZUFBZSw4S0FDZixZQUFZLDhCQUNaLGVBQWUsOEJBQ2Ysa0JBQWtCLDhCQUNsQixhQUFhLGdLQUNiLGdCQUFnQiw4QkFDaEIsc0JBQXNCO2dCQUN0QixFQUFFO2dCQUNGLHNCQUFzQix3VEFDdEIsZ0JBQWdCLCtCQUVoQixzQkFBc0I7OzJGQUtiLGtDQUFrQztrQkExQjlDLFNBQVM7OEJBRUM7d0JBQ1AsWUFBWTt3QkFDWixXQUFXO3dCQUNYLFlBQVk7d0JBQ1osaUJBQWlCO3dCQUNqQixZQUFZO3dCQUNaLGNBQWM7d0JBQ2QsY0FBYzt3QkFDZCxlQUFlO3dCQUNmLFlBQVk7d0JBQ1osZUFBZTt3QkFDZixrQkFBa0I7d0JBQ2xCLGFBQWE7d0JBQ2IsZ0JBQWdCO3dCQUNoQixzQkFBc0I7d0JBQ3RCLEVBQUU7d0JBQ0Ysc0JBQXNCO3dCQUN0QixnQkFBZ0I7d0JBQ2hCLGtCQUFrQjt3QkFDbEIsc0JBQXNCO3FCQUN2QixjQUNXLElBQUksbUJBQ0MsdUJBQXVCLENBQUMsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFYQnV0dG9uTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL2J1dHRvbic7XHJcbmltcG9ydCB7IEFYRGVjb3JhdG9yTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL2RlY29yYXRvcnMnO1xyXG5pbXBvcnQgeyBBWERpYWxvZ01vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9kaWFsb2cnO1xyXG5pbXBvcnQgeyBBWERyb3Bkb3duQnV0dG9uTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL2Ryb3Bkb3duLWJ1dHRvbic7XHJcbmltcG9ydCB7IEFYRm9ybUNvbXBvbmVudCwgQVhGb3JtTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL2Zvcm0nO1xyXG5pbXBvcnQgeyBBWExhYmVsTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL2xhYmVsJztcclxuaW1wb3J0IHsgQVhMb2FkaW5nTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL2xvYWRpbmcnO1xyXG5pbXBvcnQgeyBBWEJhc2VQYWdlQ29tcG9uZW50IH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL3BhZ2UnO1xyXG5pbXBvcnQgeyBBWFRhYnNNb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvdGFicyc7XHJcbmltcG9ydCB7IEFYVG9vbHRpcE1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy90b29sdGlwJztcclxuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcclxuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgaW5qZWN0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IEZvcm1zTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xyXG5pbXBvcnQgeyBBWFZhbGlkYXRpb25Nb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvcmUvdmFsaWRhdGlvbic7XHJcbmltcG9ydCB7IEFYRHJvcGRvd25Nb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvZHJvcGRvd24nO1xyXG5pbXBvcnQgeyBBWFBHcmlkTGF5b3V0RGlyZWN0aXZlLCBBWFBTdGlja3lEaXJlY3RpdmUgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2NvbW1vbic7XHJcbmltcG9ydCB7IEFYUFdvcmtmbG93U2VydmljZSB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vd29ya2Zsb3cnO1xyXG5pbXBvcnQgeyBBWFBMYXlvdXRCdWlsZGVyTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XHJcbmltcG9ydCB7IEFYUFdpZGdldHNNb2R1bGUgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL3dpZGdldHMnO1xyXG5pbXBvcnQgeyBBWFVuc3Vic2NyaWJlciB9IGZyb20gJ0BhY29yZXgvY29yZS91dGlscyc7XHJcbmltcG9ydCB7IEFYUEVudGl0eU1hc3RlclVwZGF0ZVZpZXdNb2RlbCB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vbGF5b3V0L2VudGl0eSc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICB0ZW1wbGF0ZVVybDogJy4vZW50aXR5LW1hc3Rlci1tb2RpZnktdmlldy5jb21wb25lbnQuaHRtbCcsXHJcbiAgaW1wb3J0czogW1xyXG4gICAgQ29tbW9uTW9kdWxlLFxyXG4gICAgRm9ybXNNb2R1bGUsXHJcbiAgICBBWEZvcm1Nb2R1bGUsXHJcbiAgICBBWERlY29yYXRvck1vZHVsZSxcclxuICAgIENvbW1vbk1vZHVsZSxcclxuICAgIEFYQnV0dG9uTW9kdWxlLFxyXG4gICAgQVhEaWFsb2dNb2R1bGUsXHJcbiAgICBBWExvYWRpbmdNb2R1bGUsXHJcbiAgICBBWFRhYnNNb2R1bGUsXHJcbiAgICBBWFRvb2x0aXBNb2R1bGUsXHJcbiAgICBBWFZhbGlkYXRpb25Nb2R1bGUsXHJcbiAgICBBWExhYmVsTW9kdWxlLFxyXG4gICAgQVhEcm9wZG93bk1vZHVsZSxcclxuICAgIEFYRHJvcGRvd25CdXR0b25Nb2R1bGUsXHJcbiAgICAvL1xyXG4gICAgQVhQTGF5b3V0QnVpbGRlck1vZHVsZSxcclxuICAgIEFYUFdpZGdldHNNb2R1bGUsXHJcbiAgICBBWFBTdGlja3lEaXJlY3RpdmUsXHJcbiAgICBBWFBHcmlkTGF5b3V0RGlyZWN0aXZlXHJcbiAgXSxcclxuICBzdGFuZGFsb25lOiB0cnVlLFxyXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgQVhQRW50aXR5TWFzdGVyTW9kaWZ5Vmlld0NvbXBvbmVudCBleHRlbmRzIEFYQmFzZVBhZ2VDb21wb25lbnQge1xyXG4gIHByb3RlY3RlZCB2bSE6IEFYUEVudGl0eU1hc3RlclVwZGF0ZVZpZXdNb2RlbDtcclxuXHJcbiAgcHJvdGVjdGVkIHdvcmtmbG93ID0gaW5qZWN0KEFYUFdvcmtmbG93U2VydmljZSk7XHJcblxyXG4gIHByb3RlY3RlZCBoYW5kbGVDbG9zZUNsaWNrKCkge1xyXG4gICAgdGhpcy5jbG9zZSgpO1xyXG4gIH1cclxuXHJcbiAgcHJvdGVjdGVkIGFzeW5jIGhhbmRsZVNhdmVDbGljayhmb3JtOiBBWEZvcm1Db21wb25lbnQpIHtcclxuICAgIGNvbnN0IGZvcm1SZXN1bHQgPSBhd2FpdCBmb3JtLnZhbGlkYXRlKCk7XHJcbiAgICBpZiAoZm9ybVJlc3VsdC5yZXN1bHQpIHtcclxuICAgICAgYXdhaXQgdGhpcy52bS5zYXZlKCk7XHJcbiAgICAgIHRoaXMuY2xvc2UoeyByZXN1bHQ6IHRydWUsIGNvbnRleHQ6IHRoaXMudm0uY29udGV4dCgpIH0pO1xyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgcHJvdGVjdGVkIGFzeW5jIGhhbmRsZVNlY3Rpb25EaXNjYXJkKGZvcm06IEFYRm9ybUNvbXBvbmVudCkge1xyXG4gICAgdGhpcy5jbG9zZSh7IHJlc3VsdDogZmFsc2UgfSk7XHJcbiAgfVxyXG5cclxuICBwcm90ZWN0ZWQgYXN5bmMgaGFuZGxlU2VjdGlvblJlc2V0KGZvcm06IEFYRm9ybUNvbXBvbmVudCkge1xyXG4gICAgdGhpcy52bS5yZXNldCgpO1xyXG4gIH1cclxuXHJcbiAgcHJvdGVjdGVkIGFzeW5jIGhhbmRsZUNvbnRleHRDaGFuZ2UoZGF0YTogYW55KSB7XHJcbiAgICB0aGlzLnZtLmNvbnRleHQuc2V0KGRhdGEpO1xyXG4gIH1cclxufVxyXG4iLCI8ZGl2IGNsYXNzPVwiYXgtcC00IGF4LXBiLThcIj5cclxuICA8YXhwLXdpZGdldHMtY29udGFpbmVyIFtjb250ZXh0XT1cInZtLmNvbnRleHQoKVwiIChjb250ZXh0Q2hhbmdlKT1cImhhbmRsZUNvbnRleHRDaGFuZ2UoJGV2ZW50KVwiPlxyXG4gICAgPGF4LWZvcm0gI2Zvcm0gW21lc3NhZ2VTdHlsZV09XCInYm90dG9tJ1wiIFt1cGRhdGVPbl09XCInYmx1cidcIj5cclxuICAgICAgPGRpdiBjbGFzcz1cImF4LWdyaWQgIGF4LWdyaWQtY29scy0xMiBheC1nYXAtNFwiPlxyXG4gICAgICAgIEBmb3IoYXR0ciBvZiB2bS5lbGVtZW50cygpOyB0cmFjayAkaW5kZXgpIHtcclxuICAgICAgICA8YXgtZm9ybS1maWVsZCBjbGFzcz1cImF4LWZsZXggYXgtZmxleC1jb2wgYXgtZ2FwLTFcIiBbZ3JpZExheW91dF09XCJhdHRyLmxheW91dCgpXCI+XHJcbiAgICAgICAgICA8YXgtbGFiZWwgY2xhc3M9XCJheC1mb250LXNlbWlib2xkIGF4LXRleHQtc21cIiBbcmVxdWlyZWRdPVwiYXR0ci5pc1JlcXVpcmVkKClcIj57eyBhdHRyLnRpdGxlKClcclxuICAgICAgICAgICAgfX08L2F4LWxhYmVsPlxyXG4gICAgICAgICAgPGF4cC13aWRnZXQtcmVuZGVyZXIgW25vZGVdPVwiYXR0ci5ub2RlKClcIj4gPC9heHAtd2lkZ2V0LXJlbmRlcmVyPlxyXG4gICAgICAgIDwvYXgtZm9ybS1maWVsZD5cclxuICAgICAgICB9XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgPC9heC1mb3JtPlxyXG4gIDwvYXhwLXdpZGdldHMtY29udGFpbmVyPlxyXG4gIDxheC1mb290ZXI+XHJcbiAgICA8YXgtc3VmZml4PlxyXG4gICAgICA8YXgtZHJvcGRvd24tYnV0dG9uIHRleHQ9XCJEaXNjYXJkXCIgKG9uQ2xpY2spPVwiaGFuZGxlU2VjdGlvbkRpc2NhcmQoZm9ybSlcIj5cclxuICAgICAgICA8YXgtYnV0dG9uLWl0ZW0tbGlzdD5cclxuICAgICAgICAgIDxheC1idXR0b24taXRlbSB0ZXh0PVwiUmVzZXRcIiAob25DbGljayk9XCJoYW5kbGVTZWN0aW9uUmVzZXQoZm9ybSlcIj5cclxuICAgICAgICAgICAgPGF4LXByZWZpeD5cclxuICAgICAgICAgICAgICA8YXgtaWNvbiBpY29uPVwiZmEtc29saWQgZmEtcm90YXRlLWxlZnQgZmEtZmxpcC1ob3Jpem9udGFsXCI+PC9heC1pY29uPlxyXG4gICAgICAgICAgICA8L2F4LXByZWZpeD5cclxuICAgICAgICAgIDwvYXgtYnV0dG9uLWl0ZW0+XHJcbiAgICAgICAgPC9heC1idXR0b24taXRlbS1saXN0PlxyXG4gICAgICA8L2F4LWRyb3Bkb3duLWJ1dHRvbj5cclxuICAgICAgPGF4LWJ1dHRvbiBbZGlzYWJsZWRdPVwidm0uaXNJblByb2dyZXNzKClcIiBjb2xvcj1cInByaW1hcnlcIiB0ZXh0PVwiQXBwbHlcIiAob25DbGljayk9XCJoYW5kbGVTYXZlQ2xpY2soZm9ybSlcIj5cclxuICAgICAgICA8YXgtbG9hZGluZyAqbmdJZj1cInZtLmlzSW5Qcm9ncmVzcygpXCI+PC9heC1sb2FkaW5nPlxyXG4gICAgICA8L2F4LWJ1dHRvbj5cclxuICAgIDwvYXgtc3VmZml4PlxyXG4gIDwvYXgtZm9vdGVyPlxyXG48L2Rpdj4iXX0=
@@ -0,0 +1,77 @@
1
+ import { AXActionSheetModule } from '@acorex/components/action-sheet';
2
+ import { AXBreadcrumbsModule } from '@acorex/components/breadcrumbs';
3
+ import { AXButtonModule } from '@acorex/components/button';
4
+ import { AXDecoratorModule } from '@acorex/components/decorators';
5
+ import { AXDialogModule } from '@acorex/components/dialog';
6
+ import { AXDrawerModule } from '@acorex/components/drawer';
7
+ import { AXDropdownModule } from '@acorex/components/dropdown';
8
+ import { AXFormModule } from '@acorex/components/form';
9
+ import { AXLoadingModule } from '@acorex/components/loading';
10
+ import { AXPopoverModule } from '@acorex/components/popover';
11
+ import { AXTabsModule } from '@acorex/components/tabs';
12
+ import { AXPStickyDirective, getChildDrawer, isSmallScreen } from '@acorex/platform/common';
13
+ import { CommonModule } from '@angular/common';
14
+ import { ChangeDetectionStrategy, Component, inject, signal } from '@angular/core';
15
+ import { ActivatedRoute, RouterModule } from '@angular/router';
16
+ import { Store } from '@ngrx/store';
17
+ import { AXPLayoutBuilderModule } from '@acorex/platform/layout/builder';
18
+ import { AXPWidgetsModule } from '@acorex/platform/widgets';
19
+ import { AXPGridLayoutDirective } from '@acorex/platform/common';
20
+ import { AXPEntityDetailListViewComponent } from '../entity-detail-list-view/entity-detail-list-view.component';
21
+ import * as i0 from "@angular/core";
22
+ import * as i1 from "@angular/common";
23
+ import * as i2 from "@angular/router";
24
+ import * as i3 from "@acorex/components/decorators";
25
+ import * as i4 from "@acorex/components/dropdown";
26
+ import * as i5 from "@acorex/components/form";
27
+ import * as i6 from "@acorex/components/drawer";
28
+ import * as i7 from "@acorex/components/tabs";
29
+ import * as i8 from "@acorex/components/button";
30
+ import * as i9 from "@acorex/components/breadcrumbs";
31
+ import * as i10 from "@acorex/platform/layout/builder";
32
+ export class AXPEntityMasterSingleViewComponent {
33
+ constructor() {
34
+ this.activeRoute = inject(ActivatedRoute);
35
+ this.vm = this.activeRoute.snapshot.data['vm'];
36
+ //
37
+ this.store = inject((Store));
38
+ this.isSM = this.store.select(isSmallScreen());
39
+ this.isOpen = this.store.select(getChildDrawer());
40
+ this.selectedTabIndex = signal(0);
41
+ }
42
+ handleActiveTabChanged(e) {
43
+ this.selectedTabIndex.set(e.index);
44
+ }
45
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPEntityMasterSingleViewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
46
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPEntityMasterSingleViewComponent, isStandalone: true, selector: "ng-component", ngImport: i0, template: "<ax-drawer-container>\r\n <!-- <ax-drawer #drawer location=\"start\" [collapsed]=\"!(isOpen | async)\" [mode]=\" (isSM | async) ? 'overlay' : 'push'\"\r\n *ngIf=\"loader.hasSections$ | async\" (collapsedChange)=\"handleCollapsedChange($event)\">\r\n <ax-content class=\"ax-border-e ax-p-6 ax-w-64\">\r\n <p class=\"ax-text-xl ax-font-bold ax-mb-6\">{{loader.sectionTitle}}</p>\r\n <ax-tabs look=\"with-line\" location=\"start\">\r\n @for(tab of (loader.sections$ | async); track tab.name)\r\n {\r\n <ax-tab-item [text]=\"tab.title\" [active]=\"isActive(tab)\" (onClick)=\"handleMenuClick($event,tab)\"\r\n [disabled]=\"editForm.context\">\r\n </ax-tab-item>\r\n }\r\n </ax-tabs>\r\n </ax-content>\r\n </ax-drawer> -->\r\n <ax-content #content class=\"ax-overflow-x-hidden\">\r\n <div\r\n class=\"ax-flex ax-flex-col ax-gap-4 ax-min-h-full ax-px-4 ax-pb-4 md:ax-px-6 ax-bg-surface ax-border-b md:ax-border-0 md:ax-bg-default\">\r\n <div class=\"ax-flex ax-flex-col ax-pt-4 ax-sticky ax-top-0 ax-z-10 ax-transition-all\" #sticky=\"axpSticky\"\r\n [axpSticky]=\"'ax-bg-surface ax-px-6 ax-py-3 -ax-mx-6 ax-shadow-xl'\" [stickyOffset]=\"50\"\r\n [stickyParent]=\"content.getHostElement()\">\r\n <!-------- Begin Toolbar -------->\r\n <div class=\"ax-flex ax-justify-between ax-items-center\">\r\n <!-------- Begin Title -------->\r\n <div class=\"ax-flex ax-gap-1 ax-items-center\">\r\n <div class=\"ax-flex ax-flex-col ax-gap-2 ax-transition\">\r\n <div class=\"ax-text-xl md:ax-text-3xl ax-font-bold\">{{ vm.title()}}</div>\r\n @if(vm.description())\r\n {\r\n <div class=\"ax-text-sm ax-text-neutral-600\" [class.ax-hidden]=\"sticky.isSticky\">{{\r\n vm.description() }}</div>\r\n }\r\n <ax-breadcrumbs class=\"child:ax-font-normal child:ax-text-neutral-400\"\r\n [class.ax-hidden]=\"isSM | async\">\r\n <ng-template #divider>\r\n <i class=\"fa-solid fa-chevron-right ax-text-xs ax-mx-2\"></i>\r\n </ng-template>\r\n @for(b of vm.beardcrumbs();track $index;let last=$last)\r\n {\r\n <ax-breadcrumbs-item [active]=\"last\" [class.!ax-font-semibold]=\"last\"\r\n [class.!ax-text-neutral-600]=\"last\" [routerLink]=\"b.url\">\r\n @if(b.icon)\r\n {\r\n <i [class]=\"b.icon\"></i>\r\n }\r\n {{b.title}}\r\n </ax-breadcrumbs-item>\r\n }\r\n </ax-breadcrumbs>\r\n </div>\r\n </div>\r\n <!-------- Finish Title -------->\r\n <!--------------------------------------------------------------->\r\n <!-- Begin Action Menu -->\r\n <div class=\"ax-flex ax-items-center ax-gap-3\">\r\n @for(tr of vm.primaryActions();track $index)\r\n {\r\n <ax-button [text]=\"tr.title\" [color]=\"tr.color\">\r\n <ax-prefix>\r\n <ax-icon [icon]=\"tr.icon\"> </ax-icon>\r\n </ax-prefix>\r\n </ax-button>\r\n }\r\n @if(vm.secondaryActions().length) {\r\n <ax-button [text]=\"(isSM | async) ? null : 'Actions'\" color=\"ghost\">\r\n <ax-prefix>\r\n <i class=\"fa-solid fa-ellipsis-vertical\"></i>\r\n </ax-prefix>\r\n <ax-dropdown-panel>\r\n <ax-button-item-list>\r\n @for(tr of vm.secondaryActions();track $index)\r\n {\r\n <ng-container>\r\n @if(tr.separated)\r\n {\r\n <ax-divider></ax-divider>\r\n }\r\n <ax-button-item [text]=\"tr.title\" class=\"ax-font-semibold ax-text-{{tr.color}}\"\r\n (onClick)=\"vm.executeCommand(tr.name)\">\r\n <ax-prefix>\r\n <ax-icon [icon]=\"tr.icon\"> </ax-icon>\r\n </ax-prefix>\r\n </ax-button-item>\r\n </ng-container>\r\n }\r\n </ax-button-item-list>\r\n </ax-dropdown-panel>\r\n </ax-button>\r\n }\r\n </div>\r\n <!-- Finish Action Menu -->\r\n </div>\r\n <!----- Finish Toolbar ----->\r\n <!--------------------------------------------------------------->\r\n <ax-tabs [look]=\"'classic'\" class=\"ax-mt-4 ax-font-semibold\">\r\n <ax-tab-item text=\"Overview\">\r\n </ax-tab-item>\r\n <ax-tab-item text=\"History\">\r\n </ax-tab-item>\r\n <ax-tab-item text=\"Comments\">\r\n </ax-tab-item>\r\n </ax-tabs>\r\n </div>\r\n <!-- Begin Sections -->\r\n <div class=\"ax-grid ax-grid-cols-12 ax-gap-4\">\r\n @for(section of vm.sections(); track section.name()) {\r\n <div class=\"ax-card ax-shadow-md ax-mt-2\" [gridLayout]=\"section.layout()\">\r\n <ax-form #form>\r\n <axp-widgets-container [context]=\"vm.context()\">\r\n <div class=\"ax-card-header !ax-py-2 !ax-px-4\">\r\n <p>\r\n <span class=\"!ax-text-lg ax-font-semibold \">{{ section.title()\r\n }}</span>\r\n <br>\r\n @if(section.description()) {\r\n <span class=\"ax-text-sm ax-font-normal ax-text-gray-500\">{{ section.description()\r\n }}</span>\r\n }\r\n </p>\r\n @if(section.editable()) {\r\n <ax-button class=\"ax-xs\" color=\"ghost\" [look]=\"'blank'\"\r\n (onClick)=\"vm.executeCommand('modify-entity-section',section)\">\r\n <ax-icon class=\"fa-solid fa-pen ax-text-gray-600\"> </ax-icon>\r\n </ax-button>\r\n }\r\n </div>\r\n <div class=\"ax-card-body !ax-grid !ax-grid-cols-12 !ax-gap-4\">\r\n @for(attr of section.props(); track $index) {\r\n <div class=\"ax-flex ax-flex-col ax-gap-1\" [gridLayout]=\"attr.layout()\">\r\n <div>\r\n <div>\r\n <span class=\"ax-font-semibold\">{{ attr.title() }}</span>\r\n </div>\r\n </div>\r\n <div class=\"ax-text-neutral-500\">\r\n <axp-widget-renderer [node]=\"attr.node()\"> </axp-widget-renderer>\r\n </div>\r\n </div>\r\n }\r\n </div>\r\n </axp-widgets-container>\r\n </ax-form>\r\n </div>\r\n }\r\n </div>\r\n <!-- Finish Sections -->\r\n <!--------------------------------------------------------------->\r\n @if(vm.relatedEntities().length)\r\n {\r\n <ax-tabs [look]=\"'default'\" class=\"ax-mt-2 ax-font-semibold\" #tab\r\n (onActiveTabChanged)=\"handleActiveTabChanged($event)\">\r\n @for(e of vm.relatedEntities();track $index;let index= $index){\r\n <ax-tab-item [text]=\"e.title()\" [key]=\"index.toString()\">\r\n </ax-tab-item>\r\n }\r\n </ax-tabs>\r\n @for(e of vm.relatedEntities();track $index;let index= $index){\r\n <div [class.ax-hidden]=\"$index!=selectedTabIndex()\">\r\n <axp-entity-detail-list-view [viewModel]=\"e\"></axp-entity-detail-list-view>\r\n </div>\r\n }\r\n }\r\n\r\n </div>\r\n </ax-content>\r\n</ax-drawer-container>", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "ngmodule", type: RouterModule }, { kind: "directive", type: i2.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.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: AXDropdownModule }, { kind: "component", type: i4.AXDropdownPanelComponent, selector: "ax-dropdown-panel", inputs: ["isOpen", "fitParent", "dropdownWidth", "position", "_target", "adaptivityEnabled"], outputs: ["onOpened", "onClosed"] }, { kind: "ngmodule", type: AXPopoverModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "component", type: i5.AXFormComponent, selector: "ax-form", inputs: ["labelMode", "messageStyle", "updateOn"], outputs: ["onValidate", "updateOnChange"] }, { kind: "ngmodule", type: AXActionSheetModule }, { kind: "ngmodule", type: AXDrawerModule }, { kind: "component", type: i6.AXDrawerContainerComponent, selector: "ax-drawer-container" }, { kind: "ngmodule", type: AXDialogModule }, { kind: "ngmodule", type: AXLoadingModule }, { kind: "ngmodule", type: AXTabsModule }, { kind: "component", type: i7.AXTabsComponent, selector: "ax-tabs", inputs: ["look", "location", "fitParent", "minWidth", "content"], outputs: ["onActiveTabChanged"] }, { kind: "component", type: i7.AXTabItemComponent, selector: "ax-tab-item", inputs: ["disabled", "text", "key", "headerTemplate", "active"], outputs: ["disabledChange", "onClick", "onBlur", "onFocus", "activeChange"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i8.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange"] }, { kind: "component", type: i8.AXButtonItemComponent, selector: "ax-button-item", inputs: ["color", "disabled", "text", "selected", "divided", "data", "name"], outputs: ["onClick", "onFocus", "onBlur", "disabledChange"] }, { kind: "component", type: i8.AXButtonItemListComponent, selector: "ax-button-item-list", inputs: ["items"], outputs: ["onItemClick"] }, { kind: "ngmodule", type: AXBreadcrumbsModule }, { kind: "component", type: i9.AXBreadCrumbsComponent, selector: "ax-breadcrumbs" }, { kind: "component", type: i9.AXBreadCrumbsItemComponent, selector: "ax-breadcrumbs-item", inputs: ["disabled", "active"] }, { kind: "ngmodule", type:
47
+ //
48
+ AXPLayoutBuilderModule }, { kind: "component", type: i10.AXPWidgetContainerComponent, selector: "axp-widgets-container", inputs: ["context", "variables", "functions"], outputs: ["contextChange"] }, { kind: "component", type: i10.AXPWidgetRendererComponent, selector: "axp-widget-renderer", inputs: ["node"] }, { kind: "ngmodule", type: AXPWidgetsModule }, { kind: "directive", type: AXPStickyDirective, selector: "[axpSticky]", inputs: ["axpSticky", "stickyOffset", "stickyParent", "stickyTarget"], outputs: ["isStickyChange"], exportAs: ["axpSticky"] }, { kind: "directive", type: AXPGridLayoutDirective, selector: "[gridLayout]", inputs: ["gridLayout"] }, { kind: "component", type:
49
+ //
50
+ AXPEntityDetailListViewComponent, selector: "axp-entity-detail-list-view", inputs: ["viewModel"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
51
+ }
52
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPEntityMasterSingleViewComponent, decorators: [{
53
+ type: Component,
54
+ args: [{ imports: [
55
+ CommonModule,
56
+ RouterModule,
57
+ AXDecoratorModule,
58
+ AXDropdownModule,
59
+ AXPopoverModule,
60
+ AXFormModule,
61
+ AXActionSheetModule,
62
+ AXDrawerModule,
63
+ AXDialogModule,
64
+ AXLoadingModule,
65
+ AXTabsModule,
66
+ AXButtonModule,
67
+ AXBreadcrumbsModule,
68
+ //
69
+ AXPLayoutBuilderModule,
70
+ AXPWidgetsModule,
71
+ AXPStickyDirective,
72
+ AXPGridLayoutDirective,
73
+ //
74
+ AXPEntityDetailListViewComponent
75
+ ], standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, template: "<ax-drawer-container>\r\n <!-- <ax-drawer #drawer location=\"start\" [collapsed]=\"!(isOpen | async)\" [mode]=\" (isSM | async) ? 'overlay' : 'push'\"\r\n *ngIf=\"loader.hasSections$ | async\" (collapsedChange)=\"handleCollapsedChange($event)\">\r\n <ax-content class=\"ax-border-e ax-p-6 ax-w-64\">\r\n <p class=\"ax-text-xl ax-font-bold ax-mb-6\">{{loader.sectionTitle}}</p>\r\n <ax-tabs look=\"with-line\" location=\"start\">\r\n @for(tab of (loader.sections$ | async); track tab.name)\r\n {\r\n <ax-tab-item [text]=\"tab.title\" [active]=\"isActive(tab)\" (onClick)=\"handleMenuClick($event,tab)\"\r\n [disabled]=\"editForm.context\">\r\n </ax-tab-item>\r\n }\r\n </ax-tabs>\r\n </ax-content>\r\n </ax-drawer> -->\r\n <ax-content #content class=\"ax-overflow-x-hidden\">\r\n <div\r\n class=\"ax-flex ax-flex-col ax-gap-4 ax-min-h-full ax-px-4 ax-pb-4 md:ax-px-6 ax-bg-surface ax-border-b md:ax-border-0 md:ax-bg-default\">\r\n <div class=\"ax-flex ax-flex-col ax-pt-4 ax-sticky ax-top-0 ax-z-10 ax-transition-all\" #sticky=\"axpSticky\"\r\n [axpSticky]=\"'ax-bg-surface ax-px-6 ax-py-3 -ax-mx-6 ax-shadow-xl'\" [stickyOffset]=\"50\"\r\n [stickyParent]=\"content.getHostElement()\">\r\n <!-------- Begin Toolbar -------->\r\n <div class=\"ax-flex ax-justify-between ax-items-center\">\r\n <!-------- Begin Title -------->\r\n <div class=\"ax-flex ax-gap-1 ax-items-center\">\r\n <div class=\"ax-flex ax-flex-col ax-gap-2 ax-transition\">\r\n <div class=\"ax-text-xl md:ax-text-3xl ax-font-bold\">{{ vm.title()}}</div>\r\n @if(vm.description())\r\n {\r\n <div class=\"ax-text-sm ax-text-neutral-600\" [class.ax-hidden]=\"sticky.isSticky\">{{\r\n vm.description() }}</div>\r\n }\r\n <ax-breadcrumbs class=\"child:ax-font-normal child:ax-text-neutral-400\"\r\n [class.ax-hidden]=\"isSM | async\">\r\n <ng-template #divider>\r\n <i class=\"fa-solid fa-chevron-right ax-text-xs ax-mx-2\"></i>\r\n </ng-template>\r\n @for(b of vm.beardcrumbs();track $index;let last=$last)\r\n {\r\n <ax-breadcrumbs-item [active]=\"last\" [class.!ax-font-semibold]=\"last\"\r\n [class.!ax-text-neutral-600]=\"last\" [routerLink]=\"b.url\">\r\n @if(b.icon)\r\n {\r\n <i [class]=\"b.icon\"></i>\r\n }\r\n {{b.title}}\r\n </ax-breadcrumbs-item>\r\n }\r\n </ax-breadcrumbs>\r\n </div>\r\n </div>\r\n <!-------- Finish Title -------->\r\n <!--------------------------------------------------------------->\r\n <!-- Begin Action Menu -->\r\n <div class=\"ax-flex ax-items-center ax-gap-3\">\r\n @for(tr of vm.primaryActions();track $index)\r\n {\r\n <ax-button [text]=\"tr.title\" [color]=\"tr.color\">\r\n <ax-prefix>\r\n <ax-icon [icon]=\"tr.icon\"> </ax-icon>\r\n </ax-prefix>\r\n </ax-button>\r\n }\r\n @if(vm.secondaryActions().length) {\r\n <ax-button [text]=\"(isSM | async) ? null : 'Actions'\" color=\"ghost\">\r\n <ax-prefix>\r\n <i class=\"fa-solid fa-ellipsis-vertical\"></i>\r\n </ax-prefix>\r\n <ax-dropdown-panel>\r\n <ax-button-item-list>\r\n @for(tr of vm.secondaryActions();track $index)\r\n {\r\n <ng-container>\r\n @if(tr.separated)\r\n {\r\n <ax-divider></ax-divider>\r\n }\r\n <ax-button-item [text]=\"tr.title\" class=\"ax-font-semibold ax-text-{{tr.color}}\"\r\n (onClick)=\"vm.executeCommand(tr.name)\">\r\n <ax-prefix>\r\n <ax-icon [icon]=\"tr.icon\"> </ax-icon>\r\n </ax-prefix>\r\n </ax-button-item>\r\n </ng-container>\r\n }\r\n </ax-button-item-list>\r\n </ax-dropdown-panel>\r\n </ax-button>\r\n }\r\n </div>\r\n <!-- Finish Action Menu -->\r\n </div>\r\n <!----- Finish Toolbar ----->\r\n <!--------------------------------------------------------------->\r\n <ax-tabs [look]=\"'classic'\" class=\"ax-mt-4 ax-font-semibold\">\r\n <ax-tab-item text=\"Overview\">\r\n </ax-tab-item>\r\n <ax-tab-item text=\"History\">\r\n </ax-tab-item>\r\n <ax-tab-item text=\"Comments\">\r\n </ax-tab-item>\r\n </ax-tabs>\r\n </div>\r\n <!-- Begin Sections -->\r\n <div class=\"ax-grid ax-grid-cols-12 ax-gap-4\">\r\n @for(section of vm.sections(); track section.name()) {\r\n <div class=\"ax-card ax-shadow-md ax-mt-2\" [gridLayout]=\"section.layout()\">\r\n <ax-form #form>\r\n <axp-widgets-container [context]=\"vm.context()\">\r\n <div class=\"ax-card-header !ax-py-2 !ax-px-4\">\r\n <p>\r\n <span class=\"!ax-text-lg ax-font-semibold \">{{ section.title()\r\n }}</span>\r\n <br>\r\n @if(section.description()) {\r\n <span class=\"ax-text-sm ax-font-normal ax-text-gray-500\">{{ section.description()\r\n }}</span>\r\n }\r\n </p>\r\n @if(section.editable()) {\r\n <ax-button class=\"ax-xs\" color=\"ghost\" [look]=\"'blank'\"\r\n (onClick)=\"vm.executeCommand('modify-entity-section',section)\">\r\n <ax-icon class=\"fa-solid fa-pen ax-text-gray-600\"> </ax-icon>\r\n </ax-button>\r\n }\r\n </div>\r\n <div class=\"ax-card-body !ax-grid !ax-grid-cols-12 !ax-gap-4\">\r\n @for(attr of section.props(); track $index) {\r\n <div class=\"ax-flex ax-flex-col ax-gap-1\" [gridLayout]=\"attr.layout()\">\r\n <div>\r\n <div>\r\n <span class=\"ax-font-semibold\">{{ attr.title() }}</span>\r\n </div>\r\n </div>\r\n <div class=\"ax-text-neutral-500\">\r\n <axp-widget-renderer [node]=\"attr.node()\"> </axp-widget-renderer>\r\n </div>\r\n </div>\r\n }\r\n </div>\r\n </axp-widgets-container>\r\n </ax-form>\r\n </div>\r\n }\r\n </div>\r\n <!-- Finish Sections -->\r\n <!--------------------------------------------------------------->\r\n @if(vm.relatedEntities().length)\r\n {\r\n <ax-tabs [look]=\"'default'\" class=\"ax-mt-2 ax-font-semibold\" #tab\r\n (onActiveTabChanged)=\"handleActiveTabChanged($event)\">\r\n @for(e of vm.relatedEntities();track $index;let index= $index){\r\n <ax-tab-item [text]=\"e.title()\" [key]=\"index.toString()\">\r\n </ax-tab-item>\r\n }\r\n </ax-tabs>\r\n @for(e of vm.relatedEntities();track $index;let index= $index){\r\n <div [class.ax-hidden]=\"$index!=selectedTabIndex()\">\r\n <axp-entity-detail-list-view [viewModel]=\"e\"></axp-entity-detail-list-view>\r\n </div>\r\n }\r\n }\r\n\r\n </div>\r\n </ax-content>\r\n</ax-drawer-container>" }]
76
+ }] });
77
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW50aXR5LW1hc3Rlci1zaW5nbGUtdmlldy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3RoZW1lcy9kZWZhdWx0L3NyYy9saWIvbGF5b3V0cy9lbnRpdHktbGF5b3V0cy9lbnRpdHktbWFzdGVyLXNpbmdsZS12aWV3L2VudGl0eS1tYXN0ZXItc2luZ2xlLXZpZXcuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS90aGVtZXMvZGVmYXVsdC9zcmMvbGliL2xheW91dHMvZW50aXR5LWxheW91dHMvZW50aXR5LW1hc3Rlci1zaW5nbGUtdmlldy9lbnRpdHktbWFzdGVyLXNpbmdsZS12aWV3LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ3RFLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBQ3JFLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUMzRCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUNsRSxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sMkJBQTJCLENBQUM7QUFDM0QsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBQzNELE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBQy9ELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUN2RCxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFDN0QsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBQzdELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUN2RCxPQUFPLEVBQXVCLGtCQUFrQixFQUFFLGNBQWMsRUFBRSxhQUFhLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUNqSCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ25GLE9BQU8sRUFBRSxjQUFjLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0QsT0FBTyxFQUFFLEtBQUssRUFBRSxNQUFNLGFBQWEsQ0FBQztBQUNwQyxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUN6RSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUM1RCxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUNqRSxPQUFPLEVBQUUsZ0NBQWdDLEVBQUUsTUFBTSw4REFBOEQsQ0FBQzs7Ozs7Ozs7Ozs7O0FBNkJoSCxNQUFNLE9BQU8sa0NBQWtDO0lBM0IvQztRQTRCWSxnQkFBVyxHQUFHLE1BQU0sQ0FBQyxjQUFjLENBQUMsQ0FBQztRQUMxQixPQUFFLEdBQUcsSUFBSSxDQUFDLFdBQVcsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBbUMsQ0FBQztRQUMvRixFQUFFO1FBQ00sVUFBSyxHQUFHLE1BQU0sQ0FBQyxDQUFBLEtBQTBCLENBQUEsQ0FBQyxDQUFDO1FBQ3pDLFNBQUksR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sQ0FBQyxhQUFhLEVBQUUsQ0FBQyxDQUFDO1FBQzFDLFdBQU0sR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sQ0FBQyxjQUFjLEVBQUUsQ0FBQyxDQUFDO1FBRzdDLHFCQUFnQixHQUFHLE1BQU0sQ0FBQyxDQUFDLENBQUMsQ0FBQztLQUsxQztJQUhHLHNCQUFzQixDQUFDLENBQU07UUFDekIsSUFBSSxDQUFDLGdCQUFnQixDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDdkMsQ0FBQzs4R0FiUSxrQ0FBa0M7a0dBQWxDLGtDQUFrQyx3RUNoRC9DLHVsVEFxS3NCLDJDRDdJZCxZQUFZLG1GQUNaLFlBQVksK1FBQ1osaUJBQWlCLHVWQUNqQixnQkFBZ0Isd1BBQ2hCLGVBQWUsOEJBQ2YsWUFBWSxrTUFDWixtQkFBbUIsOEJBQ25CLGNBQWMsMkhBQ2QsY0FBYyw4QkFDZCxlQUFlLDhCQUNmLFlBQVksa2FBQ1osY0FBYyxvckJBQ2QsbUJBQW1CO2dCQUNuQixFQUFFO2dCQUNGLHNCQUFzQiwwVEFDdEIsZ0JBQWdCLCtCQUNoQixrQkFBa0IscUxBQ2xCLHNCQUFzQjtnQkFDdEIsRUFBRTtnQkFDRixnQ0FBZ0M7OzJGQUszQixrQ0FBa0M7a0JBM0I5QyxTQUFTOzhCQUVHO3dCQUNMLFlBQVk7d0JBQ1osWUFBWTt3QkFDWixpQkFBaUI7d0JBQ2pCLGdCQUFnQjt3QkFDaEIsZUFBZTt3QkFDZixZQUFZO3dCQUNaLG1CQUFtQjt3QkFDbkIsY0FBYzt3QkFDZCxjQUFjO3dCQUNkLGVBQWU7d0JBQ2YsWUFBWTt3QkFDWixjQUFjO3dCQUNkLG1CQUFtQjt3QkFDbkIsRUFBRTt3QkFDRixzQkFBc0I7d0JBQ3RCLGdCQUFnQjt3QkFDaEIsa0JBQWtCO3dCQUNsQixzQkFBc0I7d0JBQ3RCLEVBQUU7d0JBQ0YsZ0NBQWdDO3FCQUNuQyxjQUNXLElBQUksbUJBQ0MsdUJBQXVCLENBQUMsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFYQWN0aW9uU2hlZXRNb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvYWN0aW9uLXNoZWV0JztcclxuaW1wb3J0IHsgQVhCcmVhZGNydW1ic01vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9icmVhZGNydW1icyc7XHJcbmltcG9ydCB7IEFYQnV0dG9uTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL2J1dHRvbic7XHJcbmltcG9ydCB7IEFYRGVjb3JhdG9yTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL2RlY29yYXRvcnMnO1xyXG5pbXBvcnQgeyBBWERpYWxvZ01vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9kaWFsb2cnO1xyXG5pbXBvcnQgeyBBWERyYXdlck1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9kcmF3ZXInO1xyXG5pbXBvcnQgeyBBWERyb3Bkb3duTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL2Ryb3Bkb3duJztcclxuaW1wb3J0IHsgQVhGb3JtTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL2Zvcm0nO1xyXG5pbXBvcnQgeyBBWExvYWRpbmdNb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvbG9hZGluZyc7XHJcbmltcG9ydCB7IEFYUG9wb3Zlck1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9wb3BvdmVyJztcclxuaW1wb3J0IHsgQVhUYWJzTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL3RhYnMnO1xyXG5pbXBvcnQgeyBBWFBBZG1pbkxheW91dFN0YXRlLCBBWFBTdGlja3lEaXJlY3RpdmUsIGdldENoaWxkRHJhd2VyLCBpc1NtYWxsU2NyZWVuIH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9jb21tb24nO1xyXG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xyXG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBpbmplY3QsIHNpZ25hbCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBBY3RpdmF0ZWRSb3V0ZSwgUm91dGVyTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcclxuaW1wb3J0IHsgU3RvcmUgfSBmcm9tICdAbmdyeC9zdG9yZSc7XHJcbmltcG9ydCB7IEFYUExheW91dEJ1aWxkZXJNb2R1bGUgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9idWlsZGVyJztcclxuaW1wb3J0IHsgQVhQV2lkZ2V0c01vZHVsZSB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vd2lkZ2V0cyc7XHJcbmltcG9ydCB7IEFYUEdyaWRMYXlvdXREaXJlY3RpdmUgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2NvbW1vbic7XHJcbmltcG9ydCB7IEFYUEVudGl0eURldGFpbExpc3RWaWV3Q29tcG9uZW50IH0gZnJvbSAnLi4vZW50aXR5LWRldGFpbC1saXN0LXZpZXcvZW50aXR5LWRldGFpbC1saXN0LXZpZXcuY29tcG9uZW50JztcclxuaW1wb3J0IHsgQVhQRW50aXR5TWFzdGVyU2luZ2xlVmlld01vZGVsIH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvZW50aXR5JztcclxuQENvbXBvbmVudCh7XHJcbiAgICB0ZW1wbGF0ZVVybDogJy4vZW50aXR5LW1hc3Rlci1zaW5nbGUtdmlldy5jb21wb25lbnQuaHRtbCcsXHJcbiAgICBpbXBvcnRzOiBbXHJcbiAgICAgICAgQ29tbW9uTW9kdWxlLFxyXG4gICAgICAgIFJvdXRlck1vZHVsZSxcclxuICAgICAgICBBWERlY29yYXRvck1vZHVsZSxcclxuICAgICAgICBBWERyb3Bkb3duTW9kdWxlLFxyXG4gICAgICAgIEFYUG9wb3Zlck1vZHVsZSxcclxuICAgICAgICBBWEZvcm1Nb2R1bGUsXHJcbiAgICAgICAgQVhBY3Rpb25TaGVldE1vZHVsZSxcclxuICAgICAgICBBWERyYXdlck1vZHVsZSxcclxuICAgICAgICBBWERpYWxvZ01vZHVsZSxcclxuICAgICAgICBBWExvYWRpbmdNb2R1bGUsXHJcbiAgICAgICAgQVhUYWJzTW9kdWxlLFxyXG4gICAgICAgIEFYQnV0dG9uTW9kdWxlLFxyXG4gICAgICAgIEFYQnJlYWRjcnVtYnNNb2R1bGUsXHJcbiAgICAgICAgLy9cclxuICAgICAgICBBWFBMYXlvdXRCdWlsZGVyTW9kdWxlLFxyXG4gICAgICAgIEFYUFdpZGdldHNNb2R1bGUsXHJcbiAgICAgICAgQVhQU3RpY2t5RGlyZWN0aXZlLFxyXG4gICAgICAgIEFYUEdyaWRMYXlvdXREaXJlY3RpdmUsXHJcbiAgICAgICAgLy9cclxuICAgICAgICBBWFBFbnRpdHlEZXRhaWxMaXN0Vmlld0NvbXBvbmVudFxyXG4gICAgXSxcclxuICAgIHN0YW5kYWxvbmU6IHRydWUsXHJcbiAgICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcclxufSlcclxuZXhwb3J0IGNsYXNzIEFYUEVudGl0eU1hc3RlclNpbmdsZVZpZXdDb21wb25lbnQge1xyXG4gICAgcHJpdmF0ZSBhY3RpdmVSb3V0ZSA9IGluamVjdChBY3RpdmF0ZWRSb3V0ZSk7XHJcbiAgICBwcm90ZWN0ZWQgcmVhZG9ubHkgdm0gPSB0aGlzLmFjdGl2ZVJvdXRlLnNuYXBzaG90LmRhdGFbJ3ZtJ10gYXMgQVhQRW50aXR5TWFzdGVyU2luZ2xlVmlld01vZGVsO1xyXG4gICAgLy9cclxuICAgIHByaXZhdGUgc3RvcmUgPSBpbmplY3QoU3RvcmU8QVhQQWRtaW5MYXlvdXRTdGF0ZT4pO1xyXG4gICAgcHJvdGVjdGVkIGlzU00gPSB0aGlzLnN0b3JlLnNlbGVjdChpc1NtYWxsU2NyZWVuKCkpO1xyXG4gICAgcHJvdGVjdGVkIGlzT3BlbiA9IHRoaXMuc3RvcmUuc2VsZWN0KGdldENoaWxkRHJhd2VyKCkpO1xyXG5cclxuXHJcbiAgICBwcm90ZWN0ZWQgc2VsZWN0ZWRUYWJJbmRleCA9IHNpZ25hbCgwKTtcclxuXHJcbiAgICBoYW5kbGVBY3RpdmVUYWJDaGFuZ2VkKGU6IGFueSkge1xyXG4gICAgICAgIHRoaXMuc2VsZWN0ZWRUYWJJbmRleC5zZXQoZS5pbmRleCk7XHJcbiAgICB9XHJcbn0iLCI8YXgtZHJhd2VyLWNvbnRhaW5lcj5cclxuICAgIDwhLS0gPGF4LWRyYXdlciAjZHJhd2VyIGxvY2F0aW9uPVwic3RhcnRcIiBbY29sbGFwc2VkXT1cIiEoaXNPcGVuIHwgYXN5bmMpXCIgW21vZGVdPVwiIChpc1NNIHwgYXN5bmMpID8gJ292ZXJsYXknIDogJ3B1c2gnXCJcclxuICAgICAgKm5nSWY9XCJsb2FkZXIuaGFzU2VjdGlvbnMkIHwgYXN5bmNcIiAoY29sbGFwc2VkQ2hhbmdlKT1cImhhbmRsZUNvbGxhcHNlZENoYW5nZSgkZXZlbnQpXCI+XHJcbiAgICAgIDxheC1jb250ZW50IGNsYXNzPVwiYXgtYm9yZGVyLWUgYXgtcC02IGF4LXctNjRcIj5cclxuICAgICAgICA8cCBjbGFzcz1cImF4LXRleHQteGwgYXgtZm9udC1ib2xkIGF4LW1iLTZcIj57e2xvYWRlci5zZWN0aW9uVGl0bGV9fTwvcD5cclxuICAgICAgICA8YXgtdGFicyBsb29rPVwid2l0aC1saW5lXCIgbG9jYXRpb249XCJzdGFydFwiPlxyXG4gICAgICAgICAgQGZvcih0YWIgb2YgKGxvYWRlci5zZWN0aW9ucyQgfCBhc3luYyk7IHRyYWNrIHRhYi5uYW1lKVxyXG4gICAgICAgICAge1xyXG4gICAgICAgICAgPGF4LXRhYi1pdGVtIFt0ZXh0XT1cInRhYi50aXRsZVwiIFthY3RpdmVdPVwiaXNBY3RpdmUodGFiKVwiIChvbkNsaWNrKT1cImhhbmRsZU1lbnVDbGljaygkZXZlbnQsdGFiKVwiXHJcbiAgICAgICAgICAgIFtkaXNhYmxlZF09XCJlZGl0Rm9ybS5jb250ZXh0XCI+XHJcbiAgICAgICAgICA8L2F4LXRhYi1pdGVtPlxyXG4gICAgICAgICAgfVxyXG4gICAgICAgIDwvYXgtdGFicz5cclxuICAgICAgPC9heC1jb250ZW50PlxyXG4gICAgPC9heC1kcmF3ZXI+IC0tPlxyXG4gICAgPGF4LWNvbnRlbnQgI2NvbnRlbnQgY2xhc3M9XCJheC1vdmVyZmxvdy14LWhpZGRlblwiPlxyXG4gICAgICAgIDxkaXZcclxuICAgICAgICAgICAgY2xhc3M9XCJheC1mbGV4IGF4LWZsZXgtY29sIGF4LWdhcC00IGF4LW1pbi1oLWZ1bGwgYXgtcHgtNCBheC1wYi00IG1kOmF4LXB4LTYgYXgtYmctc3VyZmFjZSAgIGF4LWJvcmRlci1iIG1kOmF4LWJvcmRlci0wIG1kOmF4LWJnLWRlZmF1bHRcIj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImF4LWZsZXggYXgtZmxleC1jb2wgYXgtcHQtNCBheC1zdGlja3kgYXgtdG9wLTAgYXgtei0xMCBheC10cmFuc2l0aW9uLWFsbFwiICNzdGlja3k9XCJheHBTdGlja3lcIlxyXG4gICAgICAgICAgICAgICAgW2F4cFN0aWNreV09XCInYXgtYmctc3VyZmFjZSBheC1weC02IGF4LXB5LTMgLWF4LW14LTYgYXgtc2hhZG93LXhsJ1wiIFtzdGlja3lPZmZzZXRdPVwiNTBcIlxyXG4gICAgICAgICAgICAgICAgW3N0aWNreVBhcmVudF09XCJjb250ZW50LmdldEhvc3RFbGVtZW50KClcIj5cclxuICAgICAgICAgICAgICAgIDwhLS0tLS0tLS0gQmVnaW4gVG9vbGJhciAgLS0tLS0tLS0+XHJcbiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiYXgtZmxleCBheC1qdXN0aWZ5LWJldHdlZW4gYXgtaXRlbXMtY2VudGVyXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgPCEtLS0tLS0tLSBCZWdpbiBUaXRsZSAgLS0tLS0tLS0+XHJcbiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImF4LWZsZXggYXgtZ2FwLTEgYXgtaXRlbXMtY2VudGVyXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJheC1mbGV4IGF4LWZsZXgtY29sIGF4LWdhcC0yIGF4LXRyYW5zaXRpb25cIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJheC10ZXh0LXhsIG1kOmF4LXRleHQtM3hsIGF4LWZvbnQtYm9sZFwiPnt7IHZtLnRpdGxlKCl9fTwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgQGlmKHZtLmRlc2NyaXB0aW9uKCkpXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiYXgtdGV4dC1zbSBheC10ZXh0LW5ldXRyYWwtNjAwXCIgW2NsYXNzLmF4LWhpZGRlbl09XCJzdGlja3kuaXNTdGlja3lcIj57e1xyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHZtLmRlc2NyaXB0aW9uKCkgfX08L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxheC1icmVhZGNydW1icyBjbGFzcz1cImNoaWxkOmF4LWZvbnQtbm9ybWFsIGNoaWxkOmF4LXRleHQtbmV1dHJhbC00MDBcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtjbGFzcy5heC1oaWRkZW5dPVwiaXNTTSB8IGFzeW5jXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG5nLXRlbXBsYXRlICNkaXZpZGVyPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aSBjbGFzcz1cImZhLXNvbGlkIGZhLWNoZXZyb24tcmlnaHQgYXgtdGV4dC14cyBheC1teC0yXCI+PC9pPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgQGZvcihiIG9mIHZtLmJlYXJkY3J1bWJzKCk7dHJhY2sgJGluZGV4O2xldCBsYXN0PSRsYXN0KVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YXgtYnJlYWRjcnVtYnMtaXRlbSBbYWN0aXZlXT1cImxhc3RcIiBbY2xhc3MuIWF4LWZvbnQtc2VtaWJvbGRdPVwibGFzdFwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtjbGFzcy4hYXgtdGV4dC1uZXV0cmFsLTYwMF09XCJsYXN0XCIgW3JvdXRlckxpbmtdPVwiYi51cmxcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgQGlmKGIuaWNvbilcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aSBbY2xhc3NdPVwiYi5pY29uXCI+PC9pPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHt7Yi50aXRsZX19XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9heC1icmVhZGNydW1icy1pdGVtPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvYXgtYnJlYWRjcnVtYnM+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgIDwhLS0tLS0tLS0gRmluaXNoIFRpdGxlICAtLS0tLS0tLT5cclxuICAgICAgICAgICAgICAgICAgICA8IS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLT5cclxuICAgICAgICAgICAgICAgICAgICA8IS0tIEJlZ2luIEFjdGlvbiBNZW51ICAtLT5cclxuICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiYXgtZmxleCBheC1pdGVtcy1jZW50ZXIgYXgtZ2FwLTNcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgQGZvcih0ciBvZiB2bS5wcmltYXJ5QWN0aW9ucygpO3RyYWNrICRpbmRleClcclxuICAgICAgICAgICAgICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgICAgICAgICA8YXgtYnV0dG9uIFt0ZXh0XT1cInRyLnRpdGxlXCIgW2NvbG9yXT1cInRyLmNvbG9yXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YXgtcHJlZml4PlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxheC1pY29uIFtpY29uXT1cInRyLmljb25cIj4gPC9heC1pY29uPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9heC1wcmVmaXg+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwvYXgtYnV0dG9uPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIEBpZih2bS5zZWNvbmRhcnlBY3Rpb25zKCkubGVuZ3RoKSB7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxheC1idXR0b24gW3RleHRdPVwiKGlzU00gfCBhc3luYykgPyBudWxsIDogJ0FjdGlvbnMnXCIgY29sb3I9XCJnaG9zdFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGF4LXByZWZpeD5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aSBjbGFzcz1cImZhLXNvbGlkIGZhLWVsbGlwc2lzLXZlcnRpY2FsXCI+PC9pPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9heC1wcmVmaXg+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YXgtZHJvcGRvd24tcGFuZWw+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGF4LWJ1dHRvbi1pdGVtLWxpc3Q+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIEBmb3IodHIgb2Ygdm0uc2Vjb25kYXJ5QWN0aW9ucygpO3RyYWNrICRpbmRleClcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgQGlmKHRyLnNlcGFyYXRlZClcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxheC1kaXZpZGVyPjwvYXgtZGl2aWRlcj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxheC1idXR0b24taXRlbSBbdGV4dF09XCJ0ci50aXRsZVwiIGNsYXNzPVwiYXgtZm9udC1zZW1pYm9sZCBheC10ZXh0LXt7dHIuY29sb3J9fVwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgKG9uQ2xpY2spPVwidm0uZXhlY3V0ZUNvbW1hbmQodHIubmFtZSlcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YXgtcHJlZml4PlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YXgtaWNvbiBbaWNvbl09XCJ0ci5pY29uXCI+IDwvYXgtaWNvbj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2F4LXByZWZpeD5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvYXgtYnV0dG9uLWl0ZW0+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9heC1idXR0b24taXRlbS1saXN0PlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9heC1kcm9wZG93bi1wYW5lbD5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPC9heC1idXR0b24+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICA8IS0tIEZpbmlzaCBBY3Rpb24gTWVudSAgLS0+XHJcbiAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgIDwhLS0tLS0gRmluaXNoIFRvb2xiYXIgIC0tLS0tPlxyXG4gICAgICAgICAgICAgICAgPCEtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0+XHJcbiAgICAgICAgICAgICAgICA8YXgtdGFicyBbbG9va109XCInY2xhc3NpYydcIiBjbGFzcz1cImF4LW10LTQgYXgtZm9udC1zZW1pYm9sZFwiPlxyXG4gICAgICAgICAgICAgICAgICAgIDxheC10YWItaXRlbSB0ZXh0PVwiT3ZlcnZpZXdcIj5cclxuICAgICAgICAgICAgICAgICAgICA8L2F4LXRhYi1pdGVtPlxyXG4gICAgICAgICAgICAgICAgICAgIDxheC10YWItaXRlbSB0ZXh0PVwiSGlzdG9yeVwiPlxyXG4gICAgICAgICAgICAgICAgICAgIDwvYXgtdGFiLWl0ZW0+XHJcbiAgICAgICAgICAgICAgICAgICAgPGF4LXRhYi1pdGVtIHRleHQ9XCJDb21tZW50c1wiPlxyXG4gICAgICAgICAgICAgICAgICAgIDwvYXgtdGFiLWl0ZW0+XHJcbiAgICAgICAgICAgICAgICA8L2F4LXRhYnM+XHJcbiAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICA8IS0tIEJlZ2luIFNlY3Rpb25zIC0tPlxyXG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwiYXgtZ3JpZCAgYXgtZ3JpZC1jb2xzLTEyICAgICBheC1nYXAtNFwiPlxyXG4gICAgICAgICAgICAgICAgQGZvcihzZWN0aW9uIG9mIHZtLnNlY3Rpb25zKCk7IHRyYWNrIHNlY3Rpb24ubmFtZSgpKSB7XHJcbiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiYXgtY2FyZCBheC1zaGFkb3ctbWQgYXgtbXQtMlwiIFtncmlkTGF5b3V0XT1cInNlY3Rpb24ubGF5b3V0KClcIj5cclxuICAgICAgICAgICAgICAgICAgICA8YXgtZm9ybSAjZm9ybT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPGF4cC13aWRnZXRzLWNvbnRhaW5lciBbY29udGV4dF09XCJ2bS5jb250ZXh0KClcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJheC1jYXJkLWhlYWRlciAhYXgtcHktMiAhYXgtcHgtNFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxwPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cIiFheC10ZXh0LWxnIGF4LWZvbnQtc2VtaWJvbGQgXCI+e3sgc2VjdGlvbi50aXRsZSgpXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9fTwvc3Bhbj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGJyPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBAaWYoc2VjdGlvbi5kZXNjcmlwdGlvbigpKSB7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwiYXgtdGV4dC1zbSBheC1mb250LW5vcm1hbCBheC10ZXh0LWdyYXktNTAwXCI+e3sgc2VjdGlvbi5kZXNjcmlwdGlvbigpXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9fTwvc3Bhbj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvcD5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBAaWYoc2VjdGlvbi5lZGl0YWJsZSgpKSB7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGF4LWJ1dHRvbiBjbGFzcz1cImF4LXhzXCIgY29sb3I9XCJnaG9zdFwiIFtsb29rXT1cIidibGFuaydcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAob25DbGljayk9XCJ2bS5leGVjdXRlQ29tbWFuZCgnbW9kaWZ5LWVudGl0eS1zZWN0aW9uJyxzZWN0aW9uKVwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YXgtaWNvbiBjbGFzcz1cImZhLXNvbGlkIGZhLXBlbiBheC10ZXh0LWdyYXktNjAwXCI+IDwvYXgtaWNvbj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2F4LWJ1dHRvbj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJheC1jYXJkLWJvZHkgIWF4LWdyaWQgICFheC1ncmlkLWNvbHMtMTIgICFheC1nYXAtNFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIEBmb3IoYXR0ciBvZiBzZWN0aW9uLnByb3BzKCk7IHRyYWNrICRpbmRleCkge1xyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJheC1mbGV4IGF4LWZsZXgtY29sIGF4LWdhcC0xXCIgW2dyaWRMYXlvdXRdPVwiYXR0ci5sYXlvdXQoKVwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cImF4LWZvbnQtc2VtaWJvbGRcIj57eyBhdHRyLnRpdGxlKCkgfX08L3NwYW4+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJheC10ZXh0LW5ldXRyYWwtNTAwXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YXhwLXdpZGdldC1yZW5kZXJlciBbbm9kZV09XCJhdHRyLm5vZGUoKVwiPiA8L2F4cC13aWRnZXQtcmVuZGVyZXI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8L2F4cC13aWRnZXRzLWNvbnRhaW5lcj5cclxuICAgICAgICAgICAgICAgICAgICA8L2F4LWZvcm0+XHJcbiAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgIDwhLS0gRmluaXNoIFNlY3Rpb25zICAtLT5cclxuICAgICAgICAgICAgPCEtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0+XHJcbiAgICAgICAgICAgIEBpZih2bS5yZWxhdGVkRW50aXRpZXMoKS5sZW5ndGgpXHJcbiAgICAgICAgICAgIHtcclxuICAgICAgICAgICAgPGF4LXRhYnMgW2xvb2tdPVwiJ2RlZmF1bHQnXCIgY2xhc3M9XCJheC1tdC0yIGF4LWZvbnQtc2VtaWJvbGRcIiAjdGFiXHJcbiAgICAgICAgICAgICAgICAob25BY3RpdmVUYWJDaGFuZ2VkKT1cImhhbmRsZUFjdGl2ZVRhYkNoYW5nZWQoJGV2ZW50KVwiPlxyXG4gICAgICAgICAgICAgICAgQGZvcihlIG9mIHZtLnJlbGF0ZWRFbnRpdGllcygpO3RyYWNrICRpbmRleDtsZXQgaW5kZXg9ICRpbmRleCl7XHJcbiAgICAgICAgICAgICAgICA8YXgtdGFiLWl0ZW0gW3RleHRdPVwiZS50aXRsZSgpXCIgW2tleV09XCJpbmRleC50b1N0cmluZygpXCI+XHJcbiAgICAgICAgICAgICAgICA8L2F4LXRhYi1pdGVtPlxyXG4gICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICA8L2F4LXRhYnM+XHJcbiAgICAgICAgICAgIEBmb3IoZSBvZiB2bS5yZWxhdGVkRW50aXRpZXMoKTt0cmFjayAkaW5kZXg7bGV0IGluZGV4PSAkaW5kZXgpe1xyXG4gICAgICAgICAgICA8ZGl2IFtjbGFzcy5heC1oaWRkZW5dPVwiJGluZGV4IT1zZWxlY3RlZFRhYkluZGV4KClcIj5cclxuICAgICAgICAgICAgICAgIDxheHAtZW50aXR5LWRldGFpbC1saXN0LXZpZXcgW3ZpZXdNb2RlbF09XCJlXCI+PC9heHAtZW50aXR5LWRldGFpbC1saXN0LXZpZXc+XHJcbiAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICB9XHJcbiAgICAgICAgICAgIH1cclxuXHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICA8L2F4LWNvbnRlbnQ+XHJcbjwvYXgtZHJhd2VyLWNvbnRhaW5lcj4iXX0=
@@ -0,0 +1,14 @@
1
+ import { Component, ViewEncapsulation } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@acorex/platform/common";
4
+ export class AXPRootLayoutFooterComponent {
5
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPRootLayoutFooterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
6
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPRootLayoutFooterComponent, selector: "axp-dashboard-admin-footer", host: { classAttribute: "ax-h-10 ax-flex ax-item-center ax-justify-between ax-bg-surface ax-px-6 ax-border-t" }, providers: [], ngImport: i0, template: "<div class=\"ax-flex ax-items-center ax-justify-start ax-gap-1\">\r\n <axp-component-slot name=\"footer-start\"></axp-component-slot>\r\n</div>\r\n<div class=\"ax-flex ax-items-center ax-justify-end ax-gap-1\">\r\n <axp-component-slot name=\"footer-end\"></axp-component-slot>\r\n</div>", dependencies: [{ kind: "directive", type: i1.AXPComponentSlotDirective, selector: "axp-component-slot", inputs: ["name"] }], encapsulation: i0.ViewEncapsulation.None }); }
7
+ }
8
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPRootLayoutFooterComponent, decorators: [{
9
+ type: Component,
10
+ args: [{ selector: 'axp-dashboard-admin-footer', encapsulation: ViewEncapsulation.None, providers: [], host: {
11
+ class: 'ax-h-10 ax-flex ax-item-center ax-justify-between ax-bg-surface ax-px-6 ax-border-t',
12
+ }, template: "<div class=\"ax-flex ax-items-center ax-justify-start ax-gap-1\">\r\n <axp-component-slot name=\"footer-start\"></axp-component-slot>\r\n</div>\r\n<div class=\"ax-flex ax-items-center ax-justify-end ax-gap-1\">\r\n <axp-component-slot name=\"footer-end\"></axp-component-slot>\r\n</div>" }]
13
+ }] });
14
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9vdGVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vdGhlbWVzL2RlZmF1bHQvc3JjL2xpYi9sYXlvdXRzL3Jvb3QtbGF5b3V0L2NvbXBvbmVudHMvZm9vdGVyL2Zvb3Rlci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3RoZW1lcy9kZWZhdWx0L3NyYy9saWIvbGF5b3V0cy9yb290LWxheW91dC9jb21wb25lbnRzL2Zvb3Rlci9mb290ZXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7O0FBVzdELE1BQU0sT0FBTyw0QkFBNEI7OEdBQTVCLDRCQUE0QjtrR0FBNUIsNEJBQTRCLHNLQUw1QixFQUFFLDBCQ05mLHNTQUtNOzsyRkRNTyw0QkFBNEI7a0JBVHhDLFNBQVM7K0JBQ0UsNEJBQTRCLGlCQUV2QixpQkFBaUIsQ0FBQyxJQUFJLGFBQzFCLEVBQUUsUUFDUDt3QkFDSixLQUFLLEVBQUUscUZBQXFGO3FCQUM3RiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnYXhwLWRhc2hib2FyZC1hZG1pbi1mb290ZXInLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9mb290ZXIuY29tcG9uZW50Lmh0bWwnLFxyXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXHJcbiAgcHJvdmlkZXJzOiBbXSxcclxuICBob3N0OiB7XHJcbiAgICBjbGFzczogJ2F4LWgtMTAgYXgtZmxleCBheC1pdGVtLWNlbnRlciBheC1qdXN0aWZ5LWJldHdlZW4gYXgtYmctc3VyZmFjZSBheC1weC02IGF4LWJvcmRlci10JyxcclxuICB9LFxyXG59KVxyXG5leHBvcnQgY2xhc3MgQVhQUm9vdExheW91dEZvb3RlckNvbXBvbmVudCB7XHJcbn1cclxuIiwiPGRpdiBjbGFzcz1cImF4LWZsZXggYXgtaXRlbXMtY2VudGVyIGF4LWp1c3RpZnktc3RhcnQgYXgtZ2FwLTFcIj5cclxuICAgIDxheHAtY29tcG9uZW50LXNsb3QgbmFtZT1cImZvb3Rlci1zdGFydFwiPjwvYXhwLWNvbXBvbmVudC1zbG90PlxyXG48L2Rpdj5cclxuPGRpdiBjbGFzcz1cImF4LWZsZXggYXgtaXRlbXMtY2VudGVyIGF4LWp1c3RpZnktZW5kIGF4LWdhcC0xXCI+XHJcbiAgICA8YXhwLWNvbXBvbmVudC1zbG90IG5hbWU9XCJmb290ZXItZW5kXCI+PC9heHAtY29tcG9uZW50LXNsb3Q+XHJcbjwvZGl2PiJdfQ==
@@ -0,0 +1,29 @@
1
+ import { AXPLayoutRootDrawerToggle, getRootDrawer } from '@acorex/platform/common';
2
+ import { Component, ViewEncapsulation, inject } from '@angular/core';
3
+ import { Router } from '@angular/router';
4
+ import { Store } from '@ngrx/store';
5
+ import * as i0 from "@angular/core";
6
+ import * as i1 from "@angular/common";
7
+ import * as i2 from "@acorex/platform/common";
8
+ export class AXPRootLayoutHeaderComponent {
9
+ constructor() {
10
+ this.store = inject((Store));
11
+ this.router = inject(Router);
12
+ this.isOpen = this.store.select(getRootDrawer());
13
+ }
14
+ menuClick() {
15
+ this.store.dispatch(AXPLayoutRootDrawerToggle());
16
+ }
17
+ logoClick() {
18
+ this.router.navigate(['/']);
19
+ }
20
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPRootLayoutHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
21
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.2", type: AXPRootLayoutHeaderComponent, selector: "axp-dashboard-admin-header", host: { classAttribute: "ax-h-16 ax-flex ax-justify-between ax-px-4 md:ax-px-0 md:ax-pe-6 ax-py-4 ax-bg-surface ax-border-b" }, ngImport: i0, template: "<div class=\"ax-w-full ax-flex ax-justify-between\">\r\n <div class=\"ax-flex ax-items-center md:ax-hidden\">\r\n <i class=\"fa-solid fa-bars ax-text-lg ax-me-3\" (click)=\"menuClick()\"></i>\r\n </div>\r\n <div class=\"ax-flex ax-items-center\">\r\n <div\r\n class=\"ax-hidden md:ax-flex ax-items-center ax-justify-center ax-w-8 ax-h-8 ax-bg-on-surface ax-rounded ax-rounded-s-none ax-me-8 ax-cursor-pointer\"\r\n (click)=\"menuClick()\">\r\n <i class=\"fa-solid fa-chevrons-left ax-text-sm\" [ngClass]=\"{ 'ax-rotate-180': !(isOpen | async) }\"> </i>\r\n </div>\r\n <axp-component-slot name=\"header-start\"></axp-component-slot>\r\n </div>\r\n <div class=\"ax-flex ax-items-center\">\r\n <axp-component-slot name=\"header-end\"></axp-component-slot>\r\n </div>\r\n</div>", styles: [".profile-menus ul{margin-top:.5rem;border-bottom-width:1px;--tw-border-opacity: 1;border-color:rgba(var(--ax-color-border-default),var(--tw-border-opacity));padding-left:.5rem;padding-right:.5rem}.profile-menus ul:last-child{border-width:0px}.profile-menus ul li{display:flex;cursor:pointer;border-radius:.375rem;padding:.5rem}.profile-menus ul li:last-child{margin-bottom:.5rem}.profile-menus ul li:hover{--tw-bg-opacity: 1;background-color:rgb(241 245 249 / var(--tw-bg-opacity))}.profile-menus ul li:hover:is(.ax-dark *){--tw-bg-opacity: 1;background-color:rgb(30 41 59 / var(--tw-bg-opacity))}.profile-menus ul li i{margin-inline-end:.75rem;display:grid;height:1.5rem;width:1.5rem;place-items:center;font-size:1.25rem;line-height:1.75rem}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.AXPComponentSlotDirective, selector: "axp-component-slot", inputs: ["name"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }], encapsulation: i0.ViewEncapsulation.None }); }
22
+ }
23
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPRootLayoutHeaderComponent, decorators: [{
24
+ type: Component,
25
+ args: [{ selector: 'axp-dashboard-admin-header', encapsulation: ViewEncapsulation.None, host: {
26
+ class: 'ax-h-16 ax-flex ax-justify-between ax-px-4 md:ax-px-0 md:ax-pe-6 ax-py-4 ax-bg-surface ax-border-b',
27
+ }, template: "<div class=\"ax-w-full ax-flex ax-justify-between\">\r\n <div class=\"ax-flex ax-items-center md:ax-hidden\">\r\n <i class=\"fa-solid fa-bars ax-text-lg ax-me-3\" (click)=\"menuClick()\"></i>\r\n </div>\r\n <div class=\"ax-flex ax-items-center\">\r\n <div\r\n class=\"ax-hidden md:ax-flex ax-items-center ax-justify-center ax-w-8 ax-h-8 ax-bg-on-surface ax-rounded ax-rounded-s-none ax-me-8 ax-cursor-pointer\"\r\n (click)=\"menuClick()\">\r\n <i class=\"fa-solid fa-chevrons-left ax-text-sm\" [ngClass]=\"{ 'ax-rotate-180': !(isOpen | async) }\"> </i>\r\n </div>\r\n <axp-component-slot name=\"header-start\"></axp-component-slot>\r\n </div>\r\n <div class=\"ax-flex ax-items-center\">\r\n <axp-component-slot name=\"header-end\"></axp-component-slot>\r\n </div>\r\n</div>", styles: [".profile-menus ul{margin-top:.5rem;border-bottom-width:1px;--tw-border-opacity: 1;border-color:rgba(var(--ax-color-border-default),var(--tw-border-opacity));padding-left:.5rem;padding-right:.5rem}.profile-menus ul:last-child{border-width:0px}.profile-menus ul li{display:flex;cursor:pointer;border-radius:.375rem;padding:.5rem}.profile-menus ul li:last-child{margin-bottom:.5rem}.profile-menus ul li:hover{--tw-bg-opacity: 1;background-color:rgb(241 245 249 / var(--tw-bg-opacity))}.profile-menus ul li:hover:is(.ax-dark *){--tw-bg-opacity: 1;background-color:rgb(30 41 59 / var(--tw-bg-opacity))}.profile-menus ul li i{margin-inline-end:.75rem;display:grid;height:1.5rem;width:1.5rem;place-items:center;font-size:1.25rem;line-height:1.75rem}\n"] }]
28
+ }] });
29
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaGVhZGVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvcGxhdGZvcm0vdGhlbWVzL2RlZmF1bHQvc3JjL2xpYi9sYXlvdXRzL3Jvb3QtbGF5b3V0L2NvbXBvbmVudHMvaGVhZGVyL2hlYWRlci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3RoZW1lcy9kZWZhdWx0L3NyYy9saWIvbGF5b3V0cy9yb290LWxheW91dC9jb21wb25lbnRzL2hlYWRlci9oZWFkZXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsT0FBTyxFQUF1Qix5QkFBeUIsRUFBRSxhQUFhLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUN4RyxPQUFPLEVBQUUsU0FBUyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUNyRSxPQUFPLEVBQUUsTUFBTSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDekMsT0FBTyxFQUFFLEtBQUssRUFBRSxNQUFNLGFBQWEsQ0FBQzs7OztBQVlwQyxNQUFNLE9BQU8sNEJBQTRCO0lBVHpDO1FBV1UsVUFBSyxHQUFHLE1BQU0sQ0FBQyxDQUFBLEtBQTBCLENBQUEsQ0FBQyxDQUFDO1FBQzNDLFdBQU0sR0FBRyxNQUFNLENBQUMsTUFBTSxDQUFDLENBQUM7UUFFdEIsV0FBTSxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLGFBQWEsRUFBRSxDQUFDLENBQUM7S0FTdkQ7SUFQQyxTQUFTO1FBQ1AsSUFBSSxDQUFDLEtBQUssQ0FBQyxRQUFRLENBQUMseUJBQXlCLEVBQUUsQ0FBQyxDQUFDO0lBQ25ELENBQUM7SUFFRCxTQUFTO1FBQ1AsSUFBSSxDQUFDLE1BQU0sQ0FBQyxRQUFRLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDO0lBQzlCLENBQUM7OEdBYlUsNEJBQTRCO2tHQUE1Qiw0QkFBNEIsa01DaEJ6QywyeUJBZU07OzJGRENPLDRCQUE0QjtrQkFUeEMsU0FBUzsrQkFDRSw0QkFBNEIsaUJBR3ZCLGlCQUFpQixDQUFDLElBQUksUUFDL0I7d0JBQ0osS0FBSyxFQUFFLG9HQUFvRztxQkFDNUciLCJzb3VyY2VzQ29udGVudCI6WyJcclxuaW1wb3J0IHsgQVhQQWRtaW5MYXlvdXRTdGF0ZSwgQVhQTGF5b3V0Um9vdERyYXdlclRvZ2dsZSwgZ2V0Um9vdERyYXdlciB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vY29tbW9uJztcclxuaW1wb3J0IHsgQ29tcG9uZW50LCBWaWV3RW5jYXBzdWxhdGlvbiwgaW5qZWN0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IFJvdXRlciB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XHJcbmltcG9ydCB7IFN0b3JlIH0gZnJvbSAnQG5ncngvc3RvcmUnO1xyXG5cclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnYXhwLWRhc2hib2FyZC1hZG1pbi1oZWFkZXInLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9oZWFkZXIuY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWycuL2hlYWRlci5jb21wb25lbnQuc2NzcyddLFxyXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXHJcbiAgaG9zdDoge1xyXG4gICAgY2xhc3M6ICdheC1oLTE2IGF4LWZsZXggYXgtanVzdGlmeS1iZXR3ZWVuIGF4LXB4LTQgbWQ6YXgtcHgtMCBtZDpheC1wZS02IGF4LXB5LTQgYXgtYmctc3VyZmFjZSBheC1ib3JkZXItYicsXHJcbiAgfSxcclxufSlcclxuZXhwb3J0IGNsYXNzIEFYUFJvb3RMYXlvdXRIZWFkZXJDb21wb25lbnQge1xyXG5cclxuICBwcml2YXRlIHN0b3JlID0gaW5qZWN0KFN0b3JlPEFYUEFkbWluTGF5b3V0U3RhdGU+KTtcclxuICBwcml2YXRlIHJvdXRlciA9IGluamVjdChSb3V0ZXIpO1xyXG5cclxuICBwcm90ZWN0ZWQgaXNPcGVuID0gdGhpcy5zdG9yZS5zZWxlY3QoZ2V0Um9vdERyYXdlcigpKTtcclxuXHJcbiAgbWVudUNsaWNrKCkge1xyXG4gICAgdGhpcy5zdG9yZS5kaXNwYXRjaChBWFBMYXlvdXRSb290RHJhd2VyVG9nZ2xlKCkpO1xyXG4gIH1cclxuXHJcbiAgbG9nb0NsaWNrKCkge1xyXG4gICAgdGhpcy5yb3V0ZXIubmF2aWdhdGUoWycvJ10pO1xyXG4gIH1cclxufVxyXG4iLCI8ZGl2IGNsYXNzPVwiYXgtdy1mdWxsIGF4LWZsZXggYXgtanVzdGlmeS1iZXR3ZWVuXCI+XHJcbiAgPGRpdiBjbGFzcz1cImF4LWZsZXggYXgtaXRlbXMtY2VudGVyIG1kOmF4LWhpZGRlblwiPlxyXG4gICAgPGkgY2xhc3M9XCJmYS1zb2xpZCBmYS1iYXJzIGF4LXRleHQtbGcgYXgtbWUtM1wiIChjbGljayk9XCJtZW51Q2xpY2soKVwiPjwvaT5cclxuICA8L2Rpdj5cclxuICA8ZGl2IGNsYXNzPVwiYXgtZmxleCBheC1pdGVtcy1jZW50ZXJcIj5cclxuICAgIDxkaXZcclxuICAgICAgY2xhc3M9XCJheC1oaWRkZW4gbWQ6YXgtZmxleCBheC1pdGVtcy1jZW50ZXIgYXgtanVzdGlmeS1jZW50ZXIgYXgtdy04IGF4LWgtOCBheC1iZy1vbi1zdXJmYWNlIGF4LXJvdW5kZWQgYXgtcm91bmRlZC1zLW5vbmUgYXgtbWUtOCBheC1jdXJzb3ItcG9pbnRlclwiXHJcbiAgICAgIChjbGljayk9XCJtZW51Q2xpY2soKVwiPlxyXG4gICAgICA8aSBjbGFzcz1cImZhLXNvbGlkIGZhLWNoZXZyb25zLWxlZnQgYXgtdGV4dC1zbVwiIFtuZ0NsYXNzXT1cInsgJ2F4LXJvdGF0ZS0xODAnOiAhKGlzT3BlbiB8IGFzeW5jKSB9XCI+IDwvaT5cclxuICAgIDwvZGl2PlxyXG4gICAgPGF4cC1jb21wb25lbnQtc2xvdCBuYW1lPVwiaGVhZGVyLXN0YXJ0XCI+PC9heHAtY29tcG9uZW50LXNsb3Q+XHJcbiAgPC9kaXY+XHJcbiAgPGRpdiBjbGFzcz1cImF4LWZsZXggYXgtaXRlbXMtY2VudGVyXCI+XHJcbiAgICA8YXhwLWNvbXBvbmVudC1zbG90IG5hbWU9XCJoZWFkZXItZW5kXCI+PC9heHAtY29tcG9uZW50LXNsb3Q+XHJcbiAgPC9kaXY+XHJcbjwvZGl2PiJdfQ==
@@ -0,0 +1,5 @@
1
+ export * from './components/footer/footer.component';
2
+ export * from './components/header/header.component';
3
+ export * from './root-layout.component';
4
+ export * from './root-layout.module';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3BsYXRmb3JtL3RoZW1lcy9kZWZhdWx0L3NyYy9saWIvbGF5b3V0cy9yb290LWxheW91dC9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHNDQUFzQyxDQUFBO0FBQ3BELGNBQWMsc0NBQXNDLENBQUE7QUFDcEQsY0FBYyx5QkFBeUIsQ0FBQTtBQUN2QyxjQUFjLHNCQUFzQixDQUFBIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9jb21wb25lbnRzL2Zvb3Rlci9mb290ZXIuY29tcG9uZW50J1xyXG5leHBvcnQgKiBmcm9tICcuL2NvbXBvbmVudHMvaGVhZGVyL2hlYWRlci5jb21wb25lbnQnXHJcbmV4cG9ydCAqIGZyb20gJy4vcm9vdC1sYXlvdXQuY29tcG9uZW50J1xyXG5leHBvcnQgKiBmcm9tICcuL3Jvb3QtbGF5b3V0Lm1vZHVsZSciXX0=
@@ -0,0 +1,78 @@
1
+ import { AXDrawerComponent } from '@acorex/components/drawer';
2
+ import { AXUnsubscriber } from '@acorex/core/utils';
3
+ import { AXPRouteUtilityService, AXP_MENU_LOADER, AXP_PLATFORM_CONFIG_TOKEN, AXPNavigateAction, AXPLayoutService, AXPLayoutRootDrawerClose, getRootDrawer, isSmallScreen, } from '@acorex/platform/common';
4
+ import { Component, ViewChild, ViewEncapsulation, inject, signal } from '@angular/core';
5
+ import { Store } from '@ngrx/store';
6
+ import * as i0 from "@angular/core";
7
+ import * as i1 from "@angular/common";
8
+ import * as i2 from "@angular/router";
9
+ import * as i3 from "@acorex/components/decorators";
10
+ import * as i4 from "@acorex/components/drawer";
11
+ import * as i5 from "@acorex/components/side-menu";
12
+ import * as i6 from "@acorex/components/loading";
13
+ import * as i7 from "@acorex/platform/common";
14
+ import * as i8 from "@acorex/platform/auth";
15
+ import * as i9 from "./components/footer/footer.component";
16
+ import * as i10 from "./components/header/header.component";
17
+ export class AXPRootLayoutComponent {
18
+ get layoutService() {
19
+ return this._layoutService;
20
+ }
21
+ set layoutService(value) {
22
+ this._layoutService = value;
23
+ }
24
+ constructor() {
25
+ this.manuLoader = inject(AXP_MENU_LOADER);
26
+ this.config = inject(AXP_PLATFORM_CONFIG_TOKEN);
27
+ this._layoutService = inject(AXPLayoutService);
28
+ this.subscriber = inject(AXUnsubscriber);
29
+ this.store = inject((Store));
30
+ this.routeUtilService = inject(AXPRouteUtilityService);
31
+ this.isActiveRoute = (item) => this.routeUtilService.isRouteActive(item);
32
+ this.logo = this.config.logo;
33
+ this.isOpen = this.store.select(getRootDrawer());
34
+ this.isSM = this.store.select(isSmallScreen());
35
+ this.isLoading = signal(false);
36
+ this.showNavigationProgress = signal(false);
37
+ this.menuItems$ = this.manuLoader.getItems(1);
38
+ this.layoutService.navigationLoading$.pipe(this.subscriber.takeUntilDestroy).subscribe((value) => {
39
+ this.showNavigationProgress.set(value);
40
+ });
41
+ //
42
+ this.layoutService.overlayLoading$.pipe(this.subscriber.takeUntilDestroy).subscribe((value) => {
43
+ this.isLoading.set(value);
44
+ });
45
+ }
46
+ handleMenuClick(e, item) {
47
+ if (item.path && item.children?.length)
48
+ return;
49
+ if (item.command) {
50
+ this.store.dispatch(item.command);
51
+ }
52
+ else if (item.path) {
53
+ this.store.dispatch(AXPNavigateAction({ payload: { commands: item.path } }));
54
+ }
55
+ }
56
+ handleCollapsedChange(value) {
57
+ if (value)
58
+ this.store.dispatch(AXPLayoutRootDrawerClose());
59
+ }
60
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPRootLayoutComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
61
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.2", type: AXPRootLayoutComponent, selector: "ng-component", providers: [
62
+ {
63
+ provide: AXUnsubscriber,
64
+ },
65
+ ], viewQueries: [{ propertyName: "drawer", first: true, predicate: ["drawer"], descendants: true }], ngImport: i0, template: "<ax-drawer-container>\r\n <ax-drawer #drawer location=\"start\" [collapsed]=\"!(isOpen | async)\" [mode]=\"(isSM | async) ? 'overlay' : 'push'\"\r\n (collapsedChange)=\"handleCollapsedChange($event)\">\r\n <ax-content\r\n class=\"ax-w-64 ax-h-full ax-flex ax-flex-col ax-bg-secondary-600 dark:ax-bg-surface ax-text-primary-fore ax-border-e ax-border-primary-700 dark:ax-border-default\">\r\n <header class=\"ax-px-7 ax-h-16 ax-flex ax-items-center ax-border-b ax-border-white/10\">\r\n <axp-logo [source]=\"logo?.light\"></axp-logo>\r\n </header>\r\n <div class=\"ax-px-2 ax-py-4 ax-overflow-y-auto ax-flex-1 ax-h-full\">\r\n <ax-side-menu>\r\n <ng-container *ngFor=\"let node of this.menuItems$ | async\" [ngTemplateOutlet]=\"sideMenu\"\r\n [ngTemplateOutletContext]=\"{ $implicit: node }\">\r\n </ng-container>\r\n </ax-side-menu>\r\n <ng-template #sideMenu let-item>\r\n @if(item.type=='group') {\r\n <ax-title *permission=\"item.data?.requiredPermission;\">{{ item.text }}</ax-title>\r\n } @else {\r\n <ax-side-menu-item *permission=\"item.data?.requiredPermission\" (onClick)=\"handleMenuClick($event, item)\"\r\n [active]=\"isActiveRoute(item) && !item.children?.length\" [isCollapsed]=\"item.opened == true ? false : true\">\r\n <ax-prefix>\r\n <ax-icon [class]=\"item.icon\"></ax-icon>\r\n </ax-prefix>\r\n {{ item.text }}\r\n <ng-container *ngIf=\"item.children\">\r\n <ng-container *ngFor=\"let child of item.children\" [ngTemplateOutlet]=\"sideMenu\"\r\n [ngTemplateOutletContext]=\"{ $implicit: child }\">\r\n </ng-container>\r\n </ng-container>\r\n </ax-side-menu-item>\r\n }\r\n </ng-template>\r\n </div>\r\n </ax-content>\r\n </ax-drawer>\r\n <ax-content class=\"ax-flex ax-flex-col ax-relative\">\r\n @if(showNavigationProgress())\r\n {\r\n <div class=\"axp-navigating-progress\">\r\n <div></div>\r\n </div>\r\n }\r\n <axp-dashboard-admin-header></axp-dashboard-admin-header>\r\n <div class=\"ax-flex-1 ax-overflow-auto ax-relative\" [axIsLoading]=\"isLoading()\">\r\n <router-outlet></router-outlet>\r\n </div>\r\n <axp-dashboard-admin-footer></axp-dashboard-admin-footer>\r\n </ax-content>\r\n</ax-drawer-container>", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i2.RouterOutlet, selector: "router-outlet", inputs: ["name"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }, { kind: "component", type: i3.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }, { kind: "component", type: i3.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: "component", type: i4.AXDrawerComponent, selector: "ax-drawer", inputs: ["location", "showBackdrop", "mode", "collapsed"], outputs: ["locationChange", "modeChange", "collapsedChange"] }, { kind: "component", type: i4.AXDrawerContainerComponent, selector: "ax-drawer-container" }, { kind: "component", type: i5.AXSideMenuComponent, selector: "ax-side-menu" }, { kind: "component", type: i5.AXSideMenuItemComponent, selector: "ax-side-menu-item", inputs: ["disabled", "color", "isLoading", "text", "isCollapsed", "active"], outputs: ["isLoadingChange", "textChange", "isCollapsedChange", "activeChange", "onClick"] }, { kind: "directive", type: i6.AXLoadingDirective, selector: "[axIsLoading]", inputs: ["axIsLoading"] }, { kind: "component", type: i7.AXPLogoComponent, selector: "axp-logo", inputs: ["source"] }, { kind: "directive", type: i8.AXPPermissionDirective, selector: "[permission]", inputs: ["permission", "permissionElse"] }, { kind: "component", type: i9.AXPRootLayoutFooterComponent, selector: "axp-dashboard-admin-footer" }, { kind: "component", type: i10.AXPRootLayoutHeaderComponent, selector: "axp-dashboard-admin-header" }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }], encapsulation: i0.ViewEncapsulation.None }); }
66
+ }
67
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPRootLayoutComponent, decorators: [{
68
+ type: Component,
69
+ args: [{ encapsulation: ViewEncapsulation.None, providers: [
70
+ {
71
+ provide: AXUnsubscriber,
72
+ },
73
+ ], template: "<ax-drawer-container>\r\n <ax-drawer #drawer location=\"start\" [collapsed]=\"!(isOpen | async)\" [mode]=\"(isSM | async) ? 'overlay' : 'push'\"\r\n (collapsedChange)=\"handleCollapsedChange($event)\">\r\n <ax-content\r\n class=\"ax-w-64 ax-h-full ax-flex ax-flex-col ax-bg-secondary-600 dark:ax-bg-surface ax-text-primary-fore ax-border-e ax-border-primary-700 dark:ax-border-default\">\r\n <header class=\"ax-px-7 ax-h-16 ax-flex ax-items-center ax-border-b ax-border-white/10\">\r\n <axp-logo [source]=\"logo?.light\"></axp-logo>\r\n </header>\r\n <div class=\"ax-px-2 ax-py-4 ax-overflow-y-auto ax-flex-1 ax-h-full\">\r\n <ax-side-menu>\r\n <ng-container *ngFor=\"let node of this.menuItems$ | async\" [ngTemplateOutlet]=\"sideMenu\"\r\n [ngTemplateOutletContext]=\"{ $implicit: node }\">\r\n </ng-container>\r\n </ax-side-menu>\r\n <ng-template #sideMenu let-item>\r\n @if(item.type=='group') {\r\n <ax-title *permission=\"item.data?.requiredPermission;\">{{ item.text }}</ax-title>\r\n } @else {\r\n <ax-side-menu-item *permission=\"item.data?.requiredPermission\" (onClick)=\"handleMenuClick($event, item)\"\r\n [active]=\"isActiveRoute(item) && !item.children?.length\" [isCollapsed]=\"item.opened == true ? false : true\">\r\n <ax-prefix>\r\n <ax-icon [class]=\"item.icon\"></ax-icon>\r\n </ax-prefix>\r\n {{ item.text }}\r\n <ng-container *ngIf=\"item.children\">\r\n <ng-container *ngFor=\"let child of item.children\" [ngTemplateOutlet]=\"sideMenu\"\r\n [ngTemplateOutletContext]=\"{ $implicit: child }\">\r\n </ng-container>\r\n </ng-container>\r\n </ax-side-menu-item>\r\n }\r\n </ng-template>\r\n </div>\r\n </ax-content>\r\n </ax-drawer>\r\n <ax-content class=\"ax-flex ax-flex-col ax-relative\">\r\n @if(showNavigationProgress())\r\n {\r\n <div class=\"axp-navigating-progress\">\r\n <div></div>\r\n </div>\r\n }\r\n <axp-dashboard-admin-header></axp-dashboard-admin-header>\r\n <div class=\"ax-flex-1 ax-overflow-auto ax-relative\" [axIsLoading]=\"isLoading()\">\r\n <router-outlet></router-outlet>\r\n </div>\r\n <axp-dashboard-admin-footer></axp-dashboard-admin-footer>\r\n </ax-content>\r\n</ax-drawer-container>" }]
74
+ }], ctorParameters: () => [], propDecorators: { drawer: [{
75
+ type: ViewChild,
76
+ args: ['drawer']
77
+ }] } });
78
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicm9vdC1sYXlvdXQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS90aGVtZXMvZGVmYXVsdC9zcmMvbGliL2xheW91dHMvcm9vdC1sYXlvdXQvcm9vdC1sYXlvdXQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9wbGF0Zm9ybS90aGVtZXMvZGVmYXVsdC9zcmMvbGliL2xheW91dHMvcm9vdC1sYXlvdXQvcm9vdC1sYXlvdXQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sMkJBQTJCLENBQUM7QUFDOUQsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBQ3BELE9BQU8sRUFFTCxzQkFBc0IsRUFDdEIsZUFBZSxFQUNmLHlCQUF5QixFQUN6QixpQkFBaUIsRUFDakIsZ0JBQWdCLEVBRWhCLHdCQUF3QixFQUN4QixhQUFhLEVBQ2IsYUFBYSxHQUNkLE1BQU0seUJBQXlCLENBQUM7QUFDakMsT0FBTyxFQUFFLFNBQVMsRUFBRSxTQUFTLEVBQUUsaUJBQWlCLEVBQWtCLE1BQU0sRUFBRSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDeEcsT0FBTyxFQUFFLEtBQUssRUFBRSxNQUFNLGFBQWEsQ0FBQzs7Ozs7Ozs7Ozs7O0FBWXBDLE1BQU0sT0FBTyxzQkFBc0I7SUFNakMsSUFBVyxhQUFhO1FBQ3RCLE9BQU8sSUFBSSxDQUFDLGNBQWMsQ0FBQztJQUM3QixDQUFDO0lBQ0QsSUFBVyxhQUFhLENBQUMsS0FBSztRQUM1QixJQUFJLENBQUMsY0FBYyxHQUFHLEtBQUssQ0FBQztJQUM5QixDQUFDO0lBY0Q7UUF0QlEsZUFBVSxHQUFHLE1BQU0sQ0FBQyxlQUFlLENBQUMsQ0FBQztRQUNyQyxXQUFNLEdBQUcsTUFBTSxDQUFDLHlCQUF5QixDQUFDLENBQUM7UUFDM0MsbUJBQWMsR0FBRyxNQUFNLENBQUMsZ0JBQWdCLENBQUMsQ0FBQztRQU8xQyxlQUFVLEdBQUcsTUFBTSxDQUFDLGNBQWMsQ0FBQyxDQUFDO1FBRXBDLFVBQUssR0FBRyxNQUFNLENBQUMsQ0FBQSxLQUEwQixDQUFBLENBQUMsQ0FBQztRQUMzQyxxQkFBZ0IsR0FBRyxNQUFNLENBQUMsc0JBQXNCLENBQUMsQ0FBQztRQUNoRCxrQkFBYSxHQUFHLENBQUMsSUFBaUIsRUFBRSxFQUFFLENBQUMsSUFBSSxDQUFDLGdCQUFnQixDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUNqRixTQUFJLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUM7UUFFeEIsV0FBTSxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLGFBQWEsRUFBRSxDQUFDLENBQUM7UUFDNUMsU0FBSSxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLGFBQWEsRUFBRSxDQUFDLENBQUM7UUFDMUMsY0FBUyxHQUE0QixNQUFNLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDbkQsMkJBQXNCLEdBQTRCLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUNoRSxlQUFVLEdBQThCLElBQUksQ0FBQyxVQUFVLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBRzVFLElBQUksQ0FBQyxhQUFhLENBQUMsa0JBQWtCLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsZ0JBQWdCLENBQUMsQ0FBQyxTQUFTLENBQUMsQ0FBQyxLQUFLLEVBQUUsRUFBRTtZQUMvRixJQUFJLENBQUMsc0JBQXNCLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQ3pDLENBQUMsQ0FBQyxDQUFDO1FBQ0gsRUFBRTtRQUNGLElBQUksQ0FBQyxhQUFhLENBQUMsZUFBZSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDLGdCQUFnQixDQUFDLENBQUMsU0FBUyxDQUFDLENBQUMsS0FBSyxFQUFFLEVBQUU7WUFDNUYsSUFBSSxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDNUIsQ0FBQyxDQUFDLENBQUM7SUFDTCxDQUFDO0lBRVMsZUFBZSxDQUFDLENBQU0sRUFBRSxJQUFpQjtRQUNqRCxJQUFJLElBQUksQ0FBQyxJQUFJLElBQUksSUFBSSxDQUFDLFFBQVEsRUFBRSxNQUFNO1lBQUUsT0FBTztRQUMvQyxJQUFJLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQztZQUNqQixJQUFJLENBQUMsS0FBSyxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUM7UUFDcEMsQ0FBQzthQUFNLElBQUksSUFBSSxDQUFDLElBQUksRUFBRSxDQUFDO1lBQ3JCLElBQUksQ0FBQyxLQUFLLENBQUMsUUFBUSxDQUFDLGlCQUFpQixDQUFDLEVBQUUsT0FBTyxFQUFFLEVBQUUsUUFBUSxFQUFFLElBQUksQ0FBQyxJQUFJLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQztRQUMvRSxDQUFDO0lBQ0gsQ0FBQztJQUVTLHFCQUFxQixDQUFDLEtBQWM7UUFDNUMsSUFBSSxLQUFLO1lBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxRQUFRLENBQUMsd0JBQXdCLEVBQUUsQ0FBQyxDQUFDO0lBQzdELENBQUM7OEdBOUNVLHNCQUFzQjtrR0FBdEIsc0JBQXNCLHVDQU50QjtZQUNUO2dCQUNFLE9BQU8sRUFBRSxjQUFjO2FBQ3hCO1NBQ0YsNEhDekJILGc1RUFnRHNCOzsyRkRyQlQsc0JBQXNCO2tCQVRsQyxTQUFTO29DQUVPLGlCQUFpQixDQUFDLElBQUksYUFDMUI7d0JBQ1Q7NEJBQ0UsT0FBTyxFQUFFLGNBQWM7eUJBQ3hCO3FCQUNGO3dEQUdvQixNQUFNO3NCQUExQixTQUFTO3VCQUFDLFFBQVEiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWERyYXdlckNvbXBvbmVudCB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9kcmF3ZXInO1xyXG5pbXBvcnQgeyBBWFVuc3Vic2NyaWJlciB9IGZyb20gJ0BhY29yZXgvY29yZS91dGlscyc7XHJcbmltcG9ydCB7XHJcbiAgQVhQTWVudUl0ZW0sXHJcbiAgQVhQUm91dGVVdGlsaXR5U2VydmljZSxcclxuICBBWFBfTUVOVV9MT0FERVIsXHJcbiAgQVhQX1BMQVRGT1JNX0NPTkZJR19UT0tFTixcclxuICBBWFBOYXZpZ2F0ZUFjdGlvbixcclxuICBBWFBMYXlvdXRTZXJ2aWNlLFxyXG4gIEFYUEFkbWluTGF5b3V0U3RhdGUsXHJcbiAgQVhQTGF5b3V0Um9vdERyYXdlckNsb3NlLFxyXG4gIGdldFJvb3REcmF3ZXIsXHJcbiAgaXNTbWFsbFNjcmVlbixcclxufSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2NvbW1vbic7XHJcbmltcG9ydCB7IENvbXBvbmVudCwgVmlld0NoaWxkLCBWaWV3RW5jYXBzdWxhdGlvbiwgV3JpdGFibGVTaWduYWwsIGluamVjdCwgc2lnbmFsIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IFN0b3JlIH0gZnJvbSAnQG5ncngvc3RvcmUnO1xyXG5pbXBvcnQgeyBPYnNlcnZhYmxlIH0gZnJvbSAncnhqcyc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICB0ZW1wbGF0ZVVybDogJy4vcm9vdC1sYXlvdXQuY29tcG9uZW50Lmh0bWwnLFxyXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXHJcbiAgcHJvdmlkZXJzOiBbXHJcbiAgICB7XHJcbiAgICAgIHByb3ZpZGU6IEFYVW5zdWJzY3JpYmVyLFxyXG4gICAgfSxcclxuICBdLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgQVhQUm9vdExheW91dENvbXBvbmVudCB7XHJcbiAgQFZpZXdDaGlsZCgnZHJhd2VyJykgZHJhd2VyITogQVhEcmF3ZXJDb21wb25lbnQ7XHJcblxyXG4gIHByaXZhdGUgbWFudUxvYWRlciA9IGluamVjdChBWFBfTUVOVV9MT0FERVIpO1xyXG4gIHByaXZhdGUgY29uZmlnID0gaW5qZWN0KEFYUF9QTEFURk9STV9DT05GSUdfVE9LRU4pO1xyXG4gIHByaXZhdGUgX2xheW91dFNlcnZpY2UgPSBpbmplY3QoQVhQTGF5b3V0U2VydmljZSk7XHJcbiAgcHVibGljIGdldCBsYXlvdXRTZXJ2aWNlKCkge1xyXG4gICAgcmV0dXJuIHRoaXMuX2xheW91dFNlcnZpY2U7XHJcbiAgfVxyXG4gIHB1YmxpYyBzZXQgbGF5b3V0U2VydmljZSh2YWx1ZSkge1xyXG4gICAgdGhpcy5fbGF5b3V0U2VydmljZSA9IHZhbHVlO1xyXG4gIH1cclxuICBwcml2YXRlIHN1YnNjcmliZXIgPSBpbmplY3QoQVhVbnN1YnNjcmliZXIpO1xyXG5cclxuICBwcml2YXRlIHN0b3JlID0gaW5qZWN0KFN0b3JlPEFYUEFkbWluTGF5b3V0U3RhdGU+KTtcclxuICBwcml2YXRlIHJvdXRlVXRpbFNlcnZpY2UgPSBpbmplY3QoQVhQUm91dGVVdGlsaXR5U2VydmljZSk7XHJcbiAgcHJvdGVjdGVkIGlzQWN0aXZlUm91dGUgPSAoaXRlbTogQVhQTWVudUl0ZW0pID0+IHRoaXMucm91dGVVdGlsU2VydmljZS5pc1JvdXRlQWN0aXZlKGl0ZW0pO1xyXG4gIHByb3RlY3RlZCBsb2dvID0gdGhpcy5jb25maWcubG9nbztcclxuXHJcbiAgcHJvdGVjdGVkIGlzT3BlbiA9IHRoaXMuc3RvcmUuc2VsZWN0KGdldFJvb3REcmF3ZXIoKSk7XHJcbiAgcHJvdGVjdGVkIGlzU00gPSB0aGlzLnN0b3JlLnNlbGVjdChpc1NtYWxsU2NyZWVuKCkpO1xyXG4gIHByb3RlY3RlZCBpc0xvYWRpbmc6IFdyaXRhYmxlU2lnbmFsPGJvb2xlYW4+ID0gc2lnbmFsKGZhbHNlKTtcclxuICBwcm90ZWN0ZWQgc2hvd05hdmlnYXRpb25Qcm9ncmVzczogV3JpdGFibGVTaWduYWw8Ym9vbGVhbj4gPSBzaWduYWwoZmFsc2UpO1xyXG4gIHByb3RlY3RlZCBtZW51SXRlbXMkOiBPYnNlcnZhYmxlPEFYUE1lbnVJdGVtW10+ID0gdGhpcy5tYW51TG9hZGVyLmdldEl0ZW1zKDEpO1xyXG5cclxuICBjb25zdHJ1Y3RvcigpIHtcclxuICAgIHRoaXMubGF5b3V0U2VydmljZS5uYXZpZ2F0aW9uTG9hZGluZyQucGlwZSh0aGlzLnN1YnNjcmliZXIudGFrZVVudGlsRGVzdHJveSkuc3Vic2NyaWJlKCh2YWx1ZSkgPT4ge1xyXG4gICAgICB0aGlzLnNob3dOYXZpZ2F0aW9uUHJvZ3Jlc3Muc2V0KHZhbHVlKTtcclxuICAgIH0pO1xyXG4gICAgLy9cclxuICAgIHRoaXMubGF5b3V0U2VydmljZS5vdmVybGF5TG9hZGluZyQucGlwZSh0aGlzLnN1YnNjcmliZXIudGFrZVVudGlsRGVzdHJveSkuc3Vic2NyaWJlKCh2YWx1ZSkgPT4ge1xyXG4gICAgICB0aGlzLmlzTG9hZGluZy5zZXQodmFsdWUpO1xyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxuICBwcm90ZWN0ZWQgaGFuZGxlTWVudUNsaWNrKGU6IGFueSwgaXRlbTogQVhQTWVudUl0ZW0pIHtcclxuICAgIGlmIChpdGVtLnBhdGggJiYgaXRlbS5jaGlsZHJlbj8ubGVuZ3RoKSByZXR1cm47XHJcbiAgICBpZiAoaXRlbS5jb21tYW5kKSB7XHJcbiAgICAgIHRoaXMuc3RvcmUuZGlzcGF0Y2goaXRlbS5jb21tYW5kKTtcclxuICAgIH0gZWxzZSBpZiAoaXRlbS5wYXRoKSB7XHJcbiAgICAgIHRoaXMuc3RvcmUuZGlzcGF0Y2goQVhQTmF2aWdhdGVBY3Rpb24oeyBwYXlsb2FkOiB7IGNvbW1hbmRzOiBpdGVtLnBhdGggfSB9KSk7XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICBwcm90ZWN0ZWQgaGFuZGxlQ29sbGFwc2VkQ2hhbmdlKHZhbHVlOiBib29sZWFuKSB7XHJcbiAgICBpZiAodmFsdWUpIHRoaXMuc3RvcmUuZGlzcGF0Y2goQVhQTGF5b3V0Um9vdERyYXdlckNsb3NlKCkpO1xyXG4gIH1cclxufVxyXG4iLCI8YXgtZHJhd2VyLWNvbnRhaW5lcj5cclxuICA8YXgtZHJhd2VyICNkcmF3ZXIgbG9jYXRpb249XCJzdGFydFwiIFtjb2xsYXBzZWRdPVwiIShpc09wZW4gfCBhc3luYylcIiBbbW9kZV09XCIoaXNTTSB8IGFzeW5jKSA/ICdvdmVybGF5JyA6ICdwdXNoJ1wiXHJcbiAgICAoY29sbGFwc2VkQ2hhbmdlKT1cImhhbmRsZUNvbGxhcHNlZENoYW5nZSgkZXZlbnQpXCI+XHJcbiAgICA8YXgtY29udGVudFxyXG4gICAgICBjbGFzcz1cImF4LXctNjQgYXgtaC1mdWxsIGF4LWZsZXggYXgtZmxleC1jb2wgYXgtYmctc2Vjb25kYXJ5LTYwMCBkYXJrOmF4LWJnLXN1cmZhY2UgYXgtdGV4dC1wcmltYXJ5LWZvcmUgYXgtYm9yZGVyLWUgYXgtYm9yZGVyLXByaW1hcnktNzAwIGRhcms6YXgtYm9yZGVyLWRlZmF1bHRcIj5cclxuICAgICAgPGhlYWRlciBjbGFzcz1cImF4LXB4LTcgYXgtaC0xNiBheC1mbGV4IGF4LWl0ZW1zLWNlbnRlciBheC1ib3JkZXItYiBheC1ib3JkZXItd2hpdGUvMTBcIj5cclxuICAgICAgICA8YXhwLWxvZ28gW3NvdXJjZV09XCJsb2dvPy5saWdodFwiPjwvYXhwLWxvZ28+XHJcbiAgICAgIDwvaGVhZGVyPlxyXG4gICAgICA8ZGl2IGNsYXNzPVwiYXgtcHgtMiBheC1weS00IGF4LW92ZXJmbG93LXktYXV0byBheC1mbGV4LTEgYXgtaC1mdWxsXCI+XHJcbiAgICAgICAgPGF4LXNpZGUtbWVudT5cclxuICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nRm9yPVwibGV0IG5vZGUgb2YgdGhpcy5tZW51SXRlbXMkIHwgYXN5bmNcIiBbbmdUZW1wbGF0ZU91dGxldF09XCJzaWRlTWVudVwiXHJcbiAgICAgICAgICAgIFtuZ1RlbXBsYXRlT3V0bGV0Q29udGV4dF09XCJ7ICRpbXBsaWNpdDogbm9kZSB9XCI+XHJcbiAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuICAgICAgICA8L2F4LXNpZGUtbWVudT5cclxuICAgICAgICA8bmctdGVtcGxhdGUgI3NpZGVNZW51IGxldC1pdGVtPlxyXG4gICAgICAgICAgQGlmKGl0ZW0udHlwZT09J2dyb3VwJykge1xyXG4gICAgICAgICAgPGF4LXRpdGxlICpwZXJtaXNzaW9uPVwiaXRlbS5kYXRhPy5yZXF1aXJlZFBlcm1pc3Npb247XCI+e3sgaXRlbS50ZXh0IH19PC9heC10aXRsZT5cclxuICAgICAgICAgIH0gQGVsc2Uge1xyXG4gICAgICAgICAgPGF4LXNpZGUtbWVudS1pdGVtICpwZXJtaXNzaW9uPVwiaXRlbS5kYXRhPy5yZXF1aXJlZFBlcm1pc3Npb25cIiAob25DbGljayk9XCJoYW5kbGVNZW51Q2xpY2soJGV2ZW50LCBpdGVtKVwiXHJcbiAgICAgICAgICAgIFthY3RpdmVdPVwiaXNBY3RpdmVSb3V0ZShpdGVtKSAmJiAhaXRlbS5jaGlsZHJlbj8ubGVuZ3RoXCIgW2lzQ29sbGFwc2VkXT1cIml0ZW0ub3BlbmVkID09IHRydWUgPyBmYWxzZSA6IHRydWVcIj5cclxuICAgICAgICAgICAgPGF4LXByZWZpeD5cclxuICAgICAgICAgICAgICA8YXgtaWNvbiBbY2xhc3NdPVwiaXRlbS5pY29uXCI+PC9heC1pY29uPlxyXG4gICAgICAgICAgICA8L2F4LXByZWZpeD5cclxuICAgICAgICAgICAge3sgaXRlbS50ZXh0IH19XHJcbiAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpdGVtLmNoaWxkcmVuXCI+XHJcbiAgICAgICAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdGb3I9XCJsZXQgY2hpbGQgb2YgaXRlbS5jaGlsZHJlblwiIFtuZ1RlbXBsYXRlT3V0bGV0XT1cInNpZGVNZW51XCJcclxuICAgICAgICAgICAgICAgIFtuZ1RlbXBsYXRlT3V0bGV0Q29udGV4dF09XCJ7ICRpbXBsaWNpdDogY2hpbGQgfVwiPlxyXG4gICAgICAgICAgICAgIDwvbmctY29udGFpbmVyPlxyXG4gICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuICAgICAgICAgIDwvYXgtc2lkZS1tZW51LWl0ZW0+XHJcbiAgICAgICAgICB9XHJcbiAgICAgICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgICAgPC9kaXY+XHJcbiAgICA8L2F4LWNvbnRlbnQ+XHJcbiAgPC9heC1kcmF3ZXI+XHJcbiAgPGF4LWNvbnRlbnQgY2xhc3M9XCJheC1mbGV4IGF4LWZsZXgtY29sIGF4LXJlbGF0aXZlXCI+XHJcbiAgICBAaWYoc2hvd05hdmlnYXRpb25Qcm9ncmVzcygpKVxyXG4gICAge1xyXG4gICAgPGRpdiBjbGFzcz1cImF4cC1uYXZpZ2F0aW5nLXByb2dyZXNzXCI+XHJcbiAgICAgIDxkaXY+PC9kaXY+XHJcbiAgICA8L2Rpdj5cclxuICAgIH1cclxuICAgIDxheHAtZGFzaGJvYXJkLWFkbWluLWhlYWRlcj48L2F4cC1kYXNoYm9hcmQtYWRtaW4taGVhZGVyPlxyXG4gICAgPGRpdiBjbGFzcz1cImF4LWZsZXgtMSBheC1vdmVyZmxvdy1hdXRvIGF4LXJlbGF0aXZlXCIgW2F4SXNMb2FkaW5nXT1cImlzTG9hZGluZygpXCI+XHJcbiAgICAgIDxyb3V0ZXItb3V0bGV0Pjwvcm91dGVyLW91dGxldD5cclxuICAgIDwvZGl2PlxyXG4gICAgPGF4cC1kYXNoYm9hcmQtYWRtaW4tZm9vdGVyPjwvYXhwLWRhc2hib2FyZC1hZG1pbi1mb290ZXI+XHJcbiAgPC9heC1jb250ZW50PlxyXG48L2F4LWRyYXdlci1jb250YWluZXI+Il19