UNPKG

xdesign-vue-next

Version:

XDesign Component for vue-next

49 lines (44 loc) 1.07 kB
/** * xdesign v1.0.6 * (c) 2023 xdesign * @license MIT */ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); /* unplugin-vue-components disabled */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