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 that readonly only applies to the number input.

Note: The efx animation action applies to both the range / number inputs.

Hierarchy
  • SvelteComponent<
        {
            efxNumber?: any;
            efxRange?: any;
            enabled?: any;
            input?: any;
            label?: any;
            max?: any;
            min?: any;
            options?: any;
            readonly?: any;
            step?: any;
            store?: any;
            styles?: any;
        },
        { [evt: string]: CustomEvent<any> },
        {},
    >

Indexable

  • [prop: string]: any
Index
  • Parameters

    • options: ComponentConstructorOptions<
          {
              efxNumber?: any;
              efxRange?: any;
              enabled?: any;
              input?: any;
              label?: any;
              max?: any;
              min?: any;
              options?: any;
              readonly?: any;
              step?: any;
              store?: any;
              styles?: any;
          },
      >

    Returns TJSInputRangeNumber

  • Type Parameters

    • K extends string

    Parameters

    Returns () => void