UNPKG

tdesign-vue-next

Version:
66 lines (61 loc) 1.24 kB
/** * tdesign v1.11.5 * (c) 2025 tdesign * @license MIT */ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var props = { bordered: Boolean, colon: Boolean, column: { type: Number, "default": 2 }, contentStyle: { type: Object }, itemLayout: { type: String, "default": "horizontal", validator: function validator(val) { if (!val) return true; return ["horizontal", "vertical"].includes(val); } }, items: { type: Array }, labelStyle: { type: Object }, layout: { type: String, "default": "horizontal", validator: function validator(val) { if (!val) return true; return ["horizontal", "vertical"].includes(val); } }, size: { type: String, "default": "medium", validator: function validator(val) { if (!val) return true; return ["small", "medium", "large"].includes(val); } }, tableLayout: { type: String, "default": "fixed", validator: function validator(val) { if (!val) return true; return ["fixed", "auto"].includes(val); } }, title: { type: [String, Function] } }; exports["default"] = props; //# sourceMappingURL=props.js.map