@undp/carbon-library 1.0.135-CARBON-342.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/dist/esm/index.js CHANGED
@@ -314,7 +314,7 @@ var getGeneralFields = function (programme, system) {
314
314
  title: programme.title,
315
315
  serialNo: programme.serialNo,
316
316
  currentStatus: programme.currentStage,
317
- applicationType: "Project Developer",
317
+ applicationType: "Programme Developer",
318
318
  sector: programme.sector,
319
319
  sectoralScope: Object.keys(SectoralScope)[Object.values(SectoralScope).indexOf(programme.sectoralScope)],
320
320
  startDate: DateTime.fromSeconds(Number(programme.startTime)),
@@ -23548,6 +23548,8 @@ var RegistryDashboardComponent = function (props) {
23548
23548
  lastUpdateTransferLocations))))))))) : ("")));
23549
23549
  };
23550
23550
 
23551
+ React.createContext(null);
23552
+
23551
23553
  var ImgWithFallback = function (_a) {
23552
23554
  var src = _a.src, alt = _a.alt, fallbackSrc = _a.fallbackSrc, mediaType = _a.mediaType, className = _a.className, delegated = __rest(_a, ["src", "alt", "fallbackSrc", "mediaType", "className"]);
23553
23555
  return (React.createElement("picture", null,