@undp/carbon-library 1.0.135-ghg-inventory.9.7 → 1.0.135-ghg-inventory.9.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -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;
@@ -38,3 +38,4 @@ export * from "./Common/UserRoleIcon/userRoleIcon";
38
38
  export * from "./Common/TimelineBody/timelineBody";
39
39
  export * from "./GhgInventory/Emissions/emissions";
40
40
  export * from "./GhgInventory/Projections/projections";
41
+ export * from "./GhgInventory/Dashboard/ghg.dashboard";
@@ -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
  }