You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1 lines
2.0 KiB
1 lines
2.0 KiB
{"version":3,"file":"sidenav.d.ts","sources":["sidenav.d.ts"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA;AACA;;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA;AACA;AACA;AACA;;;AACA","sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nimport { ChangeDetectorRef, QueryList, ElementRef, NgZone } from '@angular/core';\nimport { MatDrawer, MatDrawerContainer, MatDrawerContent } from './drawer';\nimport { BooleanInput, NumberInput } from '@angular/cdk/coercion';\nimport { ScrollDispatcher } from '@angular/cdk/scrolling';\nexport declare class MatSidenavContent extends MatDrawerContent {\n constructor(changeDetectorRef: ChangeDetectorRef, container: MatSidenavContainer, elementRef: ElementRef<HTMLElement>, scrollDispatcher: ScrollDispatcher, ngZone: NgZone);\n}\nexport declare class MatSidenav extends MatDrawer {\n /** Whether the sidenav is fixed in the viewport. */\n get fixedInViewport(): boolean;\n set fixedInViewport(value: boolean);\n private _fixedInViewport;\n /**\n * The gap between the top of the sidenav and the top of the viewport when the sidenav is in fixed\n * mode.\n */\n get fixedTopGap(): number;\n set fixedTopGap(value: number);\n private _fixedTopGap;\n /**\n * The gap between the bottom of the sidenav and the bottom of the viewport when the sidenav is in\n * fixed mode.\n */\n get fixedBottomGap(): number;\n set fixedBottomGap(value: number);\n private _fixedBottomGap;\n static ngAcceptInputType_fixedInViewport: BooleanInput;\n static ngAcceptInputType_fixedTopGap: NumberInput;\n static ngAcceptInputType_fixedBottomGap: NumberInput;\n}\nexport declare class MatSidenavContainer extends MatDrawerContainer {\n _allDrawers: QueryList<MatSidenav>;\n _content: MatSidenavContent;\n}\n"]}
|