@keycloak/keycloak-admin-ui 26.0.6 → 26.0.8
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/lib/.vite/manifest.json +19 -19
- package/lib/{CreateFlow-AKNUj4xH.js → CreateFlow-D3hVgFZr.js} +13 -13
- package/lib/{CreateFlow-AKNUj4xH.js.map → CreateFlow-D3hVgFZr.js.map} +1 -1
- package/lib/{DetailOrganization-fHSCAfco.js → DetailOrganization-DUNwCft_.js} +16 -16
- package/lib/{DetailOrganization-fHSCAfco.js.map → DetailOrganization-DUNwCft_.js.map} +1 -1
- package/lib/{ExecutorForm-C6wtF7z6.js → ExecutorForm-Dp7Iqxos.js} +12 -12
- package/lib/{ExecutorForm-C6wtF7z6.js.map → ExecutorForm-Dp7Iqxos.js.map} +1 -1
- package/lib/{FlowDetails-D0SIiw_v.js → FlowDetails-SHMxH_Rb.js} +433 -433
- package/lib/{FlowDetails-D0SIiw_v.js.map → FlowDetails-SHMxH_Rb.js.map} +1 -1
- package/lib/{NewOrganization-BRMgSU_K.js → NewOrganization-CQAjr9Dn.js} +12 -12
- package/lib/{NewOrganization-BRMgSU_K.js.map → NewOrganization-CQAjr9Dn.js.map} +1 -1
- package/lib/{PermissionDetails-BaVH-D-s.js → PermissionDetails-xk5HiPzx.js} +47 -47
- package/lib/{PermissionDetails-BaVH-D-s.js.map → PermissionDetails-xk5HiPzx.js.map} +1 -1
- package/lib/{ResourceDetails-DDENIxhY.js → ResourceDetails-CbJWQn4F.js} +28 -28
- package/lib/{ResourceDetails-DDENIxhY.js.map → ResourceDetails-CbJWQn4F.js.map} +1 -1
- package/lib/{ScopeDetails-Bns9MuWV.js → ScopeDetails-BtYWOGtn.js} +21 -21
- package/lib/{ScopeDetails-Bns9MuWV.js.map → ScopeDetails-BtYWOGtn.js.map} +1 -1
- package/lib/clients/routes/Client.d.ts +1 -1
- package/lib/components/dynamic/CheckboxFilterComponent.d.ts +16 -0
- package/lib/components/dynamic/SearchInputComponent.d.ts +10 -0
- package/lib/context/whoami/WhoAmI.d.ts +1 -0
- package/lib/events/UserEvents.d.ts +6 -0
- package/lib/{index-CP_jjwyA.js → index-6gx7hHms.js} +16329 -16062
- package/lib/index-6gx7hHms.js.map +1 -0
- package/lib/index.d.ts +1 -0
- package/lib/keycloak-admin-ui.js +283 -281
- package/lib/style.css +1 -1
- package/lib/user/Organizations.d.ts +6 -1
- package/lib/user/routes/User.d.ts +1 -1
- package/lib/util.d.ts +1 -0
- package/package.json +4 -4
- package/lib/index-CP_jjwyA.js.map +0 -1
@@ -1 +1,6 @@
|
|
1
|
-
|
1
|
+
import { default as UserRepresentation } from '@keycloak/keycloak-admin-client/lib/defs/userRepresentation';
|
2
|
+
type OrganizationProps = {
|
3
|
+
user: UserRepresentation;
|
4
|
+
};
|
5
|
+
export declare const Organizations: ({ user }: OrganizationProps) => import("react/jsx-runtime").JSX.Element;
|
6
|
+
export {};
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { Path } from 'react-router-dom';
|
2
2
|
import { AppRouteObject } from '../../routes';
|
3
|
-
export type UserTab = "settings" | "groups" | "organizations" | "consents" | "attributes" | "sessions" | "credentials" | "role-mapping" | "identity-provider-links";
|
3
|
+
export type UserTab = "settings" | "groups" | "organizations" | "consents" | "attributes" | "sessions" | "credentials" | "role-mapping" | "identity-provider-links" | "user-events";
|
4
4
|
export type UserParams = {
|
5
5
|
realm: string;
|
6
6
|
id: string;
|
package/lib/util.d.ts
CHANGED
@@ -16,6 +16,7 @@ export declare function convertToFormValues<T extends FieldValues>(obj: FieldVal
|
|
16
16
|
export declare function convertFormValuesToObject<T extends Record<string, any>, G = T>(obj: T): G;
|
17
17
|
export declare const emptyFormatter: () => IFormatter;
|
18
18
|
export declare const upperCaseFormatter: () => IFormatter;
|
19
|
+
export declare const capitalizeFirstLetterFormatter: () => IFormatter;
|
19
20
|
export declare const alphaRegexPattern: RegExp;
|
20
21
|
export declare const emailRegexPattern: RegExp;
|
21
22
|
export declare const KEY_PROVIDER_TYPE = "org.keycloak.keys.KeyProvider";
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@keycloak/keycloak-admin-ui",
|
3
|
-
"version": "26.0.
|
3
|
+
"version": "26.0.8",
|
4
4
|
"type": "module",
|
5
5
|
"main": "lib/keycloak-admin-ui.js",
|
6
6
|
"types": "./lib/keycloak-admin-ui.d.ts",
|
@@ -84,9 +84,9 @@
|
|
84
84
|
"react-router-dom": "^6.26.2",
|
85
85
|
"reactflow": "^11.11.4",
|
86
86
|
"use-react-router-breadcrumbs": "^4.0.1",
|
87
|
-
"@keycloak/keycloak-admin-client": "26.0.
|
88
|
-
"
|
89
|
-
"keycloak-
|
87
|
+
"@keycloak/keycloak-admin-client": "26.0.8",
|
88
|
+
"keycloak-js": "26.0.8",
|
89
|
+
"@keycloak/keycloak-ui-shared": "26.0.8"
|
90
90
|
},
|
91
91
|
"devDependencies": {
|
92
92
|
"@4tw/cypress-drag-drop": "^2.2.5",
|