@aplus-frontend/ui
Version:
19 lines (18 loc) • 525 B
TypeScript
import { StyleValue } from 'vue';
import { ApFormItemProps } from '../../ap-form';
export type ApSizeInputProps = {
value?: Array<string | number>;
placeholder?: Array<string>;
step?: number;
editable?: boolean;
perfix?: string;
onSizeInputChange?: (value: Array<string | number>) => void;
min?: number;
max?: number;
precision?: number;
disabled?: boolean;
style?: StyleValue;
};
export interface ApFormItemSizeInputProps extends ApFormItemProps {
field?: ApSizeInputProps;
}