Files
WAI_Project_UNIX/uni_modules/cool-ui/components/cl-keyboard-car/props.ts
2025-07-21 16:47:04 +08:00

21 lines
474 B
TypeScript

import type { PassThroughProps } from "../../types";
import type { ClPopupProps } from "../cl-popup/props";
export type ClKeyboardCarPassThrough = {
className?: string;
item?: PassThroughProps;
value?: PassThroughProps;
popup?: ClPopupProps;
};
export type ClKeyboardCarProps = {
className?: string;
pt?: ClKeyboardCarPassThrough;
modelValue?: string;
title?: string;
placeholder?: string;
maxlength?: number;
showValue?: boolean;
inputImmediate?: boolean;
};