@undp/carbon-library 1.0.83 → 1.0.85

Sign up to get free protection for your applications and to get access to all the features.
@@ -6,5 +6,4 @@ export interface TimelineBodyProps {
6
6
  via?: string | null;
7
7
  t: any;
8
8
  }
9
- declare const TimelineBody: FC<TimelineBodyProps>;
10
- export default TimelineBody;
9
+ export declare const TimelineBody: FC<TimelineBodyProps>;
@@ -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";
@@ -31,3 +33,4 @@ export * from "./Common/NdcActionBody/ndcActionBody";
31
33
  export * from "./Common/OrganisationStatus/organisationStatus";
32
34
  export * from "./Common/ProgrammeDocuments/programmeDocuments";
33
35
  export * from "./Common/UserRoleIcon/userRoleIcon";
36
+ export * from "./Common/TimelineBody/timelineBody";
@@ -105,11 +105,12 @@ export declare const addCommSep: (value: any) => string;
105
105
  export declare const addCommSepRound: (value: any) => string;
106
106
  export declare const addRoundNumber: (value: any) => number;
107
107
  export declare const addSpaces: (text: string) => string;
108
- export declare const getFinancialFields: (programme: ProgrammeR | ProgrammeU) => {
109
- programmeCost: string;
108
+ export declare const getFinancialFields: (programme: ProgrammeU) => {
109
+ estimatedProgrammeCostUSD: string;
110
+ creditEst: string;
110
111
  financingType: string;
111
112
  grantEquivalent: UnitField;
112
- carbonPrice: string;
113
+ carbonPriceUSDPerTon: string;
113
114
  };
114
115
  export declare const getCompanyBgColor: (item: string) => "rgba(185, 226, 244, 0.56)" | "rgba(254, 241, 173, 0.55)" | "rgba(128, 255, 0, 0.12)";
115
116
  export declare const getRetirementTypeString: (retirementType: string | null) => "-" | "CROSS BORDER TRANSFER" | "LEGAL ACTION" | "OTHER" | undefined;
@@ -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
+ }
@@ -24,6 +24,10 @@ export * from "./Enums/sdgGoals.enum";
24
24
  export * from "./Enums/carbonSystemType.enum";
25
25
  export * from "./Enums/document.type";
26
26
  export * from "./Enums/document.status";
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";
27
31
  export * from "./Definitions/userLogin.definitions";
28
32
  export * from "./Definitions/userInformationContext.definitions";
29
33
  export * from "./Definitions/userForgotPassword.definitions";
@@ -35,8 +39,10 @@ export * from "./Definitions/layout.header";
35
39
  export * from "./Definitions/layout.sider.definitions";
36
40
  export * from "./Definitions/mapComponent.definitions";
37
41
  export * from "./Definitions/ndcAction.definitions";
42
+ export * from "./Definitions/common.definitions";
38
43
  export * from "./Entities/company";
39
44
  export * from "./Entities/baseEntity";
40
45
  export * from "./Entities/programmeTransfer";
41
46
  export * from "./Entities/user";
42
47
  export * from "./Entities/programme";
48
+ export * from "./Entities/programmeCertify";