@sandlada/vue-mdc
Version:

31 lines (30 loc) • 472 B
JavaScript
/**
* @license
* Copyright 2025 Sandlada & Kai Orion
* SPDX-License-Identifier: MIT
*/
const props = {
buffer: {
type: Number,
default: 1
},
max: {
type: Number,
default: 1
},
indeterminate: {
type: Boolean,
default: false
},
value: {
type: Number,
default: 0,
validator(value, { max }) {
return value >= 0 && value <= max;
}
}
};
export {
props
};
//# sourceMappingURL=linear-progress.definition.js.map