@taiga-ui/kit
Version:
Taiga UI Angular main components kit
16 lines (15 loc) • 833 B
TypeScript
import { ChangeDetectorRef } from '@angular/core';
import { NgControl } from '@angular/forms';
import { TuiFocusableElementAccessor, TuiNativeFocusableElement } from '@taiga-ui/cdk';
import { AbstractTuiSlider } from '@taiga-ui/kit/abstract';
import { Observable } from 'rxjs';
export declare class TuiSliderComponent extends AbstractTuiSlider<number> implements TuiFocusableElementAccessor {
constructor(control: NgControl | null, changeDetectorRef: ChangeDetectorRef, documentRef: Document, fromToTexts$: Observable<[string, string]>);
get nativeFocusableElement(): TuiNativeFocusableElement | null;
get focused(): boolean;
get left(): number;
get right(): number;
protected getFallbackValue(): number;
protected processStep(increment: boolean): void;
protected processValue(value: number): void;
}