keycloak/js/apps/admin-ui
dependabot[bot] 28839f181e
Some checks failed
Weblate Sync / Trigger Weblate to pull the latest changes (push) Has been cancelled
Bump vite from 7.3.0 to 7.3.2 in /js (#47785)
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 7.3.0 to 7.3.2.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v7.3.2/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.3.2/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-version: 7.3.2
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-07 15:58:30 +02:00
..
maven-resources Implementing locale based theme-description translation 2026-04-02 11:40:45 +02:00
maven-resources-community/theme/keycloak.v2/admin/messages Translations update from Hosted Weblate (#47665) 2026-04-07 10:10:03 +02:00
public Show login page for quick theme and change basic attributes (#45483) 2026-02-13 16:34:42 +01:00
src Display Javascript policy description and code in admin UI 2026-04-02 12:37:56 -03:00
test [OID4VCI] Make cryptographic binding & proofs explicitly configurable and spec-compliant (#47257) 2026-04-01 12:14:30 +02:00
.gitignore Add lib directory of Admin Console to .gitignore (#31579) 2024-07-24 17:31:35 +02:00
CONTRIBUTING.md Add documentation for running UI test cases locally using playwright 2026-01-28 12:29:13 +01:00
package.json Bump vite from 7.3.0 to 7.3.2 in /js (#47785) 2026-04-07 15:58:30 +02:00
playwright.config.ts Disable test retries for admin console (#42289) 2025-09-02 15:49:33 -04:00
pom.xml Update custom Maven build cache configuration for js directory 2024-12-10 10:07:02 +00:00
README.md Replace i18next backend with i18next-fetch-backend (#37633) 2025-02-26 08:36:12 -05:00
tsconfig.json Move root PNPM workspace to js directory (#35456) 2024-11-29 17:20:32 +01:00
tsconfig.node.json
vite.config.ts in development mode use the message.properties as file (#39406) 2025-05-16 09:15:35 -04:00

Keycloak Admin UI

This project is the next generation of the Keycloak Admin UI. It is written with React and PatternFly 4 and uses Vite.

Features

Contains all the "pages" from the admin-ui as re-usable components, all the functions to save and the side menu to use in your own build of the admin-ui

Install

npm i @keycloak/keycloak-admin-ui

Usage

To use these pages you'll need to add KeycloakProvider in your component hierarchy to setup what client, realm and url to use.

import { KeycloakProvider } from "@keycloak/keycloak-ui-shared";

//...

<KeycloakProvider environment={{
      authServerUrl: "http://localhost:8080",
      realm: "master",
      clientId: "security-admin-console"
  }}>
  {/* rest of you application */}
</KeycloakProvider>

Translation

For the translation we use react-i18next you can set it up as described on their website. If you want to use the translations that are provided then you need to add i18next-fetch-backend to your project and add:


backend: {
  loadPath: `http://localhost:8180/resources/master/admin/{{lng}}`,
  parse: (data: string) => {
    const messages = JSON.parse(data);

    return Object.fromEntries(
      messages.map(({ key, value }) => [key, value])
    );
  },
},

to the i18next config object.

Building

To build a library instead of an app you need to add the LIB=true environment variable.

LIB=true pnpm run build