@undp/carbon-library 1.0.135-CARBON-343.0 → 1.0.135-CARBON-343.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,21 @@
1
+ import React from 'react';
2
+ interface Item {
3
+ key: string;
4
+ name: string;
5
+ age: string;
6
+ address: string;
7
+ }
8
+ interface EditableRowProps {
9
+ index: number;
10
+ }
11
+ export declare const EditableRow: React.FC<EditableRowProps>;
12
+ interface EditableCellProps {
13
+ title: React.ReactNode;
14
+ editable: boolean;
15
+ children: React.ReactNode;
16
+ dataIndex: keyof Item;
17
+ record: Item;
18
+ handleSave: (record: Item) => void;
19
+ }
20
+ export declare const EditableCell: React.FC<EditableCellProps>;
21
+ export {};
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const NdcDetailsComponent: (props: any) => React.JSX.Element;
3
+ export default NdcDetailsComponent;
@@ -14,6 +14,7 @@ export * from "./NdcActions/NdcView/ndcActionViewComponent";
14
14
  export * from "./Transfers/creditTransfersComponent";
15
15
  export * from "./MrvDashboard/mrvDashboardViewComponent";
16
16
  export * from "./RegistryDashboard/registryDashboardViewComponent";
17
+ export * from "./Ndc/ndcDetailsComponent";
17
18
  export * from "./Common/Loading/loading";
18
19
  export * from "./Common/LegendItem/legendItem";
19
20
  export * from "./Common/Maps/mapComponent";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@undp/carbon-library",
3
- "version": "1.0.135-CARBON-343.0",
3
+ "version": "1.0.135-CARBON-343.1",
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": {
@@ -1,3 +0,0 @@
1
- import React from "react";
2
- declare const ndcDetailManagementComponent: (props: any) => React.JSX.Element;
3
- export default ndcDetailManagementComponent;
@@ -1,3 +0,0 @@
1
- import React from "react";
2
- declare const ndcDetailManagementComponent: (props: any) => React.JSX.Element;
3
- export default ndcDetailManagementComponent;