xdesign-vue-next
Version:
XDesign Component for vue-next
77 lines (76 loc) • 1.78 kB
TypeScript
import { PropType } from 'vue';
import dayjs from 'dayjs';
import { EPickerCols } from '../../_common/js/time-picker/const';
export declare const panelProps: () => {
disabled: {
default: boolean;
type: BooleanConstructor;
validator(v: boolean): boolean;
};
isFocus: {
default: boolean;
type: BooleanConstructor;
validator(v: boolean): boolean;
};
value: {
type: StringConstructor;
default: string;
};
format: {
type: StringConstructor;
default: string;
};
steps: {
default: number[];
type: PropType<(string | number)[]>;
};
isShowPanel: {
default: boolean;
type: BooleanConstructor;
validator(v: boolean): boolean;
};
hideDisabledTime: {
type: BooleanConstructor;
default: boolean;
};
disableTime: {
type: FunctionConstructor;
};
isFooterDisplay: {
type: BooleanConstructor;
default: boolean;
validator(v: boolean): boolean;
};
};
export declare const panelColProps: () => {
format: {
type: StringConstructor;
default: string;
};
cols: {
type: PropType<EPickerCols[]>;
default: () => EPickerCols[];
};
value: {
type: StringConstructor;
default: string;
};
range: {
type: PropType<dayjs.Dayjs[]>;
default: () => dayjs.Dayjs[];
};
steps: {
default: number[];
type: PropType<(string | number)[]>;
};
hideDisabledTime: {
type: BooleanConstructor;
default: boolean;
};
disableTime: {
type: FunctionConstructor;
};
localeMeridiems: {
type: PropType<string[]>;
};
};