@apexcura/ui-components 0.0.11-Beta69 → 0.0.11-Beta70
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 +17 -19
- package/dist/index.mjs +17 -19
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -445,31 +445,29 @@ var AddMoreTable = (props) => {
|
|
|
445
445
|
return null;
|
|
446
446
|
}
|
|
447
447
|
};
|
|
448
|
-
const dataSource = rows.
|
|
449
|
-
|
|
450
|
-
|
|
448
|
+
const dataSource = rows.map((eachRow, index) => {
|
|
449
|
+
console.log("eachrow---------", eachRow);
|
|
450
|
+
const subRow = eachRow.variable_data.map((variable, subIndex) => ({
|
|
451
|
+
key: `${eachRow.id}-${subIndex}`,
|
|
452
|
+
...Object.fromEntries(Object.entries(variable).map(([key, value]) => {
|
|
453
|
+
if (key === "icons") {
|
|
454
|
+
return ["sub rows", /* @__PURE__ */ import_react13.default.createElement("div", { key: subIndex }, eachRow.variable_data.length > 1 && /* @__PURE__ */ import_react13.default.createElement(import_antd11.Button, { onClick: () => onHandleSubRowsDelete(index, subIndex) }, /* @__PURE__ */ import_react13.default.createElement(import_icons2.DeleteOutlined, null)), subIndex === eachRow.variable_data.length - 1 && /* @__PURE__ */ import_react13.default.createElement(import_antd11.Button, { onClick: () => onHandleSubRowsAdd(index) }, /* @__PURE__ */ import_react13.default.createElement(import_icons2.PlusOutlined, null)))];
|
|
455
|
+
} else {
|
|
456
|
+
return [key, renderInputElement(value)];
|
|
457
|
+
}
|
|
458
|
+
}))
|
|
459
|
+
}));
|
|
460
|
+
const rowData = {
|
|
451
461
|
"#": index + 1,
|
|
452
462
|
"Medicine": renderInputElement({
|
|
453
463
|
element: eachRow.element,
|
|
454
464
|
label: eachRow.label
|
|
455
465
|
}),
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
const subRow = {
|
|
459
|
-
key: `${eachRow.id}-${subIndex}`,
|
|
460
|
-
...Object.fromEntries(Object.entries(variable).map(([key, value]) => {
|
|
461
|
-
if (key === "icons") {
|
|
462
|
-
return ["actions", /* @__PURE__ */ import_react13.default.createElement("div", { key: subIndex }, eachRow.variable_data.length > 1 && /* @__PURE__ */ import_react13.default.createElement(import_antd11.Button, { onClick: () => onHandleSubRowsDelete(index, subIndex) }, /* @__PURE__ */ import_react13.default.createElement(import_icons2.DeleteOutlined, null)), subIndex === eachRow.variable_data.length - 1 && /* @__PURE__ */ import_react13.default.createElement(import_antd11.Button, { onClick: () => onHandleSubRowsAdd(index) }, /* @__PURE__ */ import_react13.default.createElement(import_icons2.PlusOutlined, null)))];
|
|
463
|
-
} else {
|
|
464
|
-
return [key, renderInputElement(value)];
|
|
465
|
-
}
|
|
466
|
-
}))
|
|
467
|
-
};
|
|
468
|
-
return subRow;
|
|
469
|
-
})
|
|
466
|
+
subRow: [...subRow],
|
|
467
|
+
actions: /* @__PURE__ */ import_react13.default.createElement("div", 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)))
|
|
470
468
|
};
|
|
471
|
-
return
|
|
472
|
-
});
|
|
469
|
+
return [rowData];
|
|
470
|
+
}).flat();
|
|
473
471
|
if (!columns.some((col) => col.dataIndex === "actions")) {
|
|
474
472
|
columns.push({
|
|
475
473
|
title: "Actions",
|
package/dist/index.mjs
CHANGED
|
@@ -398,31 +398,29 @@ var AddMoreTable = (props) => {
|
|
|
398
398
|
return null;
|
|
399
399
|
}
|
|
400
400
|
};
|
|
401
|
-
const dataSource = rows.
|
|
402
|
-
|
|
403
|
-
|
|
401
|
+
const dataSource = rows.map((eachRow, index) => {
|
|
402
|
+
console.log("eachrow---------", eachRow);
|
|
403
|
+
const subRow = eachRow.variable_data.map((variable, subIndex) => ({
|
|
404
|
+
key: `${eachRow.id}-${subIndex}`,
|
|
405
|
+
...Object.fromEntries(Object.entries(variable).map(([key, value]) => {
|
|
406
|
+
if (key === "icons") {
|
|
407
|
+
return ["sub rows", /* @__PURE__ */ React12.createElement("div", { key: subIndex }, eachRow.variable_data.length > 1 && /* @__PURE__ */ React12.createElement(Button3, { onClick: () => onHandleSubRowsDelete(index, subIndex) }, /* @__PURE__ */ React12.createElement(DeleteOutlined, null)), subIndex === eachRow.variable_data.length - 1 && /* @__PURE__ */ React12.createElement(Button3, { onClick: () => onHandleSubRowsAdd(index) }, /* @__PURE__ */ React12.createElement(PlusOutlined, null)))];
|
|
408
|
+
} else {
|
|
409
|
+
return [key, renderInputElement(value)];
|
|
410
|
+
}
|
|
411
|
+
}))
|
|
412
|
+
}));
|
|
413
|
+
const rowData = {
|
|
404
414
|
"#": index + 1,
|
|
405
415
|
"Medicine": renderInputElement({
|
|
406
416
|
element: eachRow.element,
|
|
407
417
|
label: eachRow.label
|
|
408
418
|
}),
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
const subRow = {
|
|
412
|
-
key: `${eachRow.id}-${subIndex}`,
|
|
413
|
-
...Object.fromEntries(Object.entries(variable).map(([key, value]) => {
|
|
414
|
-
if (key === "icons") {
|
|
415
|
-
return ["actions", /* @__PURE__ */ React12.createElement("div", { key: subIndex }, eachRow.variable_data.length > 1 && /* @__PURE__ */ React12.createElement(Button3, { onClick: () => onHandleSubRowsDelete(index, subIndex) }, /* @__PURE__ */ React12.createElement(DeleteOutlined, null)), subIndex === eachRow.variable_data.length - 1 && /* @__PURE__ */ React12.createElement(Button3, { onClick: () => onHandleSubRowsAdd(index) }, /* @__PURE__ */ React12.createElement(PlusOutlined, null)))];
|
|
416
|
-
} else {
|
|
417
|
-
return [key, renderInputElement(value)];
|
|
418
|
-
}
|
|
419
|
-
}))
|
|
420
|
-
};
|
|
421
|
-
return subRow;
|
|
422
|
-
})
|
|
419
|
+
subRow: [...subRow],
|
|
420
|
+
actions: /* @__PURE__ */ React12.createElement("div", 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)))
|
|
423
421
|
};
|
|
424
|
-
return
|
|
425
|
-
});
|
|
422
|
+
return [rowData];
|
|
423
|
+
}).flat();
|
|
426
424
|
if (!columns.some((col) => col.dataIndex === "actions")) {
|
|
427
425
|
columns.push({
|
|
428
426
|
title: "Actions",
|