@apexcura/ui-components 0.0.11-Beta48 → 0.0.11-Beta49
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 +1 -2
- package/dist/index.mjs +1 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -462,8 +462,6 @@ var AddMoreTable = (props) => {
|
|
|
462
462
|
actions: /* @__PURE__ */ import_react13.default.createElement(import_react13.default.Fragment, null, /* @__PURE__ */ import_react13.default.createElement(import_antd11.Button, { onClick: () => onHandleDelete(eachRow.id) }, /* @__PURE__ */ import_react13.default.createElement(import_icons2.DeleteOutlined, null)), index === rows.length - 1 && /* @__PURE__ */ import_react13.default.createElement(import_antd11.Button, { onClick: onHandleRows }, /* @__PURE__ */ import_react13.default.createElement(import_icons2.PlusOutlined, null)))
|
|
463
463
|
};
|
|
464
464
|
rowData.push(mainRow);
|
|
465
|
-
console.log("eachrow", ...eachRow);
|
|
466
|
-
console.log(thead);
|
|
467
465
|
if (eachRow.variable_data && Array.isArray(eachRow.variable_data)) {
|
|
468
466
|
eachRow.variable_data.forEach((variable, subIndex) => {
|
|
469
467
|
const subRowElements = {};
|
|
@@ -477,6 +475,7 @@ var AddMoreTable = (props) => {
|
|
|
477
475
|
rowData.push(subRowElements);
|
|
478
476
|
});
|
|
479
477
|
}
|
|
478
|
+
console.log(rowData);
|
|
480
479
|
return rowData;
|
|
481
480
|
});
|
|
482
481
|
if (!columns.some((col) => isColumnType(col) && col.dataIndex === "actions")) {
|
package/dist/index.mjs
CHANGED
|
@@ -415,8 +415,6 @@ var AddMoreTable = (props) => {
|
|
|
415
415
|
actions: /* @__PURE__ */ React12.createElement(React12.Fragment, null, /* @__PURE__ */ React12.createElement(Button3, { onClick: () => onHandleDelete(eachRow.id) }, /* @__PURE__ */ React12.createElement(DeleteOutlined, null)), index === rows.length - 1 && /* @__PURE__ */ React12.createElement(Button3, { onClick: onHandleRows }, /* @__PURE__ */ React12.createElement(PlusOutlined, null)))
|
|
416
416
|
};
|
|
417
417
|
rowData.push(mainRow);
|
|
418
|
-
console.log("eachrow", ...eachRow);
|
|
419
|
-
console.log(thead);
|
|
420
418
|
if (eachRow.variable_data && Array.isArray(eachRow.variable_data)) {
|
|
421
419
|
eachRow.variable_data.forEach((variable, subIndex) => {
|
|
422
420
|
const subRowElements = {};
|
|
@@ -430,6 +428,7 @@ var AddMoreTable = (props) => {
|
|
|
430
428
|
rowData.push(subRowElements);
|
|
431
429
|
});
|
|
432
430
|
}
|
|
431
|
+
console.log(rowData);
|
|
433
432
|
return rowData;
|
|
434
433
|
});
|
|
435
434
|
if (!columns.some((col) => isColumnType(col) && col.dataIndex === "actions")) {
|