@undp/carbon-library 1.0.78 → 1.0.79

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,10 +1,9 @@
1
- import { FC } from 'react';
2
- import './info.view.scss';
1
+ import { FC } from "react";
2
+ import "./info.view.scss";
3
3
  export interface InfoViewProps {
4
4
  data: any;
5
5
  title?: any;
6
6
  icon?: any;
7
7
  hiddenColumns?: any;
8
8
  }
9
- declare const InfoView: FC<InfoViewProps>;
10
- export default InfoView;
9
+ export declare const InfoView: FC<InfoViewProps>;
@@ -19,3 +19,4 @@ export * from "./Common/Maps/mapboxComponent";
19
19
  export * from "./Common/StasticCard/stasticCard";
20
20
  export * from "./Common/ProfileIcon/profile.icon";
21
21
  export * from "./Common/RoleIcon/role.icon";
22
+ export * from "./Common/InfoView/info.view";
@@ -15,6 +15,7 @@ export interface AdaptationProperties {
15
15
  implementingAgency: string;
16
16
  nationalPlanObjectives: string;
17
17
  nationalPlanCoverage: string;
18
+ includedInNAP: any;
18
19
  ghgEmissionsReduced: any;
19
20
  ghgEmissionsAvoided: any;
20
21
  }
@@ -0,0 +1,10 @@
1
+ export declare enum EnablementTypes {
2
+ CapacityBuilding = "Capacity Building",
3
+ InstitutionalArrangement = "Institutional Arrangement",
4
+ StakeholderFramework = "Stakeholder Framework",
5
+ TechnologyTransfer = "Technology Transfer"
6
+ }
7
+ export declare const enablementTypesAndValues: {
8
+ type: string;
9
+ col: number;
10
+ }[];
@@ -4,5 +4,6 @@ export declare enum Instrument {
4
4
  GRANT = "Grant",
5
5
  EQUITY = "Equity",
6
6
  GUARANTEE = "Guarantee",
7
+ INKIND = "In-Kind",
7
8
  OTHER = "Other"
8
9
  }