@apexcura/ui-components 0.0.11-Beta14 → 0.0.11-Beta16
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 -1
- package/dist/index.mjs +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -403,6 +403,7 @@ var AddMoreTable = (props) => {
|
|
|
403
403
|
}
|
|
404
404
|
};
|
|
405
405
|
const dataSource = rows.map((eachRow, index) => {
|
|
406
|
+
console.log("eachRow=======", eachRow);
|
|
406
407
|
const rowElements = {};
|
|
407
408
|
if (eachRow.element && eachRow.label) {
|
|
408
409
|
rowElements[eachRow.label] = renderInputElement(eachRow);
|
|
@@ -411,7 +412,8 @@ var AddMoreTable = (props) => {
|
|
|
411
412
|
for (let i = 0; i < curr.length; i++) {
|
|
412
413
|
Object.keys(curr[i].forEach((key) => {
|
|
413
414
|
if (curr[i][key] && curr[i][key].element) {
|
|
414
|
-
rowElements[eachRow.label] = renderInputElement(
|
|
415
|
+
rowElements[eachRow.label] = renderInputElement(curr[i][key] && curr[i][key]);
|
|
416
|
+
console.log("++++++++++", curr[i][key] && curr[i][key]);
|
|
415
417
|
}
|
|
416
418
|
}));
|
|
417
419
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -356,6 +356,7 @@ var AddMoreTable = (props) => {
|
|
|
356
356
|
}
|
|
357
357
|
};
|
|
358
358
|
const dataSource = rows.map((eachRow, index) => {
|
|
359
|
+
console.log("eachRow=======", eachRow);
|
|
359
360
|
const rowElements = {};
|
|
360
361
|
if (eachRow.element && eachRow.label) {
|
|
361
362
|
rowElements[eachRow.label] = renderInputElement(eachRow);
|
|
@@ -364,7 +365,8 @@ var AddMoreTable = (props) => {
|
|
|
364
365
|
for (let i = 0; i < curr.length; i++) {
|
|
365
366
|
Object.keys(curr[i].forEach((key) => {
|
|
366
367
|
if (curr[i][key] && curr[i][key].element) {
|
|
367
|
-
rowElements[eachRow.label] = renderInputElement(
|
|
368
|
+
rowElements[eachRow.label] = renderInputElement(curr[i][key] && curr[i][key]);
|
|
369
|
+
console.log("++++++++++", curr[i][key] && curr[i][key]);
|
|
368
370
|
}
|
|
369
371
|
}));
|
|
370
372
|
}
|