UNPKG

element-plus

Version:

A Component Library for Vue 3

23 lines (21 loc) 634 B
import { buildProps, definePropType } from "../../../../utils/vue/props/runtime.mjs"; //#region ../../packages/components/time-picker/src/props/shared.ts const disabledTimeListsProps = buildProps({ disabledHours: { type: definePropType(Function) }, disabledMinutes: { type: definePropType(Function) }, disabledSeconds: { type: definePropType(Function) } }); const timePanelSharedProps = buildProps({ visible: Boolean, actualVisible: { type: Boolean, default: void 0 }, format: { type: String, default: "" } }); //#endregion export { disabledTimeListsProps, timePanelSharedProps }; //# sourceMappingURL=shared.mjs.map