@acorex/modules 20.3.0-next.13 → 20.3.0-next.14
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/fesm2022/{acorex-modules-human-capital-management-acorex-modules-human-capital-management-OJboEV8X.mjs → acorex-modules-human-capital-management-acorex-modules-human-capital-management-CtFIJbPo.mjs} +9 -9
- package/fesm2022/{acorex-modules-human-capital-management-acorex-modules-human-capital-management-OJboEV8X.mjs.map → acorex-modules-human-capital-management-acorex-modules-human-capital-management-CtFIJbPo.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-human-capital-management-employee-skill.entity-BhjCMqKV.mjs → acorex-modules-human-capital-management-employee-skill.entity-B4vg0rb5.mjs} +2 -2
- package/fesm2022/{acorex-modules-human-capital-management-employee-skill.entity-BhjCMqKV.mjs.map → acorex-modules-human-capital-management-employee-skill.entity-B4vg0rb5.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-human-capital-management-employee.entity-D4wEAIMk.mjs → acorex-modules-human-capital-management-employee.entity-BrHe53eN.mjs} +3 -3
- package/fesm2022/{acorex-modules-human-capital-management-employee.entity-D4wEAIMk.mjs.map → acorex-modules-human-capital-management-employee.entity-BrHe53eN.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-human-capital-management-employment-type.entity-ddi7bVHJ.mjs → acorex-modules-human-capital-management-employment-type.entity-DUilGRvj.mjs} +2 -2
- package/fesm2022/{acorex-modules-human-capital-management-employment-type.entity-ddi7bVHJ.mjs.map → acorex-modules-human-capital-management-employment-type.entity-DUilGRvj.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-human-capital-management-leave-request.entity-DFMfWFAk.mjs → acorex-modules-human-capital-management-leave-request.entity-Bh8AzJOv.mjs} +2 -2
- package/fesm2022/{acorex-modules-human-capital-management-leave-request.entity-DFMfWFAk.mjs.map → acorex-modules-human-capital-management-leave-request.entity-Bh8AzJOv.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-human-capital-management-leave-type.entity-oDnSiyVB.mjs → acorex-modules-human-capital-management-leave-type.entity-BFRmVDsx.mjs} +2 -2
- package/fesm2022/{acorex-modules-human-capital-management-leave-type.entity-oDnSiyVB.mjs.map → acorex-modules-human-capital-management-leave-type.entity-BFRmVDsx.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-human-capital-management-position-assignment.entity-BFaI6_lN.mjs → acorex-modules-human-capital-management-position-assignment.entity-M0zW0AwU.mjs} +2 -2
- package/fesm2022/{acorex-modules-human-capital-management-position-assignment.entity-BFaI6_lN.mjs.map → acorex-modules-human-capital-management-position-assignment.entity-M0zW0AwU.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-human-capital-management-skill-level.entity-73776DmL.mjs → acorex-modules-human-capital-management-skill-level.entity-XYAMwycx.mjs} +2 -2
- package/fesm2022/{acorex-modules-human-capital-management-skill-level.entity-73776DmL.mjs.map → acorex-modules-human-capital-management-skill-level.entity-XYAMwycx.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-human-capital-management-skill.entity-CZBJsgm6.mjs → acorex-modules-human-capital-management-skill.entity-DkdZedpX.mjs} +2 -2
- package/fesm2022/{acorex-modules-human-capital-management-skill.entity-CZBJsgm6.mjs.map → acorex-modules-human-capital-management-skill.entity-DkdZedpX.mjs.map} +1 -1
- package/fesm2022/acorex-modules-human-capital-management.mjs +1 -1
- package/fesm2022/{acorex-modules-task-management-task-board.page-DUg6XGuT.mjs → acorex-modules-task-management-task-board.page-DSls9l9e.mjs} +92 -12
- package/fesm2022/acorex-modules-task-management-task-board.page-DSls9l9e.mjs.map +1 -0
- package/fesm2022/acorex-modules-task-management.mjs +11 -1
- package/fesm2022/acorex-modules-task-management.mjs.map +1 -1
- package/package.json +9 -9
- package/task-management/index.d.ts +13 -2
- package/fesm2022/acorex-modules-task-management-task-board.page-DUg6XGuT.mjs.map +0 -1
|
@@ -790,6 +790,9 @@ class AXPTaskTypeDataSourceDefinition {
|
|
|
790
790
|
* @template T - The type of custom data associated with the tasks.
|
|
791
791
|
*/
|
|
792
792
|
class AXPWorkflowTaskProvider {
|
|
793
|
+
async getResources() {
|
|
794
|
+
return [];
|
|
795
|
+
}
|
|
793
796
|
}
|
|
794
797
|
/**
|
|
795
798
|
* Injection token for registering multiple workflow task providers.
|
|
@@ -919,6 +922,13 @@ class AXPTaskBoardService {
|
|
|
919
922
|
return undefined;
|
|
920
923
|
}
|
|
921
924
|
}
|
|
925
|
+
getResources(providerName) {
|
|
926
|
+
const provider = this.getProvider(providerName);
|
|
927
|
+
if (!provider) {
|
|
928
|
+
throw new Error(`Task provider '${providerName}' not found`);
|
|
929
|
+
}
|
|
930
|
+
return provider.getResources();
|
|
931
|
+
}
|
|
922
932
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AXPTaskBoardService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
923
933
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.2.4", ngImport: i0, type: AXPTaskBoardService, providedIn: 'root' }); }
|
|
924
934
|
}
|
|
@@ -948,7 +958,7 @@ function routesFactory() {
|
|
|
948
958
|
children: [
|
|
949
959
|
{
|
|
950
960
|
path: '**',
|
|
951
|
-
loadComponent: () => import('./acorex-modules-task-management-task-board.page-
|
|
961
|
+
loadComponent: () => import('./acorex-modules-task-management-task-board.page-DSls9l9e.mjs').then((c) => c.AXMTaskBoardPage),
|
|
952
962
|
},
|
|
953
963
|
],
|
|
954
964
|
},
|