@apexcura/ui-components 0.0.12-Beta19 → 0.0.12-Beta20
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/index.js +3 -3
- package/dist/index.mjs +3 -3
- package/package.json +1 -2
package/dist/index.js
CHANGED
|
@@ -385,12 +385,12 @@ var AddMoreTable = (props) => {
|
|
|
385
385
|
const { icons, ...rest } = item;
|
|
386
386
|
return {
|
|
387
387
|
...rest,
|
|
388
|
-
icons: { ...icons, delete:
|
|
388
|
+
icons: { ...icons, delete: /* @__PURE__ */ import_react13.default.createElement(import_icons2.DeleteOutlined, null) }
|
|
389
389
|
};
|
|
390
390
|
});
|
|
391
391
|
updatedVariableData[updatedVariableData.length - 1] = {
|
|
392
392
|
...updatedVariableData[updatedVariableData.length - 1],
|
|
393
|
-
icons: { ...updatedVariableData[updatedVariableData.length - 1].icons, plus:
|
|
393
|
+
icons: { ...updatedVariableData[updatedVariableData.length - 1].icons, plus: /* @__PURE__ */ import_react13.default.createElement(import_icons2.PlusOutlined, null) }
|
|
394
394
|
};
|
|
395
395
|
newRow.variable_data = updatedVariableData;
|
|
396
396
|
}
|
|
@@ -438,7 +438,7 @@ var AddMoreTable = (props) => {
|
|
|
438
438
|
element: "textarea",
|
|
439
439
|
type: "text"
|
|
440
440
|
},
|
|
441
|
-
icons: { delete:
|
|
441
|
+
icons: { delete: /* @__PURE__ */ import_react13.default.createElement(import_icons2.DeleteOutlined, null), plus: /* @__PURE__ */ import_react13.default.createElement(import_icons2.PlusOutlined, null) }
|
|
442
442
|
};
|
|
443
443
|
const updatedVariableData = [...row.variable_data, newVariableData];
|
|
444
444
|
updatedVariableData.forEach((data, index) => {
|
package/dist/index.mjs
CHANGED
|
@@ -338,12 +338,12 @@ var AddMoreTable = (props) => {
|
|
|
338
338
|
const { icons, ...rest } = item;
|
|
339
339
|
return {
|
|
340
340
|
...rest,
|
|
341
|
-
icons: { ...icons, delete:
|
|
341
|
+
icons: { ...icons, delete: /* @__PURE__ */ React12.createElement(DeleteOutlined, null) }
|
|
342
342
|
};
|
|
343
343
|
});
|
|
344
344
|
updatedVariableData[updatedVariableData.length - 1] = {
|
|
345
345
|
...updatedVariableData[updatedVariableData.length - 1],
|
|
346
|
-
icons: { ...updatedVariableData[updatedVariableData.length - 1].icons, plus:
|
|
346
|
+
icons: { ...updatedVariableData[updatedVariableData.length - 1].icons, plus: /* @__PURE__ */ React12.createElement(PlusOutlined, null) }
|
|
347
347
|
};
|
|
348
348
|
newRow.variable_data = updatedVariableData;
|
|
349
349
|
}
|
|
@@ -391,7 +391,7 @@ var AddMoreTable = (props) => {
|
|
|
391
391
|
element: "textarea",
|
|
392
392
|
type: "text"
|
|
393
393
|
},
|
|
394
|
-
icons: { delete:
|
|
394
|
+
icons: { delete: /* @__PURE__ */ React12.createElement(DeleteOutlined, null), plus: /* @__PURE__ */ React12.createElement(PlusOutlined, null) }
|
|
395
395
|
};
|
|
396
396
|
const updatedVariableData = [...row.variable_data, newVariableData];
|
|
397
397
|
updatedVariableData.forEach((data, index) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apexcura/ui-components",
|
|
3
|
-
"version": "0.0.12-
|
|
3
|
+
"version": "0.0.12-Beta20",
|
|
4
4
|
"description": "Apex cura React components library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"apex cura",
|
|
@@ -48,7 +48,6 @@
|
|
|
48
48
|
"node": ">=18.0.0"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@apexcura/ui-components": "^0.0.12-Beta17",
|
|
52
51
|
"@tinymce/tinymce-react": "^5.0.1"
|
|
53
52
|
}
|
|
54
53
|
}
|