@acorex/modules 19.2.12 → 19.2.16

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 (283) hide show
  1. package/application-management/lib/application-management.service.d.ts +1 -1
  2. package/application-management/lib/application-management.types.d.ts +1 -1
  3. package/application-management/lib/services/application-management.service.d.ts +1 -1
  4. package/application-management/lib/services/application-module-management.service.d.ts +1 -1
  5. package/application-management/lib/services/edition-management.service.d.ts +1 -1
  6. package/application-management/lib/services/entity-management.service.d.ts +1 -1
  7. package/application-management/lib/services/feature-management.service.d.ts +1 -1
  8. package/application-management/lib/services/module-management.service.d.ts +1 -1
  9. package/application-management/lib/services/permission-management.service.d.ts +1 -1
  10. package/application-management/lib/services/property-management.service.d.ts +1 -1
  11. package/auth/lib/auth.module.d.ts +2 -3
  12. package/auth/lib/pages/login/password/password.component.d.ts +1 -0
  13. package/common/README.md +3 -0
  14. package/common/index.d.ts +6 -0
  15. package/common/lib/common.module.d.ts +6 -0
  16. package/common/lib/const.d.ts +25 -0
  17. package/common/lib/entities/dashboard/dashboard.entity.d.ts +3 -0
  18. package/common/lib/entities/dashboard/dashboard.service.d.ts +10 -0
  19. package/common/lib/entities/dashboard/dashboard.types.d.ts +8 -0
  20. package/common/lib/entities/dashboard/index.d.ts +3 -0
  21. package/common/lib/entities/dashboard-widget-data/dashboard-widget-data.entity.d.ts +3 -0
  22. package/common/lib/entities/dashboard-widget-data/dashboard-widget-data.service.d.ts +10 -0
  23. package/common/lib/entities/dashboard-widget-data/dashboard-widget-data.types.d.ts +9 -0
  24. package/common/lib/entities/dashboard-widget-data/index.d.ts +3 -0
  25. package/common/lib/entities/index.d.ts +2 -0
  26. package/common/lib/entity.provider.d.ts +10 -0
  27. package/common/lib/features/home/dashboard-home.d.ts +5 -0
  28. package/common/lib/features/home/index.d.ts +1 -0
  29. package/common/lib/menu.provider.d.ts +5 -0
  30. package/common/lib/permission.provider.d.ts +4 -0
  31. package/common/lib/search-command.provider.d.ts +4 -0
  32. package/common/lib/setting.provider.d.ts +4 -0
  33. package/conversation/lib/entities/chat/chat.service.d.ts +1 -1
  34. package/conversation/lib/entities/chat/chat.type.d.ts +1 -1
  35. package/conversation/lib/entities/chat/pages/chat/chat.component.d.ts +1 -1
  36. package/conversation/lib/entities/comments/comments.service.d.ts +1 -1
  37. package/conversation/lib/entities/comments/comments.type.d.ts +1 -1
  38. package/document-management/index.d.ts +1 -0
  39. package/document-management/lib/const.d.ts +6 -5
  40. package/document-management/lib/document-management.module.d.ts +3 -1
  41. package/document-management/lib/entities/document/document.service.d.ts +15 -5
  42. package/document-management/lib/entities/document/document.types.d.ts +2 -1
  43. package/document-management/lib/entities/document-type/document-type.service.d.ts +1 -1
  44. package/document-management/lib/entities/document-type/document-type.types.d.ts +16 -1
  45. package/document-management/lib/entities/document-type-meta-definition/document-type-meta-definition.service.d.ts +1 -1
  46. package/document-management/lib/entities/document-type-meta-definition/document-type-meta-definition.types.d.ts +1 -1
  47. package/document-management/lib/entities/document-type-meta-value/document-type-meta-value.service.d.ts +1 -1
  48. package/document-management/lib/entities/document-type-meta-value/document-type-meta-value.types.d.ts +1 -1
  49. package/document-management/lib/entities/document-type-status-definition/document-type-status-definition.service.d.ts +1 -1
  50. package/document-management/lib/entities/document-type-status-definition/document-type-status-definition.types.d.ts +1 -1
  51. package/document-management/lib/entities/folder/folder.entity.d.ts +3 -0
  52. package/document-management/lib/entities/folder/folder.service.d.ts +19 -0
  53. package/document-management/lib/entities/folder/folder.types.d.ts +37 -0
  54. package/document-management/lib/entities/folder/index.d.ts +3 -0
  55. package/document-management/lib/entities/index.d.ts +6 -0
  56. package/document-management/lib/features/document-explorer/components/create-folder-dialog/create-folder-dialog.component.d.ts +14 -0
  57. package/document-management/lib/features/document-explorer/components/rename-node-dialog/rename-node-dialog.component.d.ts +14 -0
  58. package/document-management/lib/features/document-explorer/document-explorer.component.d.ts +76 -0
  59. package/document-management/lib/features/document-explorer/document-explorer.viewmodel.d.ts +57 -0
  60. package/document-management/lib/features/document-explorer/index.d.ts +3 -0
  61. package/document-management/lib/features/document-explorer/settings.keys.d.ts +5 -0
  62. package/document-management/lib/features/drive/drive.component.d.ts +201 -0
  63. package/document-management/lib/features/drive/index.d.ts +3 -0
  64. package/document-management/lib/features/file-type/file-type.module.d.ts +6 -0
  65. package/document-management/lib/features/file-type/index.d.ts +2 -0
  66. package/document-management/lib/features/file-type/providers/archive.file.d.ts +4 -0
  67. package/document-management/lib/features/file-type/providers/audio.file.d.ts +4 -0
  68. package/document-management/lib/features/file-type/providers/code.file.d.ts +4 -0
  69. package/document-management/lib/features/file-type/providers/document.file.d.ts +4 -0
  70. package/document-management/lib/features/file-type/providers/image.file.d.ts +4 -0
  71. package/document-management/lib/features/file-type/providers/index.d.ts +6 -0
  72. package/document-management/lib/features/file-type/providers/video.file.d.ts +4 -0
  73. package/document-management/lib/features/file-type/widgets/file-type-extension/file-type-extension-column.component.d.ts +6 -0
  74. package/document-management/lib/features/file-type/widgets/file-type-extension/file-type-extension-designer.component.d.ts +6 -0
  75. package/document-management/lib/features/file-type/widgets/file-type-extension/file-type-extension-edit.component.d.ts +18 -0
  76. package/document-management/lib/features/file-type/widgets/file-type-extension/file-type-extension-view.component.d.ts +6 -0
  77. package/document-management/lib/features/file-type/widgets/file-type-extension/file-type-extension-widget.config.d.ts +7 -0
  78. package/document-management/lib/features/file-type/widgets/file-type-extension/index.d.ts +5 -0
  79. package/document-management/lib/features/file-type/widgets/index.d.ts +1 -0
  80. package/document-management/lib/features/shared/document-manager.service.d.ts +209 -0
  81. package/document-management/lib/features/shared/document-manager.types.d.ts +21 -0
  82. package/document-management/lib/features/shared/index.d.ts +1 -0
  83. package/document-management/lib/features/widgets/document-attachment/document-attachment-widget-column.component.d.ts +6 -0
  84. package/document-management/lib/features/widgets/document-attachment/document-attachment-widget-edit.component.d.ts +6 -0
  85. package/document-management/lib/features/widgets/document-attachment/document-attachment-widget-filter.component.d.ts +6 -0
  86. package/document-management/lib/features/widgets/document-attachment/document-attachment-widget-print.component.d.ts +6 -0
  87. package/document-management/lib/features/widgets/document-attachment/document-attachment-widget-view.component.d.ts +6 -0
  88. package/document-management/lib/features/widgets/document-attachment/document-attachment-widget.config.d.ts +7 -0
  89. package/document-management/lib/features/widgets/document-attachment/index.d.ts +6 -0
  90. package/document-management/lib/features/widgets/index.d.ts +1 -0
  91. package/document-management/lib/menu.provider.d.ts +1 -0
  92. package/fesm2022/acorex-modules-application-management.mjs +3 -3
  93. package/fesm2022/acorex-modules-application-management.mjs.map +1 -1
  94. package/fesm2022/{acorex-modules-auth-acorex-modules-auth-D1qxdECo.mjs → acorex-modules-auth-acorex-modules-auth-DTje3YIv.mjs} +53 -133
  95. package/fesm2022/acorex-modules-auth-acorex-modules-auth-DTje3YIv.mjs.map +1 -0
  96. package/fesm2022/{acorex-modules-auth-app-chooser.component-8GCTwtb2.mjs → acorex-modules-auth-app-chooser.component-CZxX5-T_.mjs} +2 -2
  97. package/fesm2022/{acorex-modules-auth-app-chooser.component-8GCTwtb2.mjs.map → acorex-modules-auth-app-chooser.component-CZxX5-T_.mjs.map} +1 -1
  98. package/fesm2022/{acorex-modules-auth-login.module-DR3QLEM-.mjs → acorex-modules-auth-login.module-B9P2XpfQ.mjs} +4 -4
  99. package/fesm2022/{acorex-modules-auth-login.module-DR3QLEM-.mjs.map → acorex-modules-auth-login.module-B9P2XpfQ.mjs.map} +1 -1
  100. package/fesm2022/{acorex-modules-auth-master.layout-BMJ5mW63.mjs → acorex-modules-auth-master.layout-BYC0FYq1.mjs} +2 -2
  101. package/fesm2022/{acorex-modules-auth-master.layout-BMJ5mW63.mjs.map → acorex-modules-auth-master.layout-BYC0FYq1.mjs.map} +1 -1
  102. package/fesm2022/{acorex-modules-auth-password.component-avrMwyr8.mjs → acorex-modules-auth-password.component-C7Yp-ioT.mjs} +6 -6
  103. package/fesm2022/{acorex-modules-auth-password.component-avrMwyr8.mjs.map → acorex-modules-auth-password.component-C7Yp-ioT.mjs.map} +1 -1
  104. package/fesm2022/acorex-modules-auth-password.component-DzrYH4yM.mjs +127 -0
  105. package/fesm2022/acorex-modules-auth-password.component-DzrYH4yM.mjs.map +1 -0
  106. package/fesm2022/{acorex-modules-auth-routes-BPYBFOxg.mjs → acorex-modules-auth-routes-Bu-xB4O6.mjs} +2 -2
  107. package/fesm2022/{acorex-modules-auth-routes-BPYBFOxg.mjs.map → acorex-modules-auth-routes-Bu-xB4O6.mjs.map} +1 -1
  108. package/fesm2022/{acorex-modules-auth-two-factor-code.component-YhAHhKIr.mjs → acorex-modules-auth-two-factor-code.component-DrV3UBuT.mjs} +5 -5
  109. package/fesm2022/{acorex-modules-auth-two-factor-code.component-YhAHhKIr.mjs.map → acorex-modules-auth-two-factor-code.component-DrV3UBuT.mjs.map} +1 -1
  110. package/fesm2022/{acorex-modules-auth-two-factor.module-B_V_nQN_.mjs → acorex-modules-auth-two-factor.module-YRh6_YcG.mjs} +3 -3
  111. package/fesm2022/{acorex-modules-auth-two-factor.module-B_V_nQN_.mjs.map → acorex-modules-auth-two-factor.module-YRh6_YcG.mjs.map} +1 -1
  112. package/fesm2022/acorex-modules-auth.mjs +1 -1
  113. package/fesm2022/acorex-modules-common-index-zaFxpV8u.mjs +14 -0
  114. package/fesm2022/acorex-modules-common-index-zaFxpV8u.mjs.map +1 -0
  115. package/fesm2022/acorex-modules-common.mjs +1095 -0
  116. package/fesm2022/acorex-modules-common.mjs.map +1 -0
  117. package/fesm2022/acorex-modules-conversation.mjs +2 -2
  118. package/fesm2022/acorex-modules-conversation.mjs.map +1 -1
  119. package/fesm2022/acorex-modules-document-management-acorex-modules-document-management-DagdBc6i.mjs +4242 -0
  120. package/fesm2022/acorex-modules-document-management-acorex-modules-document-management-DagdBc6i.mjs.map +1 -0
  121. package/fesm2022/acorex-modules-document-management-create-folder-dialog.component-fNeqoZfY.mjs +91 -0
  122. package/fesm2022/acorex-modules-document-management-create-folder-dialog.component-fNeqoZfY.mjs.map +1 -0
  123. package/fesm2022/acorex-modules-document-management-rename-node-dialog.component-C-eCtqLa.mjs +101 -0
  124. package/fesm2022/acorex-modules-document-management-rename-node-dialog.component-C-eCtqLa.mjs.map +1 -0
  125. package/fesm2022/acorex-modules-document-management.mjs +1 -1757
  126. package/fesm2022/acorex-modules-document-management.mjs.map +1 -1
  127. package/fesm2022/{acorex-modules-form-template-management-acorex-modules-form-template-management-BTQ4VpFG.mjs → acorex-modules-form-template-management-acorex-modules-form-template-management-szDh56Bk.mjs} +174 -64
  128. package/fesm2022/acorex-modules-form-template-management-acorex-modules-form-template-management-szDh56Bk.mjs.map +1 -0
  129. package/fesm2022/{acorex-modules-form-template-management-category.entity-ChxSjvOF.mjs → acorex-modules-form-template-management-category.entity-BZXqnhwK.mjs} +4 -17
  130. package/fesm2022/acorex-modules-form-template-management-category.entity-BZXqnhwK.mjs.map +1 -0
  131. package/fesm2022/{acorex-modules-form-template-management-designer.page-BLbPLLdP.mjs → acorex-modules-form-template-management-designer.page-Bd_bZ_7p.mjs} +4 -3
  132. package/fesm2022/acorex-modules-form-template-management-designer.page-Bd_bZ_7p.mjs.map +1 -0
  133. package/fesm2022/{acorex-modules-form-template-management-setting.provider-CByIOZMr.mjs → acorex-modules-form-template-management-setting.provider-o2_TSVfK.mjs} +2 -2
  134. package/fesm2022/{acorex-modules-form-template-management-setting.provider-CByIOZMr.mjs.map → acorex-modules-form-template-management-setting.provider-o2_TSVfK.mjs.map} +1 -1
  135. package/fesm2022/acorex-modules-form-template-management-template-picker.component-BxOdV3y2.mjs +191 -0
  136. package/fesm2022/acorex-modules-form-template-management-template-picker.component-BxOdV3y2.mjs.map +1 -0
  137. package/fesm2022/{acorex-modules-form-template-management-template-widget-edit.component-Chle-W7b.mjs → acorex-modules-form-template-management-template-widget-edit.component--MGoF75g.mjs} +32 -49
  138. package/fesm2022/acorex-modules-form-template-management-template-widget-edit.component--MGoF75g.mjs.map +1 -0
  139. package/fesm2022/{acorex-modules-form-template-management-template.entity-BIBMNXD5.mjs → acorex-modules-form-template-management-template.entity-JvWcqjzi.mjs} +3 -3
  140. package/fesm2022/acorex-modules-form-template-management-template.entity-JvWcqjzi.mjs.map +1 -0
  141. package/fesm2022/{acorex-modules-form-template-management-viewer-popup.component-DPxTaC2A.mjs → acorex-modules-form-template-management-viewer-popup.component-Bllb70Ih.mjs} +2 -2
  142. package/fesm2022/{acorex-modules-form-template-management-viewer-popup.component-DPxTaC2A.mjs.map → acorex-modules-form-template-management-viewer-popup.component-Bllb70Ih.mjs.map} +1 -1
  143. package/fesm2022/acorex-modules-form-template-management.mjs +1 -1
  144. package/fesm2022/acorex-modules-notification-management.mjs +10 -3
  145. package/fesm2022/acorex-modules-notification-management.mjs.map +1 -1
  146. package/fesm2022/{acorex-modules-organization-management-add-item.component-BXRyhcjE.mjs → acorex-modules-organization-management-add-item.component-Y-i6xDkl.mjs} +2 -2
  147. package/fesm2022/{acorex-modules-organization-management-add-item.component-BXRyhcjE.mjs.map → acorex-modules-organization-management-add-item.component-Y-i6xDkl.mjs.map} +1 -1
  148. package/fesm2022/acorex-modules-organization-management-branch.entity-DhObzxhh.mjs +344 -0
  149. package/fesm2022/acorex-modules-organization-management-branch.entity-DhObzxhh.mjs.map +1 -0
  150. package/fesm2022/{acorex-modules-organization-management-employee.entity-PwlBjkYo.mjs → acorex-modules-organization-management-employee.entity-DcJCJN3R.mjs} +4 -4
  151. package/fesm2022/acorex-modules-organization-management-employee.entity-DcJCJN3R.mjs.map +1 -0
  152. package/fesm2022/{acorex-modules-organization-management-org-chart-configuration.page-DjzqBdaS.mjs → acorex-modules-organization-management-org-chart-configuration.page-DO8wSZqZ.mjs} +2 -2
  153. package/fesm2022/{acorex-modules-organization-management-org-chart-configuration.page-DjzqBdaS.mjs.map → acorex-modules-organization-management-org-chart-configuration.page-DO8wSZqZ.mjs.map} +1 -1
  154. package/fesm2022/{acorex-modules-organization-management-org-chart.page-DMxaL-70.mjs → acorex-modules-organization-management-org-chart.page-DXyAFXwE.mjs} +16 -10
  155. package/fesm2022/acorex-modules-organization-management-org-chart.page-DXyAFXwE.mjs.map +1 -0
  156. package/fesm2022/{acorex-modules-organization-management-position.entity-B7ceEEbu.mjs → acorex-modules-organization-management-position.entity-D17Yembh.mjs} +2 -2
  157. package/fesm2022/acorex-modules-organization-management-position.entity-D17Yembh.mjs.map +1 -0
  158. package/fesm2022/{acorex-modules-organization-management-branch.entity-CxxFiBPd.mjs → acorex-modules-organization-management-role.entity-Cmbyle8P.mjs} +36 -54
  159. package/fesm2022/acorex-modules-organization-management-role.entity-Cmbyle8P.mjs.map +1 -0
  160. package/fesm2022/{acorex-modules-organization-management-setting.provider-eLv_qnmE.mjs → acorex-modules-organization-management-setting.provider-CAU8Bve9.mjs} +7 -7
  161. package/fesm2022/acorex-modules-organization-management-setting.provider-CAU8Bve9.mjs.map +1 -0
  162. package/fesm2022/acorex-modules-organization-management-team.entity-DcurAtLd.mjs +238 -0
  163. package/fesm2022/acorex-modules-organization-management-team.entity-DcurAtLd.mjs.map +1 -0
  164. package/fesm2022/acorex-modules-organization-management.mjs +200 -105
  165. package/fesm2022/acorex-modules-organization-management.mjs.map +1 -1
  166. package/fesm2022/acorex-modules-platform-management-list-version.component-CoZBz85x.mjs +59 -0
  167. package/fesm2022/acorex-modules-platform-management-list-version.component-CoZBz85x.mjs.map +1 -0
  168. package/fesm2022/acorex-modules-platform-management.mjs +867 -610
  169. package/fesm2022/acorex-modules-platform-management.mjs.map +1 -1
  170. package/fesm2022/acorex-modules-scheduler-job-management.mjs +2 -2
  171. package/fesm2022/acorex-modules-scheduler-job-management.mjs.map +1 -1
  172. package/fesm2022/acorex-modules-security-management.mjs +61 -29
  173. package/fesm2022/acorex-modules-security-management.mjs.map +1 -1
  174. package/fesm2022/acorex-modules-text-template-management.mjs +324 -6
  175. package/fesm2022/acorex-modules-text-template-management.mjs.map +1 -1
  176. package/form-template-management/lib/entities/category/category.service.d.ts +1 -1
  177. package/form-template-management/lib/entities/category/category.types.d.ts +2 -1
  178. package/form-template-management/lib/entities/template/template.service.d.ts +1 -1
  179. package/form-template-management/lib/entities/template/template.types.d.ts +1 -1
  180. package/form-template-management/lib/features/designer/designer.page.d.ts +1 -0
  181. package/form-template-management/lib/features/designer/template.provider.d.ts +1 -1
  182. package/form-template-management/lib/features/designer/widgets/template/template-widget-edit.component.d.ts +0 -4
  183. package/form-template-management/lib/features/designer/widgets/template-designer/template-designer-widget-view.component.d.ts +1 -0
  184. package/form-template-management/lib/features/designer/widgets/template-picker/template-picker.component.d.ts +14 -4
  185. package/form-template-management/lib/features/designer/widgets/template-picker/template.provider.d.ts +2 -1
  186. package/form-template-management/lib/features/designer/workflows/design-template.workflow.d.ts +1 -8
  187. package/form-template-management/lib/features/designer/workflows/workflow.actions.d.ts +17 -0
  188. package/form-template-management/lib/menu.provider.d.ts +1 -0
  189. package/notification-management/lib/entities/channel/channel.service.d.ts +1 -1
  190. package/notification-management/lib/entities/channel/channel.types.d.ts +2 -1
  191. package/notification-management/lib/entities/notification/notification.service.d.ts +1 -1
  192. package/notification-management/lib/entities/notification/notification.types.d.ts +1 -1
  193. package/notification-management/lib/entities/template/template.service.d.ts +1 -1
  194. package/notification-management/lib/entities/template/template.types.d.ts +1 -1
  195. package/notification-management/lib/menu.provider.d.ts +1 -0
  196. package/organization-management/lib/const.d.ts +3 -0
  197. package/organization-management/lib/entities/branch/branch.service.d.ts +1 -1
  198. package/organization-management/lib/entities/branch/branch.types.d.ts +1 -1
  199. package/organization-management/lib/entities/chart/chart.service.d.ts +1 -1
  200. package/organization-management/lib/entities/chart/chart.types.d.ts +1 -1
  201. package/organization-management/lib/entities/company/company.service.d.ts +1 -1
  202. package/organization-management/lib/entities/company/company.types.d.ts +1 -1
  203. package/organization-management/lib/entities/department/department.service.d.ts +1 -1
  204. package/organization-management/lib/entities/department/department.types.d.ts +1 -1
  205. package/organization-management/lib/entities/division/division.service.d.ts +1 -1
  206. package/organization-management/lib/entities/division/division.types.d.ts +1 -1
  207. package/organization-management/lib/entities/employee/employee.service.d.ts +1 -1
  208. package/organization-management/lib/entities/employee/employee.types.d.ts +1 -1
  209. package/organization-management/lib/entities/employment-type/employment-type.service.d.ts +1 -1
  210. package/organization-management/lib/entities/employment-type/employment-type.types.d.ts +1 -1
  211. package/organization-management/lib/entities/index.d.ts +6 -4
  212. package/organization-management/lib/entities/position/position.service.d.ts +1 -1
  213. package/organization-management/lib/entities/position/position.types.d.ts +1 -1
  214. package/organization-management/lib/entities/role/index.d.ts +3 -0
  215. package/organization-management/lib/entities/role/role.entity.d.ts +3 -0
  216. package/organization-management/lib/entities/role/role.module.d.ts +6 -0
  217. package/organization-management/lib/entities/role/role.service.d.ts +10 -0
  218. package/organization-management/lib/entities/role/role.types.d.ts +5 -0
  219. package/organization-management/lib/entities/team/index.d.ts +3 -0
  220. package/organization-management/lib/entities/team/team.entity.d.ts +3 -0
  221. package/organization-management/lib/entities/team/team.module.d.ts +6 -0
  222. package/organization-management/lib/entities/team/team.service.d.ts +10 -0
  223. package/organization-management/lib/entities/team/team.types.d.ts +5 -0
  224. package/organization-management/lib/features/organization-chart/org-chart-configuration.page.d.ts +3 -0
  225. package/organization-management/lib/features/organization-chart/org-chart.page.d.ts +3 -0
  226. package/organization-management/lib/organization-management.module.d.ts +11 -9
  227. package/package.json +5 -1
  228. package/platform-management/lib/common/regional/data-source.provider.d.ts +10 -0
  229. package/platform-management/lib/const.d.ts +6 -0
  230. package/platform-management/lib/entities/app-term/app-term.service.d.ts +1 -1
  231. package/platform-management/lib/entities/app-term/app-term.types.d.ts +1 -1
  232. package/platform-management/lib/entities/app-version/app-version.service.d.ts +1 -1
  233. package/platform-management/lib/entities/app-version/app-version.types.d.ts +1 -1
  234. package/platform-management/lib/entities/app-version/components/slots/app-version-slot.component.d.ts +1 -1
  235. package/platform-management/lib/entities/app-version/workflows/change-log.workflow.d.ts +1 -1
  236. package/platform-management/lib/entities/app-version/workflows/show-release-notes.workflow.d.ts +9 -0
  237. package/platform-management/lib/entities/data-source/data-source.service.d.ts +1 -1
  238. package/platform-management/lib/entities/data-source/data-source.types.d.ts +1 -1
  239. package/platform-management/lib/entities/global-variable/global-variables.service.d.ts +1 -1
  240. package/platform-management/lib/entities/global-variable/global-variables.types.d.ts +1 -1
  241. package/platform-management/lib/entities/index.d.ts +1 -1
  242. package/platform-management/lib/entities/meta-data-definition/index.d.ts +0 -1
  243. package/platform-management/lib/entities/meta-data-definition/meta-data-definition.service.d.ts +5 -5
  244. package/platform-management/lib/entities/meta-data-definition/meta-data-definition.types.d.ts +3 -4
  245. package/platform-management/lib/entities/promotion/promotion.service.d.ts +1 -1
  246. package/platform-management/lib/entities/promotion/promotion.types.d.ts +2 -1
  247. package/platform-management/lib/platform-management.module.d.ts +4 -5
  248. package/scheduler-job-management/lib/entities/scheduler-job/scheduler-job.service.d.ts +1 -1
  249. package/scheduler-job-management/lib/entities/scheduler-job/scheduler-job.types.d.ts +1 -1
  250. package/security-management/lib/entities/index.d.ts +2 -0
  251. package/security-management/lib/entities/profile/profile.types.d.ts +1 -1
  252. package/security-management/lib/entities/roles/roles.service.d.ts +1 -1
  253. package/security-management/lib/entities/roles/roles.types.d.ts +3 -1
  254. package/security-management/lib/entities/users/users.service.d.ts +1 -1
  255. package/security-management/lib/entities/users/users.types.d.ts +12 -3
  256. package/text-template-management/lib/const.d.ts +6 -0
  257. package/text-template-management/lib/entities/category/category.service.d.ts +1 -1
  258. package/text-template-management/lib/entities/category/category.types.d.ts +1 -1
  259. package/text-template-management/lib/entities/index.d.ts +1 -0
  260. package/text-template-management/lib/entities/tag-template/index.d.ts +3 -0
  261. package/text-template-management/lib/entities/tag-template/tag-template.entity.d.ts +3 -0
  262. package/text-template-management/lib/entities/tag-template/tag-template.service.d.ts +10 -0
  263. package/text-template-management/lib/entities/tag-template/tag-template.types.d.ts +5 -0
  264. package/text-template-management/lib/entities/template/template.service.d.ts +1 -1
  265. package/text-template-management/lib/entities/template/template.types.d.ts +1 -1
  266. package/auth/lib/store/auth.effects.d.ts +0 -18
  267. package/auth/lib/store/index.d.ts +0 -1
  268. package/fesm2022/acorex-modules-auth-acorex-modules-auth-D1qxdECo.mjs.map +0 -1
  269. package/fesm2022/acorex-modules-auth-password.component-EXWlXGez.mjs +0 -121
  270. package/fesm2022/acorex-modules-auth-password.component-EXWlXGez.mjs.map +0 -1
  271. package/fesm2022/acorex-modules-form-template-management-acorex-modules-form-template-management-BTQ4VpFG.mjs.map +0 -1
  272. package/fesm2022/acorex-modules-form-template-management-category.entity-ChxSjvOF.mjs.map +0 -1
  273. package/fesm2022/acorex-modules-form-template-management-designer.page-BLbPLLdP.mjs.map +0 -1
  274. package/fesm2022/acorex-modules-form-template-management-template-picker.component-BGSucRLY.mjs +0 -126
  275. package/fesm2022/acorex-modules-form-template-management-template-picker.component-BGSucRLY.mjs.map +0 -1
  276. package/fesm2022/acorex-modules-form-template-management-template-widget-edit.component-Chle-W7b.mjs.map +0 -1
  277. package/fesm2022/acorex-modules-form-template-management-template.entity-BIBMNXD5.mjs.map +0 -1
  278. package/fesm2022/acorex-modules-organization-management-branch.entity-CxxFiBPd.mjs.map +0 -1
  279. package/fesm2022/acorex-modules-organization-management-employee.entity-PwlBjkYo.mjs.map +0 -1
  280. package/fesm2022/acorex-modules-organization-management-org-chart.page-DMxaL-70.mjs.map +0 -1
  281. package/fesm2022/acorex-modules-organization-management-position.entity-B7ceEEbu.mjs.map +0 -1
  282. package/fesm2022/acorex-modules-organization-management-setting.provider-eLv_qnmE.mjs.map +0 -1
  283. package/platform-management/lib/entities/meta-data-definition/meta-data-definition.module.d.ts +0 -6
@@ -0,0 +1,209 @@
1
+ import { AXDialogService } from '@acorex/components/dialog';
2
+ import { AXPopupService } from '@acorex/components/popup';
3
+ import { AXPSessionService } from '@acorex/platform/auth';
4
+ import { AXMDocumentManagementFolderCreateDto, AXMDocumentService, AXMFolderService } from '../../entities';
5
+ import { AXMDocumentExplorerNode, AXMDriveScope, CreateFileDto, UpdateFileDto, UpdateFolderDto } from './document-manager.types';
6
+ import * as i0 from "@angular/core";
7
+ /**
8
+ * Interface defining the contract for document drive service
9
+ */
10
+ export interface AXMDocumentManagerServiceInterface {
11
+ scope(scope: AXMDriveScope, options?: {
12
+ tenantId?: string;
13
+ userId?: string;
14
+ }): ScopedDriveService;
15
+ getRoot(scope: AXMDriveScope, options?: {
16
+ tenantId?: string;
17
+ userId?: string;
18
+ }): Promise<{
19
+ path: AXMDocumentExplorerNode[];
20
+ result: AXMDocumentExplorerNode;
21
+ }>;
22
+ getFolder(folderId: string): Promise<{
23
+ path: AXMDocumentExplorerNode[];
24
+ result: AXMDocumentExplorerNode;
25
+ }>;
26
+ createFolder(data: AXMDocumentManagementFolderCreateDto): Promise<AXMDocumentExplorerNode>;
27
+ updateFolder(folderId: string, data: UpdateFolderDto): Promise<AXMDocumentExplorerNode>;
28
+ deleteFolder(folderId: string): Promise<void>;
29
+ getAvailableSpace(): Promise<number>;
30
+ createFile(data: CreateFileDto): Promise<AXMDocumentExplorerNode>;
31
+ updateFile(fileId: string, data: UpdateFileDto): Promise<AXMDocumentExplorerNode>;
32
+ deleteFile(fileId: string): Promise<void>;
33
+ deleteNodes(nodeIds: string[]): Promise<void>;
34
+ showCreateFolderDialog(parentId?: string): Promise<AXMDocumentExplorerNode | null>;
35
+ showDeleteNodesDialog(nodeIds: string[]): Promise<void>;
36
+ /**
37
+ * جستجوی فولدرها با نام مشخص شده در اسکوپ
38
+ * @param searchTerm عبارت جستجو
39
+ * @param scope اسکوپ جستجو
40
+ * @param options گزینه‌های اضافی مانند tenantId و userId
41
+ */
42
+ searchFolders(searchTerm: string, scope: AXMDriveScope, options?: {
43
+ tenantId?: string;
44
+ userId?: string;
45
+ }): Promise<AXMDocumentExplorerNode[]>;
46
+ /**
47
+ * جستجوی فایل‌ها با نام مشخص شده در اسکوپ
48
+ * @param searchTerm عبارت جستجو
49
+ * @param scope اسکوپ جستجو
50
+ * @param options گزینه‌های اضافی مانند tenantId و userId
51
+ */
52
+ searchFiles(searchTerm: string, scope: AXMDriveScope, options?: {
53
+ tenantId?: string;
54
+ userId?: string;
55
+ }): Promise<AXMDocumentExplorerNode[]>;
56
+ /**
57
+ * جستجوی تمام نودها (فولدرها و فایل‌ها) با نام مشخص شده در اسکوپ
58
+ * @param searchTerm عبارت جستجو
59
+ * @param scope اسکوپ جستجو
60
+ * @param options گزینه‌های اضافی مانند tenantId و userId
61
+ */
62
+ searchNodes(searchTerm: string, scope: AXMDriveScope, options?: {
63
+ tenantId?: string;
64
+ userId?: string;
65
+ }): Promise<AXMDocumentExplorerNode[]>;
66
+ }
67
+ /**
68
+ * Service for handling document drive operations
69
+ */
70
+ export declare class AXMDocumentManagerService implements AXMDocumentManagerServiceInterface {
71
+ protected folderService: AXMFolderService;
72
+ protected sessionService: AXPSessionService;
73
+ protected documentService: AXMDocumentService;
74
+ protected popupService: AXPopupService;
75
+ protected dialogService: AXDialogService;
76
+ private scopedDriveCache;
77
+ scope(scope: AXMDriveScope, options?: {
78
+ tenantId?: string;
79
+ userId?: string;
80
+ }): ScopedDriveService;
81
+ private getScopeCacheKey;
82
+ /**
83
+ * Gets the platform root folder (top-level folder)
84
+ * @returns Root folder for the platform
85
+ */
86
+ private getPlatformRootFolder;
87
+ /**
88
+ * Gets the tenant root folder
89
+ * @param rootFolderId The platform root folder ID
90
+ * @param tenantId The tenant ID
91
+ * @returns Tenant root folder
92
+ */
93
+ private getTenantRootFolder;
94
+ /**
95
+ * Gets the user root folder
96
+ * @param tenantFolderId The tenant folder ID
97
+ * @param tenantId The tenant ID
98
+ * @param userId The user ID
99
+ * @returns User root folder
100
+ */
101
+ private getUserRootFolder;
102
+ private mapFolderDtoToFolderNode;
103
+ private buildPath;
104
+ private findNodeById;
105
+ /**
106
+ * Gets the root folder based on the specified scope
107
+ * @param scope The drive scope (Platform, Tenant, User)
108
+ * @param options Optional parameters for tenant and user IDs
109
+ * @returns Root folder for the specified scope
110
+ */
111
+ getRoot(scope: AXMDriveScope, options?: {
112
+ tenantId?: string;
113
+ userId?: string;
114
+ }): Promise<{
115
+ path: AXMDocumentExplorerNode[];
116
+ result: AXMDocumentExplorerNode;
117
+ }>;
118
+ /**
119
+ * Gets a specific folder by ID
120
+ * @param folderId The folder ID to retrieve
121
+ * @returns The requested folder
122
+ */
123
+ getFolder(folderId: string): Promise<{
124
+ path: AXMDocumentExplorerNode[];
125
+ result: AXMDocumentExplorerNode;
126
+ }>;
127
+ createFolder(data: AXMDocumentManagementFolderCreateDto): Promise<AXMDocumentExplorerNode>;
128
+ updateFolder(folderId: string, data: UpdateFolderDto): Promise<AXMDocumentExplorerNode>;
129
+ deleteFolder(folderId: string): Promise<void>;
130
+ getAvailableSpace(): Promise<number>;
131
+ private mapFileToNode;
132
+ createFile(data: CreateFileDto): Promise<AXMDocumentExplorerNode>;
133
+ updateFile(fileId: string, data: UpdateFileDto): Promise<AXMDocumentExplorerNode>;
134
+ deleteFile(fileId: string): Promise<void>;
135
+ deleteNodes(nodeIds: string[]): Promise<void>;
136
+ showCreateFolderDialog(parentId?: string): Promise<AXMDocumentExplorerNode | null>;
137
+ rename(node: AXMDocumentExplorerNode): Promise<AXMDocumentExplorerNode>;
138
+ showDeleteNodesDialog(nodeIds: string[]): Promise<void>;
139
+ /**
140
+ * جستجوی فولدرها با نام مشخص شده در اسکوپ
141
+ * @param searchTerm عبارت جستجو
142
+ * @param scope اسکوپ جستجو
143
+ * @param options گزینه‌های اضافی مانند tenantId و userId
144
+ */
145
+ searchFolders(searchTerm: string, scope: AXMDriveScope, options?: {
146
+ tenantId?: string;
147
+ userId?: string;
148
+ }): Promise<AXMDocumentExplorerNode[]>;
149
+ /**
150
+ * جستجوی فایل‌ها با نام مشخص شده در اسکوپ
151
+ * @param searchTerm عبارت جستجو
152
+ * @param scope اسکوپ جستجو
153
+ * @param options گزینه‌های اضافی مانند tenantId و userId
154
+ */
155
+ searchFiles(searchTerm: string, scope: AXMDriveScope, options?: {
156
+ tenantId?: string;
157
+ userId?: string;
158
+ }): Promise<AXMDocumentExplorerNode[]>;
159
+ /**
160
+ * جستجوی تمام نودها (فولدرها و فایل‌ها) با نام مشخص شده در اسکوپ
161
+ * @param searchTerm عبارت جستجو
162
+ * @param scope اسکوپ جستجو
163
+ * @param options گزینه‌های اضافی مانند tenantId و userId
164
+ */
165
+ searchNodes(searchTerm: string, scope: AXMDriveScope, options?: {
166
+ tenantId?: string;
167
+ userId?: string;
168
+ }): Promise<AXMDocumentExplorerNode[]>;
169
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXMDocumentManagerService, never>;
170
+ static ɵprov: i0.ɵɵInjectableDeclaration<AXMDocumentManagerService>;
171
+ }
172
+ declare class ScopedDriveService {
173
+ private parent;
174
+ private scope;
175
+ private options?;
176
+ constructor(parent: AXMDocumentManagerService, scope: AXMDriveScope, options?: {
177
+ tenantId?: string;
178
+ userId?: string;
179
+ } | undefined);
180
+ private validateScopeOptions;
181
+ getRoot(): Promise<{
182
+ path: AXMDocumentExplorerNode[];
183
+ result: AXMDocumentExplorerNode;
184
+ }>;
185
+ getFolder(folderId: string): Promise<{
186
+ path: AXMDocumentExplorerNode[];
187
+ result: AXMDocumentExplorerNode;
188
+ }>;
189
+ createFolder(data: Omit<AXMDocumentManagementFolderCreateDto, 'tenantId' | 'userId'>): Promise<AXMDocumentExplorerNode>;
190
+ updateFolder(folderId: string, data: UpdateFolderDto): Promise<AXMDocumentExplorerNode>;
191
+ deleteFolder(folderId: string): Promise<void>;
192
+ getAvailableSpace(): Promise<number>;
193
+ /**
194
+ * جستجوی فولدرها با نام مشخص شده در اسکوپ فعلی
195
+ * @param searchTerm عبارت جستجو
196
+ */
197
+ searchFolders(searchTerm: string): Promise<AXMDocumentExplorerNode[]>;
198
+ /**
199
+ * جستجوی فایل‌ها با نام مشخص شده در اسکوپ فعلی
200
+ * @param searchTerm عبارت جستجو
201
+ */
202
+ searchFiles(searchTerm: string): Promise<AXMDocumentExplorerNode[]>;
203
+ /**
204
+ * جستجوی تمام نودها (فولدرها و فایل‌ها) با نام مشخص شده در اسکوپ فعلی
205
+ * @param searchTerm عبارت جستجو
206
+ */
207
+ searchNodes(searchTerm: string): Promise<AXMDocumentExplorerNode[]>;
208
+ }
209
+ export {};
@@ -0,0 +1,21 @@
1
+ import { AXMDocumentManagementDocumentEntityModel, AXMDocumentManagementFolderEntityModel } from "../../entities";
2
+ export type AXMDriveScopeKey = 'P' | 'T' | 'U';
3
+ export declare enum AXMDriveScope {
4
+ Platform = "P",
5
+ Tenant = "T",
6
+ User = "U"
7
+ }
8
+ export interface AXMDocumentExplorerNode {
9
+ id: string;
10
+ name: string;
11
+ type: 'file' | 'folder';
12
+ parentId: string | null;
13
+ children?: AXMDocumentExplorerNode[];
14
+ size?: number;
15
+ lastModified?: Date;
16
+ }
17
+ export type AXPDocumentExplorerViewMode = 'grid' | 'list';
18
+ export type CreateFolderDto = Partial<Omit<AXMDocumentManagementFolderEntityModel, 'id'>>;
19
+ export type UpdateFolderDto = Partial<Omit<AXMDocumentManagementFolderEntityModel, 'id'>>;
20
+ export type CreateFileDto = Omit<AXMDocumentManagementDocumentEntityModel, 'id'>;
21
+ export type UpdateFileDto = Partial<Omit<AXMDocumentManagementDocumentEntityModel, 'id'>>;
@@ -0,0 +1 @@
1
+ export * from './document-manager.service';
@@ -0,0 +1,6 @@
1
+ import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
2
+ import * as i0 from "@angular/core";
3
+ export declare class AXMDocumentAttachmentWidgetColumnComponent extends AXPWidgetComponent<any> {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXMDocumentAttachmentWidgetColumnComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXMDocumentAttachmentWidgetColumnComponent, "ng-component", never, {}, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
2
+ import * as i0 from "@angular/core";
3
+ export declare class AXMDocumentAttachmentWidgetEditComponent extends AXPWidgetComponent<any> {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXMDocumentAttachmentWidgetEditComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXMDocumentAttachmentWidgetEditComponent, "axm-document-attachment-widget", never, {}, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
2
+ import * as i0 from "@angular/core";
3
+ export declare class AXMDocumentAttachmentWidgetFilterComponent extends AXPWidgetComponent<any> {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXMDocumentAttachmentWidgetFilterComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXMDocumentAttachmentWidgetFilterComponent, "ng-component", never, {}, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
2
+ import * as i0 from "@angular/core";
3
+ export declare class AXMDocumentAttachmentWidgetPrintComponent extends AXPWidgetComponent<any> {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXMDocumentAttachmentWidgetPrintComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXMDocumentAttachmentWidgetPrintComponent, "ng-component", never, {}, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
2
+ import * as i0 from "@angular/core";
3
+ export declare class AXMDocumentAttachmentWidgetViewComponent extends AXPWidgetComponent<any> {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXMDocumentAttachmentWidgetViewComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXMDocumentAttachmentWidgetViewComponent, "axp-document-attachment-widget", never, {}, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,7 @@
1
+ import { AXPWidgetConfig } from '@acorex/platform/layout/builder';
2
+ export declare const AXMDocumentAttachmentWidget: AXPWidgetConfig;
3
+ declare module '@acorex/platform/layout/builder' {
4
+ interface AXPWidgetTypesMap {
5
+ documentAttachment: 'document-attachment-editor';
6
+ }
7
+ }
@@ -0,0 +1,6 @@
1
+ export * from './document-attachment-widget-column.component';
2
+ export * from './document-attachment-widget-edit.component';
3
+ export * from './document-attachment-widget-filter.component';
4
+ export * from './document-attachment-widget-print.component';
5
+ export * from './document-attachment-widget-view.component';
6
+ export * from './document-attachment-widget.config';
@@ -0,0 +1 @@
1
+ export * from './document-attachment';
@@ -1,5 +1,6 @@
1
1
  import { AXPMenuProvider, AXPMenuProviderContext } from '@acorex/platform/common';
2
2
  export declare class AXMMenuProvider implements AXPMenuProvider {
3
3
  private entityService;
4
+ private sessionService;
4
5
  provide(context: AXPMenuProviderContext): Promise<void>;
5
6
  }
@@ -1,5 +1,5 @@
1
- import { AXPStickyDirective, AXPGridLayoutDirective, AXPDataGenerator, AXPEntityStorageService, AXPEntityDataProviderImpl, AXMEntityCrudServiceImpl, AXPWorkflowNavigateAction, AXP_MENU_PROVIDER, AXPEntityQueryType, AXPEntityCommandScope } from '@acorex/platform/common';
2
- import { AXPEntityDetailViewModelResolver, AXP_ENTITY_DEFINITION_LOADER } from '@acorex/platform/layout/entity';
1
+ import { AXPStickyDirective, AXPGridLayoutDirective, AXPDataGenerator, AXPWorkflowNavigateAction, AXP_MENU_PROVIDER, AXPEntityQueryType, AXPEntityCommandScope } from '@acorex/platform/common';
2
+ import { AXPEntityDetailViewModelResolver, AXPEntityStorageService, AXPEntityDataProviderImpl, AXMEntityCrudServiceImpl, AXP_ENTITY_DEFINITION_LOADER } from '@acorex/platform/layout/entity';
3
3
  import * as i1$1 from '@acorex/platform/workflow';
4
4
  import { AXPWorkflowAction, AXPWorkflowModule } from '@acorex/platform/workflow';
5
5
  import * as i0 from '@angular/core';
@@ -54,7 +54,7 @@ class AXPModuleEntityDetailViewComponent {
54
54
  this.vm.destroy();
55
55
  }
56
56
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXPModuleEntityDetailViewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
57
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.0.3", type: AXPModuleEntityDetailViewComponent, isStandalone: true, selector: "ng-component", ngImport: i0, template: "<div\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-lightest ax-border-b md:ax-border-0 md:ax-bg-default\"\n>\n <div\n class=\"ax-flex ax-flex-col ax-pt-4 ax-sticky ax-top-0 ax-z-10 ax-transition-all\"\n #sticky=\"axpSticky\"\n [axpSticky]=\"'ax-bg-lightest ax-px-6 ax-py-3 -ax-mx-6 ax-shadow-xl'\"\n [stickyOffset]=\"30\"\n >\n <!-------- Begin Toolbar -------->\n <div class=\"ax-flex ax-justify-between ax-items-center\">\n <!-------- Begin Title -------->\n <div class=\"ax-flex ax-gap-1 ax-items-center\">\n <div class=\"ax-flex ax-flex-col ax-gap-2 ax-transition\">\n <div class=\"ax-text-xl md:ax-text-2xl ax-font-bold\">{{ vm.title() | translate | async }}</div>\n @if(vm.description()) {\n <div class=\"ax-text-sm ax-text-neutral-600\" [class.ax-hidden]=\"sticky.isSticky\">\n {{ vm.description() }}\n </div>\n }\n <ax-breadcrumbs class=\"child:ax-font-normal child:ax-text-neutral-400\" [class.ax-hidden]=\"store.isSmall()\">\n <ng-template #divider>\n <i class=\"fa-solid fa-chevron-right ax-text-xs ax-mx-2\"></i>\n </ng-template>\n @for(b of vm.beardcrumbs();track $index;let last=$last) {\n <ax-breadcrumbs-item\n [active]=\"last\"\n [class.!ax-font-semibold]=\"last\"\n [class.!ax-text-neutral-600]=\"last\"\n [routerLink]=\"b.url\"\n >\n @if(b.icon) {\n <i [class]=\"b.icon\"></i>\n }\n {{ b.title | translate | async }}\n </ax-breadcrumbs-item>\n }\n </ax-breadcrumbs>\n </div>\n </div>\n <!-------- Finish Title -------->\n <!--------------------------------------------------------------->\n <!-- Begin Action Menu -->\n <div class=\"ax-flex ax-items-center ax-gap-3\">\n @for(tr of vm.primaryActions();track $index) {\n <ax-button [text]=\"tr.title | translate | async\" [color]=\"tr.color\" (onClick)=\"vm.executeCommand(tr.name)\">\n <ax-prefix>\n <ax-icon [icon]=\"tr.icon\"> </ax-icon>\n </ax-prefix>\n </ax-button>\n } @if(vm.secondaryActions().length) {\n <ax-button [text]=\"store.isSmall() ? null : 'Actions'\" [color]=\"'default'\">\n <ax-prefix>\n <i class=\"fa-solid fa-ellipsis-vertical\"></i>\n </ax-prefix>\n <ax-dropdown-panel>\n <ax-button-item-list>\n @for(tr of vm.secondaryActions();track $index) {\n <ng-container>\n @if(tr.separated) {\n <ax-divider></ax-divider>\n }\n <ax-button-item\n [text]=\"tr.title\"\n class=\"ax-font-semibold ax-text-{{ tr.color }}\"\n (onClick)=\"vm.executeCommand(tr.name)\"\n >\n <ax-prefix>\n <ax-icon [icon]=\"tr.icon\"> </ax-icon>\n </ax-prefix>\n </ax-button-item>\n </ng-container>\n }\n </ax-button-item-list>\n </ax-dropdown-panel>\n </ax-button>\n }\n </div>\n <!-- Finish Action Menu -->\n </div>\n <!-- Start Sections -->\n <div class=\"ax-grid ax-grid-cols-12 ax-gap-4\">\n @for(section of vm.sections(); track section.name()) {\n <div class=\"ax-card ax-mt-4\" [gridLayout]=\"section.layout()\">\n <ax-form #form>\n <axp-widgets-container [context]=\"vm.context()\">\n <div class=\"ax-card-header !ax-py-2 !ax-px-4\">\n <p>\n <span class=\"!ax-text-lg ax-font-semibold\">{{ section.title() }}</span>\n <br />\n @if(section.description()) {\n <span class=\"ax-text-sm ax-font-normal ax-text-gray-500\">{{ section.description() }}</span>\n }\n </p>\n @if(section.editable()) {\n <ax-button\n class=\"ax-xs\"\n [color]=\"'default'\"\n [look]=\"'blank'\"\n (onClick)=\"vm.executeCommand('modify-entity-section', section)\"\n >\n <ax-icon class=\"fa-solid fa-pen ax-text-gray-600\"> </ax-icon>\n </ax-button>\n }\n </div>\n <div class=\"ax-card-body !ax-grid !ax-grid-cols-12 !ax-gap-4\">\n @for(attr of section.props(); track $index) {\n <div class=\"ax-flex ax-flex-col ax-gap-1\" [gridLayout]=\"attr.layout()\">\n <div>\n <div>\n <span class=\"ax-font-semibold\">{{ attr.title() | translate | async }}</span>\n </div>\n </div>\n <div class=\"ax-text-neutral-500\">\n <ng-coniatiner axp-widget-renderer [node]=\"attr.node()\" [mode]=\"'view'\"> </ng-coniatiner>\n </div>\n </div>\n }\n </div>\n </axp-widgets-container>\n </ax-form>\n </div>\n }\n </div>\n <!-- Finish Sections -->\n @if((vm.relatedEntities()|async)?.length) {\n <ax-tabs\n [look]=\"'with-line'\"\n class=\"ax-mt-2 ax-font-semibold\"\n #tab\n (onActiveTabChanged)=\"handleActiveRelatedEntityChanged($event)\"\n >\n @for(e of (vm.relatedEntities()|async);track $index;let index= $index){\n <ax-tab-item [text]=\"(e.title() | translate | async)!\" [key]=\"index.toString()\"> </ax-tab-item>\n }\n </ax-tabs>\n @for(e of (vm.relatedEntities()|async);track $index;let index= $index){\n <div [class.ax-hidden]=\"$index !== selectedRelatedIEntityTabIndex()\">\n <axp-entity-detail-list-view [viewModel]=\"e\"></axp-entity-detail-list-view>\n </div>\n } }\n </div>\n</div>\n", 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-subtitle, 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", "look", "messageStyle", "updateOn"], outputs: ["onValidate", "updateOnChange"] }, { kind: "ngmodule", type: AXActionSheetModule }, { kind: "ngmodule", type: AXDrawerModule }, { kind: "ngmodule", type: AXDialogModule }, { kind: "ngmodule", type: AXLoadingModule }, { kind: "ngmodule", type: AXTabsModule }, { kind: "component", type: i6.AXTabsComponent, selector: "ax-tabs", inputs: ["look", "location", "fitParent", "minWidth", "content"], outputs: ["onActiveTabChanged"] }, { kind: "component", type: i6.AXTabItemComponent, selector: "ax-tab-item", inputs: ["disabled", "text", "key", "headerTemplate", "active"], outputs: ["disabledChange", "onClick", "onBlur", "onFocus", "activeChange"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i7.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "loadingTextChange"] }, { kind: "component", type: i7.AXButtonItemComponent, selector: "ax-button-item", inputs: ["color", "disabled", "text", "selected", "divided", "data", "name"], outputs: ["onClick", "onFocus", "onBlur", "disabledChange"] }, { kind: "component", type: i7.AXButtonItemListComponent, selector: "ax-button-item-list", inputs: ["items"], outputs: ["onItemClick"] }, { kind: "ngmodule", type: AXBreadcrumbsModule }, { kind: "component", type: i8.AXBreadCrumbsComponent, selector: "ax-breadcrumbs" }, { kind: "component", type: i8.AXBreadCrumbsItemComponent, selector: "ax-breadcrumbs-item", inputs: ["disabled", "active"] }, { kind: "ngmodule", type:
57
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.0.3", type: AXPModuleEntityDetailViewComponent, isStandalone: true, selector: "ng-component", ngImport: i0, template: "<div\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-lightest ax-border-b md:ax-border-0 md:ax-bg-default\"\n>\n <div\n class=\"ax-flex ax-flex-col ax-pt-4 ax-sticky ax-top-0 ax-z-10 ax-transition-all\"\n #sticky=\"axpSticky\"\n [axpSticky]=\"'ax-bg-lightest ax-px-6 ax-py-3 -ax-mx-6 ax-shadow-xl'\"\n [stickyOffset]=\"30\"\n >\n <!-------- Begin Toolbar -------->\n <div class=\"ax-flex ax-justify-between ax-items-center\">\n <!-------- Begin Title -------->\n <div class=\"ax-flex ax-gap-1 ax-items-center\">\n <div class=\"ax-flex ax-flex-col ax-gap-2 ax-transition\">\n <div class=\"ax-text-xl md:ax-text-2xl ax-font-bold\">{{ vm.title() | translate | async }}</div>\n @if(vm.description()) {\n <div class=\"ax-text-sm ax-text-neutral-600\" [class.ax-hidden]=\"sticky.isSticky\">\n {{ vm.description() }}\n </div>\n }\n <ax-breadcrumbs class=\"child:ax-font-normal child:ax-text-neutral-400\" [class.ax-hidden]=\"store.isSmall()\">\n <ng-template #divider>\n <i class=\"fa-solid fa-chevron-right ax-text-xs ax-mx-2\"></i>\n </ng-template>\n @for(b of vm.beardcrumbs();track $index;let last=$last) {\n <ax-breadcrumbs-item\n [active]=\"last\"\n [class.!ax-font-semibold]=\"last\"\n [class.!ax-text-neutral-600]=\"last\"\n [routerLink]=\"b.url\"\n >\n @if(b.icon) {\n <i [class]=\"b.icon\"></i>\n }\n {{ b.title | translate | async }}\n </ax-breadcrumbs-item>\n }\n </ax-breadcrumbs>\n </div>\n </div>\n <!-------- Finish Title -------->\n <!--------------------------------------------------------------->\n <!-- Begin Action Menu -->\n <div class=\"ax-flex ax-items-center ax-gap-3\">\n @for(tr of vm.primaryActions();track $index) {\n <ax-button [text]=\"tr.title | translate | async\" [color]=\"tr.color\" (onClick)=\"vm.executeCommand(tr.name)\">\n <ax-prefix>\n <ax-icon [icon]=\"tr.icon\"> </ax-icon>\n </ax-prefix>\n </ax-button>\n } @if(vm.secondaryActions().length) {\n <ax-button [text]=\"store.isSmall() ? null : 'Actions'\" [color]=\"'default'\">\n <ax-prefix>\n <i class=\"fa-solid fa-ellipsis-vertical\"></i>\n </ax-prefix>\n <ax-dropdown-panel>\n <ax-button-item-list>\n @for(tr of vm.secondaryActions();track $index) {\n <ng-container>\n @if(tr.separated) {\n <ax-divider></ax-divider>\n }\n <ax-button-item\n [text]=\"tr.title\"\n class=\"ax-font-semibold ax-text-{{ tr.color }}\"\n (onClick)=\"vm.executeCommand(tr.name)\"\n >\n <ax-prefix>\n <ax-icon [icon]=\"tr.icon\"> </ax-icon>\n </ax-prefix>\n </ax-button-item>\n </ng-container>\n }\n </ax-button-item-list>\n </ax-dropdown-panel>\n </ax-button>\n }\n </div>\n <!-- Finish Action Menu -->\n </div>\n <!-- Start Sections -->\n <div class=\"ax-grid ax-grid-cols-12 ax-gap-4\">\n @for(section of vm.sections(); track section.name()) {\n <div class=\"ax-card ax-mt-4\" [gridLayout]=\"section.layout()\">\n <ax-form #form>\n <axp-widgets-container [context]=\"vm.context()\">\n <div class=\"ax-card-header !ax-py-2 !ax-px-4\">\n <p>\n <span class=\"!ax-text-lg ax-font-semibold\">{{ section.title() }}</span>\n <br />\n @if(section.description()) {\n <span class=\"ax-text-sm ax-font-normal ax-text-gray-500\">{{ section.description() }}</span>\n }\n </p>\n @if(section.editable()) {\n <ax-button\n class=\"ax-xs\"\n [color]=\"'default'\"\n [look]=\"'blank'\"\n (onClick)=\"vm.executeCommand('modify-entity-section', section)\"\n >\n <ax-icon class=\"fa-solid fa-pen ax-text-gray-600\"> </ax-icon>\n </ax-button>\n }\n </div>\n <div class=\"ax-card-body !ax-grid !ax-grid-cols-12 !ax-gap-4\">\n @for(attr of section.props(); track $index) {\n <div class=\"ax-flex ax-flex-col ax-gap-1\" [gridLayout]=\"attr.layout()\">\n <div>\n <div>\n <span class=\"ax-font-semibold\">{{ attr.title() | translate | async }}</span>\n </div>\n </div>\n <div class=\"ax-text-neutral-500\">\n <ng-coniatiner axp-widget-renderer [node]=\"attr.node()\" [mode]=\"'view'\"> </ng-coniatiner>\n </div>\n </div>\n }\n </div>\n </axp-widgets-container>\n </ax-form>\n </div>\n }\n </div>\n <!-- Finish Sections -->\n @if((vm.relatedEntities()|async)?.length) {\n <ax-tabs\n [look]=\"'with-line'\"\n class=\"ax-mt-2 ax-font-semibold\"\n #tab\n (onActiveTabChanged)=\"handleActiveRelatedEntityChanged($event)\"\n >\n @for(e of (vm.relatedEntities()|async);track $index;let index= $index){\n <ax-tab-item [text]=\"(e.title() | translate | async)!\" [key]=\"index.toString()\"> </ax-tab-item>\n }\n </ax-tabs>\n @for(e of (vm.relatedEntities()|async);track $index;let index= $index){\n <div [class.ax-hidden]=\"$index !== selectedRelatedIEntityTabIndex()\">\n <axp-entity-detail-list-view [viewModel]=\"e\"></axp-entity-detail-list-view>\n </div>\n } }\n </div>\n</div>\n", 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-subtitle, ax-placeholder, ax-overlay" }, { kind: "ngmodule", type: AXDropdownModule }, { kind: "component", type: i4.AXDropdownPanelComponent, selector: "ax-dropdown-panel", inputs: ["isOpen", "fitParent", "dropdownWidth", "position", "placement", "_target", "adaptivityEnabled"], outputs: ["onOpened", "onClosed"] }, { kind: "ngmodule", type: AXPopoverModule }, { kind: "ngmodule", type: AXFormModule }, { kind: "component", type: i5.AXFormComponent, selector: "ax-form", inputs: ["labelMode", "look", "messageStyle", "updateOn"], outputs: ["onValidate", "updateOnChange"] }, { kind: "ngmodule", type: AXActionSheetModule }, { kind: "ngmodule", type: AXDrawerModule }, { kind: "ngmodule", type: AXDialogModule }, { kind: "ngmodule", type: AXLoadingModule }, { kind: "ngmodule", type: AXTabsModule }, { kind: "component", type: i6.AXTabsComponent, selector: "ax-tabs", inputs: ["look", "location", "fitParent", "minWidth", "content"], outputs: ["onActiveTabChanged"] }, { kind: "component", type: i6.AXTabItemComponent, selector: "ax-tab-item", inputs: ["disabled", "text", "key", "headerTemplate", "active"], outputs: ["disabledChange", "onClick", "onBlur", "onFocus", "activeChange"] }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: i7.AXButtonComponent, selector: "ax-button", inputs: ["disabled", "size", "tabIndex", "color", "look", "text", "toggleable", "selected", "type", "loadingText"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange", "lookChange", "colorChange", "disabledChange", "loadingTextChange"] }, { kind: "component", type: i7.AXButtonItemComponent, selector: "ax-button-item", inputs: ["color", "disabled", "text", "selected", "divided", "data", "name"], outputs: ["onClick", "onFocus", "onBlur", "disabledChange"] }, { kind: "component", type: i7.AXButtonItemListComponent, selector: "ax-button-item-list", inputs: ["items"], outputs: ["onItemClick"] }, { kind: "ngmodule", type: AXBreadcrumbsModule }, { kind: "component", type: i8.AXBreadCrumbsComponent, selector: "ax-breadcrumbs" }, { kind: "component", type: i8.AXBreadCrumbsItemComponent, selector: "ax-breadcrumbs-item", inputs: ["disabled", "active"] }, { kind: "ngmodule", type:
58
58
  //
59
59
  AXPLayoutBuilderModule }, { kind: "component", type: i9.AXPWidgetContainerComponent, selector: "axp-widgets-container", inputs: ["context", "functions"], outputs: ["onContextChanged"] }, { kind: "directive", type: i9.AXPWidgetRendererDirective, selector: "[axp-widget-renderer]", inputs: ["parentNode", "index", "mode", "node"], exportAs: ["widgetRenderer"] }, { 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: "ngmodule", type:
60
60
  //