@undp/carbon-library 1.0.281-CARBON-400.1 → 1.0.281-ghg-inventory.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. package/dist/cjs/index.js +4872 -95
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/types/Components/Common/Models/discardChangesConfirmationModel.d.ts +13 -0
  4. package/dist/cjs/types/Components/Common/Models/ghgUserActionConfirmationModel.d.ts +13 -0
  5. package/dist/cjs/types/Components/GhgInventory/Dashboard/BarChartEstimatedActualStatsComponent.d.ts +16 -0
  6. package/dist/cjs/types/Components/GhgInventory/Dashboard/BarChartStatsComponent.d.ts +13 -0
  7. package/dist/cjs/types/Components/GhgInventory/Dashboard/ghg.chart.options.d.ts +12 -0
  8. package/dist/cjs/types/Components/GhgInventory/Dashboard/ghg.dashboard.d.ts +3 -0
  9. package/dist/cjs/types/Components/GhgInventory/Emissions/emissions.d.ts +4 -0
  10. package/dist/cjs/types/Components/GhgInventory/Projections/projections.d.ts +4 -0
  11. package/dist/cjs/types/Components/GhgInventory/emission.mappings.d.ts +17 -0
  12. package/dist/cjs/types/Components/GhgInventory/emission.types.d.ts +1 -0
  13. package/dist/cjs/types/Components/GhgInventory/projection.types.d.ts +1 -0
  14. package/dist/cjs/types/Components/index.d.ts +3 -0
  15. package/dist/cjs/types/Definitions/Entities/emission.d.ts +9 -0
  16. package/dist/cjs/types/Definitions/Entities/projection.d.ts +9 -0
  17. package/dist/cjs/types/Definitions/Enums/ghg.record.state.enum.d.ts +4 -0
  18. package/dist/cjs/types/Definitions/Enums/sector.enum.d.ts +43 -0
  19. package/dist/cjs/types/Definitions/Enums/statsCards.type.enum.d.ts +7 -0
  20. package/dist/cjs/types/Definitions/Enums/widget.type.enum.d.ts +3 -1
  21. package/dist/cjs/types/Definitions/index.d.ts +2 -0
  22. package/dist/esm/index.js +4869 -98
  23. package/dist/esm/index.js.map +1 -1
  24. package/dist/esm/types/Components/Common/Models/discardChangesConfirmationModel.d.ts +13 -0
  25. package/dist/esm/types/Components/Common/Models/ghgUserActionConfirmationModel.d.ts +13 -0
  26. package/dist/esm/types/Components/GhgInventory/Dashboard/BarChartEstimatedActualStatsComponent.d.ts +16 -0
  27. package/dist/esm/types/Components/GhgInventory/Dashboard/BarChartStatsComponent.d.ts +13 -0
  28. package/dist/esm/types/Components/GhgInventory/Dashboard/ghg.chart.options.d.ts +12 -0
  29. package/dist/esm/types/Components/GhgInventory/Dashboard/ghg.dashboard.d.ts +3 -0
  30. package/dist/esm/types/Components/GhgInventory/Emissions/emissions.d.ts +4 -0
  31. package/dist/esm/types/Components/GhgInventory/Projections/projections.d.ts +4 -0
  32. package/dist/esm/types/Components/GhgInventory/emission.mappings.d.ts +17 -0
  33. package/dist/esm/types/Components/GhgInventory/emission.types.d.ts +1 -0
  34. package/dist/esm/types/Components/GhgInventory/projection.types.d.ts +1 -0
  35. package/dist/esm/types/Components/index.d.ts +3 -0
  36. package/dist/esm/types/Definitions/Entities/emission.d.ts +9 -0
  37. package/dist/esm/types/Definitions/Entities/projection.d.ts +9 -0
  38. package/dist/esm/types/Definitions/Enums/ghg.record.state.enum.d.ts +4 -0
  39. package/dist/esm/types/Definitions/Enums/sector.enum.d.ts +43 -0
  40. package/dist/esm/types/Definitions/Enums/statsCards.type.enum.d.ts +7 -0
  41. package/dist/esm/types/Definitions/Enums/widget.type.enum.d.ts +3 -1
  42. package/dist/esm/types/Definitions/index.d.ts +2 -0
  43. package/dist/index.d.ts +81 -2
  44. package/dist/locales/i18n/ghgInventory/en.json +79 -0
  45. package/dist/locales/i18n/login/en.json +0 -1
  46. package/dist/locales/i18n/nav/en.json +2 -0
  47. package/package.json +1 -1
@@ -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,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,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,79 @@
1
+ {
2
+ "emissions" : "Emissions",
3
+ "projections" : "Projections",
4
+ "totalNationalEmissionSubTitle" : "Total national emissions and removals",
5
+ "addNew" : "Add New",
6
+ "year": "Year",
7
+ "isRequired": "is required!",
8
+ "totalNationalEmission" : "Total National Emission and Removals (in tCO\u2082-eq)",
9
+ "energyEmissions": "Energy",
10
+ "fuelCombustionActivities": "Fuel Combustion Activities",
11
+ "fugitiveEmissionsFromFuels" : "Fugitive emissions from fuels",
12
+ "carbonDioxideTransportStorage" : "Carbon dioxide Transport and Storage",
13
+ "industrialProcessesProductUse" : "Industrial Processes & Product Use",
14
+ "agricultureForestryOtherLandUse" : "Agriculture, Forestry, and Other Land Use",
15
+ "waste" : "Waste",
16
+ "energyIndustries": "Energy Industries",
17
+ "manufacturingIndustriesConstruction": "Manufacturing Industries and Construction",
18
+ "transport": "Transport",
19
+ "otherSectors": "Other Sectors",
20
+ "nonSpecified": "Non-Specified",
21
+ "solidFuels": "Solid Fuels",
22
+ "oilNaturalGas": "Oil and Natural Gas",
23
+ "otherEmissionsEnergyProduction": "Other emissions from Energy Production",
24
+ "transportOfCo2": "Transport of CO2",
25
+ "injectionStorage": "Injection and Storage",
26
+ "otherCarbonDioxideTransportStorage": "Other (Carbon dioxide Transport and Storage)",
27
+ "mineralIndustry": "Mineral Industry",
28
+ "chemicalIndustry": "Chemical Industry",
29
+ "metalIndustry": "Metal Industry",
30
+ "nonEnergyProductsFuelsSolventUse": "Non-Energy Products from Fuels and Solvent Use",
31
+ "electronicsIndustry": "Electronics Industry",
32
+ "productUsesSubstOzoneDepletingSubs": "Product Uses as Substitutes for Ozone Depleting Substances",
33
+ "otherProductManufactureUse": "Other Product Manufacture and Use",
34
+ "otherIndustrialProcessesProductUse": "Other (Industrial Processes & Product Use)",
35
+ "livestock": "Livestock",
36
+ "land": "Land",
37
+ "aggregateNonCo2SourcesLand": "Aggregate sources and non-CO2 emissions sources on land",
38
+ "otherAgricultureForestryOtherLandUse": "Other (Agriculture, Forestry, and Other Land Use)",
39
+ "solidWasteDisposal": "Solid Waste Disposal",
40
+ "biologicalTreatmentSolidWaste": "Biological Treatment of Solid Waste",
41
+ "incinerationOpenBurningWaste": "Incineration and Open Burning of Waste",
42
+ "wastewaterTreatmentDischarge": "Wastewater Treatment and Discharge",
43
+ "otherWaste": "Other (Waste)",
44
+ "indirectN2oEmissions": "Indirect N2O emissions from the atmospheric deposition of nitrogen in NOx and NH3",
45
+ "other": "Other",
46
+ "totalCo2WithoutLand": "Total CO2 equivalent emissions without land use, land-use change and forestry",
47
+ "totalCo2WithLand": "Total CO2 equivalent emissions with land use, land-use change and forestry",
48
+ "upload": "Upload",
49
+ "emissionRemovalDocument" : "Emissions & Removals Document",
50
+ "emissionCreationSuccess" : "The changes to the form have been submitted successfully",
51
+ "emissionUpdateSuccess" : "The changes to the form have been submitted successfully",
52
+ "emissionFinalizedSuccess" : "The form has been finalised successfully",
53
+ "projectionCreationSuccess" : "The changes to the form have been submitted successfully",
54
+ "projectionUpdateSuccess" : "The changes to the form have been submitted successfully",
55
+ "projectionFinalizedSuccess" : "The form has been finalised successfully",
56
+ "invalidFileType" : "Only XLSX and XLS files are allowed",
57
+ "invalidDataInExcel" : "Incorrect data format",
58
+ "discardHeaderText" : "Are you sure you want to cancel this edit?",
59
+ "formNotChanged" : "No changes have been done to the form",
60
+ "cannotFinaliseEmpty" : "An empty form cannot be finalised",
61
+ "negativeValuesNotAllowed" : "Negative values are not allowed",
62
+ "invalidDataType": "Invalid data type",
63
+ "formCancelledSuccess" : "The changes to the form have been cancelled successfully",
64
+ "submitModelHeader" : "Are you sure you want to submit this edit?",
65
+ "finalizeModelHeader" : "Are you sure you want to finalise this form? This action cannot be undone.",
66
+ "emissionsBySectorTitle": "GHG Emissions: Sector",
67
+ "emissionsBySectorTT": "Amount of gas emitted in each year by each sector during the specified period.",
68
+ "emissionsByGasTitle": "GHG Emissions: Gas",
69
+ "emissionsByGasTT": "Amount of gas emitted in each year by each type of gas during the specified period",
70
+ "emissionsMitigationPotentialBySectorTitle": "GHG Mitigation Potential: Sector",
71
+ "emissionsMitigationPotentialBySectorTT": "Amount of gas emission projected in each year by each sector during the specified period",
72
+ "emissionsReductionPercentageBySectorTitle": "GHG % Reduction compared to BAU scenario in 2030: Sector",
73
+ "emissionsReductionPercentageBySectorTT": "Estimated and actual percentage of reduction compared to projected Business-As-Usual of each sub sector during the specified period",
74
+ "emissionsComparisonTitle": "GHG Emission Comparison",
75
+ "emissionsComparisonTT": "Emissions projected and actual projections for each year under each type during the specified period",
76
+ "remarks": "Remarks",
77
+ "finalize": "Finalise"
78
+ }
79
+
@@ -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",
@@ -1,6 +1,8 @@
1
1
  {
2
2
  "dashboard": "Dashboard",
3
3
  "ghgInventory": "GHG Inventory",
4
+ "emissions" : "Emissions",
5
+ "projections" : "Projections",
4
6
  "programmes": "Projects",
5
7
  "transfers": "Transfers",
6
8
  "companies": "Organisations",
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-ghg-inventory.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": {