function linkRanges(inputs, options = {}) {
const {
invalidation: invalidated = invalidation,
dispatch = false
} = options;
const ProxyEvent = class extends Event {};
const clamp = (a, b, v) => v < a ? a : v > b ? b : v;
const views = Array.from(inputs);
const update = i => {
const view = views[i];
const p = views[i - 1];
const n = views[i + 1];
const min = p?.value[0] ?? -Infinity;
const max = n?.value[1] ?? Infinity;
let [a, b] = view.value;
a = clamp(min, max, a);
b = clamp(min, max, b);
if(p) p.value = [min, Math.max(min, a)];
if(n) n.value = [Math.min(b, max), max];
view.value = [a, b];
if(dispatch) {
if(p) p.dispatchEvent(new ProxyEvent("input", {bubbles: true}));
if(n) n.dispatchEvent(new ProxyEvent("input", {bubbles: true}));
}
};
for(const [i, view] of views.entries()) {
update(i);
const onInput = e => e instanceof ProxyEvent || update(i);
view.addEventListener("input", onInput);
invalidated.then(() => view.removeEventListener("input", onInput));
}
return inputs;
}