@apexcura/ui-components 0.0.11-Beta6 → 0.0.11-Beta8
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 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -384,7 +384,6 @@ var AddMoreTable = (props) => {
|
|
|
384
384
|
}
|
|
385
385
|
};
|
|
386
386
|
const dataSource = tbody && tbody.length > 0 ? tbody.map((eachRow, index) => {
|
|
387
|
-
console.log("eachRow---------", eachRow);
|
|
388
387
|
const variableData = eachRow.variable_data.reduce((acc, curr) => {
|
|
389
388
|
acc[curr.label] = renderInputElement(curr);
|
|
390
389
|
return acc;
|
|
@@ -395,6 +394,7 @@ var AddMoreTable = (props) => {
|
|
|
395
394
|
...variableData
|
|
396
395
|
};
|
|
397
396
|
}) : [];
|
|
397
|
+
console.log("dataSource.........", dataSource);
|
|
398
398
|
return /* @__PURE__ */ import_react13.default.createElement(import_react13.default.Fragment, null, /* @__PURE__ */ import_react13.default.createElement(
|
|
399
399
|
import_antd11.Table,
|
|
400
400
|
{
|
package/dist/index.mjs
CHANGED
|
@@ -337,7 +337,6 @@ var AddMoreTable = (props) => {
|
|
|
337
337
|
}
|
|
338
338
|
};
|
|
339
339
|
const dataSource = tbody && tbody.length > 0 ? tbody.map((eachRow, index) => {
|
|
340
|
-
console.log("eachRow---------", eachRow);
|
|
341
340
|
const variableData = eachRow.variable_data.reduce((acc, curr) => {
|
|
342
341
|
acc[curr.label] = renderInputElement(curr);
|
|
343
342
|
return acc;
|
|
@@ -348,6 +347,7 @@ var AddMoreTable = (props) => {
|
|
|
348
347
|
...variableData
|
|
349
348
|
};
|
|
350
349
|
}) : [];
|
|
350
|
+
console.log("dataSource.........", dataSource);
|
|
351
351
|
return /* @__PURE__ */ React12.createElement(React12.Fragment, null, /* @__PURE__ */ React12.createElement(
|
|
352
352
|
Table,
|
|
353
353
|
{
|