1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- import * as i0 from '@angular/core';
- import { OnDestroy } from '@angular/core';
- import { Observable } from 'rxjs';
- declare class LayoutModule {
- static ɵfac: i0.ɵɵFactoryDeclaration<LayoutModule, never>;
- static ɵmod: i0.ɵɵNgModuleDeclaration<LayoutModule, never, never, never>;
- static ɵinj: i0.ɵɵInjectorDeclaration<LayoutModule>;
- }
- /** The current state of a layout breakpoint. */
- interface BreakpointState {
- /** Whether the breakpoint is currently matching. */
- matches: boolean;
- /**
- * A key boolean pair for each query provided to the observe method,
- * with its current matched state.
- */
- breakpoints: {
- [key: string]: boolean;
- };
- }
- /** Utility for checking the matching state of `@media` queries. */
- declare class BreakpointObserver implements OnDestroy {
- private _mediaMatcher;
- private _zone;
- /** A map of all media queries currently being listened for. */
- private _queries;
- /** A subject for all other observables to takeUntil based on. */
- private readonly _destroySubject;
- constructor(...args: unknown[]);
- /** Completes the active subject, signalling to all other observables to complete. */
- ngOnDestroy(): void;
- /**
- * Whether one or more media queries match the current viewport size.
- * @param value One or more media queries to check.
- * @returns Whether any of the media queries match.
- */
- isMatched(value: string | readonly string[]): boolean;
- /**
- * Gets an observable of results for the given queries that will emit new results for any changes
- * in matching of the given queries.
- * @param value One or more media queries to check.
- * @returns A stream of matches for the given queries.
- */
- observe(value: string | readonly string[]): Observable<BreakpointState>;
- /** Registers a specific query to be listened for. */
- private _registerQuery;
- static ɵfac: i0.ɵɵFactoryDeclaration<BreakpointObserver, never>;
- static ɵprov: i0.ɵɵInjectableDeclaration<BreakpointObserver>;
- }
- declare const Breakpoints: {
- XSmall: string;
- Small: string;
- Medium: string;
- Large: string;
- XLarge: string;
- Handset: string;
- Tablet: string;
- Web: string;
- HandsetPortrait: string;
- TabletPortrait: string;
- WebPortrait: string;
- HandsetLandscape: string;
- TabletLandscape: string;
- WebLandscape: string;
- };
- /** A utility for calling matchMedia queries. */
- declare class MediaMatcher {
- private _platform;
- private _nonce;
- /** The internal matchMedia method to return back a MediaQueryList like object. */
- private _matchMedia;
- constructor(...args: unknown[]);
- /**
- * Evaluates the given media query and returns the native MediaQueryList from which results
- * can be retrieved.
- * Confirms the layout engine will trigger for the selector query provided and returns the
- * MediaQueryList for the query provided.
- */
- matchMedia(query: string): MediaQueryList;
- static ɵfac: i0.ɵɵFactoryDeclaration<MediaMatcher, never>;
- static ɵprov: i0.ɵɵInjectableDeclaration<MediaMatcher>;
- }
- export { BreakpointObserver, Breakpoints, LayoutModule, MediaMatcher };
- export type { BreakpointState };
|