UNPKG

tdesign-vue

Version:
62 lines (57 loc) 1.22 kB
/** * tdesign v1.12.1 * (c) 2025 tdesign * @license MIT */ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var props = { addable: Boolean, disabled: Boolean, list: { type: Array }, placement: { type: String, "default": "top", validator: function validator(val) { if (!val) return true; return ["left", "top", "bottom", "right"].includes(val); } }, scrollPosition: { type: String, "default": "auto", validator: function validator(val) { if (!val) return true; return ["auto", "start", "center", "end"].includes(val); } }, size: { type: String, "default": "medium", validator: function validator(val) { if (!val) return true; return ["medium", "large"].includes(val); } }, theme: { type: String, "default": "normal", validator: function validator(val) { if (!val) return true; return ["normal", "card"].includes(val); } }, value: { type: [String, Number] }, defaultValue: { type: [String, Number] }, onAdd: Function, onChange: Function, onRemove: Function }; exports["default"] = props; //# sourceMappingURL=props.js.map