@undp/carbon-library 1.0.170 → 1.0.171-CARBON-363.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index.js +239 -477
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/Definitions/Definitions/ndcDetails.definitions.d.ts +30 -0
- package/dist/esm/index.js +239 -477
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/Definitions/Definitions/ndcDetails.definitions.d.ts +30 -0
- package/package.json +1 -1
@@ -0,0 +1,30 @@
|
|
1
|
+
export type Period = {
|
2
|
+
key: string;
|
3
|
+
label: string;
|
4
|
+
startYear: number;
|
5
|
+
endYear: number;
|
6
|
+
finalized: boolean;
|
7
|
+
deleted: boolean;
|
8
|
+
};
|
9
|
+
export type NdcDetail = {
|
10
|
+
id?: number;
|
11
|
+
actionType: NdcActionType;
|
12
|
+
nationalPlanObjective: string;
|
13
|
+
kpi: number;
|
14
|
+
ministryName: string;
|
15
|
+
periodId?: number;
|
16
|
+
status: NdcDetailsActionStatus;
|
17
|
+
parentActionId?: number;
|
18
|
+
};
|
19
|
+
export type DateRange = {
|
20
|
+
startYear: number;
|
21
|
+
endYear: number;
|
22
|
+
};
|
23
|
+
export declare enum NdcActionType {
|
24
|
+
mainAction = 0,
|
25
|
+
subAction = 1
|
26
|
+
}
|
27
|
+
export declare enum NdcDetailsActionStatus {
|
28
|
+
pending = 0,
|
29
|
+
approved = 1
|
30
|
+
}
|
package/package.json
CHANGED