UNPKG

@taiga-ui/addon-mobile

Version:

Extension package for Taiga UI that adds support for mobile specific behaviors such as custom data pickers, dropdowns, etc.

13 lines (12 loc) 567 B
import { InjectionToken, type Provider } from '@angular/core'; export interface TuiMobileDialogOptions<I = undefined> { readonly actions: readonly string[]; readonly data: I; readonly label: string; } export declare const TUI_MOBILE_DIALOG_DEFAULT_OPTIONS: TuiMobileDialogOptions; /** * Default parameters for mobile dialog component */ export declare const TUI_MOBILE_DIALOG_OPTIONS: InjectionToken<TuiMobileDialogOptions<undefined>>; export declare function tuiMobileDialogOptionsProvider(options: Partial<TuiMobileDialogOptions<unknown>>): Provider;