@firecms/user_management 3.0.0-beta.14 → 3.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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firecms/user_management",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.0.0-beta.
|
|
4
|
+
"version": "3.0.0-beta.15",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"types": "dist/index.d.ts",
|
|
30
30
|
"source": "src/index.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@firecms/core": "^3.0.0-beta.
|
|
33
|
-
"@firecms/formex": "^3.0.0-beta.
|
|
34
|
-
"@firecms/ui": "^3.0.0-beta.
|
|
32
|
+
"@firecms/core": "^3.0.0-beta.15",
|
|
33
|
+
"@firecms/formex": "^3.0.0-beta.15",
|
|
34
|
+
"@firecms/ui": "^3.0.0-beta.15",
|
|
35
35
|
"date-fns": "^3.6.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"src",
|
|
58
58
|
"bin"
|
|
59
59
|
],
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "0abe2ca034f396e389db595f07ef4b24b439c648"
|
|
61
61
|
}
|
|
@@ -425,6 +425,7 @@ export function RolesDetailsForm({
|
|
|
425
425
|
{savingError.message ?? "There was an error saving this role"}
|
|
426
426
|
</Typography>}
|
|
427
427
|
<Button variant={"text"}
|
|
428
|
+
color={"primary"}
|
|
428
429
|
onClick={() => {
|
|
429
430
|
handleClose();
|
|
430
431
|
}}>
|
|
@@ -436,7 +437,6 @@ export function RolesDetailsForm({
|
|
|
436
437
|
type="submit"
|
|
437
438
|
disabled={!dirty}
|
|
438
439
|
loading={isSubmitting}
|
|
439
|
-
startIcon={<CheckIcon/>}
|
|
440
440
|
>
|
|
441
441
|
{isNewRole ? "Create role" : "Update"}
|
|
442
442
|
</LoadingButton>
|
|
@@ -205,6 +205,7 @@ export function UserDetailsForm({
|
|
|
205
205
|
<DialogActions>
|
|
206
206
|
|
|
207
207
|
<Button variant={"text"}
|
|
208
|
+
color={"primary"}
|
|
208
209
|
onClick={() => {
|
|
209
210
|
handleClose();
|
|
210
211
|
}}>
|
|
@@ -217,7 +218,6 @@ export function UserDetailsForm({
|
|
|
217
218
|
type="submit"
|
|
218
219
|
disabled={!dirty}
|
|
219
220
|
loading={isSubmitting}
|
|
220
|
-
startIcon={<CheckIcon/>}
|
|
221
221
|
>
|
|
222
222
|
{isNewUser ? "Create user" : "Update"}
|
|
223
223
|
</LoadingButton>
|