UNPKG

tdesign-mobile-vue

Version:
50 lines (45 loc) 893 B
/** * tdesign v1.7.0 * (c) 2024 TDesign Group * @license MIT */ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var props = { color: { type: [String, Object, Array], default: "" }, label: { type: [String, Boolean, Function], default: true }, percentage: { type: Number, default: 0 }, status: { type: String, validator: function validator(val) { if (!val) return true; return ["success", "error", "warning", "active"].includes(val); } }, strokeWidth: { type: [String, Number] }, theme: { type: String, default: "line", validator: function validator(val) { if (!val) return true; return ["line", "plump", "circle"].includes(val); } }, trackColor: { type: String, default: "" } }; exports["default"] = props; //# sourceMappingURL=props.js.map