@firecms/user_management 3.0.0-canary.160 → 3.0.0-canary.161

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-canary.160",
4
+ "version": "3.0.0-canary.161",
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-canary.160",
33
- "@firecms/formex": "^3.0.0-canary.160",
34
- "@firecms/ui": "^3.0.0-canary.159",
32
+ "@firecms/core": "^3.0.0-canary.161",
33
+ "@firecms/formex": "^3.0.0-canary.161",
34
+ "@firecms/ui": "^3.0.0-canary.161",
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": "840f2733672a90a6a56aed89259eaa5365589512"
60
+ "gitHead": "5f61d5a13f1d21736aa24a767102412dbdc1173a"
61
61
  }
@@ -5,10 +5,11 @@ import { EntityCollection, FieldCaption, Role, toSnakeCase, useAuthController, U
5
5
  import {
6
6
  Button,
7
7
  Checkbox,
8
+ CheckIcon,
8
9
  Dialog,
9
10
  DialogActions,
10
- DialogContent, DialogTitle,
11
- DoneIcon,
11
+ DialogContent,
12
+ DialogTitle,
12
13
  LoadingButton,
13
14
  Paper,
14
15
  Select,
@@ -436,7 +437,7 @@ export function RolesDetailsForm({
436
437
  type="submit"
437
438
  disabled={!dirty}
438
439
  loading={isSubmitting}
439
- startIcon={<DoneIcon/>}
440
+ startIcon={<CheckIcon/>}
440
441
  >
441
442
  {isNewRole ? "Create role" : "Update"}
442
443
  </LoadingButton>
@@ -2,16 +2,15 @@ import React, { useCallback } from "react";
2
2
  import * as Yup from "yup";
3
3
  import {
4
4
  Button,
5
+ CheckIcon,
5
6
  Dialog,
6
7
  DialogActions,
7
8
  DialogContent,
8
9
  DialogTitle,
9
- DoneIcon,
10
10
  LoadingButton,
11
11
  MultiSelect,
12
12
  MultiSelectItem,
13
13
  TextField,
14
- Typography,
15
14
  } from "@firecms/ui";
16
15
  import { FieldCaption, Role, useAuthController, User, useSnackbarController } from "@firecms/core";
17
16
  import { Formex, useCreateFormex } from "@firecms/formex";
@@ -218,7 +217,7 @@ export function UserDetailsForm({
218
217
  type="submit"
219
218
  disabled={!dirty}
220
219
  loading={isSubmitting}
221
- startIcon={<DoneIcon/>}
220
+ startIcon={<CheckIcon/>}
222
221
  >
223
222
  {isNewUser ? "Create user" : "Update"}
224
223
  </LoadingButton>