@undp/carbon-library 1.0.286 → 1.0.287

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.
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ import "./companyDetailsComponent.scss";
3
+ export declare const CompanyDetailsComponent: (props: any) => React.JSX.Element;
@@ -11,6 +11,7 @@ export type NdcDetail = {
11
11
  actionType: NdcDetailsActionType;
12
12
  nationalPlanObjective: string;
13
13
  kpi: number | string;
14
+ kpiUnit: string;
14
15
  ministryName: string;
15
16
  periodId?: number;
16
17
  status: NdcDetailsActionStatus;
@@ -5,5 +5,8 @@ export declare enum Instrument {
5
5
  EQUITY = "Equity",
6
6
  GUARANTEE = "Guarantee",
7
7
  INKIND = "In-Kind",
8
+ CONLOAN = "ConcessionalLoan",
9
+ NONCONLOAN = "Non-ConcessionalLoan",
10
+ INSURANCE = "Insurance",
8
11
  OTHER = "Other"
9
12
  }
@@ -0,0 +1,8 @@
1
+ export declare enum GuaranteePayback {
2
+ UPFORNT = "Upfront",
3
+ ANNUAL = "Annual"
4
+ }
5
+ export declare enum InsurancePayback {
6
+ LUMPSUM = "LumpSum",
7
+ ANNUAL = "Annual"
8
+ }
package/dist/index.d.ts CHANGED
@@ -690,6 +690,9 @@ declare enum Instrument {
690
690
  EQUITY = "Equity",
691
691
  GUARANTEE = "Guarantee",
692
692
  INKIND = "In-Kind",
693
+ CONLOAN = "ConcessionalLoan",
694
+ NONCONLOAN = "Non-ConcessionalLoan",
695
+ INSURANCE = "Insurance",
693
696
  OTHER = "Other"
694
697
  }
695
698
 
@@ -0,0 +1,19 @@
1
+ {
2
+ "organisationDetailsHeading": "Organisation Details",
3
+ "name" : "Name",
4
+ "taxId" : "VAT Registration #",
5
+ "paymentId" : "Registration Payment ID",
6
+ "companyRole": "Role",
7
+ "email" : "Email",
8
+ "phoneNo" : "Phone",
9
+ "website" : "Website",
10
+ "address" : "Address",
11
+ "creditBalance":"Credit Balance",
12
+ "programmeCount":"Number of Projects",
13
+ "remarks": "Remarks",
14
+ "region": "Region",
15
+ "ministerName": "Name of the Minister",
16
+ "sectoralScope": "Sectoral Scope",
17
+ "nationalSopValue": "National Share of Proceeds",
18
+ "omgePercentage":"Overall Mitigation in Global Emissions (OMGE) Account"
19
+ }
@@ -0,0 +1,16 @@
1
+ {
2
+ "organisationDetailsHeading": "Detalles de la Organización",
3
+ "name": "Nombre",
4
+ "taxId": "ID Fiscal",
5
+ "paymentId": "ID de Pago de Registro",
6
+ "companyRole": "Rol",
7
+ "email": "Correo Electrónico",
8
+ "phoneNo": "Teléfono",
9
+ "website": "Sitio Web",
10
+ "address": "Dirección",
11
+ "creditBalance": "Saldo de Créditos",
12
+ "programmeCount": "Número de Programas",
13
+ "remarks": "Observaciones",
14
+ "ministerName": "Nombre del Ministro",
15
+ "sectoralScope": "Ámbito Sectorial"
16
+ }
@@ -0,0 +1,16 @@
1
+ {
2
+ "organisationDetailsHeading": "Détails de l'Organisation",
3
+ "name": "Nom",
4
+ "taxId": "Identifiant Fiscal",
5
+ "paymentId": "ID de Paiement d'Inscription",
6
+ "companyRole": "Rôle",
7
+ "email": "E-mail",
8
+ "phoneNo": "Téléphone",
9
+ "website": "Site Web",
10
+ "address": "Adresse",
11
+ "creditBalance": "Solde de Crédits",
12
+ "programmeCount": "Nombre de Programmes",
13
+ "remarks": "Remarques",
14
+ "ministerName": "Nom du Ministre",
15
+ "sectoralScope": "Portée Sectorielle"
16
+ }
@@ -5,31 +5,16 @@
5
5
  "reActivate": "REACTIVATE",
6
6
  "approve": "APPROVE",
7
7
  "reject": "REJECT",
8
- "organisationDetailsHeading": "Organisation Details",
9
- "name" : "Name",
10
- "taxId" : "VAT Registration #",
11
- "paymentId" : "Registration Payment ID",
12
- "companyRole": "Role",
13
- "email" : "Email",
14
- "phoneNo" : "Phone",
15
- "website" : "Website",
16
- "address" : "Address",
17
- "creditBalance":"Credit Balance",
18
- "programmeCount":"Number of Projects",
19
8
  "deauthoriseConfirmHeaderText": "Are you sure you want to deactivate this organisation?",
20
9
  "deauthoriseConfirmText":"Organisation will still be visible but no further action will be able to take place.\n Note: all users associated with the organisation will also be deactivated.",
21
10
  "activeStatus": "Active",
22
11
  "deauthorisedStatus": "Deactivated",
23
12
  "pendingStatus": "Pending",
24
13
  "rejectedStatus": "Rejected",
25
- "remarks": "Remarks",
26
14
  "deauthorisationSuccess": "Company deactivated successfully!",
27
15
  "reActivateConfirmHeaderText": "Are you sure you want to reactivate this organisation?",
28
16
  "reActivateConfirmText": "Note: all users associated with the organisation will also be reactivated.",
29
17
  "reactivationSuccess": "Company reactivated successfully!",
30
- "region": "Region",
31
- "ministerName": "Name of the Minister",
32
- "sectoralScope": "Sectoral Scope",
33
18
  "approveConfirmHeaderText": "Are you sure you want to authorise this organisation?",
34
19
  "approveConfirmText": "You can't undo this action",
35
20
  "approvedSuccessfully": "The Organisation was approved successfully",
@@ -39,7 +24,5 @@
39
24
  "adminDetailsHeading": "Organisation Admin Details",
40
25
  "adminName": "Name",
41
26
  "adminEmail": "Email",
42
- "adminPhone": "Phone",
43
- "nationalSopValue": "National Share of Proceeds",
44
- "omgePercentage":"Overall Mitigation in Global Emissions (OMGE) Account"
27
+ "adminPhone": "Phone"
45
28
  }
@@ -5,30 +5,16 @@
5
5
  "reActivate": "REACTIVAR",
6
6
  "approve": "APROBAR",
7
7
  "reject": "RECHAZAR",
8
- "organisationDetailsHeading": "Detalles de la Organización",
9
- "name": "Nombre",
10
- "taxId": "ID Fiscal",
11
- "paymentId": "ID de Pago de Registro",
12
- "companyRole": "Rol",
13
- "email": "Correo Electrónico",
14
- "phoneNo": "Teléfono",
15
- "website": "Sitio Web",
16
- "address": "Dirección",
17
- "creditBalance": "Saldo de Créditos",
18
- "programmeCount": "Número de Programas",
19
8
  "deauthoriseConfirmHeaderText": "¿Está seguro de que desea desactivar esta organización?",
20
9
  "deauthoriseConfirmText": "La organización seguirá siendo visible, pero no se podrá realizar ninguna acción adicional.\nNota: todos los usuarios asociados con la organización también serán desactivados.",
21
10
  "activeStatus": "Activo",
22
11
  "deauthorisedStatus": "Desactivado",
23
12
  "pendingStatus": "Pendiente",
24
13
  "rejectedStatus": "Rechazado",
25
- "remarks": "Observaciones",
26
14
  "deauthorisationSuccess": "¡Organización desactivada con éxito!",
27
15
  "reActivateConfirmHeaderText": "¿Está seguro de que desea reactivar esta organización?",
28
16
  "reActivateConfirmText": "Nota: todos los usuarios asociados con la organización también serán reactivados.",
29
17
  "reactivationSuccess": "¡Organización reactivada con éxito!",
30
- "ministerName": "Nombre del Ministro",
31
- "sectoralScope": "Ámbito Sectorial",
32
18
  "approveConfirmHeaderText": "¿Está seguro de que desea autorizar esta organización?",
33
19
  "approveConfirmText": "No puede deshacer esta acción",
34
20
  "approvedSuccessfully": "La organización fue aprobada con éxito",
@@ -5,17 +5,6 @@
5
5
  "reActivate": "RÉACTIVER",
6
6
  "approve": "APPROUVER",
7
7
  "reject": "REJETER",
8
- "organisationDetailsHeading": "Détails de l'Organisation",
9
- "name": "Nom",
10
- "taxId": "Identifiant Fiscal",
11
- "paymentId": "ID de Paiement d'Inscription",
12
- "companyRole": "Rôle",
13
- "email": "E-mail",
14
- "phoneNo": "Téléphone",
15
- "website": "Site Web",
16
- "address": "Adresse",
17
- "creditBalance": "Solde de Crédits",
18
- "programmeCount": "Nombre de Programmes",
19
8
  "deauthoriseConfirmHeaderText": "Êtes-vous sûr de vouloir désactiver cette organisation ?",
20
9
  "deauthoriseConfirmText": "L'organisation restera visible mais aucune action supplémentaire ne pourra être effectuée.\nNote : tous les utilisateurs associés à l'organisation seront également désactivés.",
21
10
  "activeStatus": "Actif",
@@ -27,8 +16,6 @@
27
16
  "reActivateConfirmHeaderText": "Êtes-vous sûr de vouloir réactiver cette organisation ?",
28
17
  "reActivateConfirmText": "Note : tous les utilisateurs associés à l'organisation seront également réactivés.",
29
18
  "reactivationSuccess": "Organisation réactivée avec succès !",
30
- "ministerName": "Nom du Ministre",
31
- "sectoralScope": "Portée Sectorielle",
32
19
  "approveConfirmHeaderText": "Êtes-vous sûr de vouloir autoriser cette organisation ?",
33
20
  "approveConfirmText": "Vous ne pouvez pas annuler cette action",
34
21
  "approvedSuccessfully": "L'Organisation a été approuvée avec succès",
@@ -74,6 +74,8 @@
74
74
  "emissionsComparisonTitle": "GHG Emission Comparison",
75
75
  "emissionsComparisonTT": "Emissions projected and actual projections for each year under each type during the specified period",
76
76
  "remarks": "Remarks",
77
- "finalize": "Finalise"
77
+ "finalize": "Finalise",
78
+ "noEmissions": "No Emissions",
79
+ "noProjections": "No Projections"
78
80
  }
79
81
 
@@ -2,6 +2,7 @@
2
2
  "carbon": "NATIONAL",
3
3
  "nationalNdc": "NATIONAL NDC",
4
4
  "credit": "CARBON REGISTRY",
5
+ "creditMrv": "TRANSPARENCY",
5
6
  "management": "DEMO",
6
7
  "welcome": "Welcome",
7
8
  "welcome-back": "Welcome Back",
@@ -5,6 +5,7 @@
5
5
  "ndcColumnsEndDate": "End Date",
6
6
  "ndcColumnsNationalPlanObj": "Programmes",
7
7
  "ndcColumnsKpi": "KPI",
8
+ "ndcColumnsKpiUnit": "KPI Unit",
8
9
  "rangeAlreadyExists": "One or more of the selected year(s) already exists",
9
10
  "addNdcAction": "+ Add NDC Action",
10
11
  "enterNewPlanTxt": "Please add the Programmes",
@@ -23,6 +24,7 @@
23
24
  "finalizeErrorText": "Cannot finalise the period due to pending Sub NDC Actions",
24
25
  "nationalPlanObjectivePlaceHolder": "Enter Programmes",
25
26
  "kpiPlaceHolder": "Enter Kpi",
27
+ "kpiUnitPlaceHolder": "Enter Kpi Unit",
26
28
  "isRequired": "is required!",
27
29
  "finalizeNdcEmptyErrorText":"Cannot finalise an empty period",
28
30
  "approveSuccessMsg": "Sub NDC Action has been approved successfully",
@@ -83,5 +83,13 @@
83
83
  "addSupport": "Add Support",
84
84
  "addSupportBtnText": "ADD SUPPORT",
85
85
  "addSupportSub": "Add Support to a project in the Transparency System",
86
- "programmeExistsWithAssessmentRegId": "Project already exist with the given environmental assessment registration number"
86
+ "programmeExistsWithAssessmentRegId": "Project already exist with the given environmental assessment registration number",
87
+ "period":"Period",
88
+ "payback":"Payback",
89
+ "loanPeriod":"Loan Period",
90
+ "startOfPayback":"Start of Payback",
91
+ "LumpSum":"LUMP SUM",
92
+ "Upfront":"UPFRONT",
93
+ "Annual":"ANNUAL"
94
+
87
95
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@undp/carbon-library",
3
- "version": "1.0.286",
3
+ "version": "1.0.287",
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": {