@acorex/modules 20.7.4 → 20.7.6
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.
- package/document-management/index.d.ts +3 -2
- package/fesm2022/acorex-modules-document-management.mjs +106 -20
- package/fesm2022/acorex-modules-document-management.mjs.map +1 -1
- package/fesm2022/{acorex-modules-human-capital-management-leave-request.entity-CITYAroH.mjs → acorex-modules-human-capital-management-leave-request.entity-Dn2LLbuq.mjs} +20 -3
- package/fesm2022/acorex-modules-human-capital-management-leave-request.entity-Dn2LLbuq.mjs.map +1 -0
- package/fesm2022/acorex-modules-human-capital-management.mjs +558 -103
- package/fesm2022/acorex-modules-human-capital-management.mjs.map +1 -1
- package/fesm2022/{acorex-modules-product-catalog-product.entity-CBieRmkK.mjs → acorex-modules-product-catalog-product.entity-CuTXUcc1.mjs} +20 -17
- package/fesm2022/acorex-modules-product-catalog-product.entity-CuTXUcc1.mjs.map +1 -0
- package/fesm2022/acorex-modules-product-catalog.mjs +1 -1
- package/fesm2022/{acorex-modules-task-management-task-board.page-CIlxqtgJ.mjs → acorex-modules-task-management-task-board.page-BNwqZ5Eu.mjs} +3 -3
- package/fesm2022/{acorex-modules-task-management-task-board.page-CIlxqtgJ.mjs.map → acorex-modules-task-management-task-board.page-BNwqZ5Eu.mjs.map} +1 -1
- package/fesm2022/acorex-modules-task-management.mjs +9 -3
- package/fesm2022/acorex-modules-task-management.mjs.map +1 -1
- package/fesm2022/{acorex-modules-workflow-management-index-vstmaa5b.mjs → acorex-modules-workflow-management-index-BIl8No8o.mjs} +16 -10
- package/fesm2022/acorex-modules-workflow-management-index-BIl8No8o.mjs.map +1 -0
- package/fesm2022/acorex-modules-workflow-management.mjs +36 -4
- package/fesm2022/acorex-modules-workflow-management.mjs.map +1 -1
- package/human-capital-management/index.d.ts +58 -1
- package/package.json +6 -6
- package/workflow-management/index.d.ts +2 -0
- package/fesm2022/acorex-modules-human-capital-management-leave-request.entity-CITYAroH.mjs.map +0 -1
- package/fesm2022/acorex-modules-product-catalog-product.entity-CBieRmkK.mjs.map +0 -1
- package/fesm2022/acorex-modules-workflow-management-index-vstmaa5b.mjs.map +0 -1
|
@@ -872,8 +872,14 @@ class AXPTaskBoardService {
|
|
|
872
872
|
}));
|
|
873
873
|
}
|
|
874
874
|
async getCalendarEventTypes() {
|
|
875
|
-
|
|
876
|
-
|
|
875
|
+
try {
|
|
876
|
+
const result = await this.calendarManagementService.getCalendars();
|
|
877
|
+
return result ?? [];
|
|
878
|
+
}
|
|
879
|
+
catch (error) {
|
|
880
|
+
console.error(error);
|
|
881
|
+
return [];
|
|
882
|
+
}
|
|
877
883
|
}
|
|
878
884
|
getProvider(name) {
|
|
879
885
|
if (!name)
|
|
@@ -936,7 +942,7 @@ function createAppRoute() {
|
|
|
936
942
|
children: [
|
|
937
943
|
{
|
|
938
944
|
path: '',
|
|
939
|
-
loadComponent: () => import('./acorex-modules-task-management-task-board.page-
|
|
945
|
+
loadComponent: () => import('./acorex-modules-task-management-task-board.page-BNwqZ5Eu.mjs').then((c) => c.AXMTaskBoardPage),
|
|
940
946
|
},
|
|
941
947
|
],
|
|
942
948
|
};
|