Perseus
    Preparing search index...
    type Props = {
        ariaLabel: string;
        buttonSets?: LegacyButtonSets;
        buttonsVisible?: ButtonsVisibleType;
        className?: string;
        convertDotToTimes: boolean;
        extraKeys?: ReadonlyArray<KeypadKey>;
        keypadButtonSets?: KeypadButtonSets;
        onAnalyticsEvent: AnalyticsEventHandlerFn;
        onBlur?: () => void;
        onChange: any;
        onFocus?: () => void;
        value: string;
    }
    Index

    Properties

    ariaLabel: string
    buttonSets?: LegacyButtonSets

    Use keypadButtonSets instead. Maps to keypadButtonSets.

    keypadButtonSets

    buttonsVisible?: ButtonsVisibleType

    Whether to show the keypad buttons. The strings now misleading, but we keep them for backwards compatibility.

    • focused means that the keypad appears on toggle, off by default.
    • always means that the keypad appears on toggle, on by default.
    • never means that the keypad is never shown.
    className?: string
    convertDotToTimes: boolean
    extraKeys?: ReadonlyArray<KeypadKey>
    keypadButtonSets?: KeypadButtonSets

    Overrides deprecated buttonSets prop.

    onAnalyticsEvent: AnalyticsEventHandlerFn
    onBlur?: () => void
    onChange: any
    onFocus?: () => void
    value: string