UNPKG

@keycloakify/keycloak-admin-ui

Version:
12 lines (11 loc) 612 B
import OrganizationRepresentation from "@keycloak/keycloak-admin-client/lib/defs/organizationRepresentation"; import { AttributeForm } from "../components/key-value-form/AttributeForm"; export type OrganizationFormType = AttributeForm & Omit<OrganizationRepresentation, "domains" | "attributes"> & { domains?: string[]; }; export declare const convertToOrg: (org: OrganizationFormType) => OrganizationRepresentation; type OrganizationFormProps = { readOnly?: boolean; }; export declare const OrganizationForm: ({ readOnly, }: OrganizationFormProps) => import("react/jsx-runtime").JSX.Element; export {};