UNPKG

element-plus

Version:

A Component Library for Vue 3

37 lines (34 loc) 844 B
import { buildProps, definePropType } from '../../../../utils/vue/props/runtime.mjs'; const disabledTimeListsProps = buildProps({ /** * @description To specify the array of hours that cannot be selected */ disabledHours: { type: definePropType(Function) }, /** * @description To specify the array of minutes that cannot be selected */ disabledMinutes: { type: definePropType(Function) }, /** * @description To specify the array of seconds that cannot be selected */ disabledSeconds: { type: definePropType(Function) } }); const timePanelSharedProps = buildProps({ visible: Boolean, actualVisible: { type: Boolean, default: void 0 }, format: { type: String, default: "" } }); export { disabledTimeListsProps, timePanelSharedProps }; //# sourceMappingURL=shared.mjs.map