@keycloakify/keycloak-account-ui
Version:
<p align="center"> <img src="https://github.com/user-attachments/assets/e31c4910-7205-441c-9a35-e134b806b3a8"> </p> <p align="center"> <i>Repackaged Keycloak Account UI</i> <br> <br> <a href="https://github.com/keycloakify/keycloak-a
16 lines (15 loc) • 756 B
TypeScript
import { TextInputProps } from "@patternfly/react-core";
import { type TFunction } from "i18next";
import { FieldPath, UseFormReturn } from "react-hook-form";
import { InputType, UserProfileFieldProps } from "../../ui-shared/user-profile/UserProfileFields";
import { UserFormFields } from "../../ui-shared/user-profile/utils";
export declare const MultiInputComponent: ({ t, form, attribute, renderer, ...rest }: UserProfileFieldProps) => import("react/jsx-runtime").JSX.Element;
export type MultiLineInputProps = Omit<TextInputProps, "form"> & {
t: TFunction;
name: FieldPath<UserFormFields>;
form: UseFormReturn<UserFormFields>;
addButtonLabel?: string;
isDisabled?: boolean;
defaultValue?: string[];
inputType: InputType;
};