Class TJSInputRangeNumber
Hierarchy
- SvelteComponent<
TJSInputRangeNumber.Props,
TJSInputRangeNumber.Events,
TJSInputRangeNumber.Slots,
>- TJSInputRangeNumber (View Summary)
Indexable
- [prop: string]: any
Index
Constructors
Methods
Constructors
constructor
- new TJSInputRangeNumber(
options: ComponentConstructorOptions<TJSInputRangeNumber.Props>,
): TJSInputRangeNumber Parameters
Returns TJSInputRangeNumber
Methods
$destroy
$on
- $on<K extends string>(
type: K,
callback: (e: CustomEvent<any>) => void,
): () => void Type Parameters
Parameters
- type: K
- callback: (e: CustomEvent<any>) => void
Returns () => void
$set
- $set(props: Partial<TJSInputRangeNumber.Props>): void
Parameters
- props: Partial<TJSInputRangeNumber.Props>
Returns void
Provides a combined TJSInputRange / TJSInputNumber component with a single slotted label wrapper. This is a convenience component enabling easy hook up of a range + number input from the same data source.
There is no explicit layout defined. The
input
data is forwarded on to both range / number components with the exception thatreadonly
only applies to the number input.Note: The
efx
animation action applies to both the range / number inputs.