UNPKG

@sandlada/vue-mdc

Version:

![Vue MDC Logo](https://raw.githubusercontent.com/sandlada/vue-mdc/refs/heads/main/docs/vue-mdc-cover.png)

31 lines (30 loc) 472 B
/** * @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