@apexcura/ui-components 0.0.11-Beta54 → 0.0.11-Beta56
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 +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -454,6 +454,7 @@ var AddMoreTable = (props) => {
|
|
|
454
454
|
}
|
|
455
455
|
};
|
|
456
456
|
const dataSource = rows.flatMap((eachRow, index) => {
|
|
457
|
+
console.log("------rows", rows);
|
|
457
458
|
const rowData = [];
|
|
458
459
|
const mainRow = {
|
|
459
460
|
key: index.toString(),
|
|
@@ -483,7 +484,7 @@ var AddMoreTable = (props) => {
|
|
|
483
484
|
}),
|
|
484
485
|
"sub rows": subRowElements
|
|
485
486
|
});
|
|
486
|
-
console.log(rowData);
|
|
487
|
+
console.log("rowData++++++++++", rowData);
|
|
487
488
|
return rowData;
|
|
488
489
|
});
|
|
489
490
|
if (!columns.some((col) => isColumnType(col) && col.dataIndex === "actions")) {
|
package/dist/index.mjs
CHANGED
|
@@ -407,6 +407,7 @@ var AddMoreTable = (props) => {
|
|
|
407
407
|
}
|
|
408
408
|
};
|
|
409
409
|
const dataSource = rows.flatMap((eachRow, index) => {
|
|
410
|
+
console.log("------rows", rows);
|
|
410
411
|
const rowData = [];
|
|
411
412
|
const mainRow = {
|
|
412
413
|
key: index.toString(),
|
|
@@ -436,7 +437,7 @@ var AddMoreTable = (props) => {
|
|
|
436
437
|
}),
|
|
437
438
|
"sub rows": subRowElements
|
|
438
439
|
});
|
|
439
|
-
console.log(rowData);
|
|
440
|
+
console.log("rowData++++++++++", rowData);
|
|
440
441
|
return rowData;
|
|
441
442
|
});
|
|
442
443
|
if (!columns.some((col) => isColumnType(col) && col.dataIndex === "actions")) {
|