@apexcura/ui-components 0.0.12-Beta1 → 0.0.12-Beta3
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 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -387,6 +387,7 @@ var AddMoreTable = (props) => {
|
|
|
387
387
|
const dataSource = tbody && tbody.length > 0 ? tbody.map((eachRow, index) => {
|
|
388
388
|
const rowElements = {};
|
|
389
389
|
if (eachRow.element && eachRow.label) {
|
|
390
|
+
rowElements[eachRow.id] = String(index);
|
|
390
391
|
rowElements[eachRow.label] = renderInputElement(eachRow);
|
|
391
392
|
}
|
|
392
393
|
const variableData = eachRow.variable_data && Array.isArray(eachRow.variable_data) ? eachRow.variable_data.reduce((acc, curr) => {
|
package/dist/index.mjs
CHANGED
|
@@ -340,6 +340,7 @@ var AddMoreTable = (props) => {
|
|
|
340
340
|
const dataSource = tbody && tbody.length > 0 ? tbody.map((eachRow, index) => {
|
|
341
341
|
const rowElements = {};
|
|
342
342
|
if (eachRow.element && eachRow.label) {
|
|
343
|
+
rowElements[eachRow.id] = String(index);
|
|
343
344
|
rowElements[eachRow.label] = renderInputElement(eachRow);
|
|
344
345
|
}
|
|
345
346
|
const variableData = eachRow.variable_data && Array.isArray(eachRow.variable_data) ? eachRow.variable_data.reduce((acc, curr) => {
|