awing-library 2.1.2-dev.53 → 2.1.2-dev.54
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/esm/index.js +3 -2
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -177229,7 +177229,9 @@ function TableEditableBody(props) {
|
|
|
177229
177229
|
})
|
|
177230
177230
|
})]
|
|
177231
177231
|
}, rowIdx);
|
|
177232
|
-
}), spanningRows === null || spanningRows === void 0 ? void 0 : spanningRows.map(row =>
|
|
177232
|
+
}), spanningRows === null || spanningRows === void 0 ? void 0 : spanningRows.map((row, index) => jsxRuntimeExports.jsx(Fragment, {
|
|
177233
|
+
children: row
|
|
177234
|
+
}, index))]
|
|
177233
177235
|
});
|
|
177234
177236
|
}
|
|
177235
177237
|
|
|
@@ -177370,7 +177372,6 @@ function TableEditable(props) {
|
|
|
177370
177372
|
const handleChange = (indexes, fieldName, newValue, valid) => {
|
|
177371
177373
|
let newData = lodashExports.cloneDeep(items);
|
|
177372
177374
|
let newValidation = lodashExports.cloneDeep(dataValidation);
|
|
177373
|
-
console.log('indexes', indexes, fieldName, newValue);
|
|
177374
177375
|
indexes.map(indexOfArray => {
|
|
177375
177376
|
var _a;
|
|
177376
177377
|
newData[indexOfArray][fieldName] = newValue;
|