@undp/carbon-library 1.0.281-CARBON-400.1 → 1.0.281-CARBON-363.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -9,13 +9,16 @@ interface EditableRowProps {
9
9
  index: number;
10
10
  }
11
11
  export declare const EditableRow: React.FC<EditableRowProps>;
12
- interface EditableCellProps {
13
- title: React.ReactNode;
14
- editable: boolean;
15
- children: React.ReactNode;
16
- dataIndex: keyof Item;
12
+ interface EditableCellProps extends React.HTMLAttributes<HTMLElement> {
13
+ editing: boolean;
14
+ dataIndex: string;
15
+ title: any;
16
+ inputType: "number" | "text";
17
17
  record: Item;
18
- handleSave: (record: Item) => void;
18
+ index: number;
19
+ children: React.ReactNode;
20
+ onBlurHandler: any;
21
+ t: any;
19
22
  }
20
23
  export declare const EditableCell: React.FC<EditableCellProps>;
21
24
  export {};
@@ -0,0 +1,42 @@
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: NdcDetailsActionType;
12
+ nationalPlanObjective: string;
13
+ kpi: number | string;
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 NdcDetailsActionType {
24
+ MainAction = "MainAction",
25
+ SubAction = "SubAction"
26
+ }
27
+ export declare enum NdcDetailsActionStatus {
28
+ New = "New",
29
+ Pending = "Pending",
30
+ Approved = "Approved",
31
+ Rejected = "Rejected"
32
+ }
33
+ export declare const getNdcActionStatusEnumVal: (value: string) => string;
34
+ export declare const getNdcActionStatusTagType: (status: NdcDetailsActionStatus) => "error" | "processing" | "default" | "success";
35
+ export type PopupInfo = {
36
+ title: string;
37
+ icon: any;
38
+ actionBtnText: string;
39
+ okAction: any;
40
+ type: "primary" | "danger";
41
+ remarkRequired: boolean;
42
+ };
@@ -2,7 +2,6 @@
2
2
  "carbon": "NATIONAL",
3
3
  "nationalNdc": "NATIONAL NDC",
4
4
  "credit": "CARBON REGISTRY",
5
- "creditMrv": "TRANSPARENCY",
6
5
  "management": "DEMO",
7
6
  "welcome": "Welcome",
8
7
  "welcome-back": "Welcome Back",
@@ -5,8 +5,33 @@
5
5
  "ndcColumnsEndDate": "End Date",
6
6
  "ndcColumnsNationalPlanObj": "Programmes",
7
7
  "ndcColumnsKpi": "KPI",
8
- "rangeAlreadyExists": "Selected Range Already exists",
8
+ "rangeAlreadyExists": "One or more of the selected year(s) already exists",
9
9
  "addNdcAction": "+ Add NDC Action",
10
- "enterNewPlanTxt": "Please add the National Plan Objective",
11
- "addSubNdcAction": "+ Add Sub NDC Action"
10
+ "enterNewPlanTxt": "Please add the Programmes",
11
+ "addSubNdcAction": "+ Add Sub NDC Action",
12
+ "delete": "DELETE",
13
+ "finalize": "FINALIZE",
14
+ "ndcColumnsMinistry": "Government Department",
15
+ "ndcColumnsStatus": "Status",
16
+ "approve": "Approve",
17
+ "reject": "Reject",
18
+ "actionApproveTitle": "Are you sure you want to approve this NDC Action?",
19
+ "rejectApproveTitle": "Are you sure you want to reject this NDC Action?",
20
+ "finalizeApproveTitle": "Are you sure you want to finalize the NDC Actions for this period?",
21
+ "finalizeApproveSubTitle": "You can’t undo this action",
22
+ "periodDeleteConfirmTitle" : "Are you sure you want to delete the NDC Actions for this period?",
23
+ "finalizeErrorText": "Cannot finalise the period due to pending Sub NDC Actions",
24
+ "nationalPlanObjectivePlaceHolder": "Enter Programmes",
25
+ "kpiPlaceHolder": "Enter Kpi",
26
+ "isRequired": "is required!",
27
+ "finalizeNdcEmptyErrorText":"Cannot finalise an empty period",
28
+ "approveSuccessMsg": "Sub NDC Action has been approved successfully",
29
+ "rejectSuccessMsg": "Sub NDC Action has been rejected successfully",
30
+ "finalizeSuccessMsg": "NDC Actions for the period has been finalised successfully",
31
+ "deletePeriodSuccessMsg": "The period has been deleted successfully ",
32
+ "kpiInvalidFormat": "Allow only numeric value",
33
+ "kpiGreaterThanZero": "KPI value must be greater than 0",
34
+ "kpiMaxLength": "KPI cannot exceed 10000000",
35
+ "sameStartEndDates": "Start year must be earlier than the end year",
36
+ "ndcUnauthorisedMsg": "This action is unauthorised"
12
37
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@undp/carbon-library",
3
- "version": "1.0.281-CARBON-400.1",
3
+ "version": "1.0.281-CARBON-363.0",
4
4
  "description": "Shared Library of tools for Carbon Credits applications ecosystem for ExO and and HQ/GEF",
5
5
  "type": "module",
6
6
  "scripts": {