element-plus
Version:
A Component Library for Vue 3
33 lines (32 loc) • 1.07 kB
JavaScript
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
const require_runtime = require("../../../../utils/vue/props/runtime.js");
//#region ../../packages/components/time-picker/src/props/shared.ts
const disabledTimeListsProps = require_runtime.buildProps({
/**
* @description To specify the array of hours that cannot be selected
*/
disabledHours: { type: require_runtime.definePropType(Function) },
/**
* @description To specify the array of minutes that cannot be selected
*/
disabledMinutes: { type: require_runtime.definePropType(Function) },
/**
* @description To specify the array of seconds that cannot be selected
*/
disabledSeconds: { type: require_runtime.definePropType(Function) }
});
const timePanelSharedProps = require_runtime.buildProps({
visible: Boolean,
actualVisible: {
type: Boolean,
default: void 0
},
format: {
type: String,
default: ""
}
});
//#endregion
exports.disabledTimeListsProps = disabledTimeListsProps;
exports.timePanelSharedProps = timePanelSharedProps;
//# sourceMappingURL=shared.js.map