@firecms/user_management 3.0.0-canary.126 → 3.0.0-canary.128

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.126",
4
+ "version": "3.0.0-canary.128",
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.126",
33
- "@firecms/formex": "^3.0.0-canary.126",
34
- "@firecms/ui": "^3.0.0-canary.126",
32
+ "@firecms/core": "^3.0.0-canary.128",
33
+ "@firecms/formex": "^3.0.0-canary.128",
34
+ "@firecms/ui": "^3.0.0-canary.128",
35
35
  "date-fns": "^3.6.0"
36
36
  },
37
37
  "peerDependencies": {
@@ -55,5 +55,5 @@
55
55
  "src",
56
56
  "bin"
57
57
  ],
58
- "gitHead": "122cb2b218a404444b4580e8f561f671c8b785a9"
58
+ "gitHead": "bc89d0f2a854db605146acc129aeee89d8e0d0a3"
59
59
  }
@@ -13,7 +13,7 @@ import {
13
13
  Tooltip,
14
14
  Typography
15
15
  } from "@firecms/ui";
16
- import { DeleteConfirmationDialog, Role } from "@firecms/core";
16
+ import { ConfirmationDialog, Role } from "@firecms/core";
17
17
  import { useUserManagement } from "../../hooks";
18
18
  import { RoleChip } from "./RoleChip";
19
19
  import { DEFAULT_ROLES } from "./default_roles";
@@ -115,7 +115,7 @@ export function RolesTable({
115
115
 
116
116
  </Table>
117
117
 
118
- <DeleteConfirmationDialog
118
+ <ConfirmationDialog
119
119
  open={Boolean(roleToBeDeleted)}
120
120
  loading={deleteInProgress}
121
121
  onAccept={() => {
@@ -5,7 +5,7 @@ import * as locales from "date-fns/locale";
5
5
 
6
6
  import {
7
7
  defaultDateFormat,
8
- DeleteConfirmationDialog, Role,
8
+ ConfirmationDialog, Role,
9
9
  useAuthController,
10
10
  useCustomizationController, User,
11
11
  useSnackbarController
@@ -149,7 +149,7 @@ export function UsersTable({ onUserClicked }: {
149
149
  </TableBody>
150
150
  </Table>
151
151
 
152
- <DeleteConfirmationDialog
152
+ <ConfirmationDialog
153
153
  open={Boolean(userToBeDeleted)}
154
154
  loading={deleteInProgress}
155
155
  onAccept={() => {