You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
939 B
29 lines
939 B
import type { Dayjs } from 'dayjs';
|
|
import createTimePicker from './time-picker';
|
|
import dayjsGenerateConfig from '../vc-picker/generate/dayjs';
|
|
import type { App } from 'vue';
|
|
import type { PickerTimeProps, RangePickerTimeProps } from '../date-picker/generatePicker';
|
|
|
|
const { TimePicker, TimeRangePicker } = createTimePicker<Dayjs>(dayjsGenerateConfig);
|
|
|
|
export interface TimeRangePickerProps extends Omit<RangePickerTimeProps<Dayjs>, 'picker'> {
|
|
popupClassName?: string;
|
|
valueFormat?: string;
|
|
}
|
|
export interface TimePickerProps extends Omit<PickerTimeProps<Dayjs>, 'picker'> {
|
|
popupClassName?: string;
|
|
valueFormat?: string;
|
|
}
|
|
|
|
/* istanbul ignore next */
|
|
export { TimePicker, TimeRangePicker };
|
|
export default Object.assign(TimePicker, {
|
|
TimePicker,
|
|
TimeRangePicker,
|
|
install: (app: App) => {
|
|
app.component(TimePicker.name, TimePicker);
|
|
app.component(TimeRangePicker.name, TimeRangePicker);
|
|
return app;
|
|
},
|
|
});
|