You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.2 KiB

11 months ago
'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
var props = require('../../../utils/props.js');
const progressProps = props.buildProps({
type: {
type: String,
default: "line",
values: ["line", "circle", "dashboard"]
},
percentage: {
type: Number,
default: 0,
validator: (val) => val >= 0 && val <= 100
},
status: {
type: String,
default: "",
values: ["", "success", "exception", "warning"]
},
indeterminate: {
type: Boolean,
default: false
},
duration: {
type: Number,
default: 3
},
strokeWidth: {
type: Number,
default: 6
},
strokeLinecap: {
type: props.definePropType(String),
default: "round"
},
textInside: {
type: Boolean,
default: false
},
width: {
type: Number,
default: 126
},
showText: {
type: Boolean,
default: true
},
color: {
type: props.definePropType([
String,
Array,
Function
]),
default: ""
},
format: {
type: props.definePropType(Function),
default: (percentage) => `${percentage}%`
}
});
exports.progressProps = progressProps;
//# sourceMappingURL=progress.js.map