@vuesax-alpha/nightly
Version:
A Component Library for Vue 3
52 lines (49 loc) • 998 B
JavaScript
import { CloseCircle } from '@vuesax-alpha/icons-vue';
import '../../../utils/index.mjs';
import { definePropType } from '../../../utils/vue/props/runtime.mjs';
const timeSelectProps = {
format: {
type: String,
default: "HH:mm"
},
modelValue: { type: String },
disabled: { type: Boolean },
editable: {
type: Boolean,
default: true
},
effect: {
type: String,
default: null
},
clearable: {
type: Boolean,
default: true
},
placeholder: { type: String },
start: {
type: String,
default: "09:00"
},
end: {
type: String,
default: "18:00"
},
step: {
type: String,
default: "00:30"
},
minTime: { type: String },
maxTime: { type: String },
name: { type: String },
clearIcon: {
type: definePropType([String, Object]),
default: () => CloseCircle
},
disabledItems: {
type: definePropType(Array),
default: () => []
}
};
export { timeSelectProps };
//# sourceMappingURL=time-select.mjs.map