| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376 |
- /**
- * @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 { __extends } from 'tslib';
- import { ChangeDetectionStrategy, Component, ContentChild, ContentChildren, Directive, ElementRef, Optional, ViewEncapsulation, ChangeDetectorRef, Attribute, EventEmitter, forwardRef, Inject, Input, Output, ViewChild, NgModule } from '@angular/core';
- import { MatLine, setLines, mixinDisableRipple, MatCommonModule, MatLineModule, MatPseudoCheckboxModule, MatRippleModule } from '@angular/material/core';
- import { Subject } from 'rxjs';
- import { takeUntil } from 'rxjs/operators';
- import { FocusKeyManager } from '@angular/cdk/a11y';
- import { coerceBooleanProperty } from '@angular/cdk/coercion';
- import { SelectionModel } from '@angular/cdk/collections';
- import { SPACE, ENTER, HOME, END, UP_ARROW, DOWN_ARROW, A, hasModifierKey } from '@angular/cdk/keycodes';
- import { NG_VALUE_ACCESSOR } from '@angular/forms';
- import { CommonModule } from '@angular/common';
- import { MatDividerModule } from '@angular/material/divider';
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- // Boilerplate for applying mixins to MatList.
- /**
- * \@docs-private
- */
- var
- // Boilerplate for applying mixins to MatList.
- /**
- * \@docs-private
- */
- MatListBase = /** @class */ (function () {
- function MatListBase() {
- }
- return MatListBase;
- }());
- /** @type {?} */
- var _MatListMixinBase = mixinDisableRipple(MatListBase);
- // Boilerplate for applying mixins to MatListItem.
- /**
- * \@docs-private
- */
- var
- // Boilerplate for applying mixins to MatListItem.
- /**
- * \@docs-private
- */
- MatListItemBase = /** @class */ (function () {
- function MatListItemBase() {
- }
- return MatListItemBase;
- }());
- /** @type {?} */
- var _MatListItemMixinBase = mixinDisableRipple(MatListItemBase);
- var MatNavList = /** @class */ (function (_super) {
- __extends(MatNavList, _super);
- function MatNavList() {
- var _this = _super !== null && _super.apply(this, arguments) || this;
- /**
- * Emits when the state of the list changes.
- */
- _this._stateChanges = new Subject();
- return _this;
- }
- /**
- * @return {?}
- */
- MatNavList.prototype.ngOnChanges = /**
- * @return {?}
- */
- function () {
- this._stateChanges.next();
- };
- /**
- * @return {?}
- */
- MatNavList.prototype.ngOnDestroy = /**
- * @return {?}
- */
- function () {
- this._stateChanges.complete();
- };
- MatNavList.decorators = [
- { type: Component, args: [{selector: 'mat-nav-list',
- exportAs: 'matNavList',
- host: {
- 'role': 'navigation',
- 'class': 'mat-nav-list mat-list-base'
- },
- template: "<ng-content></ng-content>",
- styles: [".mat-subheader{display:flex;box-sizing:border-box;padding:16px;align-items:center}.mat-list-base .mat-subheader{margin:0}.mat-list-base{padding-top:8px;display:block;-webkit-tap-highlight-color:transparent}.mat-list-base .mat-subheader{height:48px;line-height:16px}.mat-list-base .mat-subheader:first-child{margin-top:-8px}.mat-list-base .mat-list-item,.mat-list-base .mat-list-option{display:block;height:48px;-webkit-tap-highlight-color:transparent;width:100%;padding:0}.mat-list-base .mat-list-item .mat-list-item-content,.mat-list-base .mat-list-option .mat-list-item-content{display:flex;flex-direction:row;align-items:center;box-sizing:border-box;padding:0 16px;position:relative;height:inherit}.mat-list-base .mat-list-item .mat-list-item-content-reverse,.mat-list-base .mat-list-option .mat-list-item-content-reverse{display:flex;align-items:center;padding:0 16px;flex-direction:row-reverse;justify-content:space-around}.mat-list-base .mat-list-item .mat-list-item-ripple,.mat-list-base .mat-list-option .mat-list-item-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-list-base .mat-list-item.mat-list-item-with-avatar,.mat-list-base .mat-list-option.mat-list-item-with-avatar{height:56px}.mat-list-base .mat-list-item.mat-2-line,.mat-list-base .mat-list-option.mat-2-line{height:72px}.mat-list-base .mat-list-item.mat-3-line,.mat-list-base .mat-list-option.mat-3-line{height:88px}.mat-list-base .mat-list-item.mat-multi-line,.mat-list-base .mat-list-option.mat-multi-line{height:auto}.mat-list-base .mat-list-item.mat-multi-line .mat-list-item-content,.mat-list-base .mat-list-option.mat-multi-line .mat-list-item-content{padding-top:16px;padding-bottom:16px}.mat-list-base .mat-list-item .mat-list-text,.mat-list-base .mat-list-option .mat-list-text{display:flex;flex-direction:column;width:100%;box-sizing:border-box;overflow:hidden;padding:0}.mat-list-base .mat-list-item .mat-list-text>*,.mat-list-base .mat-list-option .mat-list-text>*{margin:0;padding:0;font-weight:400;font-size:inherit}.mat-list-base .mat-list-item .mat-list-text:empty,.mat-list-base .mat-list-option .mat-list-text:empty{display:none}.mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,.mat-list-base .mat-list-item.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base .mat-list-option.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,.mat-list-base .mat-list-option.mat-list-option .mat-list-item-content .mat-list-text{padding-right:0;padding-left:16px}[dir=rtl] .mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base .mat-list-item.mat-list-option .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base .mat-list-option.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base .mat-list-option.mat-list-option .mat-list-item-content .mat-list-text{padding-right:16px;padding-left:0}.mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,.mat-list-base .mat-list-item.mat-list-option .mat-list-item-content-reverse .mat-list-text,.mat-list-base .mat-list-option.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,.mat-list-base .mat-list-option.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-left:0;padding-right:16px}[dir=rtl] .mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base .mat-list-item.mat-list-option .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base .mat-list-option.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base .mat-list-option.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-right:0;padding-left:16px}.mat-list-base .mat-list-item.mat-list-item-with-avatar.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base .mat-list-item.mat-list-item-with-avatar.mat-list-option .mat-list-item-content-reverse .mat-list-text,.mat-list-base .mat-list-option.mat-list-item-with-avatar.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base .mat-list-option.mat-list-item-with-avatar.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-right:16px;padding-left:16px}.mat-list-base .mat-list-item .mat-list-avatar,.mat-list-base .mat-list-option .mat-list-avatar{flex-shrink:0;width:40px;height:40px;border-radius:50%;object-fit:cover}.mat-list-base .mat-list-item .mat-list-avatar~.mat-divider-inset,.mat-list-base .mat-list-option .mat-list-avatar~.mat-divider-inset{margin-left:72px;width:calc(100% - 72px)}[dir=rtl] .mat-list-base .mat-list-item .mat-list-avatar~.mat-divider-inset,[dir=rtl] .mat-list-base .mat-list-option .mat-list-avatar~.mat-divider-inset{margin-left:auto;margin-right:72px}.mat-list-base .mat-list-item .mat-list-icon,.mat-list-base .mat-list-option .mat-list-icon{flex-shrink:0;width:24px;height:24px;font-size:24px;box-sizing:content-box;border-radius:50%;padding:4px}.mat-list-base .mat-list-item .mat-list-icon~.mat-divider-inset,.mat-list-base .mat-list-option .mat-list-icon~.mat-divider-inset{margin-left:64px;width:calc(100% - 64px)}[dir=rtl] .mat-list-base .mat-list-item .mat-list-icon~.mat-divider-inset,[dir=rtl] .mat-list-base .mat-list-option .mat-list-icon~.mat-divider-inset{margin-left:auto;margin-right:64px}.mat-list-base .mat-list-item .mat-divider,.mat-list-base .mat-list-option .mat-divider{position:absolute;bottom:0;left:0;width:100%;margin:0}[dir=rtl] .mat-list-base .mat-list-item .mat-divider,[dir=rtl] .mat-list-base .mat-list-option .mat-divider{margin-left:auto;margin-right:0}.mat-list-base .mat-list-item .mat-divider.mat-divider-inset,.mat-list-base .mat-list-option .mat-divider.mat-divider-inset{position:absolute}.mat-list-base[dense]{padding-top:4px;display:block}.mat-list-base[dense] .mat-subheader{height:40px;line-height:8px}.mat-list-base[dense] .mat-subheader:first-child{margin-top:-4px}.mat-list-base[dense] .mat-list-item,.mat-list-base[dense] .mat-list-option{display:block;height:40px;-webkit-tap-highlight-color:transparent;width:100%;padding:0}.mat-list-base[dense] .mat-list-item .mat-list-item-content,.mat-list-base[dense] .mat-list-option .mat-list-item-content{display:flex;flex-direction:row;align-items:center;box-sizing:border-box;padding:0 16px;position:relative;height:inherit}.mat-list-base[dense] .mat-list-item .mat-list-item-content-reverse,.mat-list-base[dense] .mat-list-option .mat-list-item-content-reverse{display:flex;align-items:center;padding:0 16px;flex-direction:row-reverse;justify-content:space-around}.mat-list-base[dense] .mat-list-item .mat-list-item-ripple,.mat-list-base[dense] .mat-list-option .mat-list-item-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar{height:48px}.mat-list-base[dense] .mat-list-item.mat-2-line,.mat-list-base[dense] .mat-list-option.mat-2-line{height:60px}.mat-list-base[dense] .mat-list-item.mat-3-line,.mat-list-base[dense] .mat-list-option.mat-3-line{height:76px}.mat-list-base[dense] .mat-list-item.mat-multi-line,.mat-list-base[dense] .mat-list-option.mat-multi-line{height:auto}.mat-list-base[dense] .mat-list-item.mat-multi-line .mat-list-item-content,.mat-list-base[dense] .mat-list-option.mat-multi-line .mat-list-item-content{padding-top:16px;padding-bottom:16px}.mat-list-base[dense] .mat-list-item .mat-list-text,.mat-list-base[dense] .mat-list-option .mat-list-text{display:flex;flex-direction:column;width:100%;box-sizing:border-box;overflow:hidden;padding:0}.mat-list-base[dense] .mat-list-item .mat-list-text>*,.mat-list-base[dense] .mat-list-option .mat-list-text>*{margin:0;padding:0;font-weight:400;font-size:inherit}.mat-list-base[dense] .mat-list-item .mat-list-text:empty,.mat-list-base[dense] .mat-list-option .mat-list-text:empty{display:none}.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,.mat-list-base[dense] .mat-list-item.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-option .mat-list-item-content .mat-list-text{padding-right:0;padding-left:16px}[dir=rtl] .mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-item.mat-list-option .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-option.mat-list-option .mat-list-item-content .mat-list-text{padding-right:16px;padding-left:0}.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,.mat-list-base[dense] .mat-list-item.mat-list-option .mat-list-item-content-reverse .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-left:0;padding-right:16px}[dir=rtl] .mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-item.mat-list-option .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-option.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-right:0;padding-left:16px}.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar.mat-list-option .mat-list-item-content-reverse .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-right:16px;padding-left:16px}.mat-list-base[dense] .mat-list-item .mat-list-avatar,.mat-list-base[dense] .mat-list-option .mat-list-avatar{flex-shrink:0;width:36px;height:36px;border-radius:50%;object-fit:cover}.mat-list-base[dense] .mat-list-item .mat-list-avatar~.mat-divider-inset,.mat-list-base[dense] .mat-list-option .mat-list-avatar~.mat-divider-inset{margin-left:68px;width:calc(100% - 68px)}[dir=rtl] .mat-list-base[dense] .mat-list-item .mat-list-avatar~.mat-divider-inset,[dir=rtl] .mat-list-base[dense] .mat-list-option .mat-list-avatar~.mat-divider-inset{margin-left:auto;margin-right:68px}.mat-list-base[dense] .mat-list-item .mat-list-icon,.mat-list-base[dense] .mat-list-option .mat-list-icon{flex-shrink:0;width:20px;height:20px;font-size:20px;box-sizing:content-box;border-radius:50%;padding:4px}.mat-list-base[dense] .mat-list-item .mat-list-icon~.mat-divider-inset,.mat-list-base[dense] .mat-list-option .mat-list-icon~.mat-divider-inset{margin-left:60px;width:calc(100% - 60px)}[dir=rtl] .mat-list-base[dense] .mat-list-item .mat-list-icon~.mat-divider-inset,[dir=rtl] .mat-list-base[dense] .mat-list-option .mat-list-icon~.mat-divider-inset{margin-left:auto;margin-right:60px}.mat-list-base[dense] .mat-list-item .mat-divider,.mat-list-base[dense] .mat-list-option .mat-divider{position:absolute;bottom:0;left:0;width:100%;margin:0}[dir=rtl] .mat-list-base[dense] .mat-list-item .mat-divider,[dir=rtl] .mat-list-base[dense] .mat-list-option .mat-divider{margin-left:auto;margin-right:0}.mat-list-base[dense] .mat-list-item .mat-divider.mat-divider-inset,.mat-list-base[dense] .mat-list-option .mat-divider.mat-divider-inset{position:absolute}.mat-nav-list a{text-decoration:none;color:inherit}.mat-nav-list .mat-list-item{cursor:pointer;outline:0}mat-action-list button{background:0 0;color:inherit;border:none;font:inherit;outline:inherit;-webkit-tap-highlight-color:transparent;text-align:left}[dir=rtl] mat-action-list button{text-align:right}mat-action-list button::-moz-focus-inner{border:0}mat-action-list .mat-list-item{cursor:pointer;outline:inherit}.mat-list-option:not(.mat-list-item-disabled){cursor:pointer;outline:0}@media (-ms-high-contrast:active){.mat-selection-list:focus{outline-style:dotted}.mat-list-option:focus,.mat-list-option:hover,.mat-nav-list .mat-list-item:focus,.mat-nav-list .mat-list-item:hover,mat-action-list .mat-list-item:focus,mat-action-list .mat-list-item:hover{outline:dotted 1px}}@media (hover:none){.mat-action-list .mat-list-item:not(.mat-list-item-disabled):hover,.mat-list-option:not(.mat-list-item-disabled):hover,.mat-nav-list .mat-list-item:not(.mat-list-item-disabled):hover{background:0 0}}"],
- inputs: ['disableRipple'],
- encapsulation: ViewEncapsulation.None,
- changeDetection: ChangeDetectionStrategy.OnPush,
- },] },
- ];
- return MatNavList;
- }(_MatListMixinBase));
- var MatList = /** @class */ (function (_super) {
- __extends(MatList, _super);
- function MatList(_elementRef) {
- var _this = _super.call(this) || this;
- _this._elementRef = _elementRef;
- /**
- * Emits when the state of the list changes.
- */
- _this._stateChanges = new Subject();
- if (_this._getListType() === 'action-list') {
- _elementRef.nativeElement.classList.add('mat-action-list');
- }
- return _this;
- }
- /**
- * @return {?}
- */
- MatList.prototype._getListType = /**
- * @return {?}
- */
- function () {
- /** @type {?} */
- var nodeName = this._elementRef.nativeElement.nodeName.toLowerCase();
- if (nodeName === 'mat-list') {
- return 'list';
- }
- if (nodeName === 'mat-action-list') {
- return 'action-list';
- }
- return null;
- };
- /**
- * @return {?}
- */
- MatList.prototype.ngOnChanges = /**
- * @return {?}
- */
- function () {
- this._stateChanges.next();
- };
- /**
- * @return {?}
- */
- MatList.prototype.ngOnDestroy = /**
- * @return {?}
- */
- function () {
- this._stateChanges.complete();
- };
- MatList.decorators = [
- { type: Component, args: [{selector: 'mat-list, mat-action-list',
- exportAs: 'matList',
- template: "<ng-content></ng-content>",
- host: {
- 'class': 'mat-list mat-list-base'
- },
- styles: [".mat-subheader{display:flex;box-sizing:border-box;padding:16px;align-items:center}.mat-list-base .mat-subheader{margin:0}.mat-list-base{padding-top:8px;display:block;-webkit-tap-highlight-color:transparent}.mat-list-base .mat-subheader{height:48px;line-height:16px}.mat-list-base .mat-subheader:first-child{margin-top:-8px}.mat-list-base .mat-list-item,.mat-list-base .mat-list-option{display:block;height:48px;-webkit-tap-highlight-color:transparent;width:100%;padding:0}.mat-list-base .mat-list-item .mat-list-item-content,.mat-list-base .mat-list-option .mat-list-item-content{display:flex;flex-direction:row;align-items:center;box-sizing:border-box;padding:0 16px;position:relative;height:inherit}.mat-list-base .mat-list-item .mat-list-item-content-reverse,.mat-list-base .mat-list-option .mat-list-item-content-reverse{display:flex;align-items:center;padding:0 16px;flex-direction:row-reverse;justify-content:space-around}.mat-list-base .mat-list-item .mat-list-item-ripple,.mat-list-base .mat-list-option .mat-list-item-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-list-base .mat-list-item.mat-list-item-with-avatar,.mat-list-base .mat-list-option.mat-list-item-with-avatar{height:56px}.mat-list-base .mat-list-item.mat-2-line,.mat-list-base .mat-list-option.mat-2-line{height:72px}.mat-list-base .mat-list-item.mat-3-line,.mat-list-base .mat-list-option.mat-3-line{height:88px}.mat-list-base .mat-list-item.mat-multi-line,.mat-list-base .mat-list-option.mat-multi-line{height:auto}.mat-list-base .mat-list-item.mat-multi-line .mat-list-item-content,.mat-list-base .mat-list-option.mat-multi-line .mat-list-item-content{padding-top:16px;padding-bottom:16px}.mat-list-base .mat-list-item .mat-list-text,.mat-list-base .mat-list-option .mat-list-text{display:flex;flex-direction:column;width:100%;box-sizing:border-box;overflow:hidden;padding:0}.mat-list-base .mat-list-item .mat-list-text>*,.mat-list-base .mat-list-option .mat-list-text>*{margin:0;padding:0;font-weight:400;font-size:inherit}.mat-list-base .mat-list-item .mat-list-text:empty,.mat-list-base .mat-list-option .mat-list-text:empty{display:none}.mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,.mat-list-base .mat-list-item.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base .mat-list-option.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,.mat-list-base .mat-list-option.mat-list-option .mat-list-item-content .mat-list-text{padding-right:0;padding-left:16px}[dir=rtl] .mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base .mat-list-item.mat-list-option .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base .mat-list-option.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base .mat-list-option.mat-list-option .mat-list-item-content .mat-list-text{padding-right:16px;padding-left:0}.mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,.mat-list-base .mat-list-item.mat-list-option .mat-list-item-content-reverse .mat-list-text,.mat-list-base .mat-list-option.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,.mat-list-base .mat-list-option.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-left:0;padding-right:16px}[dir=rtl] .mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base .mat-list-item.mat-list-option .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base .mat-list-option.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base .mat-list-option.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-right:0;padding-left:16px}.mat-list-base .mat-list-item.mat-list-item-with-avatar.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base .mat-list-item.mat-list-item-with-avatar.mat-list-option .mat-list-item-content-reverse .mat-list-text,.mat-list-base .mat-list-option.mat-list-item-with-avatar.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base .mat-list-option.mat-list-item-with-avatar.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-right:16px;padding-left:16px}.mat-list-base .mat-list-item .mat-list-avatar,.mat-list-base .mat-list-option .mat-list-avatar{flex-shrink:0;width:40px;height:40px;border-radius:50%;object-fit:cover}.mat-list-base .mat-list-item .mat-list-avatar~.mat-divider-inset,.mat-list-base .mat-list-option .mat-list-avatar~.mat-divider-inset{margin-left:72px;width:calc(100% - 72px)}[dir=rtl] .mat-list-base .mat-list-item .mat-list-avatar~.mat-divider-inset,[dir=rtl] .mat-list-base .mat-list-option .mat-list-avatar~.mat-divider-inset{margin-left:auto;margin-right:72px}.mat-list-base .mat-list-item .mat-list-icon,.mat-list-base .mat-list-option .mat-list-icon{flex-shrink:0;width:24px;height:24px;font-size:24px;box-sizing:content-box;border-radius:50%;padding:4px}.mat-list-base .mat-list-item .mat-list-icon~.mat-divider-inset,.mat-list-base .mat-list-option .mat-list-icon~.mat-divider-inset{margin-left:64px;width:calc(100% - 64px)}[dir=rtl] .mat-list-base .mat-list-item .mat-list-icon~.mat-divider-inset,[dir=rtl] .mat-list-base .mat-list-option .mat-list-icon~.mat-divider-inset{margin-left:auto;margin-right:64px}.mat-list-base .mat-list-item .mat-divider,.mat-list-base .mat-list-option .mat-divider{position:absolute;bottom:0;left:0;width:100%;margin:0}[dir=rtl] .mat-list-base .mat-list-item .mat-divider,[dir=rtl] .mat-list-base .mat-list-option .mat-divider{margin-left:auto;margin-right:0}.mat-list-base .mat-list-item .mat-divider.mat-divider-inset,.mat-list-base .mat-list-option .mat-divider.mat-divider-inset{position:absolute}.mat-list-base[dense]{padding-top:4px;display:block}.mat-list-base[dense] .mat-subheader{height:40px;line-height:8px}.mat-list-base[dense] .mat-subheader:first-child{margin-top:-4px}.mat-list-base[dense] .mat-list-item,.mat-list-base[dense] .mat-list-option{display:block;height:40px;-webkit-tap-highlight-color:transparent;width:100%;padding:0}.mat-list-base[dense] .mat-list-item .mat-list-item-content,.mat-list-base[dense] .mat-list-option .mat-list-item-content{display:flex;flex-direction:row;align-items:center;box-sizing:border-box;padding:0 16px;position:relative;height:inherit}.mat-list-base[dense] .mat-list-item .mat-list-item-content-reverse,.mat-list-base[dense] .mat-list-option .mat-list-item-content-reverse{display:flex;align-items:center;padding:0 16px;flex-direction:row-reverse;justify-content:space-around}.mat-list-base[dense] .mat-list-item .mat-list-item-ripple,.mat-list-base[dense] .mat-list-option .mat-list-item-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar{height:48px}.mat-list-base[dense] .mat-list-item.mat-2-line,.mat-list-base[dense] .mat-list-option.mat-2-line{height:60px}.mat-list-base[dense] .mat-list-item.mat-3-line,.mat-list-base[dense] .mat-list-option.mat-3-line{height:76px}.mat-list-base[dense] .mat-list-item.mat-multi-line,.mat-list-base[dense] .mat-list-option.mat-multi-line{height:auto}.mat-list-base[dense] .mat-list-item.mat-multi-line .mat-list-item-content,.mat-list-base[dense] .mat-list-option.mat-multi-line .mat-list-item-content{padding-top:16px;padding-bottom:16px}.mat-list-base[dense] .mat-list-item .mat-list-text,.mat-list-base[dense] .mat-list-option .mat-list-text{display:flex;flex-direction:column;width:100%;box-sizing:border-box;overflow:hidden;padding:0}.mat-list-base[dense] .mat-list-item .mat-list-text>*,.mat-list-base[dense] .mat-list-option .mat-list-text>*{margin:0;padding:0;font-weight:400;font-size:inherit}.mat-list-base[dense] .mat-list-item .mat-list-text:empty,.mat-list-base[dense] .mat-list-option .mat-list-text:empty{display:none}.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,.mat-list-base[dense] .mat-list-item.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-option .mat-list-item-content .mat-list-text{padding-right:0;padding-left:16px}[dir=rtl] .mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-item.mat-list-option .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-option.mat-list-option .mat-list-item-content .mat-list-text{padding-right:16px;padding-left:0}.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,.mat-list-base[dense] .mat-list-item.mat-list-option .mat-list-item-content-reverse .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-left:0;padding-right:16px}[dir=rtl] .mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-item.mat-list-option .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-option.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-right:0;padding-left:16px}.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar.mat-list-option .mat-list-item-content-reverse .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-right:16px;padding-left:16px}.mat-list-base[dense] .mat-list-item .mat-list-avatar,.mat-list-base[dense] .mat-list-option .mat-list-avatar{flex-shrink:0;width:36px;height:36px;border-radius:50%;object-fit:cover}.mat-list-base[dense] .mat-list-item .mat-list-avatar~.mat-divider-inset,.mat-list-base[dense] .mat-list-option .mat-list-avatar~.mat-divider-inset{margin-left:68px;width:calc(100% - 68px)}[dir=rtl] .mat-list-base[dense] .mat-list-item .mat-list-avatar~.mat-divider-inset,[dir=rtl] .mat-list-base[dense] .mat-list-option .mat-list-avatar~.mat-divider-inset{margin-left:auto;margin-right:68px}.mat-list-base[dense] .mat-list-item .mat-list-icon,.mat-list-base[dense] .mat-list-option .mat-list-icon{flex-shrink:0;width:20px;height:20px;font-size:20px;box-sizing:content-box;border-radius:50%;padding:4px}.mat-list-base[dense] .mat-list-item .mat-list-icon~.mat-divider-inset,.mat-list-base[dense] .mat-list-option .mat-list-icon~.mat-divider-inset{margin-left:60px;width:calc(100% - 60px)}[dir=rtl] .mat-list-base[dense] .mat-list-item .mat-list-icon~.mat-divider-inset,[dir=rtl] .mat-list-base[dense] .mat-list-option .mat-list-icon~.mat-divider-inset{margin-left:auto;margin-right:60px}.mat-list-base[dense] .mat-list-item .mat-divider,.mat-list-base[dense] .mat-list-option .mat-divider{position:absolute;bottom:0;left:0;width:100%;margin:0}[dir=rtl] .mat-list-base[dense] .mat-list-item .mat-divider,[dir=rtl] .mat-list-base[dense] .mat-list-option .mat-divider{margin-left:auto;margin-right:0}.mat-list-base[dense] .mat-list-item .mat-divider.mat-divider-inset,.mat-list-base[dense] .mat-list-option .mat-divider.mat-divider-inset{position:absolute}.mat-nav-list a{text-decoration:none;color:inherit}.mat-nav-list .mat-list-item{cursor:pointer;outline:0}mat-action-list button{background:0 0;color:inherit;border:none;font:inherit;outline:inherit;-webkit-tap-highlight-color:transparent;text-align:left}[dir=rtl] mat-action-list button{text-align:right}mat-action-list button::-moz-focus-inner{border:0}mat-action-list .mat-list-item{cursor:pointer;outline:inherit}.mat-list-option:not(.mat-list-item-disabled){cursor:pointer;outline:0}@media (-ms-high-contrast:active){.mat-selection-list:focus{outline-style:dotted}.mat-list-option:focus,.mat-list-option:hover,.mat-nav-list .mat-list-item:focus,.mat-nav-list .mat-list-item:hover,mat-action-list .mat-list-item:focus,mat-action-list .mat-list-item:hover{outline:dotted 1px}}@media (hover:none){.mat-action-list .mat-list-item:not(.mat-list-item-disabled):hover,.mat-list-option:not(.mat-list-item-disabled):hover,.mat-nav-list .mat-list-item:not(.mat-list-item-disabled):hover{background:0 0}}"],
- inputs: ['disableRipple'],
- encapsulation: ViewEncapsulation.None,
- changeDetection: ChangeDetectionStrategy.OnPush,
- },] },
- ];
- /** @nocollapse */
- MatList.ctorParameters = function () { return [
- { type: ElementRef }
- ]; };
- return MatList;
- }(_MatListMixinBase));
- /**
- * Directive whose purpose is to add the mat- CSS styling to this selector.
- * \@docs-private
- */
- var MatListAvatarCssMatStyler = /** @class */ (function () {
- function MatListAvatarCssMatStyler() {
- }
- MatListAvatarCssMatStyler.decorators = [
- { type: Directive, args: [{
- selector: '[mat-list-avatar], [matListAvatar]',
- host: { 'class': 'mat-list-avatar' }
- },] },
- ];
- return MatListAvatarCssMatStyler;
- }());
- /**
- * Directive whose purpose is to add the mat- CSS styling to this selector.
- * \@docs-private
- */
- var MatListIconCssMatStyler = /** @class */ (function () {
- function MatListIconCssMatStyler() {
- }
- MatListIconCssMatStyler.decorators = [
- { type: Directive, args: [{
- selector: '[mat-list-icon], [matListIcon]',
- host: { 'class': 'mat-list-icon' }
- },] },
- ];
- return MatListIconCssMatStyler;
- }());
- /**
- * Directive whose purpose is to add the mat- CSS styling to this selector.
- * \@docs-private
- */
- var MatListSubheaderCssMatStyler = /** @class */ (function () {
- function MatListSubheaderCssMatStyler() {
- }
- MatListSubheaderCssMatStyler.decorators = [
- { type: Directive, args: [{
- selector: '[mat-subheader], [matSubheader]',
- host: { 'class': 'mat-subheader' }
- },] },
- ];
- return MatListSubheaderCssMatStyler;
- }());
- /**
- * An item within a Material Design list.
- */
- var MatListItem = /** @class */ (function (_super) {
- __extends(MatListItem, _super);
- function MatListItem(_element, _changeDetectorRef, navList, list) {
- var _this = _super.call(this) || this;
- _this._element = _element;
- _this._isInteractiveList = false;
- _this._destroyed = new Subject();
- _this._isInteractiveList = !!(navList || (list && list._getListType() === 'action-list'));
- _this._list = navList || list;
- // If no type attributed is specified for <button>, set it to "button".
- // If a type attribute is already specified, do nothing.
- /** @type {?} */
- var element = _this._getHostElement();
- if (element.nodeName.toLowerCase() === 'button' && !element.hasAttribute('type')) {
- element.setAttribute('type', 'button');
- }
- if (_this._list) {
- // React to changes in the state of the parent list since
- // some of the item's properties depend on it (e.g. `disableRipple`).
- _this._list._stateChanges.pipe(takeUntil(_this._destroyed)).subscribe((/**
- * @return {?}
- */
- function () {
- _changeDetectorRef.markForCheck();
- }));
- }
- return _this;
- }
- /**
- * @return {?}
- */
- MatListItem.prototype.ngAfterContentInit = /**
- * @return {?}
- */
- function () {
- setLines(this._lines, this._element);
- };
- /**
- * @return {?}
- */
- MatListItem.prototype.ngOnDestroy = /**
- * @return {?}
- */
- function () {
- this._destroyed.next();
- this._destroyed.complete();
- };
- /** Whether this list item should show a ripple effect when clicked. */
- /**
- * Whether this list item should show a ripple effect when clicked.
- * @return {?}
- */
- MatListItem.prototype._isRippleDisabled = /**
- * Whether this list item should show a ripple effect when clicked.
- * @return {?}
- */
- function () {
- return !this._isInteractiveList || this.disableRipple ||
- !!(this._list && this._list.disableRipple);
- };
- /** Retrieves the DOM element of the component host. */
- /**
- * Retrieves the DOM element of the component host.
- * @return {?}
- */
- MatListItem.prototype._getHostElement = /**
- * Retrieves the DOM element of the component host.
- * @return {?}
- */
- function () {
- return this._element.nativeElement;
- };
- MatListItem.decorators = [
- { type: Component, args: [{selector: 'mat-list-item, a[mat-list-item], button[mat-list-item]',
- exportAs: 'matListItem',
- host: {
- 'class': 'mat-list-item',
- // @breaking-change 8.0.0 Remove `mat-list-item-avatar` in favor of `mat-list-item-with-avatar`.
- '[class.mat-list-item-avatar]': '_avatar || _icon',
- '[class.mat-list-item-with-avatar]': '_avatar || _icon',
- },
- inputs: ['disableRipple'],
- template: "<div class=\"mat-list-item-content\"><div class=\"mat-list-item-ripple\" mat-ripple [matRippleTrigger]=\"_getHostElement()\" [matRippleDisabled]=\"_isRippleDisabled()\"></div><ng-content select=\"[mat-list-avatar], [mat-list-icon], [matListAvatar], [matListIcon]\"></ng-content><div class=\"mat-list-text\"><ng-content select=\"[mat-line], [matLine]\"></ng-content></div><ng-content></ng-content></div>",
- encapsulation: ViewEncapsulation.None,
- changeDetection: ChangeDetectionStrategy.OnPush,
- },] },
- ];
- /** @nocollapse */
- MatListItem.ctorParameters = function () { return [
- { type: ElementRef },
- { type: ChangeDetectorRef },
- { type: MatNavList, decorators: [{ type: Optional }] },
- { type: MatList, decorators: [{ type: Optional }] }
- ]; };
- MatListItem.propDecorators = {
- _lines: [{ type: ContentChildren, args: [MatLine, { descendants: true },] }],
- _avatar: [{ type: ContentChild, args: [MatListAvatarCssMatStyler, { static: false },] }],
- _icon: [{ type: ContentChild, args: [MatListIconCssMatStyler, { static: false },] }]
- };
- return MatListItem;
- }(_MatListItemMixinBase));
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /**
- * \@docs-private
- */
- var /**
- * \@docs-private
- */
- MatSelectionListBase = /** @class */ (function () {
- function MatSelectionListBase() {
- }
- return MatSelectionListBase;
- }());
- /** @type {?} */
- var _MatSelectionListMixinBase = mixinDisableRipple(MatSelectionListBase);
- /**
- * \@docs-private
- */
- var /**
- * \@docs-private
- */
- MatListOptionBase = /** @class */ (function () {
- function MatListOptionBase() {
- }
- return MatListOptionBase;
- }());
- /** @type {?} */
- var _MatListOptionMixinBase = mixinDisableRipple(MatListOptionBase);
- /**
- * \@docs-private
- * @type {?}
- */
- var MAT_SELECTION_LIST_VALUE_ACCESSOR = {
- provide: NG_VALUE_ACCESSOR,
- useExisting: forwardRef((/**
- * @return {?}
- */
- function () { return MatSelectionList; })),
- multi: true
- };
- /**
- * Change event that is being fired whenever the selected state of an option changes.
- */
- var /**
- * Change event that is being fired whenever the selected state of an option changes.
- */
- MatSelectionListChange = /** @class */ (function () {
- function MatSelectionListChange(source, option) {
- this.source = source;
- this.option = option;
- }
- return MatSelectionListChange;
- }());
- /**
- * Component for list-options of selection-list. Each list-option can automatically
- * generate a checkbox and can put current item into the selectionModel of selection-list
- * if the current item is selected.
- */
- var MatListOption = /** @class */ (function (_super) {
- __extends(MatListOption, _super);
- function MatListOption(_element, _changeDetector, selectionList) {
- var _this = _super.call(this) || this;
- _this._element = _element;
- _this._changeDetector = _changeDetector;
- _this.selectionList = selectionList;
- _this._selected = false;
- _this._disabled = false;
- _this._hasFocus = false;
- /**
- * Whether the label should appear before or after the checkbox. Defaults to 'after'
- */
- _this.checkboxPosition = 'after';
- return _this;
- }
- Object.defineProperty(MatListOption.prototype, "color", {
- /** Theme color of the list option. This sets the color of the checkbox. */
- get: /**
- * Theme color of the list option. This sets the color of the checkbox.
- * @return {?}
- */
- function () { return this._color || this.selectionList.color; },
- set: /**
- * @param {?} newValue
- * @return {?}
- */
- function (newValue) { this._color = newValue; },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(MatListOption.prototype, "value", {
- /** Value of the option */
- get: /**
- * Value of the option
- * @return {?}
- */
- function () { return this._value; },
- set: /**
- * @param {?} newValue
- * @return {?}
- */
- function (newValue) {
- if (this.selected && newValue !== this.value) {
- this.selected = false;
- }
- this._value = newValue;
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(MatListOption.prototype, "disabled", {
- /** Whether the option is disabled. */
- get: /**
- * Whether the option is disabled.
- * @return {?}
- */
- function () { return this._disabled || (this.selectionList && this.selectionList.disabled); },
- set: /**
- * @param {?} value
- * @return {?}
- */
- function (value) {
- /** @type {?} */
- var newValue = coerceBooleanProperty(value);
- if (newValue !== this._disabled) {
- this._disabled = newValue;
- this._changeDetector.markForCheck();
- }
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(MatListOption.prototype, "selected", {
- /** Whether the option is selected. */
- get: /**
- * Whether the option is selected.
- * @return {?}
- */
- function () { return this.selectionList.selectedOptions.isSelected(this); },
- set: /**
- * @param {?} value
- * @return {?}
- */
- function (value) {
- /** @type {?} */
- var isSelected = coerceBooleanProperty(value);
- if (isSelected !== this._selected) {
- this._setSelected(isSelected);
- this.selectionList._reportValueChange();
- }
- },
- enumerable: true,
- configurable: true
- });
- /**
- * @return {?}
- */
- MatListOption.prototype.ngOnInit = /**
- * @return {?}
- */
- function () {
- var _this = this;
- /** @type {?} */
- var list = this.selectionList;
- if (list._value && list._value.some((/**
- * @param {?} value
- * @return {?}
- */
- function (value) { return list.compareWith(value, _this._value); }))) {
- this._setSelected(true);
- }
- /** @type {?} */
- var wasSelected = this._selected;
- // List options that are selected at initialization can't be reported properly to the form
- // control. This is because it takes some time until the selection-list knows about all
- // available options. Also it can happen that the ControlValueAccessor has an initial value
- // that should be used instead. Deferring the value change report to the next tick ensures
- // that the form control value is not being overwritten.
- Promise.resolve().then((/**
- * @return {?}
- */
- function () {
- if (_this._selected || wasSelected) {
- _this.selected = true;
- _this._changeDetector.markForCheck();
- }
- }));
- };
- /**
- * @return {?}
- */
- MatListOption.prototype.ngAfterContentInit = /**
- * @return {?}
- */
- function () {
- setLines(this._lines, this._element);
- };
- /**
- * @return {?}
- */
- MatListOption.prototype.ngOnDestroy = /**
- * @return {?}
- */
- function () {
- var _this = this;
- if (this.selected) {
- // We have to delay this until the next tick in order
- // to avoid changed after checked errors.
- Promise.resolve().then((/**
- * @return {?}
- */
- function () {
- _this.selected = false;
- }));
- }
- /** @type {?} */
- var hadFocus = this._hasFocus;
- /** @type {?} */
- var newActiveItem = this.selectionList._removeOptionFromList(this);
- // Only move focus if this option was focused at the time it was destroyed.
- if (hadFocus && newActiveItem) {
- newActiveItem.focus();
- }
- };
- /** Toggles the selection state of the option. */
- /**
- * Toggles the selection state of the option.
- * @return {?}
- */
- MatListOption.prototype.toggle = /**
- * Toggles the selection state of the option.
- * @return {?}
- */
- function () {
- this.selected = !this.selected;
- };
- /** Allows for programmatic focusing of the option. */
- /**
- * Allows for programmatic focusing of the option.
- * @return {?}
- */
- MatListOption.prototype.focus = /**
- * Allows for programmatic focusing of the option.
- * @return {?}
- */
- function () {
- this._element.nativeElement.focus();
- };
- /**
- * Returns the list item's text label. Implemented as a part of the FocusKeyManager.
- * @docs-private
- */
- /**
- * Returns the list item's text label. Implemented as a part of the FocusKeyManager.
- * \@docs-private
- * @return {?}
- */
- MatListOption.prototype.getLabel = /**
- * Returns the list item's text label. Implemented as a part of the FocusKeyManager.
- * \@docs-private
- * @return {?}
- */
- function () {
- return this._text ? (this._text.nativeElement.textContent || '') : '';
- };
- /** Whether this list item should show a ripple effect when clicked. */
- /**
- * Whether this list item should show a ripple effect when clicked.
- * @return {?}
- */
- MatListOption.prototype._isRippleDisabled = /**
- * Whether this list item should show a ripple effect when clicked.
- * @return {?}
- */
- function () {
- return this.disabled || this.disableRipple || this.selectionList.disableRipple;
- };
- /**
- * @return {?}
- */
- MatListOption.prototype._handleClick = /**
- * @return {?}
- */
- function () {
- if (!this.disabled) {
- this.toggle();
- // Emit a change event if the selected state of the option changed through user interaction.
- this.selectionList._emitChangeEvent(this);
- }
- };
- /**
- * @return {?}
- */
- MatListOption.prototype._handleFocus = /**
- * @return {?}
- */
- function () {
- this.selectionList._setFocusedOption(this);
- this._hasFocus = true;
- };
- /**
- * @return {?}
- */
- MatListOption.prototype._handleBlur = /**
- * @return {?}
- */
- function () {
- this.selectionList._onTouched();
- this._hasFocus = false;
- };
- /** Retrieves the DOM element of the component host. */
- /**
- * Retrieves the DOM element of the component host.
- * @return {?}
- */
- MatListOption.prototype._getHostElement = /**
- * Retrieves the DOM element of the component host.
- * @return {?}
- */
- function () {
- return this._element.nativeElement;
- };
- /** Sets the selected state of the option. Returns whether the value has changed. */
- /**
- * Sets the selected state of the option. Returns whether the value has changed.
- * @param {?} selected
- * @return {?}
- */
- MatListOption.prototype._setSelected = /**
- * Sets the selected state of the option. Returns whether the value has changed.
- * @param {?} selected
- * @return {?}
- */
- function (selected) {
- if (selected === this._selected) {
- return false;
- }
- this._selected = selected;
- if (selected) {
- this.selectionList.selectedOptions.select(this);
- }
- else {
- this.selectionList.selectedOptions.deselect(this);
- }
- this._changeDetector.markForCheck();
- return true;
- };
- /**
- * Notifies Angular that the option needs to be checked in the next change detection run. Mainly
- * used to trigger an update of the list option if the disabled state of the selection list
- * changed.
- */
- /**
- * Notifies Angular that the option needs to be checked in the next change detection run. Mainly
- * used to trigger an update of the list option if the disabled state of the selection list
- * changed.
- * @return {?}
- */
- MatListOption.prototype._markForCheck = /**
- * Notifies Angular that the option needs to be checked in the next change detection run. Mainly
- * used to trigger an update of the list option if the disabled state of the selection list
- * changed.
- * @return {?}
- */
- function () {
- this._changeDetector.markForCheck();
- };
- MatListOption.decorators = [
- { type: Component, args: [{selector: 'mat-list-option',
- exportAs: 'matListOption',
- inputs: ['disableRipple'],
- host: {
- 'role': 'option',
- 'class': 'mat-list-item mat-list-option',
- '(focus)': '_handleFocus()',
- '(blur)': '_handleBlur()',
- '(click)': '_handleClick()',
- 'tabindex': '-1',
- '[class.mat-list-item-disabled]': 'disabled',
- '[class.mat-list-item-with-avatar]': '_avatar || _icon',
- // Manually set the "primary" or "warn" class if the color has been explicitly
- // set to "primary" or "warn". The pseudo checkbox picks up these classes for
- // its theme. The accent theme palette is the default and doesn't need to be set.
- '[class.mat-primary]': 'color === "primary"',
- '[class.mat-warn]': 'color === "warn"',
- '[attr.aria-selected]': 'selected',
- '[attr.aria-disabled]': 'disabled',
- },
- template: "<div class=\"mat-list-item-content\" [class.mat-list-item-content-reverse]=\"checkboxPosition == 'after'\"><div mat-ripple class=\"mat-list-item-ripple\" [matRippleTrigger]=\"_getHostElement()\" [matRippleDisabled]=\"_isRippleDisabled()\"></div><mat-pseudo-checkbox [state]=\"selected ? 'checked' : 'unchecked'\" [disabled]=\"disabled\"></mat-pseudo-checkbox><div class=\"mat-list-text\" #text><ng-content></ng-content></div><ng-content select=\"[mat-list-avatar], [mat-list-icon], [matListAvatar], [matListIcon]\"></ng-content></div>",
- encapsulation: ViewEncapsulation.None,
- changeDetection: ChangeDetectionStrategy.OnPush,
- },] },
- ];
- /** @nocollapse */
- MatListOption.ctorParameters = function () { return [
- { type: ElementRef },
- { type: ChangeDetectorRef },
- { type: MatSelectionList, decorators: [{ type: Inject, args: [forwardRef((/**
- * @return {?}
- */
- function () { return MatSelectionList; })),] }] }
- ]; };
- MatListOption.propDecorators = {
- _avatar: [{ type: ContentChild, args: [MatListAvatarCssMatStyler, { static: false },] }],
- _icon: [{ type: ContentChild, args: [MatListIconCssMatStyler, { static: false },] }],
- _lines: [{ type: ContentChildren, args: [MatLine,] }],
- _text: [{ type: ViewChild, args: ['text', { static: false },] }],
- checkboxPosition: [{ type: Input }],
- color: [{ type: Input }],
- value: [{ type: Input }],
- disabled: [{ type: Input }],
- selected: [{ type: Input }]
- };
- return MatListOption;
- }(_MatListOptionMixinBase));
- /**
- * Material Design list component where each item is a selectable option. Behaves as a listbox.
- */
- var MatSelectionList = /** @class */ (function (_super) {
- __extends(MatSelectionList, _super);
- function MatSelectionList(_element, tabIndex) {
- var _this = _super.call(this) || this;
- _this._element = _element;
- /**
- * Emits a change event whenever the selected state of an option changes.
- */
- _this.selectionChange = new EventEmitter();
- /**
- * Tabindex of the selection list.
- */
- _this.tabIndex = 0;
- /**
- * Theme color of the selection list. This sets the checkbox color for all list options.
- */
- _this.color = 'accent';
- /**
- * Function used for comparing an option against the selected value when determining which
- * options should appear as selected. The first argument is the value of an options. The second
- * one is a value from the selected value. A boolean must be returned.
- */
- _this.compareWith = (/**
- * @param {?} a1
- * @param {?} a2
- * @return {?}
- */
- function (a1, a2) { return a1 === a2; });
- _this._disabled = false;
- /**
- * The currently selected options.
- */
- _this.selectedOptions = new SelectionModel(true);
- /**
- * View to model callback that should be called whenever the selected options change.
- */
- _this._onChange = (/**
- * @param {?} _
- * @return {?}
- */
- function (_) { });
- /**
- * Emits when the list has been destroyed.
- */
- _this._destroyed = new Subject();
- /**
- * View to model callback that should be called if the list or its options lost focus.
- */
- _this._onTouched = (/**
- * @return {?}
- */
- function () { });
- _this.tabIndex = parseInt(tabIndex) || 0;
- return _this;
- }
- Object.defineProperty(MatSelectionList.prototype, "disabled", {
- /** Whether the selection list is disabled. */
- get: /**
- * Whether the selection list is disabled.
- * @return {?}
- */
- function () { return this._disabled; },
- set: /**
- * @param {?} value
- * @return {?}
- */
- function (value) {
- this._disabled = coerceBooleanProperty(value);
- // The `MatSelectionList` and `MatListOption` are using the `OnPush` change detection
- // strategy. Therefore the options will not check for any changes if the `MatSelectionList`
- // changed its state. Since we know that a change to `disabled` property of the list affects
- // the state of the options, we manually mark each option for check.
- this._markOptionsForCheck();
- },
- enumerable: true,
- configurable: true
- });
- /**
- * @return {?}
- */
- MatSelectionList.prototype.ngAfterContentInit = /**
- * @return {?}
- */
- function () {
- this._keyManager = new FocusKeyManager(this.options)
- .withWrap()
- .withTypeAhead()
- // Allow disabled items to be focusable. For accessibility reasons, there must be a way for
- // screenreader users, that allows reading the different options of the list.
- .skipPredicate((/**
- * @return {?}
- */
- function () { return false; }))
- .withAllowedModifierKeys(['shiftKey']);
- if (this._value) {
- this._setOptionsFromValues(this._value);
- }
- // Sync external changes to the model back to the options.
- this.selectedOptions.onChange.pipe(takeUntil(this._destroyed)).subscribe((/**
- * @param {?} event
- * @return {?}
- */
- function (event) {
- if (event.added) {
- for (var _i = 0, _a = event.added; _i < _a.length; _i++) {
- var item = _a[_i];
- item.selected = true;
- }
- }
- if (event.removed) {
- for (var _b = 0, _c = event.removed; _b < _c.length; _b++) {
- var item = _c[_b];
- item.selected = false;
- }
- }
- }));
- };
- /**
- * @param {?} changes
- * @return {?}
- */
- MatSelectionList.prototype.ngOnChanges = /**
- * @param {?} changes
- * @return {?}
- */
- function (changes) {
- /** @type {?} */
- var disableRippleChanges = changes['disableRipple'];
- /** @type {?} */
- var colorChanges = changes['color'];
- if ((disableRippleChanges && !disableRippleChanges.firstChange) ||
- (colorChanges && !colorChanges.firstChange)) {
- this._markOptionsForCheck();
- }
- };
- /**
- * @return {?}
- */
- MatSelectionList.prototype.ngOnDestroy = /**
- * @return {?}
- */
- function () {
- this._destroyed.next();
- this._destroyed.complete();
- this._isDestroyed = true;
- };
- /** Focuses the selection list. */
- /**
- * Focuses the selection list.
- * @param {?=} options
- * @return {?}
- */
- MatSelectionList.prototype.focus = /**
- * Focuses the selection list.
- * @param {?=} options
- * @return {?}
- */
- function (options) {
- this._element.nativeElement.focus(options);
- };
- /** Selects all of the options. */
- /**
- * Selects all of the options.
- * @return {?}
- */
- MatSelectionList.prototype.selectAll = /**
- * Selects all of the options.
- * @return {?}
- */
- function () {
- this._setAllOptionsSelected(true);
- };
- /** Deselects all of the options. */
- /**
- * Deselects all of the options.
- * @return {?}
- */
- MatSelectionList.prototype.deselectAll = /**
- * Deselects all of the options.
- * @return {?}
- */
- function () {
- this._setAllOptionsSelected(false);
- };
- /** Sets the focused option of the selection-list. */
- /**
- * Sets the focused option of the selection-list.
- * @param {?} option
- * @return {?}
- */
- MatSelectionList.prototype._setFocusedOption = /**
- * Sets the focused option of the selection-list.
- * @param {?} option
- * @return {?}
- */
- function (option) {
- this._keyManager.updateActiveItem(option);
- };
- /**
- * Removes an option from the selection list and updates the active item.
- * @returns Currently-active item.
- */
- /**
- * Removes an option from the selection list and updates the active item.
- * @param {?} option
- * @return {?} Currently-active item.
- */
- MatSelectionList.prototype._removeOptionFromList = /**
- * Removes an option from the selection list and updates the active item.
- * @param {?} option
- * @return {?} Currently-active item.
- */
- function (option) {
- /** @type {?} */
- var optionIndex = this._getOptionIndex(option);
- if (optionIndex > -1 && this._keyManager.activeItemIndex === optionIndex) {
- // Check whether the option is the last item
- if (optionIndex > 0) {
- this._keyManager.updateActiveItem(optionIndex - 1);
- }
- else if (optionIndex === 0 && this.options.length > 1) {
- this._keyManager.updateActiveItem(Math.min(optionIndex + 1, this.options.length - 1));
- }
- }
- return this._keyManager.activeItem;
- };
- /** Passes relevant key presses to our key manager. */
- /**
- * Passes relevant key presses to our key manager.
- * @param {?} event
- * @return {?}
- */
- MatSelectionList.prototype._keydown = /**
- * Passes relevant key presses to our key manager.
- * @param {?} event
- * @return {?}
- */
- function (event) {
- /** @type {?} */
- var keyCode = event.keyCode;
- /** @type {?} */
- var manager = this._keyManager;
- /** @type {?} */
- var previousFocusIndex = manager.activeItemIndex;
- /** @type {?} */
- var hasModifier = hasModifierKey(event);
- switch (keyCode) {
- case SPACE:
- case ENTER:
- if (!hasModifier) {
- this._toggleFocusedOption();
- // Always prevent space from scrolling the page since the list has focus
- event.preventDefault();
- }
- break;
- case HOME:
- case END:
- if (!hasModifier) {
- keyCode === HOME ? manager.setFirstItemActive() : manager.setLastItemActive();
- event.preventDefault();
- }
- break;
- case A:
- if (hasModifierKey(event, 'ctrlKey')) {
- this.options.find((/**
- * @param {?} option
- * @return {?}
- */
- function (option) { return !option.selected; })) ? this.selectAll() : this.deselectAll();
- event.preventDefault();
- }
- break;
- default:
- manager.onKeydown(event);
- }
- if ((keyCode === UP_ARROW || keyCode === DOWN_ARROW) && event.shiftKey &&
- manager.activeItemIndex !== previousFocusIndex) {
- this._toggleFocusedOption();
- }
- };
- /** Reports a value change to the ControlValueAccessor */
- /**
- * Reports a value change to the ControlValueAccessor
- * @return {?}
- */
- MatSelectionList.prototype._reportValueChange = /**
- * Reports a value change to the ControlValueAccessor
- * @return {?}
- */
- function () {
- // Stop reporting value changes after the list has been destroyed. This avoids
- // cases where the list might wrongly reset its value once it is removed, but
- // the form control is still live.
- if (this.options && !this._isDestroyed) {
- /** @type {?} */
- var value = this._getSelectedOptionValues();
- this._onChange(value);
- this._value = value;
- }
- };
- /** Emits a change event if the selected state of an option changed. */
- /**
- * Emits a change event if the selected state of an option changed.
- * @param {?} option
- * @return {?}
- */
- MatSelectionList.prototype._emitChangeEvent = /**
- * Emits a change event if the selected state of an option changed.
- * @param {?} option
- * @return {?}
- */
- function (option) {
- this.selectionChange.emit(new MatSelectionListChange(this, option));
- };
- /** Implemented as part of ControlValueAccessor. */
- /**
- * Implemented as part of ControlValueAccessor.
- * @param {?} values
- * @return {?}
- */
- MatSelectionList.prototype.writeValue = /**
- * Implemented as part of ControlValueAccessor.
- * @param {?} values
- * @return {?}
- */
- function (values) {
- this._value = values;
- if (this.options) {
- this._setOptionsFromValues(values || []);
- }
- };
- /** Implemented as a part of ControlValueAccessor. */
- /**
- * Implemented as a part of ControlValueAccessor.
- * @param {?} isDisabled
- * @return {?}
- */
- MatSelectionList.prototype.setDisabledState = /**
- * Implemented as a part of ControlValueAccessor.
- * @param {?} isDisabled
- * @return {?}
- */
- function (isDisabled) {
- this.disabled = isDisabled;
- };
- /** Implemented as part of ControlValueAccessor. */
- /**
- * Implemented as part of ControlValueAccessor.
- * @param {?} fn
- * @return {?}
- */
- MatSelectionList.prototype.registerOnChange = /**
- * Implemented as part of ControlValueAccessor.
- * @param {?} fn
- * @return {?}
- */
- function (fn) {
- this._onChange = fn;
- };
- /** Implemented as part of ControlValueAccessor. */
- /**
- * Implemented as part of ControlValueAccessor.
- * @param {?} fn
- * @return {?}
- */
- MatSelectionList.prototype.registerOnTouched = /**
- * Implemented as part of ControlValueAccessor.
- * @param {?} fn
- * @return {?}
- */
- function (fn) {
- this._onTouched = fn;
- };
- /** Sets the selected options based on the specified values. */
- /**
- * Sets the selected options based on the specified values.
- * @private
- * @param {?} values
- * @return {?}
- */
- MatSelectionList.prototype._setOptionsFromValues = /**
- * Sets the selected options based on the specified values.
- * @private
- * @param {?} values
- * @return {?}
- */
- function (values) {
- var _this = this;
- this.options.forEach((/**
- * @param {?} option
- * @return {?}
- */
- function (option) { return option._setSelected(false); }));
- values.forEach((/**
- * @param {?} value
- * @return {?}
- */
- function (value) {
- /** @type {?} */
- var correspondingOption = _this.options.find((/**
- * @param {?} option
- * @return {?}
- */
- function (option) {
- // Skip options that are already in the model. This allows us to handle cases
- // where the same primitive value is selected multiple times.
- return option.selected ? false : _this.compareWith(option.value, value);
- }));
- if (correspondingOption) {
- correspondingOption._setSelected(true);
- }
- }));
- };
- /** Returns the values of the selected options. */
- /**
- * Returns the values of the selected options.
- * @private
- * @return {?}
- */
- MatSelectionList.prototype._getSelectedOptionValues = /**
- * Returns the values of the selected options.
- * @private
- * @return {?}
- */
- function () {
- return this.options.filter((/**
- * @param {?} option
- * @return {?}
- */
- function (option) { return option.selected; })).map((/**
- * @param {?} option
- * @return {?}
- */
- function (option) { return option.value; }));
- };
- /** Toggles the state of the currently focused option if enabled. */
- /**
- * Toggles the state of the currently focused option if enabled.
- * @private
- * @return {?}
- */
- MatSelectionList.prototype._toggleFocusedOption = /**
- * Toggles the state of the currently focused option if enabled.
- * @private
- * @return {?}
- */
- function () {
- /** @type {?} */
- var focusedIndex = this._keyManager.activeItemIndex;
- if (focusedIndex != null && this._isValidIndex(focusedIndex)) {
- /** @type {?} */
- var focusedOption = this.options.toArray()[focusedIndex];
- if (focusedOption && !focusedOption.disabled) {
- focusedOption.toggle();
- // Emit a change event because the focused option changed its state through user
- // interaction.
- this._emitChangeEvent(focusedOption);
- }
- }
- };
- /**
- * Sets the selected state on all of the options
- * and emits an event if anything changed.
- */
- /**
- * Sets the selected state on all of the options
- * and emits an event if anything changed.
- * @private
- * @param {?} isSelected
- * @return {?}
- */
- MatSelectionList.prototype._setAllOptionsSelected = /**
- * Sets the selected state on all of the options
- * and emits an event if anything changed.
- * @private
- * @param {?} isSelected
- * @return {?}
- */
- function (isSelected) {
- // Keep track of whether anything changed, because we only want to
- // emit the changed event when something actually changed.
- /** @type {?} */
- var hasChanged = false;
- this.options.forEach((/**
- * @param {?} option
- * @return {?}
- */
- function (option) {
- if (option._setSelected(isSelected)) {
- hasChanged = true;
- }
- }));
- if (hasChanged) {
- this._reportValueChange();
- }
- };
- /**
- * Utility to ensure all indexes are valid.
- * @param index The index to be checked.
- * @returns True if the index is valid for our list of options.
- */
- /**
- * Utility to ensure all indexes are valid.
- * @private
- * @param {?} index The index to be checked.
- * @return {?} True if the index is valid for our list of options.
- */
- MatSelectionList.prototype._isValidIndex = /**
- * Utility to ensure all indexes are valid.
- * @private
- * @param {?} index The index to be checked.
- * @return {?} True if the index is valid for our list of options.
- */
- function (index) {
- return index >= 0 && index < this.options.length;
- };
- /** Returns the index of the specified list option. */
- /**
- * Returns the index of the specified list option.
- * @private
- * @param {?} option
- * @return {?}
- */
- MatSelectionList.prototype._getOptionIndex = /**
- * Returns the index of the specified list option.
- * @private
- * @param {?} option
- * @return {?}
- */
- function (option) {
- return this.options.toArray().indexOf(option);
- };
- /** Marks all the options to be checked in the next change detection run. */
- /**
- * Marks all the options to be checked in the next change detection run.
- * @private
- * @return {?}
- */
- MatSelectionList.prototype._markOptionsForCheck = /**
- * Marks all the options to be checked in the next change detection run.
- * @private
- * @return {?}
- */
- function () {
- if (this.options) {
- this.options.forEach((/**
- * @param {?} option
- * @return {?}
- */
- function (option) { return option._markForCheck(); }));
- }
- };
- MatSelectionList.decorators = [
- { type: Component, args: [{selector: 'mat-selection-list',
- exportAs: 'matSelectionList',
- inputs: ['disableRipple'],
- host: {
- 'role': 'listbox',
- '[tabIndex]': 'tabIndex',
- 'class': 'mat-selection-list mat-list-base',
- '(blur)': '_onTouched()',
- '(keydown)': '_keydown($event)',
- 'aria-multiselectable': 'true',
- '[attr.aria-disabled]': 'disabled.toString()',
- },
- template: '<ng-content></ng-content>',
- styles: [".mat-subheader{display:flex;box-sizing:border-box;padding:16px;align-items:center}.mat-list-base .mat-subheader{margin:0}.mat-list-base{padding-top:8px;display:block;-webkit-tap-highlight-color:transparent}.mat-list-base .mat-subheader{height:48px;line-height:16px}.mat-list-base .mat-subheader:first-child{margin-top:-8px}.mat-list-base .mat-list-item,.mat-list-base .mat-list-option{display:block;height:48px;-webkit-tap-highlight-color:transparent;width:100%;padding:0}.mat-list-base .mat-list-item .mat-list-item-content,.mat-list-base .mat-list-option .mat-list-item-content{display:flex;flex-direction:row;align-items:center;box-sizing:border-box;padding:0 16px;position:relative;height:inherit}.mat-list-base .mat-list-item .mat-list-item-content-reverse,.mat-list-base .mat-list-option .mat-list-item-content-reverse{display:flex;align-items:center;padding:0 16px;flex-direction:row-reverse;justify-content:space-around}.mat-list-base .mat-list-item .mat-list-item-ripple,.mat-list-base .mat-list-option .mat-list-item-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-list-base .mat-list-item.mat-list-item-with-avatar,.mat-list-base .mat-list-option.mat-list-item-with-avatar{height:56px}.mat-list-base .mat-list-item.mat-2-line,.mat-list-base .mat-list-option.mat-2-line{height:72px}.mat-list-base .mat-list-item.mat-3-line,.mat-list-base .mat-list-option.mat-3-line{height:88px}.mat-list-base .mat-list-item.mat-multi-line,.mat-list-base .mat-list-option.mat-multi-line{height:auto}.mat-list-base .mat-list-item.mat-multi-line .mat-list-item-content,.mat-list-base .mat-list-option.mat-multi-line .mat-list-item-content{padding-top:16px;padding-bottom:16px}.mat-list-base .mat-list-item .mat-list-text,.mat-list-base .mat-list-option .mat-list-text{display:flex;flex-direction:column;width:100%;box-sizing:border-box;overflow:hidden;padding:0}.mat-list-base .mat-list-item .mat-list-text>*,.mat-list-base .mat-list-option .mat-list-text>*{margin:0;padding:0;font-weight:400;font-size:inherit}.mat-list-base .mat-list-item .mat-list-text:empty,.mat-list-base .mat-list-option .mat-list-text:empty{display:none}.mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,.mat-list-base .mat-list-item.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base .mat-list-option.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,.mat-list-base .mat-list-option.mat-list-option .mat-list-item-content .mat-list-text{padding-right:0;padding-left:16px}[dir=rtl] .mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base .mat-list-item.mat-list-option .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base .mat-list-option.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base .mat-list-option.mat-list-option .mat-list-item-content .mat-list-text{padding-right:16px;padding-left:0}.mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,.mat-list-base .mat-list-item.mat-list-option .mat-list-item-content-reverse .mat-list-text,.mat-list-base .mat-list-option.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,.mat-list-base .mat-list-option.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-left:0;padding-right:16px}[dir=rtl] .mat-list-base .mat-list-item.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base .mat-list-item.mat-list-option .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base .mat-list-option.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base .mat-list-option.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-right:0;padding-left:16px}.mat-list-base .mat-list-item.mat-list-item-with-avatar.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base .mat-list-item.mat-list-item-with-avatar.mat-list-option .mat-list-item-content-reverse .mat-list-text,.mat-list-base .mat-list-option.mat-list-item-with-avatar.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base .mat-list-option.mat-list-item-with-avatar.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-right:16px;padding-left:16px}.mat-list-base .mat-list-item .mat-list-avatar,.mat-list-base .mat-list-option .mat-list-avatar{flex-shrink:0;width:40px;height:40px;border-radius:50%;object-fit:cover}.mat-list-base .mat-list-item .mat-list-avatar~.mat-divider-inset,.mat-list-base .mat-list-option .mat-list-avatar~.mat-divider-inset{margin-left:72px;width:calc(100% - 72px)}[dir=rtl] .mat-list-base .mat-list-item .mat-list-avatar~.mat-divider-inset,[dir=rtl] .mat-list-base .mat-list-option .mat-list-avatar~.mat-divider-inset{margin-left:auto;margin-right:72px}.mat-list-base .mat-list-item .mat-list-icon,.mat-list-base .mat-list-option .mat-list-icon{flex-shrink:0;width:24px;height:24px;font-size:24px;box-sizing:content-box;border-radius:50%;padding:4px}.mat-list-base .mat-list-item .mat-list-icon~.mat-divider-inset,.mat-list-base .mat-list-option .mat-list-icon~.mat-divider-inset{margin-left:64px;width:calc(100% - 64px)}[dir=rtl] .mat-list-base .mat-list-item .mat-list-icon~.mat-divider-inset,[dir=rtl] .mat-list-base .mat-list-option .mat-list-icon~.mat-divider-inset{margin-left:auto;margin-right:64px}.mat-list-base .mat-list-item .mat-divider,.mat-list-base .mat-list-option .mat-divider{position:absolute;bottom:0;left:0;width:100%;margin:0}[dir=rtl] .mat-list-base .mat-list-item .mat-divider,[dir=rtl] .mat-list-base .mat-list-option .mat-divider{margin-left:auto;margin-right:0}.mat-list-base .mat-list-item .mat-divider.mat-divider-inset,.mat-list-base .mat-list-option .mat-divider.mat-divider-inset{position:absolute}.mat-list-base[dense]{padding-top:4px;display:block}.mat-list-base[dense] .mat-subheader{height:40px;line-height:8px}.mat-list-base[dense] .mat-subheader:first-child{margin-top:-4px}.mat-list-base[dense] .mat-list-item,.mat-list-base[dense] .mat-list-option{display:block;height:40px;-webkit-tap-highlight-color:transparent;width:100%;padding:0}.mat-list-base[dense] .mat-list-item .mat-list-item-content,.mat-list-base[dense] .mat-list-option .mat-list-item-content{display:flex;flex-direction:row;align-items:center;box-sizing:border-box;padding:0 16px;position:relative;height:inherit}.mat-list-base[dense] .mat-list-item .mat-list-item-content-reverse,.mat-list-base[dense] .mat-list-option .mat-list-item-content-reverse{display:flex;align-items:center;padding:0 16px;flex-direction:row-reverse;justify-content:space-around}.mat-list-base[dense] .mat-list-item .mat-list-item-ripple,.mat-list-base[dense] .mat-list-option .mat-list-item-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar{height:48px}.mat-list-base[dense] .mat-list-item.mat-2-line,.mat-list-base[dense] .mat-list-option.mat-2-line{height:60px}.mat-list-base[dense] .mat-list-item.mat-3-line,.mat-list-base[dense] .mat-list-option.mat-3-line{height:76px}.mat-list-base[dense] .mat-list-item.mat-multi-line,.mat-list-base[dense] .mat-list-option.mat-multi-line{height:auto}.mat-list-base[dense] .mat-list-item.mat-multi-line .mat-list-item-content,.mat-list-base[dense] .mat-list-option.mat-multi-line .mat-list-item-content{padding-top:16px;padding-bottom:16px}.mat-list-base[dense] .mat-list-item .mat-list-text,.mat-list-base[dense] .mat-list-option .mat-list-text{display:flex;flex-direction:column;width:100%;box-sizing:border-box;overflow:hidden;padding:0}.mat-list-base[dense] .mat-list-item .mat-list-text>*,.mat-list-base[dense] .mat-list-option .mat-list-text>*{margin:0;padding:0;font-weight:400;font-size:inherit}.mat-list-base[dense] .mat-list-item .mat-list-text:empty,.mat-list-base[dense] .mat-list-option .mat-list-text:empty{display:none}.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,.mat-list-base[dense] .mat-list-item.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-option .mat-list-item-content .mat-list-text{padding-right:0;padding-left:16px}[dir=rtl] .mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-item.mat-list-option .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar .mat-list-item-content .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-option.mat-list-option .mat-list-item-content .mat-list-text{padding-right:16px;padding-left:0}.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,.mat-list-base[dense] .mat-list-item.mat-list-option .mat-list-item-content-reverse .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-left:0;padding-right:16px}[dir=rtl] .mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-item.mat-list-option .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar .mat-list-item-content-reverse .mat-list-text,[dir=rtl] .mat-list-base[dense] .mat-list-option.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-right:0;padding-left:16px}.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base[dense] .mat-list-item.mat-list-item-with-avatar.mat-list-option .mat-list-item-content-reverse .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar.mat-list-option .mat-list-item-content .mat-list-text,.mat-list-base[dense] .mat-list-option.mat-list-item-with-avatar.mat-list-option .mat-list-item-content-reverse .mat-list-text{padding-right:16px;padding-left:16px}.mat-list-base[dense] .mat-list-item .mat-list-avatar,.mat-list-base[dense] .mat-list-option .mat-list-avatar{flex-shrink:0;width:36px;height:36px;border-radius:50%;object-fit:cover}.mat-list-base[dense] .mat-list-item .mat-list-avatar~.mat-divider-inset,.mat-list-base[dense] .mat-list-option .mat-list-avatar~.mat-divider-inset{margin-left:68px;width:calc(100% - 68px)}[dir=rtl] .mat-list-base[dense] .mat-list-item .mat-list-avatar~.mat-divider-inset,[dir=rtl] .mat-list-base[dense] .mat-list-option .mat-list-avatar~.mat-divider-inset{margin-left:auto;margin-right:68px}.mat-list-base[dense] .mat-list-item .mat-list-icon,.mat-list-base[dense] .mat-list-option .mat-list-icon{flex-shrink:0;width:20px;height:20px;font-size:20px;box-sizing:content-box;border-radius:50%;padding:4px}.mat-list-base[dense] .mat-list-item .mat-list-icon~.mat-divider-inset,.mat-list-base[dense] .mat-list-option .mat-list-icon~.mat-divider-inset{margin-left:60px;width:calc(100% - 60px)}[dir=rtl] .mat-list-base[dense] .mat-list-item .mat-list-icon~.mat-divider-inset,[dir=rtl] .mat-list-base[dense] .mat-list-option .mat-list-icon~.mat-divider-inset{margin-left:auto;margin-right:60px}.mat-list-base[dense] .mat-list-item .mat-divider,.mat-list-base[dense] .mat-list-option .mat-divider{position:absolute;bottom:0;left:0;width:100%;margin:0}[dir=rtl] .mat-list-base[dense] .mat-list-item .mat-divider,[dir=rtl] .mat-list-base[dense] .mat-list-option .mat-divider{margin-left:auto;margin-right:0}.mat-list-base[dense] .mat-list-item .mat-divider.mat-divider-inset,.mat-list-base[dense] .mat-list-option .mat-divider.mat-divider-inset{position:absolute}.mat-nav-list a{text-decoration:none;color:inherit}.mat-nav-list .mat-list-item{cursor:pointer;outline:0}mat-action-list button{background:0 0;color:inherit;border:none;font:inherit;outline:inherit;-webkit-tap-highlight-color:transparent;text-align:left}[dir=rtl] mat-action-list button{text-align:right}mat-action-list button::-moz-focus-inner{border:0}mat-action-list .mat-list-item{cursor:pointer;outline:inherit}.mat-list-option:not(.mat-list-item-disabled){cursor:pointer;outline:0}@media (-ms-high-contrast:active){.mat-selection-list:focus{outline-style:dotted}.mat-list-option:focus,.mat-list-option:hover,.mat-nav-list .mat-list-item:focus,.mat-nav-list .mat-list-item:hover,mat-action-list .mat-list-item:focus,mat-action-list .mat-list-item:hover{outline:dotted 1px}}@media (hover:none){.mat-action-list .mat-list-item:not(.mat-list-item-disabled):hover,.mat-list-option:not(.mat-list-item-disabled):hover,.mat-nav-list .mat-list-item:not(.mat-list-item-disabled):hover{background:0 0}}"],
- encapsulation: ViewEncapsulation.None,
- providers: [MAT_SELECTION_LIST_VALUE_ACCESSOR],
- changeDetection: ChangeDetectionStrategy.OnPush
- },] },
- ];
- /** @nocollapse */
- MatSelectionList.ctorParameters = function () { return [
- { type: ElementRef },
- { type: String, decorators: [{ type: Attribute, args: ['tabindex',] }] }
- ]; };
- MatSelectionList.propDecorators = {
- options: [{ type: ContentChildren, args: [MatListOption, { descendants: true },] }],
- selectionChange: [{ type: Output }],
- tabIndex: [{ type: Input }],
- color: [{ type: Input }],
- compareWith: [{ type: Input }],
- disabled: [{ type: Input }]
- };
- return MatSelectionList;
- }(_MatSelectionListMixinBase));
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- var MatListModule = /** @class */ (function () {
- function MatListModule() {
- }
- MatListModule.decorators = [
- { type: NgModule, args: [{
- imports: [MatLineModule, MatRippleModule, MatCommonModule, MatPseudoCheckboxModule, CommonModule],
- exports: [
- MatList,
- MatNavList,
- MatListItem,
- MatListAvatarCssMatStyler,
- MatLineModule,
- MatCommonModule,
- MatListIconCssMatStyler,
- MatListSubheaderCssMatStyler,
- MatPseudoCheckboxModule,
- MatSelectionList,
- MatListOption,
- MatDividerModule
- ],
- declarations: [
- MatList,
- MatNavList,
- MatListItem,
- MatListAvatarCssMatStyler,
- MatListIconCssMatStyler,
- MatListSubheaderCssMatStyler,
- MatSelectionList,
- MatListOption
- ],
- },] },
- ];
- return MatListModule;
- }());
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- /**
- * @fileoverview added by tsickle
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
- */
- export { MatListModule, MatNavList, MatList, MatListAvatarCssMatStyler, MatListIconCssMatStyler, MatListSubheaderCssMatStyler, MatListItem, MAT_SELECTION_LIST_VALUE_ACCESSOR, MatSelectionListChange, MatListOption, MatSelectionList };
- //# sourceMappingURL=list.es5.js.map
|