import { range_styles_default } from "./chunk.DZ53ETCP.js"; import { l } from "./chunk.MB643KRE.js"; import { defaultValue } from "./chunk.RQ7JZ4R7.js"; import { FormControlController } from "./chunk.NMS6LWK4.js"; import { LocalizeController } from "./chunk.NH3SRVOC.js"; import { o } from "./chunk.2URMUHDY.js"; import { HasSlotController } from "./chunk.NYIIDP5N.js"; import { e } from "./chunk.UZVKBFXH.js"; import { watch } from "./chunk.FA5RT4K4.js"; import { ShoelaceElement, e as e2, n, r, t } from "./chunk.SEXBCYCU.js"; import { x } from "./chunk.CXZZ2LVK.js"; import { __decorateClass } from "./chunk.KIILAQWQ.js"; // src/components/range/range.component.ts var SlRange = class extends ShoelaceElement { constructor() { super(...arguments); this.formControlController = new FormControlController(this); this.hasSlotController = new HasSlotController(this, "help-text", "label"); this.localize = new LocalizeController(this); this.hasFocus = false; this.hasTooltip = false; this.title = ""; this.name = ""; this.value = 0; this.label = ""; this.helpText = ""; this.disabled = false; this.min = 0; this.max = 100; this.step = 1; this.tooltip = "top"; this.tooltipFormatter = (value) => value.toString(); this.form = ""; this.defaultValue = 0; } /** Gets the validity state object */ get validity() { return this.input.validity; } /** Gets the validation message */ get validationMessage() { return this.input.validationMessage; } connectedCallback() { super.connectedCallback(); this.resizeObserver = new ResizeObserver(() => this.syncRange()); if (this.value < this.min) { this.value = this.min; } if (this.value > this.max) { this.value = this.max; } this.updateComplete.then(() => { this.syncRange(); this.resizeObserver.observe(this.input); }); } disconnectedCallback() { super.disconnectedCallback(); this.resizeObserver.unobserve(this.input); } handleChange() { this.emit("sl-change"); } handleInput() { this.value = parseFloat(this.input.value); this.emit("sl-input"); this.syncRange(); } handleBlur() { this.hasFocus = false; this.hasTooltip = false; this.emit("sl-blur"); } handleFocus() { this.hasFocus = true; this.hasTooltip = true; this.emit("sl-focus"); } handleThumbDragStart() { this.hasTooltip = true; } handleThumbDragEnd() { this.hasTooltip = false; } syncProgress(percent) { this.input.style.setProperty("--percent", `${percent * 100}%`); } syncTooltip(percent) { if (this.output !== null) { const inputWidth = this.input.offsetWidth; const tooltipWidth = this.output.offsetWidth; const thumbSize = getComputedStyle(this.input).getPropertyValue("--thumb-size"); const isRtl = this.localize.dir() === "rtl"; const percentAsWidth = inputWidth * percent; if (isRtl) { const x2 = `${inputWidth - percentAsWidth}px + ${percent} * ${thumbSize}`; this.output.style.translate = `calc((${x2} - ${tooltipWidth / 2}px - ${thumbSize} / 2))`; } else { const x2 = `${percentAsWidth}px - ${percent} * ${thumbSize}`; this.output.style.translate = `calc(${x2} - ${tooltipWidth / 2}px + ${thumbSize} / 2)`; } } } handleValueChange() { this.formControlController.updateValidity(); this.input.value = this.value.toString(); this.value = parseFloat(this.input.value); this.syncRange(); } handleDisabledChange() { this.formControlController.setValidity(this.disabled); } syncRange() { const percent = Math.max(0, (this.value - this.min) / (this.max - this.min)); this.syncProgress(percent); if (this.tooltip !== "none") { this.syncTooltip(percent); } } handleInvalid(event) { this.formControlController.setValidity(false); this.formControlController.emitInvalidEvent(event); } /** Sets focus on the range. */ focus(options) { this.input.focus(options); } /** Removes focus from the range. */ blur() { this.input.blur(); } /** Increments the value of the range by the value of the step attribute. */ stepUp() { this.input.stepUp(); if (this.value !== Number(this.input.value)) { this.value = Number(this.input.value); } } /** Decrements the value of the range by the value of the step attribute. */ stepDown() { this.input.stepDown(); if (this.value !== Number(this.input.value)) { this.value = Number(this.input.value); } } /** Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid. */ checkValidity() { return this.input.checkValidity(); } /** Gets the associated form, if one exists. */ getForm() { return this.formControlController.getForm(); } /** Checks for validity and shows the browser's validation message if the control is invalid. */ reportValidity() { return this.input.reportValidity(); } /** Sets a custom validation message. Pass an empty string to restore validity. */ setCustomValidity(message) { this.input.setCustomValidity(message); this.formControlController.updateValidity(); } render() { const hasLabelSlot = this.hasSlotController.test("label"); const hasHelpTextSlot = this.hasSlotController.test("help-text"); const hasLabel = this.label ? true : !!hasLabelSlot; const hasHelpText = this.helpText ? true : !!hasHelpTextSlot; return x`