@undp/carbon-library 1.0.136-support-section-changes.7 → 1.0.140-btn-fixes-investment.0

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
+ import "./ndcDetailsComponent.scss";
3
+ export declare const NdcDetailsComponent: (props: any) => React.JSX.Element;
@@ -16,6 +16,7 @@ export * from "./NdcActions/NdcView/ndcActionViewComponent";
16
16
  export * from "./Transfers/creditTransfersComponent";
17
17
  export * from "./MrvDashboard/mrvDashboardViewComponent";
18
18
  export * from "./RegistryDashboard/registryDashboardViewComponent";
19
+ export * from "./Ndc/ndcDetailsComponent";
19
20
  export * from "./Common/Loading/loading";
20
21
  export * from "./Common/LegendItem/legendItem";
21
22
  export * from "./Common/Maps/mapComponent";