tdesign-vue
Version:
37 lines (32 loc) • 645 B
JavaScript
/**
* tdesign v1.11.2
* (c) 2025 tdesign
* @license MIT
*/
;
Object.defineProperty(exports, '__esModule', { value: true });
var TimelineItemProps = {
content: {
type: [String, Function]
},
dot: {
type: Function
},
dotColor: {
type: String,
"default": "primary"
},
label: {
type: [String, Function]
},
labelAlign: {
type: String,
validator: function validator(val) {
if (!val) return true;
return ["left", "right", "top", "bottom"].includes(val);
}
},
loading: Boolean
};
exports["default"] = TimelineItemProps;
//# sourceMappingURL=timeline-item-props.js.map