• Parameters

    • props: {
          clearable?: boolean;
          keyboard?: ReactElement<NumberKeyboardProps, string | JSXElementConstructor<any>>;
          onBlur?: (() => void);
          onClear?: (() => void);
          onClick?: ((e) => void);
          onFocus?: (() => void);
      } & Pick<Antdm.InputProps, "value" | "onChange" | "disabled" | "placeholder"> & {
          className?: string;
          style?: CSSProperties & Partial<Record<"--color" | "--font-size" | "--placeholder-color" | "--text-align" | "--disabled-color" | "--caret-width" | "--caret-color", string>>;
          tabIndex?: number;
      } & AriaAttributes & RefAttributes<VirtualInputRef>

    Returns ReactNode

Properties

$$typeof: symbol
defaultProps?: Partial<{
    clearable?: boolean;
    keyboard?: ReactElement<NumberKeyboardProps, string | JSXElementConstructor<any>>;
    onBlur?: (() => void);
    onClear?: (() => void);
    onClick?: ((e) => void);
    onFocus?: (() => void);
} & Pick<Antdm.InputProps, "value" | "onChange" | "disabled" | "placeholder"> & {
    className?: string;
    style?: CSSProperties & Partial<Record<"--color" | "--font-size" | "--placeholder-color" | "--text-align" | "--disabled-color" | "--caret-width" | "--caret-color", string>>;
    tabIndex?: number;
} & AriaAttributes & RefAttributes<VirtualInputRef>>
displayName?: string

Used in debugging messages. You might want to set it explicitly if you want to display a different name for debugging purposes.

propTypes?: WeakValidationMap<{
    clearable?: boolean;
    keyboard?: ReactElement<NumberKeyboardProps, string | JSXElementConstructor<any>>;
    onBlur?: (() => void);
    onClear?: (() => void);
    onClick?: ((e) => void);
    onFocus?: (() => void);
} & Pick<Antdm.InputProps, "value" | "onChange" | "disabled" | "placeholder"> & {
    className?: string;
    style?: CSSProperties & Partial<Record<"--color" | "--font-size" | "--placeholder-color" | "--text-align" | "--disabled-color" | "--caret-width" | "--caret-color", string>>;
    tabIndex?: number;
} & AriaAttributes & RefAttributes<VirtualInputRef>>

Generated using TypeDoc