import Component from "../../components/range/range.component.js"; import { type EventName } from "@lit/react"; import type { PBlurEvent } from "../../events/events.js"; import type { PChangeEvent } from "../../events/events.js"; import type { PFocusEvent } from "../../events/events.js"; import type { PInputEvent } from "../../events/events.js"; import type { PInvalidEvent } from "../../events/events.js"; export type { PBlurEvent } from "../../events/events.js"; export type { PChangeEvent } from "../../events/events.js"; export type { PFocusEvent } from "../../events/events.js"; export type { PInputEvent } from "../../events/events.js"; export type { PInvalidEvent } from "../../events/events.js"; /** * @summary Ranges allow the user to select a single value within a given range using a slider. * @documentation https://pureui.online/components/range * @status stable * @since 1.0 * * @slot label - The range's label. Alternatively, you can use the `label` attribute. * @slot help-text - Text that describes how to use the input. Alternatively, you can use the `help-text` attribute. * * @event p-blur - Emitted when the control loses focus. * @event p-change - Emitted when an alteration to the control's value is committed by the user. * @event p-focus - Emitted when the control gains focus. * @event p-input - Emitted when the control receives input. * @event p-invalid - Emitted when the form control has been checked for validity and its constraints aren't satisfied. * * @csspart form-control - The form control that wraps the label, input, and help text. * @csspart form-control-label - The label's wrapper. * @csspart form-control-input - The range's wrapper. * @csspart form-control-help-text - The help text's wrapper. * @csspart base - The component's base wrapper. * @csspart input - The internal `` element. * @csspart tooltip - The range's tooltip. * * @cssproperty --thumb-size - The size of the thumb. * @cssproperty --tooltip-offset - The vertical distance the tooltip is offset from the track. * @cssproperty --track-color-active - The color of the portion of the track that represents the current value. * @cssproperty --track-color-inactive - The of the portion of the track that represents the remaining value. * @cssproperty --track-height - The height of the track. * @cssproperty --track-active-offset - The point of origin of the active track. */ declare const reactWrapper: import("@lit/react").ReactWebComponent; onPChange: EventName; onPFocus: EventName; onPInput: EventName; onPInvalid: EventName; }>; export default reactWrapper;