tdesign-vue-next
Version:
TDesign Component for vue-next
49 lines (44 loc) • 1.03 kB
JavaScript
/**
* tdesign v1.17.7
* (c) 2025 tdesign
* @license MIT
*/
;
Object.defineProperty(exports, '__esModule', { value: true });
var TimeLineProps = {
labelAlign: {
type: String,
"default": "left",
validator: function validator(val) {
if (!val) return true;
return ["left", "right", "alternate", "top", "bottom"].includes(val);
}
},
layout: {
type: String,
"default": "vertical",
validator: function validator(val) {
if (!val) return true;
return ["horizontal", "vertical"].includes(val);
}
},
mode: {
type: String,
"default": "alternate",
validator: function validator(val) {
if (!val) return true;
return ["alternate", "same"].includes(val);
}
},
reverse: Boolean,
theme: {
type: String,
"default": "default",
validator: function validator(val) {
if (!val) return true;
return ["default", "dot"].includes(val);
}
}
};
exports["default"] = TimeLineProps;
//# sourceMappingURL=props.js.map