antd-mobile
Version:
<div align="center">
19 lines (18 loc) • 717 B
TypeScript
import type { FC } from 'react';
import { NativeProps } from '../../utils/native-props';
import { PopupProps } from '../popup';
export declare type NumberKeyboardProps = {
visible?: boolean;
title?: string;
confirmText?: string | null;
customKey?: string | [string, string];
randomOrder?: boolean;
showCloseButton?: boolean;
onInput?: (v: string) => void;
onDelete?: () => void;
onClose?: () => void;
onConfirm?: () => void;
closeOnConfirm?: boolean;
safeArea?: boolean;
} & Pick<PopupProps, 'afterClose' | 'afterShow' | 'getContainer' | 'destroyOnClose' | 'forceRender' | 'stopPropagation'> & NativeProps;
export declare const NumberKeyboard: FC<NumberKeyboardProps>;