@keycloakify/keycloak-admin-ui
Version:
Repackaged Keycloak Admin UI
18 lines (17 loc) • 589 B
TypeScript
import type ResourceRepresentation from "@keycloak/keycloak-admin-client/lib/defs/resourceRepresentation";
import "./key-based-attribute-input.css";
export type AttributeType = {
key?: string;
name: string;
custom?: boolean;
values?: {
[key: string]: string;
}[];
};
type AttributeInputProps = {
name: string;
selectableValues?: AttributeType[];
resources?: ResourceRepresentation[];
};
export declare const KeyBasedAttributeInput: ({ name, selectableValues, resources, }: AttributeInputProps) => import("react/jsx-runtime").JSX.Element;
export {};