@undp/carbon-library 1.0.281-CARBON-359.0 → 1.0.281-CARBON-306.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (59) hide show
  1. package/dist/cjs/index.js +5800 -822
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/types/Components/Common/AntComponents/antTableComponents.d.ts +9 -6
  4. package/dist/cjs/types/Components/Common/Models/discardChangesConfirmationModel.d.ts +13 -0
  5. package/dist/cjs/types/Components/Common/Models/ghgUserActionConfirmationModel.d.ts +13 -0
  6. package/dist/cjs/types/Components/Company/CompanyDetails/companyDetailsComponent.d.ts +3 -0
  7. package/dist/cjs/types/Components/GhgInventory/Dashboard/BarChartEstimatedActualStatsComponent.d.ts +16 -0
  8. package/dist/cjs/types/Components/GhgInventory/Dashboard/BarChartStatsComponent.d.ts +13 -0
  9. package/dist/cjs/types/Components/GhgInventory/Dashboard/ghg.chart.options.d.ts +12 -0
  10. package/dist/cjs/types/Components/GhgInventory/Dashboard/ghg.dashboard.d.ts +3 -0
  11. package/dist/cjs/types/Components/GhgInventory/Emissions/emissions.d.ts +4 -0
  12. package/dist/cjs/types/Components/GhgInventory/Projections/projections.d.ts +4 -0
  13. package/dist/cjs/types/Components/GhgInventory/emission.mappings.d.ts +17 -0
  14. package/dist/cjs/types/Components/GhgInventory/emission.types.d.ts +1 -0
  15. package/dist/cjs/types/Components/GhgInventory/projection.types.d.ts +1 -0
  16. package/dist/cjs/types/Components/index.d.ts +3 -0
  17. package/dist/cjs/types/Definitions/Definitions/ndcDetails.definitions.d.ts +42 -0
  18. package/dist/cjs/types/Definitions/Entities/emission.d.ts +9 -0
  19. package/dist/cjs/types/Definitions/Entities/projection.d.ts +9 -0
  20. package/dist/cjs/types/Definitions/Enums/ghg.record.state.enum.d.ts +4 -0
  21. package/dist/cjs/types/Definitions/Enums/sector.enum.d.ts +43 -0
  22. package/dist/cjs/types/Definitions/Enums/statsCards.type.enum.d.ts +7 -0
  23. package/dist/cjs/types/Definitions/Enums/widget.type.enum.d.ts +3 -1
  24. package/dist/cjs/types/Definitions/index.d.ts +2 -0
  25. package/dist/esm/index.js +5797 -825
  26. package/dist/esm/index.js.map +1 -1
  27. package/dist/esm/types/Components/Common/AntComponents/antTableComponents.d.ts +9 -6
  28. package/dist/esm/types/Components/Common/Models/discardChangesConfirmationModel.d.ts +13 -0
  29. package/dist/esm/types/Components/Common/Models/ghgUserActionConfirmationModel.d.ts +13 -0
  30. package/dist/esm/types/Components/Company/CompanyDetails/companyDetailsComponent.d.ts +3 -0
  31. package/dist/esm/types/Components/GhgInventory/Dashboard/BarChartEstimatedActualStatsComponent.d.ts +16 -0
  32. package/dist/esm/types/Components/GhgInventory/Dashboard/BarChartStatsComponent.d.ts +13 -0
  33. package/dist/esm/types/Components/GhgInventory/Dashboard/ghg.chart.options.d.ts +12 -0
  34. package/dist/esm/types/Components/GhgInventory/Dashboard/ghg.dashboard.d.ts +3 -0
  35. package/dist/esm/types/Components/GhgInventory/Emissions/emissions.d.ts +4 -0
  36. package/dist/esm/types/Components/GhgInventory/Projections/projections.d.ts +4 -0
  37. package/dist/esm/types/Components/GhgInventory/emission.mappings.d.ts +17 -0
  38. package/dist/esm/types/Components/GhgInventory/emission.types.d.ts +1 -0
  39. package/dist/esm/types/Components/GhgInventory/projection.types.d.ts +1 -0
  40. package/dist/esm/types/Components/index.d.ts +3 -0
  41. package/dist/esm/types/Definitions/Definitions/ndcDetails.definitions.d.ts +42 -0
  42. package/dist/esm/types/Definitions/Entities/emission.d.ts +9 -0
  43. package/dist/esm/types/Definitions/Entities/projection.d.ts +9 -0
  44. package/dist/esm/types/Definitions/Enums/ghg.record.state.enum.d.ts +4 -0
  45. package/dist/esm/types/Definitions/Enums/sector.enum.d.ts +43 -0
  46. package/dist/esm/types/Definitions/Enums/statsCards.type.enum.d.ts +7 -0
  47. package/dist/esm/types/Definitions/Enums/widget.type.enum.d.ts +3 -1
  48. package/dist/esm/types/Definitions/index.d.ts +2 -0
  49. package/dist/index.d.ts +81 -2
  50. package/dist/locales/i18n/companyDetails/en.json +19 -0
  51. package/dist/locales/i18n/companyDetails/es.json +16 -0
  52. package/dist/locales/i18n/companyDetails/fr.json +16 -0
  53. package/dist/locales/i18n/companyProfile/en.json +1 -18
  54. package/dist/locales/i18n/companyProfile/es.json +0 -14
  55. package/dist/locales/i18n/companyProfile/fr.json +0 -13
  56. package/dist/locales/i18n/ghgInventory/en.json +79 -0
  57. package/dist/locales/i18n/nav/en.json +2 -0
  58. package/dist/locales/i18n/ndc/en.json +28 -3
  59. package/package.json +1 -1
@@ -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,13 @@
1
+ import { FC } from "react";
2
+ import "../../../Styles/app.scss";
3
+ export interface DiscardChangesProps {
4
+ t: any;
5
+ actionInfo: any;
6
+ onActionConfirmed: any;
7
+ onActionCanceled: any;
8
+ openModal: any;
9
+ errorMsg: any;
10
+ loading: any;
11
+ }
12
+ declare const DiscardChangesConfirmationModel: FC<DiscardChangesProps>;
13
+ export default DiscardChangesConfirmationModel;
@@ -0,0 +1,13 @@
1
+ import { FC } from "react";
2
+ import "../../../Styles/app.scss";
3
+ export interface UserActionProps {
4
+ t: any;
5
+ actionInfo: any;
6
+ onActionConfirmed: any;
7
+ onActionCanceled: any;
8
+ openModal: any;
9
+ errorMsg: any;
10
+ loading: any;
11
+ }
12
+ declare const GHGUserActionConfirmationModel: FC<UserActionProps>;
13
+ export default GHGUserActionConfirmationModel;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ import "./companyDetailsComponent.scss";
3
+ export declare const CompanyDetailsComponent: (props: any) => React.JSX.Element;
@@ -0,0 +1,16 @@
1
+ import { FC } from 'react';
2
+ export interface BarChartEstimatedActualStatsProps {
3
+ id: string;
4
+ title: string;
5
+ estimateOptions: any;
6
+ actualOptions: any;
7
+ estimatedSeries: any;
8
+ actualSeries: any;
9
+ lastUpdateEstimate: any;
10
+ lastUpdateActual: any;
11
+ loading: boolean;
12
+ toolTipText: string;
13
+ Chart: any;
14
+ width: any;
15
+ }
16
+ export declare const BarChartEstimatedActualStatComponent: FC<BarChartEstimatedActualStatsProps>;
@@ -0,0 +1,13 @@
1
+ import { FC } from 'react';
2
+ export interface BarChartStatsProps {
3
+ id: string;
4
+ title: string;
5
+ options: any;
6
+ series: any;
7
+ lastUpdate: any;
8
+ loading: boolean;
9
+ toolTipText: string;
10
+ Chart: any;
11
+ width: any;
12
+ }
13
+ export declare const BarChartsStatComponent: FC<BarChartStatsProps>;
@@ -0,0 +1,12 @@
1
+ export interface GHGChartSeriesItem {
2
+ name: string;
3
+ data: any[];
4
+ type: string;
5
+ }
6
+ export interface ChartSeriesItem {
7
+ name: string;
8
+ data: any[];
9
+ }
10
+ export declare const totalEmissionOptionsSub: any;
11
+ export declare const actualVsEstimateOptionsSub: any;
12
+ export declare const emissionComparisonOptionsSub: any;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import './ghg.dashboard.scss';
3
+ export declare const GHGDashboardComponent: (props: any) => React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import 'antd/dist/antd.css';
3
+ import './emissions.scss';
4
+ export declare const GHGEmissionsComponent: (props: any) => React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import 'antd/dist/antd.css';
2
+ import './projections.scss';
3
+ import React from 'react';
4
+ export declare const GHGProjectionsComponent: (props: any) => React.JSX.Element;
@@ -0,0 +1,17 @@
1
+ export declare const EmissionSectors: any;
2
+ export declare const formFields: {
3
+ energyEmissions: {
4
+ fuelCombustionActivities: string[];
5
+ fugitiveEmissionsFromFuels: string[];
6
+ carbonDioxideTransportStorage: string[];
7
+ };
8
+ industrialProcessesProductUse: string[];
9
+ agricultureForestryOtherLandUse: string[];
10
+ waste: string[];
11
+ other: string[];
12
+ };
13
+ export declare const emissionCsvFieldMap: any;
14
+ export declare const projectionsCsvFieldMap: any;
15
+ export declare const totalEmissionFields: string[];
16
+ export declare const totalProjectionFields: string[];
17
+ export declare const excelFields: string[];
@@ -0,0 +1 @@
1
+ export declare const EmissionTypes: any;
@@ -0,0 +1 @@
1
+ export declare const ProjectionTypes: any;
@@ -39,3 +39,6 @@ export * from "./Common/OrganisationStatus/organisationStatus";
39
39
  export * from "./Common/ProgrammeDocuments/programmeDocuments";
40
40
  export * from "./Common/UserRoleIcon/userRoleIcon";
41
41
  export * from "./Common/TimelineBody/timelineBody";
42
+ export * from "./GhgInventory/Emissions/emissions";
43
+ export * from "./GhgInventory/Projections/projections";
44
+ export * from "./GhgInventory/Dashboard/ghg.dashboard";
@@ -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
+ };
@@ -0,0 +1,9 @@
1
+ import { GHGRecordState } from '../Enums/ghg.record.state.enum';
2
+ import { BaseEntity } from './baseEntity';
3
+ export declare class Emission implements BaseEntity {
4
+ id?: string;
5
+ year?: string;
6
+ state?: GHGRecordState;
7
+ emissionDocument?: string;
8
+ version?: number;
9
+ }
@@ -0,0 +1,9 @@
1
+ import { GHGRecordState } from '../Enums/ghg.record.state.enum';
2
+ import { BaseEntity } from './baseEntity';
3
+ export declare class Projection implements BaseEntity {
4
+ id?: string;
5
+ year?: string;
6
+ state?: GHGRecordState;
7
+ emissionDocument?: string;
8
+ version?: number;
9
+ }
@@ -0,0 +1,4 @@
1
+ export declare enum GHGRecordState {
2
+ SAVED = "SAVED",
3
+ FINALIZED = "FINALIZED"
4
+ }
@@ -10,3 +10,46 @@ export declare enum Sector {
10
10
  Agriculture = "Agriculture",
11
11
  Other = "Other"
12
12
  }
13
+ export declare enum EmissionSector {
14
+ 'energyEmissions' = "Energy",
15
+ 'industrialProcessesProductUse' = "Industrial Processes & Product Use",
16
+ 'agricultureForestryOtherLandUse' = "Agriculture, Forestry, and Other Land Use",
17
+ 'waste' = "Waste",
18
+ 'other' = "Other"
19
+ }
20
+ export declare enum EmissionGas {
21
+ 'co2' = "CO<sub>2</sub>",
22
+ 'ch4' = "CH<sub>4</sub>",
23
+ 'n2o' = "N<sub>2</sub>O",
24
+ 'co2eq' = "CO<sub>2</sub>-eq"
25
+ }
26
+ export declare enum EmissionSubSectors {
27
+ fuelCombustionActivities = "Fuel Combustion Activities",
28
+ fugitiveEmissionsFromFuels = "Fugitive emissions from fuels",
29
+ carbonDioxideTransportStorage = "Carbon dioxide Transport and Storage",
30
+ mineralIndustry = "Mineral Industry",
31
+ chemicalIndustry = "Chemical Industry",
32
+ metalIndustry = "Metal Industry",
33
+ nonEnergyProductsFuelsSolventUse = "Non-Energy Products from Fuels and Solvent Use",
34
+ electronicsIndustry = "Electronics Industry",
35
+ productUsesSubstOzoneDepletingSubs = "Product Uses as Substitutes for Ozone Depleting Substances",
36
+ otherProductManufactureUse = "Other Product Manufacture and Use",
37
+ otherIndustrialProcessesProductUse = "Other (Industrial Processes & Product Use)",
38
+ livestock = "Livestock",
39
+ land = "Land",
40
+ aggregateNonCo2SourcesLand = "Aggregate sources and non-CO2 emissions sources on land",
41
+ otherAgricultureForestryOtherLandUse = "Other (Agriculture, Forestry, and Other Land Use)",
42
+ solidWasteDisposal = "Solid Waste Disposal",
43
+ biologicalTreatmentSolidWaste = "Biological Treatment of Solid Waste",
44
+ incinerationOpenBurningWaste = "Incineration and Open Burning of Waste",
45
+ wastewaterTreatmentDischarge = "Wastewater Treatment and Discharge",
46
+ otherWaste = "Other (Waste)",
47
+ indirectN2oEmissions = "Indirect N2O emissions from the atmospheric deposition of nitrogen in NOx and NH3",
48
+ other = "Other"
49
+ }
50
+ export declare enum ProjectionTypes {
51
+ bau = "BAU",
52
+ conditionalNdc = "Conditional NDC",
53
+ unconditionalNdc = "Unconditional NDC",
54
+ actual = "Actual"
55
+ }
@@ -29,3 +29,10 @@ export declare enum SystemNames {
29
29
  CARBON_REGISTRY = "CARBON_REGISTRY_SYSTEM",
30
30
  CARBON_TRANSPARENCY = "CARBON_TRANSPARENCY_SYSTEM"
31
31
  }
32
+ export declare enum GhgStatCardTypes {
33
+ AGG_EMISSIONS_BY_SECTOR = "AGG_EMISSIONS_BY_SECTOR",
34
+ AGG_EMISSIONS_BY_GAS = "AGG_EMISSIONS_BY_GAS",
35
+ AGG_EMISSIONS_MITIGATION_POTENTIAL_BY_SECTOR = "AGG_EMISSIONS_MITIGATION_POTENTIAL_BY_SECTOR",
36
+ AGG_REDUCTION_PERCENT_BAU_BY_SECTOR = "AGG_REDUCTION_PERCENT_BAU_BY_SECTOR",
37
+ AGG_EMISSIONS_COMPARISON = "AGG_EMISSIONS_COMPARISON"
38
+ }
@@ -1,5 +1,7 @@
1
1
  export declare enum WidgetType {
2
2
  PIE = "Pie",
3
3
  MAP = "Map",
4
- LIST = "List"
4
+ LIST = "List",
5
+ BAR = "Bar",
6
+ BAR_ESTIMATED_AND_ACTUAL = "Bar Estimated And Actual"
5
7
  }
@@ -46,3 +46,5 @@ export * from "./Entities/programmeTransfer";
46
46
  export * from "./Entities/user";
47
47
  export * from "./Entities/programme";
48
48
  export * from "./Entities/programmeCertify";
49
+ export * from "./Entities/emission";
50
+ export * from "./Entities/projection";
package/dist/index.d.ts CHANGED
@@ -817,6 +817,49 @@ declare enum Sector {
817
817
  Agriculture = "Agriculture",
818
818
  Other = "Other"
819
819
  }
820
+ declare enum EmissionSector {
821
+ 'energyEmissions' = "Energy",
822
+ 'industrialProcessesProductUse' = "Industrial Processes & Product Use",
823
+ 'agricultureForestryOtherLandUse' = "Agriculture, Forestry, and Other Land Use",
824
+ 'waste' = "Waste",
825
+ 'other' = "Other"
826
+ }
827
+ declare enum EmissionGas {
828
+ 'co2' = "CO<sub>2</sub>",
829
+ 'ch4' = "CH<sub>4</sub>",
830
+ 'n2o' = "N<sub>2</sub>O",
831
+ 'co2eq' = "CO<sub>2</sub>-eq"
832
+ }
833
+ declare enum EmissionSubSectors {
834
+ fuelCombustionActivities = "Fuel Combustion Activities",
835
+ fugitiveEmissionsFromFuels = "Fugitive emissions from fuels",
836
+ carbonDioxideTransportStorage = "Carbon dioxide Transport and Storage",
837
+ mineralIndustry = "Mineral Industry",
838
+ chemicalIndustry = "Chemical Industry",
839
+ metalIndustry = "Metal Industry",
840
+ nonEnergyProductsFuelsSolventUse = "Non-Energy Products from Fuels and Solvent Use",
841
+ electronicsIndustry = "Electronics Industry",
842
+ productUsesSubstOzoneDepletingSubs = "Product Uses as Substitutes for Ozone Depleting Substances",
843
+ otherProductManufactureUse = "Other Product Manufacture and Use",
844
+ otherIndustrialProcessesProductUse = "Other (Industrial Processes & Product Use)",
845
+ livestock = "Livestock",
846
+ land = "Land",
847
+ aggregateNonCo2SourcesLand = "Aggregate sources and non-CO2 emissions sources on land",
848
+ otherAgricultureForestryOtherLandUse = "Other (Agriculture, Forestry, and Other Land Use)",
849
+ solidWasteDisposal = "Solid Waste Disposal",
850
+ biologicalTreatmentSolidWaste = "Biological Treatment of Solid Waste",
851
+ incinerationOpenBurningWaste = "Incineration and Open Burning of Waste",
852
+ wastewaterTreatmentDischarge = "Wastewater Treatment and Discharge",
853
+ otherWaste = "Other (Waste)",
854
+ indirectN2oEmissions = "Indirect N2O emissions from the atmospheric deposition of nitrogen in NOx and NH3",
855
+ other = "Other"
856
+ }
857
+ declare enum ProjectionTypes {
858
+ bau = "BAU",
859
+ conditionalNdc = "Conditional NDC",
860
+ unconditionalNdc = "Unconditional NDC",
861
+ actual = "Actual"
862
+ }
820
863
 
821
864
  declare enum RadioButtonStatus {
822
865
  YES = "YES",
@@ -886,7 +929,9 @@ declare enum CompanyState {
886
929
  declare enum WidgetType {
887
930
  PIE = "Pie",
888
931
  MAP = "Map",
889
- LIST = "List"
932
+ LIST = "List",
933
+ BAR = "Bar",
934
+ BAR_ESTIMATED_AND_ACTUAL = "Bar Estimated And Actual"
890
935
  }
891
936
 
892
937
  declare enum StatsCardsTypes {
@@ -920,6 +965,13 @@ declare enum SystemNames {
920
965
  CARBON_REGISTRY = "CARBON_REGISTRY_SYSTEM",
921
966
  CARBON_TRANSPARENCY = "CARBON_TRANSPARENCY_SYSTEM"
922
967
  }
968
+ declare enum GhgStatCardTypes {
969
+ AGG_EMISSIONS_BY_SECTOR = "AGG_EMISSIONS_BY_SECTOR",
970
+ AGG_EMISSIONS_BY_GAS = "AGG_EMISSIONS_BY_GAS",
971
+ AGG_EMISSIONS_MITIGATION_POTENTIAL_BY_SECTOR = "AGG_EMISSIONS_MITIGATION_POTENTIAL_BY_SECTOR",
972
+ AGG_REDUCTION_PERCENT_BAU_BY_SECTOR = "AGG_REDUCTION_PERCENT_BAU_BY_SECTOR",
973
+ AGG_EMISSIONS_COMPARISON = "AGG_EMISSIONS_COMPARISON"
974
+ }
923
975
 
924
976
  declare enum Action {
925
977
  Manage = "manage",
@@ -1127,6 +1179,27 @@ declare class ProgrammeCertify implements BaseEntity {
1127
1179
  comment?: string;
1128
1180
  }
1129
1181
 
1182
+ declare enum GHGRecordState {
1183
+ SAVED = "SAVED",
1184
+ FINALIZED = "FINALIZED"
1185
+ }
1186
+
1187
+ declare class Emission implements BaseEntity {
1188
+ id?: string;
1189
+ year?: string;
1190
+ state?: GHGRecordState;
1191
+ emissionDocument?: string;
1192
+ version?: number;
1193
+ }
1194
+
1195
+ declare class Projection implements BaseEntity {
1196
+ id?: string;
1197
+ year?: string;
1198
+ state?: GHGRecordState;
1199
+ emissionDocument?: string;
1200
+ version?: number;
1201
+ }
1202
+
1130
1203
  interface TransferActionModelProps {
1131
1204
  icon: any;
1132
1205
  title: string;
@@ -1197,6 +1270,12 @@ interface TimelineBodyProps {
1197
1270
  declare const addNdcDesc: (props: any) => string;
1198
1271
  declare const TimelineBody: FC<TimelineBodyProps>;
1199
1272
 
1273
+ declare const GHGEmissionsComponent: (props: any) => React.JSX.Element;
1274
+
1275
+ declare const GHGProjectionsComponent: (props: any) => React.JSX.Element;
1276
+
1277
+ declare const GHGDashboardComponent: (props: any) => React.JSX.Element;
1278
+
1200
1279
  declare const AdminBGColor = "rgba(255, 166, 166, 0.42)";
1201
1280
  declare const AdminColor = "#D12800";
1202
1281
  declare const RootBGColor = "rgba(255, 0, 229, 0.15)";
@@ -1217,4 +1296,4 @@ declare const TooltipColor = "#6ACDFF";
1217
1296
  declare const InvestmentBGColor = "rgba(151, 110, 215, 0.3)";
1218
1297
  declare const InvestmentColor = "#9155FD";
1219
1298
 
1220
- export { Action, AdaptationProperties, AddNdcActionComponent, AddNewCompanyComponent, AddNewUserComponent, AdminBGColor, AdminColor, AgricultureProperties, BaseEntity, CarbonSystemType, CertBGColor, CertColor, CoBenefitProps, CoBenefitsProperties, CoBenifitsComponent, Company, CompanyManagementColumns, CompanyManagementComponent, CompanyProfileComponent, CompanyRole, CompanyState, ConfigurationSettingsType, ConnectionContextProviderProps, ConnectionProps, CountrySelect, CreditCalculationProperties, CreditTransferComponent, CreditTransferStage, DevBGColor, DevColor, DocType, DocumentStatus, ESGType, EnablementProperties, EnergyGenerationUnits, FormElementType, GovBGColor, GovColor, HeaderProps, ImgWithFallback, InfoView, InfoViewProps, Instrument, InvestmentBGColor, InvestmentBody, InvestmentBodyProps, InvestmentColor, InvestmentCreationComponent, InvestmentCreationType, InvestmentLevel, InvestmentManagementComponent, InvestmentStatus, InvestmentStream, InvestmentType, LandAreaUnits, LayoutSiderProps, LegendItem, LegendItemItemProps, Loading, LoginProps, ManagerBGColor, ManagerColor, MapComponent, MapComponentProps, MapPopupData, MapSourceData, MapTypes, MapboxComponent, MarkerData, Methods, MinBGColor, MinColor, MitigationSubTypes, MitigationTypes, MrvDashboardComponent, MrvStatsCardsTypes, NdcAction, NdcActionBody, NdcActionBodyProps, NdcActionManagementComponent, NdcActionStatus, NdcActionTypes, NdcActionViewComponent, NdcDetailsComponent, NdcFinancing, OrganisationStatus, OrganisationStatusProps, ProfileIcon, ProfileIconProps, Programme, ProgrammeCertify, ProgrammeCreationComponent, ProgrammeDeveloperCreation, ProgrammeDocuments, ProgrammeDocumentsProps, ProgrammeEntity, ProgrammeIssueForm, ProgrammeIssueFormProps, ProgrammeManagementColumns, ProgrammeManagementComponent, ProgrammeProperties, ProgrammePropertiesR, ProgrammePropertiesT, ProgrammePropertiesU, ProgrammeR, ProgrammeRetireForm, ProgrammeRetireFormProps, ProgrammeRevokeForm, ProgrammeRevokeFormProps, ProgrammeStageLegend, ProgrammeStageMRV, ProgrammeStageR, ProgrammeStageUnified, ProgrammeT, ProgrammeTransfer, ProgrammeTransferForm, ProgrammeTransferFormProps, ProgrammeU, RadioButtonStatus, RadioButtonStatus2, RegistryDashboardComponent, RejectDocumentationConfirmationModel, RejectDocumentationProps, Response, RetireType, Role, RoleIcon, RoleIconProps, RootBGColor, RootColor, SdgGoals, Sector, SectoralScope, SolarProperties, StasticCard, StasticCardItemProps, StatsCardsTypes, SubTypeOfMitigation, SupportCreationComponent, SupportManagementComponent, SystemNames, TimelineBody, TimelineBodyProps, Titles, TooltipColor, TransferActionModel, TransferActionModelProps, TxType, TypeOfMitigation, UnitField, User, UserContextProps, UserCreationProps, UserManagementColumns, UserManagementComponent, UserProfileComponent, UserProps, UserRoleIcon, UserRoleIconProps, ViewBGColor, ViewColor, WidgetType, addCommSep, addCommSepRound, addNdcDesc, addRoundNumber, addSpaces, consumerGroupList, creditUnit, dateFormat, dateTimeFormat, energyGenerationUnitList, getBase64, getCompanyBgColor, getCreditStageVal, getFinancialFields, getGeneralFields, getInvestmentStatusEnumVal, getNdcActionStatusEnumVal, getNdcStatusTagType, getRetirementTypeString, getStageEnumVal, getStageTagType, getStageTagTypeMRV, getStageTransferEnumVal, getStatusTagType, getTransferStageTagType, getValidNdcActions, isBase64, landAreaUnitList, methodologyOptions, mitigationSubTypeList, mitigationSubTypesListMapped, mitigationTypeList, ndcActionTypeList, sectorMitigationTypesListMapped, sumArray, titleList, userForgotPasswordProps };
1299
+ export { Action, AdaptationProperties, AddNdcActionComponent, AddNewCompanyComponent, AddNewUserComponent, AdminBGColor, AdminColor, AgricultureProperties, BaseEntity, CarbonSystemType, CertBGColor, CertColor, CoBenefitProps, CoBenefitsProperties, CoBenifitsComponent, Company, CompanyManagementColumns, CompanyManagementComponent, CompanyProfileComponent, CompanyRole, CompanyState, ConfigurationSettingsType, ConnectionContextProviderProps, ConnectionProps, CountrySelect, CreditCalculationProperties, CreditTransferComponent, CreditTransferStage, DevBGColor, DevColor, DocType, DocumentStatus, ESGType, Emission, EmissionGas, EmissionSector, EmissionSubSectors, EnablementProperties, EnergyGenerationUnits, FormElementType, GHGDashboardComponent, GHGEmissionsComponent, GHGProjectionsComponent, GhgStatCardTypes, GovBGColor, GovColor, HeaderProps, ImgWithFallback, InfoView, InfoViewProps, Instrument, InvestmentBGColor, InvestmentBody, InvestmentBodyProps, InvestmentColor, InvestmentCreationComponent, InvestmentCreationType, InvestmentLevel, InvestmentManagementComponent, InvestmentStatus, InvestmentStream, InvestmentType, LandAreaUnits, LayoutSiderProps, LegendItem, LegendItemItemProps, Loading, LoginProps, ManagerBGColor, ManagerColor, MapComponent, MapComponentProps, MapPopupData, MapSourceData, MapTypes, MapboxComponent, MarkerData, Methods, MinBGColor, MinColor, MitigationSubTypes, MitigationTypes, MrvDashboardComponent, MrvStatsCardsTypes, NdcAction, NdcActionBody, NdcActionBodyProps, NdcActionManagementComponent, NdcActionStatus, NdcActionTypes, NdcActionViewComponent, NdcDetailsComponent, NdcFinancing, OrganisationStatus, OrganisationStatusProps, ProfileIcon, ProfileIconProps, Programme, ProgrammeCertify, ProgrammeCreationComponent, ProgrammeDeveloperCreation, ProgrammeDocuments, ProgrammeDocumentsProps, ProgrammeEntity, ProgrammeIssueForm, ProgrammeIssueFormProps, ProgrammeManagementColumns, ProgrammeManagementComponent, ProgrammeProperties, ProgrammePropertiesR, ProgrammePropertiesT, ProgrammePropertiesU, ProgrammeR, ProgrammeRetireForm, ProgrammeRetireFormProps, ProgrammeRevokeForm, ProgrammeRevokeFormProps, ProgrammeStageLegend, ProgrammeStageMRV, ProgrammeStageR, ProgrammeStageUnified, ProgrammeT, ProgrammeTransfer, ProgrammeTransferForm, ProgrammeTransferFormProps, ProgrammeU, Projection, ProjectionTypes, RadioButtonStatus, RadioButtonStatus2, RegistryDashboardComponent, RejectDocumentationConfirmationModel, RejectDocumentationProps, Response, RetireType, Role, RoleIcon, RoleIconProps, RootBGColor, RootColor, SdgGoals, Sector, SectoralScope, SolarProperties, StasticCard, StasticCardItemProps, StatsCardsTypes, SubTypeOfMitigation, SupportCreationComponent, SupportManagementComponent, SystemNames, TimelineBody, TimelineBodyProps, Titles, TooltipColor, TransferActionModel, TransferActionModelProps, TxType, TypeOfMitigation, UnitField, User, UserContextProps, UserCreationProps, UserManagementColumns, UserManagementComponent, UserProfileComponent, UserProps, UserRoleIcon, UserRoleIconProps, ViewBGColor, ViewColor, WidgetType, addCommSep, addCommSepRound, addNdcDesc, addRoundNumber, addSpaces, consumerGroupList, creditUnit, dateFormat, dateTimeFormat, energyGenerationUnitList, getBase64, getCompanyBgColor, getCreditStageVal, getFinancialFields, getGeneralFields, getInvestmentStatusEnumVal, getNdcActionStatusEnumVal, getNdcStatusTagType, getRetirementTypeString, getStageEnumVal, getStageTagType, getStageTagTypeMRV, getStageTransferEnumVal, getStatusTagType, getTransferStageTagType, getValidNdcActions, isBase64, landAreaUnitList, methodologyOptions, mitigationSubTypeList, mitigationSubTypesListMapped, mitigationTypeList, ndcActionTypeList, sectorMitigationTypesListMapped, sumArray, titleList, userForgotPasswordProps };
@@ -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",