@rjsf/core 5.24.12 → 5.24.13
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/core.umd.js +5 -5
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +2 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +3 -3
- package/lib/components/fields/ArrayField.js +2 -2
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -7
- package/src/components/fields/ArrayField.tsx +2 -2
package/dist/index.js
CHANGED
|
@@ -56,10 +56,10 @@ var import_cloneDeep = __toESM(require("lodash/cloneDeep"));
|
|
|
56
56
|
var import_get = __toESM(require("lodash/get"));
|
|
57
57
|
var import_isObject = __toESM(require("lodash/isObject"));
|
|
58
58
|
var import_set = __toESM(require("lodash/set"));
|
|
59
|
-
var
|
|
59
|
+
var import_uniqueId = __toESM(require("lodash/uniqueId"));
|
|
60
60
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
61
61
|
function generateRowId() {
|
|
62
|
-
return (0,
|
|
62
|
+
return (0, import_uniqueId.default)("rjsf-array-item-");
|
|
63
63
|
}
|
|
64
64
|
function generateKeyedFormData(formData) {
|
|
65
65
|
return !Array.isArray(formData) ? [] : formData.map((item) => {
|