@angular/material
Version:
Angular Material
1,350 lines (1,335 loc) • 82.1 kB
JavaScript
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { ObserversModule } from '@angular/cdk/observers';
import { CdkPortal, CdkPortalOutlet, PortalModule, TemplatePortal } from '@angular/cdk/portal';
import { ScrollDispatchModule, VIEWPORT_RULER_PROVIDER, ViewportRuler } from '@angular/cdk/scrolling';
import { CommonModule } from '@angular/common';
import { Attribute, ChangeDetectionStrategy, ChangeDetectorRef, Component, ComponentFactoryResolver, ContentChild, ContentChildren, Directive, ElementRef, EventEmitter, Inject, Input, NgModule, NgZone, Optional, Output, TemplateRef, ViewChild, ViewContainerRef, ViewEncapsulation, forwardRef } from '@angular/core';
import { MAT_RIPPLE_GLOBAL_OPTIONS, MatCommonModule, MatRippleModule, RippleRenderer, mixinColor, mixinDisableRipple, mixinDisabled, mixinTabIndex } from '@angular/material/core';
import { __extends } from 'tslib';
import * as tslib_1 from 'tslib';
import { Subject } from 'rxjs/Subject';
import { Directionality } from '@angular/cdk/bidi';
import { animate, state, style, transition, trigger } from '@angular/animations';
import { coerceBooleanProperty, coerceNumberProperty } from '@angular/cdk/coercion';
import { Subscription } from 'rxjs/Subscription';
import { merge } from 'rxjs/observable/merge';
import { END, ENTER, HOME, LEFT_ARROW, RIGHT_ARROW, SPACE } from '@angular/cdk/keycodes';
import { of } from 'rxjs/observable/of';
import { Platform } from '@angular/cdk/platform';
import { takeUntil } from 'rxjs/operators/takeUntil';
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
/**
* The ink-bar is used to display and animate the line underneath the current active tab label.
* \@docs-private
*/
var MatInkBar = /** @class */ (function () {
function MatInkBar(_elementRef, _ngZone) {
this._elementRef = _elementRef;
this._ngZone = _ngZone;
}
/**
* Calculates the styles from the provided element in order to align the ink-bar to that element.
* Shows the ink bar if previously set as hidden.
* @param element
*/
/**
* Calculates the styles from the provided element in order to align the ink-bar to that element.
* Shows the ink bar if previously set as hidden.
* @param {?} element
* @return {?}
*/
MatInkBar.prototype.alignToElement = /**
* Calculates the styles from the provided element in order to align the ink-bar to that element.
* Shows the ink bar if previously set as hidden.
* @param {?} element
* @return {?}
*/
function (element) {
var _this = this;
this.show();
if (typeof requestAnimationFrame !== 'undefined') {
this._ngZone.runOutsideAngular(function () {
requestAnimationFrame(function () { return _this._setStyles(element); });
});
}
else {
this._setStyles(element);
}
};
/** Shows the ink bar. */
/**
* Shows the ink bar.
* @return {?}
*/
MatInkBar.prototype.show = /**
* Shows the ink bar.
* @return {?}
*/
function () {
this._elementRef.nativeElement.style.visibility = 'visible';
};
/** Hides the ink bar. */
/**
* Hides the ink bar.
* @return {?}
*/
MatInkBar.prototype.hide = /**
* Hides the ink bar.
* @return {?}
*/
function () {
this._elementRef.nativeElement.style.visibility = 'hidden';
};
/**
* Sets the proper styles to the ink bar element.
* @param {?} element
* @return {?}
*/
MatInkBar.prototype._setStyles = /**
* Sets the proper styles to the ink bar element.
* @param {?} element
* @return {?}
*/
function (element) {
var /** @type {?} */ inkBar = this._elementRef.nativeElement;
inkBar.style.left = element ? (element.offsetLeft || 0) + 'px' : '0';
inkBar.style.width = element ? (element.offsetWidth || 0) + 'px' : '0';
};
MatInkBar.decorators = [
{ type: Directive, args: [{
selector: 'mat-ink-bar',
host: {
'class': 'mat-ink-bar',
},
},] },
];
/** @nocollapse */
MatInkBar.ctorParameters = function () { return [
{ type: ElementRef, },
{ type: NgZone, },
]; };
return MatInkBar;
}());
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
/**
* Used to flag tab labels for use with the portal directive
*/
var MatTabLabel = /** @class */ (function (_super) {
__extends(MatTabLabel, _super);
function MatTabLabel(templateRef, viewContainerRef) {
return _super.call(this, templateRef, viewContainerRef) || this;
}
MatTabLabel.decorators = [
{ type: Directive, args: [{
selector: '[mat-tab-label], [matTabLabel]',
},] },
];
/** @nocollapse */
MatTabLabel.ctorParameters = function () { return [
{ type: TemplateRef, },
{ type: ViewContainerRef, },
]; };
return MatTabLabel;
}(CdkPortal));
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
/**
* \@docs-private
*/
var MatTabBase = /** @class */ (function () {
function MatTabBase() {
}
return MatTabBase;
}());
var _MatTabMixinBase = mixinDisabled(MatTabBase);
var MatTab = /** @class */ (function (_super) {
__extends(MatTab, _super);
function MatTab(_viewContainerRef) {
var _this = _super.call(this) || this;
_this._viewContainerRef = _viewContainerRef;
/**
* The plain text label for the tab, used when there is no template label.
*/
_this.textLabel = '';
/**
* The portal that will be the hosted content of the tab
*/
_this._contentPortal = null;
/**
* Emits whenever the label changes.
*/
_this._labelChange = new Subject();
/**
* Emits whenever the disable changes
*/
_this._disableChange = new Subject();
/**
* The relatively indexed position where 0 represents the center, negative is left, and positive
* represents the right.
*/
_this.position = null;
/**
* The initial relatively index origin of the tab if it was created and selected after there
* was already a selected tab. Provides context of what position the tab should originate from.
*/
_this.origin = null;
/**
* Whether the tab is currently active.
*/
_this.isActive = false;
return _this;
}
Object.defineProperty(MatTab.prototype, "content", {
/** @docs-private */
get: /**
* \@docs-private
* @return {?}
*/
function () {
return this._contentPortal;
},
enumerable: true,
configurable: true
});
/**
* @param {?} changes
* @return {?}
*/
MatTab.prototype.ngOnChanges = /**
* @param {?} changes
* @return {?}
*/
function (changes) {
if (changes.hasOwnProperty('textLabel')) {
this._labelChange.next();
}
if (changes.hasOwnProperty('disabled')) {
this._disableChange.next();
}
};
/**
* @return {?}
*/
MatTab.prototype.ngOnDestroy = /**
* @return {?}
*/
function () {
this._disableChange.complete();
this._labelChange.complete();
};
/**
* @return {?}
*/
MatTab.prototype.ngOnInit = /**
* @return {?}
*/
function () {
this._contentPortal = new TemplatePortal(this._content, this._viewContainerRef);
};
MatTab.decorators = [
{ type: Component, args: [{selector: 'mat-tab',
template: "<ng-template><ng-content></ng-content></ng-template>",
inputs: ['disabled'],
changeDetection: ChangeDetectionStrategy.OnPush,
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
exportAs: 'matTab',
},] },
];
/** @nocollapse */
MatTab.ctorParameters = function () { return [
{ type: ViewContainerRef, },
]; };
MatTab.propDecorators = {
"templateLabel": [{ type: ContentChild, args: [MatTabLabel,] },],
"_content": [{ type: ViewChild, args: [TemplateRef,] },],
"textLabel": [{ type: Input, args: ['label',] },],
};
return MatTab;
}(_MatTabMixinBase));
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
/**
* Animations used by the Material tabs.
*/
var matTabsAnimations = {
/** Animation translates a tab along the X axis. */
translateTab: trigger('translateTab', [
// Note: transitions to `none` instead of 0, because some browsers might blur the content.
state('center, void, left-origin-center, right-origin-center', style({ transform: 'none' })),
state('left', style({ transform: 'translate3d(-100%, 0, 0)' })),
state('right', style({ transform: 'translate3d(100%, 0, 0)' })),
transition('* => left, * => right, left => center, right => center', animate('500ms cubic-bezier(0.35, 0, 0.25, 1)')),
transition('void => left-origin-center', [
style({ transform: 'translate3d(-100%, 0, 0)' }),
animate('500ms cubic-bezier(0.35, 0, 0.25, 1)')
]),
transition('void => right-origin-center', [
style({ transform: 'translate3d(100%, 0, 0)' }),
animate('500ms cubic-bezier(0.35, 0, 0.25, 1)')
])
])
};
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
/**
* The portal host directive for the contents of the tab.
* \@docs-private
*/
var MatTabBodyPortal = /** @class */ (function (_super) {
__extends(MatTabBodyPortal, _super);
function MatTabBodyPortal(_componentFactoryResolver, _viewContainerRef, _host) {
var _this = _super.call(this, _componentFactoryResolver, _viewContainerRef) || this;
_this._host = _host;
return _this;
}
/** Set initial visibility or set up subscription for changing visibility. */
/**
* Set initial visibility or set up subscription for changing visibility.
* @return {?}
*/
MatTabBodyPortal.prototype.ngOnInit = /**
* Set initial visibility or set up subscription for changing visibility.
* @return {?}
*/
function () {
var _this = this;
if (this._host._isCenterPosition(this._host._position)) {
this.attach(this._host._content);
}
this._centeringSub = this._host._beforeCentering.subscribe(function (isCentering) {
if (isCentering) {
if (!_this.hasAttached()) {
_this.attach(_this._host._content);
}
}
});
this._leavingSub = this._host._afterLeavingCenter.subscribe(function () {
_this.detach();
});
};
/** Clean up centering subscription. */
/**
* Clean up centering subscription.
* @return {?}
*/
MatTabBodyPortal.prototype.ngOnDestroy = /**
* Clean up centering subscription.
* @return {?}
*/
function () {
if (this._centeringSub && !this._centeringSub.closed) {
this._centeringSub.unsubscribe();
}
if (this._leavingSub && !this._leavingSub.closed) {
this._leavingSub.unsubscribe();
}
};
MatTabBodyPortal.decorators = [
{ type: Directive, args: [{
selector: '[matTabBodyHost]'
},] },
];
/** @nocollapse */
MatTabBodyPortal.ctorParameters = function () { return [
{ type: ComponentFactoryResolver, },
{ type: ViewContainerRef, },
{ type: MatTabBody, decorators: [{ type: Inject, args: [forwardRef(function () { return MatTabBody; }),] },] },
]; };
return MatTabBodyPortal;
}(CdkPortalOutlet));
/**
* Wrapper for the contents of a tab.
* \@docs-private
*/
var MatTabBody = /** @class */ (function () {
function MatTabBody(_elementRef, _dir) {
this._elementRef = _elementRef;
this._dir = _dir;
/**
* Event emitted when the tab begins to animate towards the center as the active tab.
*/
this._onCentering = new EventEmitter();
/**
* Event emitted before the centering of the tab begins.
*/
this._beforeCentering = new EventEmitter();
/**
* Event emitted before the centering of the tab begins.
*/
this._afterLeavingCenter = new EventEmitter();
/**
* Event emitted when the tab completes its animation towards the center.
*/
this._onCentered = new EventEmitter(true);
}
Object.defineProperty(MatTabBody.prototype, "position", {
set: /**
* The shifted index position of the tab body, where zero represents the active center tab.
* @param {?} position
* @return {?}
*/
function (position) {
if (position < 0) {
this._position = this._getLayoutDirection() == 'ltr' ? 'left' : 'right';
}
else if (position > 0) {
this._position = this._getLayoutDirection() == 'ltr' ? 'right' : 'left';
}
else {
this._position = 'center';
}
},
enumerable: true,
configurable: true
});
Object.defineProperty(MatTabBody.prototype, "origin", {
set: /**
* The origin position from which this tab should appear when it is centered into view.
* @param {?} origin
* @return {?}
*/
function (origin) {
if (origin == null) {
return;
}
var /** @type {?} */ dir = this._getLayoutDirection();
if ((dir == 'ltr' && origin <= 0) || (dir == 'rtl' && origin > 0)) {
this._origin = 'left';
}
else {
this._origin = 'right';
}
},
enumerable: true,
configurable: true
});
/**
* After initialized, check if the content is centered and has an origin. If so, set the
* special position states that transition the tab from the left or right before centering.
*/
/**
* After initialized, check if the content is centered and has an origin. If so, set the
* special position states that transition the tab from the left or right before centering.
* @return {?}
*/
MatTabBody.prototype.ngOnInit = /**
* After initialized, check if the content is centered and has an origin. If so, set the
* special position states that transition the tab from the left or right before centering.
* @return {?}
*/
function () {
if (this._position == 'center' && this._origin) {
this._position = this._origin == 'left' ? 'left-origin-center' : 'right-origin-center';
}
};
/**
* @param {?} e
* @return {?}
*/
MatTabBody.prototype._onTranslateTabStarted = /**
* @param {?} e
* @return {?}
*/
function (e) {
var /** @type {?} */ isCentering = this._isCenterPosition(e.toState);
this._beforeCentering.emit(isCentering);
if (isCentering) {
this._onCentering.emit(this._elementRef.nativeElement.clientHeight);
}
};
/**
* @param {?} e
* @return {?}
*/
MatTabBody.prototype._onTranslateTabComplete = /**
* @param {?} e
* @return {?}
*/
function (e) {
// If the transition to the center is complete, emit an event.
if (this._isCenterPosition(e.toState) && this._isCenterPosition(this._position)) {
this._onCentered.emit();
}
if (this._isCenterPosition(e.fromState) && !this._isCenterPosition(this._position)) {
this._afterLeavingCenter.emit();
}
};
/** The text direction of the containing app. */
/**
* The text direction of the containing app.
* @return {?}
*/
MatTabBody.prototype._getLayoutDirection = /**
* The text direction of the containing app.
* @return {?}
*/
function () {
return this._dir && this._dir.value === 'rtl' ? 'rtl' : 'ltr';
};
/** Whether the provided position state is considered center, regardless of origin. */
/**
* Whether the provided position state is considered center, regardless of origin.
* @param {?} position
* @return {?}
*/
MatTabBody.prototype._isCenterPosition = /**
* Whether the provided position state is considered center, regardless of origin.
* @param {?} position
* @return {?}
*/
function (position) {
return position == 'center' ||
position == 'left-origin-center' ||
position == 'right-origin-center';
};
MatTabBody.decorators = [
{ type: Component, args: [{selector: 'mat-tab-body',
template: "<div class=\"mat-tab-body-content\" #content [@translateTab]=\"_position\" (@translateTab.start)=\"_onTranslateTabStarted($event)\" (@translateTab.done)=\"_onTranslateTabComplete($event)\"><ng-template matTabBodyHost></ng-template></div>",
styles: [".mat-tab-body-content{-webkit-backface-visibility:hidden;backface-visibility:hidden;height:100%;overflow:auto}.mat-tab-group-dynamic-height .mat-tab-body-content{overflow:hidden}"],
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush,
animations: [matTabsAnimations.translateTab],
host: {
'class': 'mat-tab-body',
},
},] },
];
/** @nocollapse */
MatTabBody.ctorParameters = function () { return [
{ type: ElementRef, },
{ type: Directionality, decorators: [{ type: Optional },] },
]; };
MatTabBody.propDecorators = {
"_onCentering": [{ type: Output },],
"_beforeCentering": [{ type: Output },],
"_afterLeavingCenter": [{ type: Output },],
"_onCentered": [{ type: Output },],
"_content": [{ type: Input, args: ['content',] },],
"position": [{ type: Input },],
"origin": [{ type: Input },],
};
return MatTabBody;
}());
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
/**
* Used to generate unique ID's for each tab component
*/
var nextId = 0;
/**
* A simple change event emitted on focus or selection changes.
*/
var MatTabChangeEvent = /** @class */ (function () {
function MatTabChangeEvent() {
}
return MatTabChangeEvent;
}());
/**
* \@docs-private
*/
var MatTabGroupBase = /** @class */ (function () {
function MatTabGroupBase(_elementRef) {
this._elementRef = _elementRef;
}
return MatTabGroupBase;
}());
var _MatTabGroupMixinBase = mixinColor(mixinDisableRipple(MatTabGroupBase), 'primary');
/**
* Material design tab-group component. Supports basic tab pairs (label + content) and includes
* animated ink-bar, keyboard navigation, and screen reader.
* See: https://www.google.com/design/spec/components/tabs.html
*/
var MatTabGroup = /** @class */ (function (_super) {
__extends(MatTabGroup, _super);
function MatTabGroup(elementRef, _changeDetectorRef) {
var _this = _super.call(this, elementRef) || this;
_this._changeDetectorRef = _changeDetectorRef;
/**
* The tab index that should be selected after the content has been checked.
*/
_this._indexToSelect = 0;
/**
* Snapshot of the height of the tab body wrapper before another tab is activated.
*/
_this._tabBodyWrapperHeight = 0;
/**
* Subscription to tabs being added/removed.
*/
_this._tabsSubscription = Subscription.EMPTY;
/**
* Subscription to changes in the tab labels.
*/
_this._tabLabelSubscription = Subscription.EMPTY;
_this._dynamicHeight = false;
_this._selectedIndex = null;
/**
* Position of the tab header.
*/
_this.headerPosition = 'above';
/**
* Output to enable support for two-way binding on `[(selectedIndex)]`
*/
_this.selectedIndexChange = new EventEmitter();
/**
* Event emitted when focus has changed within a tab group.
*/
_this.focusChange = new EventEmitter();
/**
* Event emitted when the body animation has completed
*/
_this.animationDone = new EventEmitter();
/**
* Event emitted when the tab selection has changed.
*/
_this.selectedTabChange = new EventEmitter(true);
/**
* Event emitted when the tab selection has changed.
* @deprecated Use `selectedTabChange` instead.
* \@deletion-target 6.0.0
*/
_this.selectChange = _this.selectedTabChange;
_this._groupId = nextId++;
return _this;
}
Object.defineProperty(MatTabGroup.prototype, "dynamicHeight", {
get: /**
* Whether the tab group should grow to the size of the active tab.
* @return {?}
*/
function () { return this._dynamicHeight; },
set: /**
* @param {?} value
* @return {?}
*/
function (value) { this._dynamicHeight = coerceBooleanProperty(value); },
enumerable: true,
configurable: true
});
Object.defineProperty(MatTabGroup.prototype, "_dynamicHeightDeprecated", {
get: /**
* @deprecated
* \@deletion-target 6.0.0
* @return {?}
*/
function () { return this._dynamicHeight; },
set: /**
* @param {?} value
* @return {?}
*/
function (value) { this._dynamicHeight = value; },
enumerable: true,
configurable: true
});
Object.defineProperty(MatTabGroup.prototype, "selectedIndex", {
get: /**
* The index of the active tab.
* @return {?}
*/
function () { return this._selectedIndex; },
set: /**
* @param {?} value
* @return {?}
*/
function (value) {
this._indexToSelect = coerceNumberProperty(value, null);
},
enumerable: true,
configurable: true
});
Object.defineProperty(MatTabGroup.prototype, "backgroundColor", {
get: /**
* Background color of the tab group.
* @return {?}
*/
function () { return this._backgroundColor; },
set: /**
* @param {?} value
* @return {?}
*/
function (value) {
var /** @type {?} */ nativeElement = this._elementRef.nativeElement;
nativeElement.classList.remove("mat-background-" + this.backgroundColor);
if (value) {
nativeElement.classList.add("mat-background-" + value);
}
this._backgroundColor = value;
},
enumerable: true,
configurable: true
});
/**
* After the content is checked, this component knows what tabs have been defined
* and what the selected index should be. This is where we can know exactly what position
* each tab should be in according to the new selected index, and additionally we know how
* a new selected tab should transition in (from the left or right).
*/
/**
* After the content is checked, this component knows what tabs have been defined
* and what the selected index should be. This is where we can know exactly what position
* each tab should be in according to the new selected index, and additionally we know how
* a new selected tab should transition in (from the left or right).
* @return {?}
*/
MatTabGroup.prototype.ngAfterContentChecked = /**
* After the content is checked, this component knows what tabs have been defined
* and what the selected index should be. This is where we can know exactly what position
* each tab should be in according to the new selected index, and additionally we know how
* a new selected tab should transition in (from the left or right).
* @return {?}
*/
function () {
var _this = this;
// Clamp the next selected index to the boundsof 0 and the tabs length.
// Note the `|| 0`, which ensures that values like NaN can't get through
// and which would otherwise throw the component into an infinite loop
// (since Math.max(NaN, 0) === NaN).
var /** @type {?} */ indexToSelect = this._indexToSelect =
Math.min(this._tabs.length - 1, Math.max(this._indexToSelect || 0, 0));
// If there is a change in selected index, emit a change event. Should not trigger if
// the selected index has not yet been initialized.
if (this._selectedIndex != indexToSelect && this._selectedIndex != null) {
var /** @type {?} */ tabChangeEvent = this._createChangeEvent(indexToSelect);
this.selectedTabChange.emit(tabChangeEvent);
// Emitting this value after change detection has run
// since the checked content may contain this variable'
Promise.resolve().then(function () { return _this.selectedIndexChange.emit(indexToSelect); });
}
// Setup the position for each tab and optionally setup an origin on the next selected tab.
this._tabs.forEach(function (tab, index) {
tab.position = index - indexToSelect;
tab.isActive = index === indexToSelect;
// If there is already a selected tab, then set up an origin for the next selected tab
// if it doesn't have one already.
if (_this._selectedIndex != null && tab.position == 0 && !tab.origin) {
tab.origin = indexToSelect - _this._selectedIndex;
}
});
if (this._selectedIndex !== indexToSelect) {
this._selectedIndex = indexToSelect;
this._changeDetectorRef.markForCheck();
}
};
/**
* @return {?}
*/
MatTabGroup.prototype.ngAfterContentInit = /**
* @return {?}
*/
function () {
var _this = this;
this._subscribeToTabLabels();
// Subscribe to changes in the amount of tabs, in order to be
// able to re-render the content as new tabs are added or removed.
this._tabsSubscription = this._tabs.changes.subscribe(function () {
_this._subscribeToTabLabels();
_this._changeDetectorRef.markForCheck();
});
};
/**
* @return {?}
*/
MatTabGroup.prototype.ngOnDestroy = /**
* @return {?}
*/
function () {
this._tabsSubscription.unsubscribe();
this._tabLabelSubscription.unsubscribe();
};
/**
* @param {?} index
* @return {?}
*/
MatTabGroup.prototype._focusChanged = /**
* @param {?} index
* @return {?}
*/
function (index) {
this.focusChange.emit(this._createChangeEvent(index));
};
/**
* @param {?} index
* @return {?}
*/
MatTabGroup.prototype._createChangeEvent = /**
* @param {?} index
* @return {?}
*/
function (index) {
var /** @type {?} */ event = new MatTabChangeEvent;
event.index = index;
if (this._tabs && this._tabs.length) {
event.tab = this._tabs.toArray()[index];
}
return event;
};
/**
* Subscribes to changes in the tab labels. This is needed, because the \@Input for the label is
* on the MatTab component, whereas the data binding is inside the MatTabGroup. In order for the
* binding to be updated, we need to subscribe to changes in it and trigger change detection
* manually.
* @return {?}
*/
MatTabGroup.prototype._subscribeToTabLabels = /**
* Subscribes to changes in the tab labels. This is needed, because the \@Input for the label is
* on the MatTab component, whereas the data binding is inside the MatTabGroup. In order for the
* binding to be updated, we need to subscribe to changes in it and trigger change detection
* manually.
* @return {?}
*/
function () {
var _this = this;
if (this._tabLabelSubscription) {
this._tabLabelSubscription.unsubscribe();
}
this._tabLabelSubscription = merge.apply(void 0, this._tabs.map(function (tab) { return tab._disableChange; }).concat(this._tabs.map(function (tab) { return tab._labelChange; }))).subscribe(function () {
_this._changeDetectorRef.markForCheck();
});
};
/** Returns a unique id for each tab label element */
/**
* Returns a unique id for each tab label element
* @param {?} i
* @return {?}
*/
MatTabGroup.prototype._getTabLabelId = /**
* Returns a unique id for each tab label element
* @param {?} i
* @return {?}
*/
function (i) {
return "mat-tab-label-" + this._groupId + "-" + i;
};
/** Returns a unique id for each tab content element */
/**
* Returns a unique id for each tab content element
* @param {?} i
* @return {?}
*/
MatTabGroup.prototype._getTabContentId = /**
* Returns a unique id for each tab content element
* @param {?} i
* @return {?}
*/
function (i) {
return "mat-tab-content-" + this._groupId + "-" + i;
};
/**
* Sets the height of the body wrapper to the height of the activating tab if dynamic
* height property is true.
*/
/**
* Sets the height of the body wrapper to the height of the activating tab if dynamic
* height property is true.
* @param {?} tabHeight
* @return {?}
*/
MatTabGroup.prototype._setTabBodyWrapperHeight = /**
* Sets the height of the body wrapper to the height of the activating tab if dynamic
* height property is true.
* @param {?} tabHeight
* @return {?}
*/
function (tabHeight) {
if (!this._dynamicHeight || !this._tabBodyWrapperHeight) {
return;
}
var /** @type {?} */ wrapper = this._tabBodyWrapper.nativeElement;
wrapper.style.height = this._tabBodyWrapperHeight + 'px';
// This conditional forces the browser to paint the height so that
// the animation to the new height can have an origin.
if (this._tabBodyWrapper.nativeElement.offsetHeight) {
wrapper.style.height = tabHeight + 'px';
}
};
/** Removes the height of the tab body wrapper. */
/**
* Removes the height of the tab body wrapper.
* @return {?}
*/
MatTabGroup.prototype._removeTabBodyWrapperHeight = /**
* Removes the height of the tab body wrapper.
* @return {?}
*/
function () {
this._tabBodyWrapperHeight = this._tabBodyWrapper.nativeElement.clientHeight;
this._tabBodyWrapper.nativeElement.style.height = '';
this.animationDone.emit();
};
/** Handle click events, setting new selected index if appropriate. */
/**
* Handle click events, setting new selected index if appropriate.
* @param {?} tab
* @param {?} tabHeader
* @param {?} idx
* @return {?}
*/
MatTabGroup.prototype._handleClick = /**
* Handle click events, setting new selected index if appropriate.
* @param {?} tab
* @param {?} tabHeader
* @param {?} idx
* @return {?}
*/
function (tab, tabHeader, idx) {
if (!tab.disabled) {
this.selectedIndex = tabHeader.focusIndex = idx;
}
};
/** Retrieves the tabindex for the tab. */
/**
* Retrieves the tabindex for the tab.
* @param {?} tab
* @param {?} idx
* @return {?}
*/
MatTabGroup.prototype._getTabIndex = /**
* Retrieves the tabindex for the tab.
* @param {?} tab
* @param {?} idx
* @return {?}
*/
function (tab, idx) {
if (tab.disabled) {
return null;
}
return this.selectedIndex === idx ? 0 : -1;
};
MatTabGroup.decorators = [
{ type: Component, args: [{selector: 'mat-tab-group',
exportAs: 'matTabGroup',
template: "<mat-tab-header #tabHeader [selectedIndex]=\"selectedIndex\" [disableRipple]=\"disableRipple\" (indexFocused)=\"_focusChanged($event)\" (selectFocusedIndex)=\"selectedIndex = $event\"><div class=\"mat-tab-label\" role=\"tab\" matTabLabelWrapper mat-ripple *ngFor=\"let tab of _tabs; let i = index\" [id]=\"_getTabLabelId(i)\" [attr.tabIndex]=\"_getTabIndex(tab, i)\" [attr.aria-controls]=\"_getTabContentId(i)\" [attr.aria-selected]=\"selectedIndex == i\" [class.mat-tab-label-active]=\"selectedIndex == i\" [disabled]=\"tab.disabled\" [matRippleDisabled]=\"tab.disabled || disableRipple\" (click)=\"_handleClick(tab, tabHeader, i)\"><div class=\"mat-tab-label-content\"><ng-template [ngIf]=\"tab.templateLabel\"><ng-template [cdkPortalOutlet]=\"tab.templateLabel\"></ng-template></ng-template><ng-template [ngIf]=\"!tab.templateLabel\">{{tab.textLabel}}</ng-template></div></div></mat-tab-header><div class=\"mat-tab-body-wrapper\" #tabBodyWrapper><mat-tab-body role=\"tabpanel\" *ngFor=\"let tab of _tabs; let i = index\" [id]=\"_getTabContentId(i)\" [attr.aria-labelledby]=\"_getTabLabelId(i)\" [class.mat-tab-body-active]=\"selectedIndex == i\" [content]=\"tab.content\" [position]=\"tab.position\" [origin]=\"tab.origin\" (_onCentered)=\"_removeTabBodyWrapperHeight()\" (_onCentering)=\"_setTabBodyWrapperHeight($event)\"></mat-tab-body></div>",
styles: [".mat-tab-group{display:flex;flex-direction:column}.mat-tab-group.mat-tab-group-inverted-header{flex-direction:column-reverse}.mat-tab-label{height:48px;padding:0 24px;cursor:pointer;box-sizing:border-box;opacity:.6;min-width:160px;text-align:center;display:inline-flex;justify-content:center;align-items:center;white-space:nowrap;position:relative}.mat-tab-label:focus{outline:0}.mat-tab-label:focus:not(.mat-tab-disabled){opacity:1}.mat-tab-label.mat-tab-disabled{cursor:default}.mat-tab-label.mat-tab-label-content{display:inline-flex;justify-content:center;align-items:center;white-space:nowrap}@media (max-width:599px){.mat-tab-label{padding:0 12px}}@media (max-width:959px){.mat-tab-label{padding:0 12px}}.mat-tab-group[mat-stretch-tabs] .mat-tab-label{flex-basis:0;flex-grow:1}.mat-tab-body-wrapper{position:relative;overflow:hidden;display:flex;transition:height .5s cubic-bezier(.35,0,.25,1)}.mat-tab-body{top:0;left:0;right:0;bottom:0;position:absolute;display:block;overflow:hidden}.mat-tab-body.mat-tab-body-active{position:relative;overflow-x:hidden;overflow-y:auto;z-index:1;flex-grow:1}.mat-tab-group.mat-tab-group-dynamic-height .mat-tab-body.mat-tab-body-active{overflow-y:hidden}"],
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush,
inputs: ['color', 'disableRipple'],
host: {
'class': 'mat-tab-group',
'[class.mat-tab-group-dynamic-height]': 'dynamicHeight',
'[class.mat-tab-group-inverted-header]': 'headerPosition === "below"',
},
},] },
];
/** @nocollapse */
MatTabGroup.ctorParameters = function () { return [
{ type: ElementRef, },
{ type: ChangeDetectorRef, },
]; };
MatTabGroup.propDecorators = {
"_tabs": [{ type: ContentChildren, args: [MatTab,] },],
"_tabBodyWrapper": [{ type: ViewChild, args: ['tabBodyWrapper',] },],
"dynamicHeight": [{ type: Input },],
"_dynamicHeightDeprecated": [{ type: Input, args: ['mat-dynamic-height',] },],
"selectedIndex": [{ type: Input },],
"headerPosition": [{ type: Input },],
"backgroundColor": [{ type: Input },],
"selectedIndexChange": [{ type: Output },],
"focusChange": [{ type: Output },],
"animationDone": [{ type: Output },],
"selectedTabChange": [{ type: Output },],
"selectChange": [{ type: Output },],
};
return MatTabGroup;
}(_MatTabGroupMixinBase));
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
/**
* \@docs-private
*/
var MatTabLabelWrapperBase = /** @class */ (function () {
function MatTabLabelWrapperBase() {
}
return MatTabLabelWrapperBase;
}());
var _MatTabLabelWrapperMixinBase = mixinDisabled(MatTabLabelWrapperBase);
/**
* Used in the `mat-tab-group` view to display tab labels.
* \@docs-private
*/
var MatTabLabelWrapper = /** @class */ (function (_super) {
__extends(MatTabLabelWrapper, _super);
function MatTabLabelWrapper(elementRef) {
var _this = _super.call(this) || this;
_this.elementRef = elementRef;
return _this;
}
/** Sets focus on the wrapper element */
/**
* Sets focus on the wrapper element
* @return {?}
*/
MatTabLabelWrapper.prototype.focus = /**
* Sets focus on the wrapper element
* @return {?}
*/
function () {
this.elementRef.nativeElement.focus();
};
/**
* @return {?}
*/
MatTabLabelWrapper.prototype.getOffsetLeft = /**
* @return {?}
*/
function () {
return this.elementRef.nativeElement.offsetLeft;
};
/**
* @return {?}
*/
MatTabLabelWrapper.prototype.getOffsetWidth = /**
* @return {?}
*/
function () {
return this.elementRef.nativeElement.offsetWidth;
};
MatTabLabelWrapper.decorators = [
{ type: Directive, args: [{
selector: '[matTabLabelWrapper]',
inputs: ['disabled'],
host: {
'[class.mat-tab-disabled]': 'disabled'
}
},] },
];
/** @nocollapse */
MatTabLabelWrapper.ctorParameters = function () { return [
{ type: ElementRef, },
]; };
return MatTabLabelWrapper;
}(_MatTabLabelWrapperMixinBase));
/**
* @fileoverview added by tsickle
* @suppress {checkTypes} checked by tsc
*/
/**
* The distance in pixels that will be overshot when scrolling a tab label into view. This helps
* provide a small affordance to the label next to it.
*/
var EXAGGERATED_OVERSCROLL = 60;
/**
* \@docs-private
*/
var MatTabHeaderBase = /** @class */ (function () {
function MatTabHeaderBase() {
}
return MatTabHeaderBase;
}());
var _MatTabHeaderMixinBase = mixinDisableRipple(MatTabHeaderBase);
/**
* The header of the tab group which displays a list of all the tabs in the tab group. Includes
* an ink bar that follows the currently selected tab. When the tabs list's width exceeds the
* width of the header container, then arrows will be displayed to allow the user to scroll
* left and right across the header.
* \@docs-private
*/
var MatTabHeader = /** @class */ (function (_super) {
__extends(MatTabHeader, _super);
function MatTabHeader(_elementRef, _changeDetectorRef, _viewportRuler, _dir) {
var _this = _super.call(this) || this;
_this._elementRef = _elementRef;
_this._changeDetectorRef = _changeDetectorRef;
_this._viewportRuler = _viewportRuler;
_this._dir = _dir;
/**
* The tab index that is focused.
*/
_this._focusIndex = 0;
/**
* The distance in pixels that the tab labels should be translated to the left.
*/
_this._scrollDistance = 0;
/**
* Whether the header should scroll to the selected index after the view has been checked.
*/
_this._selectedIndexChanged = false;
/**
* Combines listeners that will re-align the ink bar whenever they're invoked.
*/
_this._realignInkBar = Subscription.EMPTY;
/**
* Whether the controls for pagination should be displayed
*/
_this._showPaginationControls = false;
/**
* Whether the tab list can be scrolled more towards the end of the tab label list.
*/
_this._disableScrollAfter = true;
/**
* Whether the tab list can be scrolled more towards the beginning of the tab label list.
*/
_this._disableScrollBefore = true;
_this._selectedIndex = 0;
/**
* Event emitted when the option is selected.
*/
_this.selectFocusedIndex = new EventEmitter();
/**
* Event emitted when a label is focused.
*/
_this.indexFocused = new EventEmitter();
return _this;
}
Object.defineProperty(MatTabHeader.prototype, "selectedIndex", {
get: /**
* The index of the active tab.
* @return {?}
*/
function () { return this._selectedIndex; },
set: /**
* @param {?} value
* @return {?}
*/
function (value) {
value = coerceNumberProperty(value);
this._selectedIndexChanged = this._selectedIndex != value;
this._selectedIndex = value;
this._focusIndex = value;
},
enumerable: true,
configurable: true
});
/**
* @return {?}
*/
MatTabHeader.prototype.ngAfterContentChecked = /**
* @return {?}
*/
function () {
// If the number of tab labels have changed, check if scrolling should be enabled
if (this._tabLabelCount != this._labelWrappers.length) {
this._updatePagination();
this._tabLabelCount = this._labelWrappers.length;
this._changeDetectorRef.markForCheck();
}
// If the selected index has changed, scroll to the label and check if the scrolling controls
// should be disabled.
if (this._selectedIndexChanged) {
this._scrollToLabel(this._selectedIndex);
this._checkScrollingControls();
this._alignInkBarToSelectedTab();
this._selectedIndexChanged = false;
this._changeDetectorRef.markForCheck();
}
// If the scroll distance has been changed (tab selected, focused, scroll controls activated),
// then translate the header to reflect this.
if (this._scrollDistanceChanged) {
this._updateTabScrollPosition();
this._scrollDistanceChanged = false;
this._changeDetectorRef.markForCheck();
}
};
/**
* @param {?} event
* @return {?}
*/
MatTabHeader.prototype._handleKeydown = /**
* @param {?} event
* @return {?}
*/
function (event) {
switch (event.keyCode) {
case RIGHT_ARROW:
this._focusNextTab();
break;
case LEFT_ARROW:
this._focusPreviousTab();
break;
case HOME:
this._focusFirstTab();
event.preventDefault();
break;
case END:
this._focusLastTab();
event.preventDefault();
break;
case ENTER:
case SPACE:
this.selectFocusedIndex.emit(this.focusIndex);
event.preventDefault();
break;
}
};
/**
* Aligns the ink bar to the selected tab on load.
*/
/**
* Aligns the ink bar to the selected tab on load.
* @return {?}
*/
MatTabHeader.prototype.ngAfterContentInit = /**
* Aligns the ink bar to the selected tab on load.
* @return {?}
*/
function () {
var _this = this;
var /** @type {?} */ dirChange = this._dir ? this._dir.change : of(null);
var /** @type {?} */ resize = this._viewportRuler.change(150);
var /** @type {?} */ realign = function () {
_this._updatePagination();
_this._alignInkBarToSelectedTab();
};
// Defer the first call in order to allow for slower browsers to lay out the elements.
// This helps in cases where the user lands directly on a page with paginated tabs.
typeof requestAnimationFrame !== 'undefined' ? requestAnimationFrame(realign) : realign();
this._realignInkBar = merge(dirChange, resize).subscribe(realign);
};
/**
* @return {?}
*/
MatTabHeader.prototype.ngOnDestroy = /**
* @return {?}
*/
function () {
this._realignInkBar.unsubscribe();
};
/**
* Callback for when the MutationObserver detects that the content has changed.
*/
/**
* Callback for when the MutationObserver detects that the content has changed.
* @return {?}
*/
MatTabHeader.prototype._onContentChanges = /**
* Callback for when the MutationObserver detects that the content has changed.
* @return {?}
*/
function () {
this._updatePagination();
this._alignInkBarToSelectedTab();
this._changeDetectorRef.markForCheck();
};
/**
* Updating the view whether pagination should be enabled or not
*/
/**
* Updating the view whether pagination should be enabled or not
* @return {?}
*/
MatTabHeader.prototype._updatePagination = /**
* Updating the view whether pagination should be enabled or not
* @return {?}
*/
function () {
this._checkPaginationEnabled();
this._checkScrollingControls();
this._updateTabScrollPosition();
};
Object.defineProperty(MatTabHeader.prototype, "focusIndex", {
/** Tracks which element has focus; used for keyboard navigation */
get: /**
* Tracks which element has focus; used for keyboard navigation
* @return {?}
*/
function () { return this._focusIndex; },
/** When the focus index is set, we must manually send focus to the correct label */
set: /**
* When the focus index is set, we must manually send focus to the correct label
* @param {?} value
* @return {?}
*/
function (value) {
if (!this._isValidIndex(value) || this._focusIndex == value) {
return;
}
this._focusIndex = value;
this.indexFocused.emit(value);
this._setTabFocus(value);
},
enumerable: true,
configurable: true
});
/**
* Determines if an index is valid. If the tabs are not ready yet, we assume that the user is
* providing a valid index and return true.
*/
/**
* Determines if an index is valid. If the tabs are not ready yet, we assume that the user is
* providing a valid index and return true.
* @param {?} index
* @return {?}
*/
MatTabHeader.prototype._isValidIndex = /**
* Determines if an index is valid. If the tabs are not ready yet, we assume that the user is
* providing a valid index and return true.
* @param {?} index
* @return {?}
*/
function (index) {
if (!this._labelWrappers) {
return true;
}
var /** @type {?} */ tab = this._labelWrappers ? this._labelWrappers.toArray()[index] : null;
return !!tab && !tab.disabled;
};
/**
* Sets focus on the HTML element for the label wrapper and scrolls it into the view if
* scrolling is enabled.
*/
/**
* Sets focus on the HTML element for the label wrapper and scrolls it into the view if
* scrolling is enabled.
* @param {?} tabIndex
* @return {?}
*/
MatTabHeader.prototype._setTabFocus = /**
* Sets focus on the HTML element for the label wrapper and scrolls it into the view if
* scrolling is enabled.
* @param {?} tabIndex
* @return {?}
*/
function (tabIndex) {
if (this._showPaginationControls) {
this._scrollToLabel(tabIndex);
}
if (this._labelWrappers && this._labelWrappers.length) {
this._labelWrappers.toArray()[tabIndex].focus();
// Do not let the browser manage scrolling to focus the element, this will be handled
// by using translation. In LTR, the scroll left should be 0. In RTL, the scroll width
// should be the full width minus the offset width.
var /** @type {?} */ containerEl = this._tabListContainer.nativeElement;
var /** @type {?} */ dir = this._getLayoutDirection();
if (dir == 'ltr') {
containerEl.scrollLeft = 0;
}
else {
containerEl.scrollLeft = containerEl.scrollWidth - containerEl.offsetWidth;
}
}
};
/**
* Moves the focus towards the beginning or the end of the list depending on the offset provided.
* Valid offsets are 1 and -1.
*/
/**
* Moves the focus towards the beginning or the end of the list depending on the offset provided.
* Valid offsets are 1 and -1.
* @param {?} offset
* @return {?}
*/
MatTabHeader.prototype._moveFocus = /**
* Moves the