@strapi/plugin-users-permissions 5.7.0 → 5.8.1
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/_chunks/{index-Bq-9NUpk.js → index-BTHHxmwk.js} +2 -2
- package/dist/_chunks/{index-Bq-9NUpk.js.map → index-BTHHxmwk.js.map} +1 -1
- package/dist/_chunks/{index-BJYiV54p.mjs → index-BofAESft.mjs} +3 -3
- package/dist/_chunks/{index-BJYiV54p.mjs.map → index-BofAESft.mjs.map} +1 -1
- package/dist/_chunks/{index-EGuMzv65.mjs → index-C7gxFU5j.mjs} +2 -2
- package/dist/_chunks/{index-EGuMzv65.mjs.map → index-C7gxFU5j.mjs.map} +1 -1
- package/dist/_chunks/{index-lwGc_PiF.js → index-CbjVCXNg.js} +2 -2
- package/dist/_chunks/{index-lwGc_PiF.js.map → index-CbjVCXNg.js.map} +1 -1
- package/dist/_chunks/{index-Ds4W1yYl.mjs → index-D9po3ROT.mjs} +8 -8
- package/dist/_chunks/{index-Ds4W1yYl.mjs.map → index-D9po3ROT.mjs.map} +1 -1
- package/dist/_chunks/{index-CMdgTmC0-CvJvlZwK.js → index-DoNaXvrg-C5aV1Jb8.js} +8 -5
- package/dist/_chunks/{index-CMdgTmC0-CvJvlZwK.js.map → index-DoNaXvrg-C5aV1Jb8.js.map} +1 -1
- package/dist/_chunks/{index-CMdgTmC0-Dku5eOkP.mjs → index-DoNaXvrg-Cmh4INWh.mjs} +8 -5
- package/dist/_chunks/{index-CMdgTmC0-Dku5eOkP.mjs.map → index-DoNaXvrg-Cmh4INWh.mjs.map} +1 -1
- package/dist/_chunks/{index-DS-ZCPvz.js → index-QG0i5P9s.js} +4 -4
- package/dist/_chunks/{index-DS-ZCPvz.js.map → index-QG0i5P9s.js.map} +1 -1
- package/dist/_chunks/{index-BHbc3Ink.mjs → index-SFaVaUin.mjs} +3 -3
- package/dist/_chunks/{index-BHbc3Ink.mjs.map → index-SFaVaUin.mjs.map} +1 -1
- package/dist/_chunks/{index-CebHI5wz.js → index-bRFDK-8h.js} +7 -7
- package/dist/_chunks/{index-CebHI5wz.js.map → index-bRFDK-8h.js.map} +1 -1
- package/dist/_chunks/{index-CWcXkgDB.mjs → index-ff4qC8sY.mjs} +2 -2
- package/dist/_chunks/{index-CWcXkgDB.mjs.map → index-ff4qC8sY.mjs.map} +1 -1
- package/dist/_chunks/{index-CinbOZDa.js → index-hEmhAD3A.js} +8 -8
- package/dist/_chunks/{index-CinbOZDa.js.map → index-hEmhAD3A.js.map} +1 -1
- package/dist/admin/index.js +1 -1
- package/dist/admin/index.mjs +1 -1
- package/package.json +3 -3
|
@@ -10073,13 +10073,16 @@ const reducer = (state, action) => produce(state, (draft) => {
|
|
|
10073
10073
|
position = 0;
|
|
10074
10074
|
}
|
|
10075
10075
|
const [key] = generateNKeysBetween(
|
|
10076
|
-
currentField.at(position - 1)?.__temp_key__,
|
|
10076
|
+
position > 0 ? currentField.at(position - 1)?.__temp_key__ : null,
|
|
10077
10077
|
currentField.at(position)?.__temp_key__
|
|
10078
10078
|
);
|
|
10079
10079
|
draft.values = setIn(
|
|
10080
10080
|
state.values,
|
|
10081
10081
|
action.payload.field,
|
|
10082
|
-
|
|
10082
|
+
currentField.toSpliced(position, 0, {
|
|
10083
|
+
...action.payload.value,
|
|
10084
|
+
__temp_key__: key
|
|
10085
|
+
})
|
|
10083
10086
|
);
|
|
10084
10087
|
break;
|
|
10085
10088
|
}
|
|
@@ -10410,10 +10413,10 @@ const NumberInputImpl = forwardRef(
|
|
|
10410
10413
|
{
|
|
10411
10414
|
ref: composedRefs,
|
|
10412
10415
|
onValueChange: (value) => {
|
|
10413
|
-
field.onChange(name, value);
|
|
10416
|
+
field.onChange(name, value ?? null);
|
|
10414
10417
|
},
|
|
10415
10418
|
step: type2 === "float" || type2 == "decimal" ? 0.01 : 1,
|
|
10416
|
-
value: field.value,
|
|
10419
|
+
value: field.value ?? void 0,
|
|
10417
10420
|
...props
|
|
10418
10421
|
}
|
|
10419
10422
|
),
|
|
@@ -11087,4 +11090,4 @@ export {
|
|
|
11087
11090
|
Layouts as L,
|
|
11088
11091
|
useTracking as u
|
|
11089
11092
|
};
|
|
11090
|
-
//# sourceMappingURL=index-
|
|
11093
|
+
//# sourceMappingURL=index-DoNaXvrg-Cmh4INWh.mjs.map
|