@undp/carbon-library 1.0.263-CARBON-388.0 → 1.0.263-CARBON-390.0
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.
- package/dist/cjs/index.js +4 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/Definitions/Enums/enablementTypes.enum.d.ts +2 -1
- package/dist/esm/index.js +4 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/Definitions/Enums/enablementTypes.enum.d.ts +2 -1
- package/dist/locales/i18n/ndc/en.json +1 -1
- package/package.json +1 -1
@@ -1,7 +1,8 @@
|
|
1
1
|
export declare enum EnablementTypes {
|
2
2
|
CapacityBuilding = "Capacity Building",
|
3
3
|
TechnologyTransfer = "Technology Transfer",
|
4
|
-
Financial = "Financial"
|
4
|
+
Financial = "Financial",
|
5
|
+
EnhancedTransparency = "Enhanced Transparency"
|
5
6
|
}
|
6
7
|
export declare const enablementTypesAndValues: {
|
7
8
|
type: string;
|
package/dist/esm/index.js
CHANGED
@@ -17738,6 +17738,7 @@ var EnablementTypes;
|
|
17738
17738
|
EnablementTypes["CapacityBuilding"] = "Capacity Building";
|
17739
17739
|
EnablementTypes["TechnologyTransfer"] = "Technology Transfer";
|
17740
17740
|
EnablementTypes["Financial"] = "Financial";
|
17741
|
+
EnablementTypes["EnhancedTransparency"] = "Enhanced Transparency";
|
17741
17742
|
})(EnablementTypes || (EnablementTypes = {}));
|
17742
17743
|
var enablementTypesAndValues = [
|
17743
17744
|
{ type: EnablementTypes.CapacityBuilding.valueOf(), col: 4 },
|
@@ -26363,7 +26364,7 @@ var NdcDetailsComponent = function (props) {
|
|
26363
26364
|
editable: true,
|
26364
26365
|
width: "50%",
|
26365
26366
|
render: function (_, record) { return (React.createElement(React.Fragment, null, record.nationalPlanObj ? (React.createElement(Space, { size: "middle" },
|
26366
|
-
React.createElement("span", null, record.nationalPlanObj))) : (React.createElement("input", { placeholder: "Please add
|
26367
|
+
React.createElement("span", null, record.nationalPlanObj))) : (React.createElement("input", { placeholder: "Please add the National Plan Objective", className: "ant-input", type: "text" })))); },
|
26367
26368
|
},
|
26368
26369
|
{
|
26369
26370
|
title: t("ndc:ndcColumnsKpi"),
|
@@ -26376,14 +26377,14 @@ var NdcDetailsComponent = function (props) {
|
|
26376
26377
|
React.createElement("span", null, record.kpi))) : (React.createElement("input", { placeholder: "Enter Kpi", className: "ant-input", type: "text" })))); },
|
26377
26378
|
},
|
26378
26379
|
{
|
26379
|
-
title: "
|
26380
|
+
title: "Ministry",
|
26380
26381
|
dataIndex: "ministry",
|
26381
26382
|
key: "ministry",
|
26382
26383
|
align: "left",
|
26383
26384
|
editable: true,
|
26384
26385
|
width: "40%",
|
26385
26386
|
render: function (_, record) { return (React.createElement(React.Fragment, null, record.nationalPlanObj ? (React.createElement(Space, { size: "middle" },
|
26386
|
-
React.createElement("span", null, record.ministry))) : (React.createElement("input", { placeholder: "Please add the
|
26387
|
+
React.createElement("span", null, record.ministry))) : (React.createElement("input", { placeholder: "Please add the Ministry name", className: "ant-input", type: "text" })))); },
|
26387
26388
|
},
|
26388
26389
|
];
|
26389
26390
|
var columns = defaultColumns.map(function (col) {
|