source: trip-planner-front/node_modules/@angular/material/tabs/tab-header.d.ts@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 2.9 KB
Line 
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8import { Directionality } from '@angular/cdk/bidi';
9import { ViewportRuler } from '@angular/cdk/scrolling';
10import { AfterContentChecked, AfterContentInit, ChangeDetectorRef, ElementRef, NgZone, OnDestroy, QueryList, AfterViewInit } from '@angular/core';
11import { BooleanInput } from '@angular/cdk/coercion';
12import { MatInkBar } from './ink-bar';
13import { MatTabLabelWrapper } from './tab-label-wrapper';
14import { Platform } from '@angular/cdk/platform';
15import { MatPaginatedTabHeader } from './paginated-tab-header';
16/**
17 * Base class with all of the `MatTabHeader` functionality.
18 * @docs-private
19 */
20import * as ɵngcc0 from '@angular/core';
21export declare abstract class _MatTabHeaderBase extends MatPaginatedTabHeader implements AfterContentChecked, AfterContentInit, AfterViewInit, OnDestroy {
22 /** Whether the ripple effect is disabled or not. */
23 get disableRipple(): any;
24 set disableRipple(value: any);
25 private _disableRipple;
26 constructor(elementRef: ElementRef, changeDetectorRef: ChangeDetectorRef, viewportRuler: ViewportRuler, dir: Directionality, ngZone: NgZone, platform: Platform, animationMode?: string);
27 protected _itemSelected(event: KeyboardEvent): void;
28 static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<_MatTabHeaderBase, [null, null, null, { optional: true; }, null, null, { optional: true; }]>;
29 static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration<_MatTabHeaderBase, never, never, { "disableRipple": "disableRipple"; }, {}, never>;
30}
31/**
32 * The header of the tab group which displays a list of all the tabs in the tab group. Includes
33 * an ink bar that follows the currently selected tab. When the tabs list's width exceeds the
34 * width of the header container, then arrows will be displayed to allow the user to scroll
35 * left and right across the header.
36 * @docs-private
37 */
38export declare class MatTabHeader extends _MatTabHeaderBase {
39 _items: QueryList<MatTabLabelWrapper>;
40 _inkBar: MatInkBar;
41 _tabListContainer: ElementRef;
42 _tabList: ElementRef;
43 _nextPaginator: ElementRef<HTMLElement>;
44 _previousPaginator: ElementRef<HTMLElement>;
45 constructor(elementRef: ElementRef, changeDetectorRef: ChangeDetectorRef, viewportRuler: ViewportRuler, dir: Directionality, ngZone: NgZone, platform: Platform, animationMode?: string);
46 static ngAcceptInputType_disableRipple: BooleanInput;
47 static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<MatTabHeader, [null, null, null, { optional: true; }, null, null, { optional: true; }]>;
48 static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<MatTabHeader, "mat-tab-header", never, { "selectedIndex": "selectedIndex"; }, { "selectFocusedIndex": "selectFocusedIndex"; "indexFocused": "indexFocused"; }, ["_items"], ["*"]>;
49}
50
51//# sourceMappingURL=tab-header.d.ts.map
Note: See TracBrowser for help on using the repository browser.