@strapi/plugin-users-permissions 5.0.0-rc.5 → 5.0.0-rc.7
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-ij0Rstdh-BHUgmsKx.mjs → index--hrBKjIq-BeqS7oME.mjs} +2 -2
- package/dist/_chunks/{index-ij0Rstdh-BHUgmsKx.mjs.map → index--hrBKjIq-BeqS7oME.mjs.map} +1 -1
- package/dist/_chunks/{index-ij0Rstdh-qR3QHvSP.js → index--hrBKjIq-DI0YlzXm.js} +2 -2
- package/dist/_chunks/{index-ij0Rstdh-qR3QHvSP.js.map → index--hrBKjIq-DI0YlzXm.js.map} +1 -1
- package/dist/_chunks/{index-DuQbb-v8.mjs → index-B8jD2FAy.mjs} +2 -2
- package/dist/_chunks/{index-DuQbb-v8.mjs.map → index-B8jD2FAy.mjs.map} +1 -1
- package/dist/_chunks/{index-Co8FqgMT.js → index-B9klsfd8.js} +2 -2
- package/dist/_chunks/{index-Co8FqgMT.js.map → index-B9klsfd8.js.map} +1 -1
- package/dist/_chunks/{index-CbXK-0IO.mjs → index-CQM8uHG1.mjs} +8 -8
- package/dist/_chunks/{index-CbXK-0IO.mjs.map → index-CQM8uHG1.mjs.map} +1 -1
- package/dist/_chunks/{index-C6Co9mMd.js → index-CZC68oD7.js} +4 -4
- package/dist/_chunks/{index-C6Co9mMd.js.map → index-CZC68oD7.js.map} +1 -1
- package/dist/_chunks/{index-C0gAmqn3.js → index-Cj9usQ1J.js} +8 -8
- package/dist/_chunks/{index-C0gAmqn3.js.map → index-Cj9usQ1J.js.map} +1 -1
- package/dist/_chunks/{index-Bo7dDVzU.mjs → index-CppPdBPi.mjs} +3 -3
- package/dist/_chunks/{index-Bo7dDVzU.mjs.map → index-CppPdBPi.mjs.map} +1 -1
- package/dist/_chunks/{index-BI0rCc77.mjs → index-CuwWJke1.mjs} +2 -2
- package/dist/_chunks/{index-BI0rCc77.mjs.map → index-CuwWJke1.mjs.map} +1 -1
- package/dist/_chunks/{index-sz_dh_BC.mjs → index-D1dfWa_A.mjs} +3 -3
- package/dist/_chunks/{index-sz_dh_BC.mjs.map → index-D1dfWa_A.mjs.map} +1 -1
- package/dist/_chunks/{index-DwDfsi84.js → index-Dsnr5CyD.js} +2 -2
- package/dist/_chunks/{index-DwDfsi84.js.map → index-Dsnr5CyD.js.map} +1 -1
- package/dist/_chunks/{index-K3_pb-kw.js → index-LmCeXs5f.js} +7 -7
- package/dist/_chunks/{index-K3_pb-kw.js.map → index-LmCeXs5f.js.map} +1 -1
- package/dist/admin/index.js +1 -1
- package/dist/admin/index.mjs +1 -1
- package/package.json +4 -4
|
@@ -10781,7 +10781,7 @@ const JsonInput = React.forwardRef(
|
|
|
10781
10781
|
designSystem.JSONInput,
|
|
10782
10782
|
{
|
|
10783
10783
|
ref: composedRefs,
|
|
10784
|
-
value: field.value,
|
|
10784
|
+
value: typeof field.value == "object" ? JSON.stringify(field.value, null, 2) : field.value,
|
|
10785
10785
|
onChange: (json) => {
|
|
10786
10786
|
const value = required && !json.length ? null : json;
|
|
10787
10787
|
field.onChange(name, value);
|
|
@@ -11510,4 +11510,4 @@ adminApi.enhanceEndpoints({
|
|
|
11510
11510
|
});
|
|
11511
11511
|
exports.Layouts = Layouts;
|
|
11512
11512
|
exports.useTracking = useTracking;
|
|
11513
|
-
//# sourceMappingURL=index-
|
|
11513
|
+
//# sourceMappingURL=index--hrBKjIq-DI0YlzXm.js.map
|