@taiga-ui/addon-mobile
Version:
Extension package for Taiga UI that adds support for mobile specific behaviors such as custom data pickers, dropdowns, etc.
17 lines (16 loc) • 680 B
TypeScript
import { InjectionToken } from '@angular/core';
import { type TuiContext } from '@taiga-ui/cdk/types';
import { type PolymorpheusContent } from '@taiga-ui/polymorpheus';
import { type Observable } from 'rxjs';
/**
* Stream that emits when loading is over
*/
export declare const TUI_PULL_TO_REFRESH_LOADED: InjectionToken<Observable<unknown>>;
/**
* Pull threshold in pixels until loading starts
*/
export declare const TUI_PULL_TO_REFRESH_THRESHOLD: InjectionToken<number>;
/**
* Loading indicator component that gets current pull distance in pixels as context
*/
export declare const TUI_PULL_TO_REFRESH_COMPONENT: InjectionToken<PolymorpheusContent<TuiContext<number>>>;