@strapi/plugin-users-permissions 5.0.0-beta.14 → 5.0.0-beta.15
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-Du04LXb3.mjs → index-BmKoOPi2.mjs} +2 -2
- package/dist/_chunks/{index-Du04LXb3.mjs.map → index-BmKoOPi2.mjs.map} +1 -1
- package/dist/_chunks/{index-CYLGfwKP.mjs → index-C16Q3b-4.mjs} +3 -3
- package/dist/_chunks/{index-CYLGfwKP.mjs.map → index-C16Q3b-4.mjs.map} +1 -1
- package/dist/_chunks/{index-yZGXqyeO.mjs → index-CXQHoG6E.mjs} +8 -8
- package/dist/_chunks/{index-yZGXqyeO.mjs.map → index-CXQHoG6E.mjs.map} +1 -1
- package/dist/_chunks/{index-BqHeMIlg.js → index-CaRLqKnp.js} +2 -2
- package/dist/_chunks/{index-BqHeMIlg.js.map → index-CaRLqKnp.js.map} +1 -1
- package/dist/_chunks/{index-B_qlrAmz.js → index-CdFgSV2w.js} +4 -4
- package/dist/_chunks/{index-B_qlrAmz.js.map → index-CdFgSV2w.js.map} +1 -1
- package/dist/_chunks/{index-C05rth79.mjs → index-CdoferYp.mjs} +2 -2
- package/dist/_chunks/{index-C05rth79.mjs.map → index-CdoferYp.mjs.map} +1 -1
- package/dist/_chunks/{index-8h7HRxSK.js → index-CksPZFrJ.js} +7 -7
- package/dist/_chunks/{index-8h7HRxSK.js.map → index-CksPZFrJ.js.map} +1 -1
- package/dist/_chunks/{index-CtNr3Qrl.js → index-DLg3QAaR.js} +2 -2
- package/dist/_chunks/{index-CtNr3Qrl.js.map → index-DLg3QAaR.js.map} +1 -1
- package/dist/_chunks/{index-BMi5G72O.js → index-Dn02HqR-.js} +8 -8
- package/dist/_chunks/{index-BMi5G72O.js.map → index-Dn02HqR-.js.map} +1 -1
- package/dist/_chunks/{index-YkJQv7zr-D32zKdv6.mjs → index-IU9ZrCxt-C2hh56U0.mjs} +6 -6
- package/dist/_chunks/{index-YkJQv7zr-D32zKdv6.mjs.map → index-IU9ZrCxt-C2hh56U0.mjs.map} +1 -1
- package/dist/_chunks/{index-YkJQv7zr-DTZsLLsH.js → index-IU9ZrCxt-DDk7Gyez.js} +6 -6
- package/dist/_chunks/{index-YkJQv7zr-DTZsLLsH.js.map → index-IU9ZrCxt-DDk7Gyez.js.map} +1 -1
- package/dist/_chunks/{index-BxaDjzUe.mjs → index-e_o9V2Wo.mjs} +3 -3
- package/dist/_chunks/{index-BxaDjzUe.mjs.map → index-e_o9V2Wo.mjs.map} +1 -1
- package/dist/admin/index.js +1 -1
- package/dist/admin/index.mjs +1 -1
- package/package.json +4 -4
|
@@ -10669,10 +10669,10 @@ const DateInput = React.forwardRef(
|
|
|
10669
10669
|
ref: composedRefs,
|
|
10670
10670
|
clearLabel: formatMessage({ id: "clearLabel", defaultMessage: "Clear" }),
|
|
10671
10671
|
onChange: (date) => {
|
|
10672
|
-
field.onChange(name, date);
|
|
10672
|
+
field.onChange(name, date ? convertLocalDateToUTCDate(date) : null);
|
|
10673
10673
|
},
|
|
10674
|
-
onClear: () => field.onChange(name,
|
|
10675
|
-
value: value ? convertLocalDateToUTCDate(value) :
|
|
10674
|
+
onClear: () => field.onChange(name, null),
|
|
10675
|
+
value: value ? convertLocalDateToUTCDate(value) : value,
|
|
10676
10676
|
...props
|
|
10677
10677
|
}
|
|
10678
10678
|
),
|
|
@@ -10703,9 +10703,9 @@ const DateTimeInput = React.forwardRef(
|
|
|
10703
10703
|
ref: composedRefs,
|
|
10704
10704
|
clearLabel: formatMessage({ id: "clearLabel", defaultMessage: "Clear" }),
|
|
10705
10705
|
onChange: (date) => {
|
|
10706
|
-
field.onChange(name, date);
|
|
10706
|
+
field.onChange(name, date ? date : null);
|
|
10707
10707
|
},
|
|
10708
|
-
onClear: () => field.onChange(name,
|
|
10708
|
+
onClear: () => field.onChange(name, null),
|
|
10709
10709
|
value,
|
|
10710
10710
|
...props
|
|
10711
10711
|
}
|
|
@@ -11500,4 +11500,4 @@ adminApi.enhanceEndpoints({
|
|
|
11500
11500
|
});
|
|
11501
11501
|
exports.Layouts = Layouts;
|
|
11502
11502
|
exports.useTracking = useTracking;
|
|
11503
|
-
//# sourceMappingURL=index-
|
|
11503
|
+
//# sourceMappingURL=index-IU9ZrCxt-DDk7Gyez.js.map
|