@undp/carbon-library 1.0.84 → 1.0.85

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import "./programmeTransferManagement.scss";
3
+ import "./creditTransfer.scss";
4
+ import "../../Styles/common.table.scss";
5
+ export declare const CreditTransferComponent: (props: any) => React.JSX.Element;
@@ -10,6 +10,8 @@ export * from "./Investment/AddNewInvestment/investmentCreationComponent";
10
10
  export * from "./Investment/InvestmentManagement/investmentManagementComponent";
11
11
  export * from "./NdcActions/NdcActionManagement/ndcActionManagementComponent";
12
12
  export * from "./NdcActions/AddNdcAction/addNdcActionComponent";
13
+ export * from "./NdcActions/NdcView/ndcActionViewComponent";
14
+ export * from "./Transfers/creditTransfersComponent";
13
15
  export * from "./Common/Loading/loading";
14
16
  export * from "./Common/LegendItem/legendItem";
15
17
  export * from "./Common/Maps/mapComponent";
@@ -0,0 +1,5 @@
1
+ import { BaseEntity } from "./baseEntity";
2
+ export declare class ProgrammeCertify implements BaseEntity {
3
+ programmeId?: string;
4
+ comment?: string;
5
+ }
@@ -15,3 +15,8 @@ export declare enum ProgrammeStageUnified {
15
15
  Approved = "Approved",
16
16
  Rejected = "Rejected"
17
17
  }
18
+ export declare enum ProgrammeStageLegend {
19
+ AUTHORISED = "Authorised",
20
+ REJECTED = "Rejected",
21
+ AWAITING_AUTHORIZATION = "AwaitingAuthorization"
22
+ }
@@ -16,3 +16,16 @@ export declare enum StatsCardsTypes {
16
16
  PROGRAMME_LOCATIONS = "Programme Locations",
17
17
  TRANSFER_LOCATIONS_INTERNATIONAL = "Transfer Locations International"
18
18
  }
19
+ export declare enum MrvStatsCardsTypes {
20
+ AGG_PROGRAMME_BY_SECTOR = "AGG_PROGRAMME_BY_SECTOR",
21
+ AGG_NDC_ACTION_BY_TYPE = "AGG_NDC_ACTION_BY_TYPE",
22
+ AGG_NDC_ACTION_BY_SECTOR = "AGG_NDC_ACTION_BY_SECTOR",
23
+ TOTAL_EMISSIONS = "TOTAL_EMISSIONS",
24
+ PROGRAMME_LOCATION = "PROGRAMME_LOCATION",
25
+ INVESTMENT_LOCATION = "INVESTMENT_LOCATION",
26
+ AGG_INVESTMENT_BY_TYPE = "AGG_INVESTMENT_BY_TYPE"
27
+ }
28
+ export declare enum SystemNames {
29
+ CARBON_REGISTRY = "CARBON_REGISTRY_SYSTEM",
30
+ CARBON_TRANSPARENCY = "CARBON_TRANSPARENCY_SYSTEM"
31
+ }
@@ -0,0 +1,5 @@
1
+ export declare enum WidgetType {
2
+ PIE = "Pie",
3
+ MAP = "Map",
4
+ LIST = "List"
5
+ }
@@ -25,6 +25,9 @@ export * from "./Enums/carbonSystemType.enum";
25
25
  export * from "./Enums/document.type";
26
26
  export * from "./Enums/document.status";
27
27
  export * from "./Enums/company.state.enum";
28
+ export * from "./Enums/widget.type.enum";
29
+ export * from "./Enums/statsCards.type.enum";
30
+ export * from "./Enums/action.enum";
28
31
  export * from "./Definitions/userLogin.definitions";
29
32
  export * from "./Definitions/userInformationContext.definitions";
30
33
  export * from "./Definitions/userForgotPassword.definitions";
@@ -36,8 +39,10 @@ export * from "./Definitions/layout.header";
36
39
  export * from "./Definitions/layout.sider.definitions";
37
40
  export * from "./Definitions/mapComponent.definitions";
38
41
  export * from "./Definitions/ndcAction.definitions";
42
+ export * from "./Definitions/common.definitions";
39
43
  export * from "./Entities/company";
40
44
  export * from "./Entities/baseEntity";
41
45
  export * from "./Entities/programmeTransfer";
42
46
  export * from "./Entities/user";
43
47
  export * from "./Entities/programme";
48
+ export * from "./Entities/programmeCertify";