1.0.2 • Published 2 years ago

hp-car-keboard v1.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

车牌号输入组件

export interface KeyboardProps {
  visible: boolean; // 显示状态
  done: () => void; // 完成按钮回调
  onChange?: (text: string) => void; // 输入回调
  confirmButtonStyle?: React.CSSProperties; // 确认按钮样式
  cellTextStyle?: React.CSSProperties; // 单元格样式
  value?: string; // 输入的值
  confirmButtonText?: string; // 确认按钮文字
}