mx-ui-components
Version:
mobius ui library
18 lines (17 loc) • 503 B
TypeScript
import BaseComponent from "./BaseComponent";
declare class RangeInput extends BaseComponent {
private _label;
private _min;
private _max;
private _value;
private _prevValue;
private _props;
private componentName;
constructor();
static get observedAttributes(): string[];
attributeChangedCallback(name: string, oldValue: any, newValue: any): void;
private updateThumbAndFill;
private handleDrag;
connectedCallback(): void;
}
export default RangeInput;