Skip to content

chore: bump to 6.0.0-beta.6 and remove explicit preserveWhitespaces setting #10216

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 6, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
293 changes: 175 additions & 118 deletions package-lock.json

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
"node": ">= 5.4.1"
},
"dependencies": {
"@angular/animations": ">=6.0.0-beta.0 <7.0.0",
"@angular/common": ">=6.0.0-beta.0 <7.0.0",
"@angular/compiler": ">=6.0.0-beta.0 <7.0.0",
"@angular/core": ">=6.0.0-beta.0 <7.0.0",
"@angular/forms": ">=6.0.0-beta.0 <7.0.0",
"@angular/platform-browser": ">=6.0.0-beta.0 <7.0.0",
"@angular/animations": ">=6.0.0-beta.6 <7.0.0",
"@angular/common": ">=6.0.0-beta.6 <7.0.0",
"@angular/compiler": ">=6.0.0-beta.6 <7.0.0",
"@angular/core": ">=6.0.0-beta.6 <7.0.0",
"@angular/forms": ">=6.0.0-beta.6 <7.0.0",
"@angular/platform-browser": ">=6.0.0-beta.6 <7.0.0",
"core-js": "^2.4.1",
"rxjs": "^5.5.5",
"systemjs": "0.19.43",
Expand All @@ -40,12 +40,12 @@
"zone.js": "^0.8.12"
},
"devDependencies": {
"@angular/bazel": ">=6.0.0-beta.0 <7.0.0",
"@angular/compiler-cli": ">=6.0.0-beta.0 <7.0.0",
"@angular/http": ">=6.0.0-beta.0 <7.0.0",
"@angular/platform-browser-dynamic": ">=6.0.0-beta.0 <7.0.0",
"@angular/platform-server": ">=6.0.0-beta.0 <7.0.0",
"@angular/router": ">=6.0.0-beta.0 <7.0.0",
"@angular/bazel": ">=6.0.0-beta.6 <7.0.0",
"@angular/compiler-cli": ">=6.0.0-beta.6 <7.0.0",
"@angular/http": ">=6.0.0-beta.6 <7.0.0",
"@angular/platform-browser-dynamic": ">=6.0.0-beta.6 <7.0.0",
"@angular/platform-server": ">=6.0.0-beta.6 <7.0.0",
"@angular/router": ">=6.0.0-beta.6 <7.0.0",
"@angular/upgrade": "^5.0.1",
"@bazel/ibazel": "0.3.1",
"@google-cloud/storage": "^1.1.1",
Expand Down
1 change: 0 additions & 1 deletion src/cdk-experimental/dialog/dialog-container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ export function throwDialogContentAlreadyAttachedError() {
templateUrl: './dialog-container.html',
styleUrls: ['dialog-container.css'],
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
// Using OnPush for dialogs caused some G3 sync issues. Disabled until we can track them down.
// tslint:disable-next-line:validate-decorators
changeDetection: ChangeDetectionStrategy.Default,
Expand Down
1 change: 0 additions & 1 deletion src/cdk/stepper/stepper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ export class StepperSelectionEvent {
exportAs: 'cdkStep',
templateUrl: 'step.html',
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class CdkStep implements OnChanges {
Expand Down
2 changes: 0 additions & 2 deletions src/cdk/table/row.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ export class CdkCellOutlet {
},
changeDetection: ChangeDetectionStrategy.OnPush,
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
})
export class CdkHeaderRow { }

Expand All @@ -174,6 +173,5 @@ export class CdkHeaderRow { }
},
changeDetection: ChangeDetectionStrategy.OnPush,
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
})
export class CdkRow { }
1 change: 0 additions & 1 deletion src/cdk/table/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ abstract class RowViewRef<T> extends EmbeddedViewRef<CdkCellOutletRowContext<T>>
'class': 'cdk-table',
},
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class CdkTable<T> implements CollectionViewer, OnInit, AfterContentChecked {
Expand Down
1 change: 0 additions & 1 deletion src/cdk/tree/tree.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ export class CdkTreeNode<T> implements FocusableOption, OnDestroy {
'role': 'tree',
},
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class CdkTree<T> implements CollectionViewer, OnInit, OnDestroy {
Expand Down
1 change: 0 additions & 1 deletion src/demo-app/a11y/a11y.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ export class AccessibilityHome {}
templateUrl: 'a11y.html',
styleUrls: ['a11y.css'],
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
})
export class AccessibilityDemo implements OnDestroy {
currentComponent: string = '';
Expand Down
1 change: 0 additions & 1 deletion src/demo-app/a11y/icon/icon-a11y.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import {MatSnackBar} from '@angular/material';
selector: 'icon-a11y',
templateUrl: 'icon-a11y.html',
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
})
export class IconAccessibilityDemo {
constructor(private snackBar: MatSnackBar) {}
Expand Down
1 change: 0 additions & 1 deletion src/demo-app/a11y/sidenav/basic-sidenav-a11y.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,5 @@ import {Component, ViewEncapsulation} from '@angular/core';
styleUrls: ['shared.css'],
host: {'class': 'a11y-demo-sidenav-app'},
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
})
export class SidenavBasicAccessibilityDemo {}
1 change: 0 additions & 1 deletion src/demo-app/a11y/sidenav/dual-sidenav-a11y.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import {MatSnackBar} from '@angular/material/snack-bar';
styleUrls: ['shared.css', 'dual-sidenav-a11y.css'],
host: {'class': 'a11y-demo-sidenav-app'},
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
})
export class SidenavDualAccessibilityDemo {
constructor(private _snackbar: MatSnackBar) {}
Expand Down
1 change: 0 additions & 1 deletion src/demo-app/a11y/sidenav/mobile-sidenav-a11y.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import {ChangeDetectorRef, Component, OnDestroy, ViewEncapsulation} from '@angul
styleUrls: ['shared.css', 'mobile-sidenav-a11y.css'],
host: {'class': 'a11y-demo-sidenav-app'},
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
})
export class SidenavMobileAccessibilityDemo implements OnDestroy {
mobileQuery: MediaQueryList;
Expand Down
1 change: 0 additions & 1 deletion src/demo-app/a11y/sidenav/sidenav-a11y.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,5 @@ import {Component} from '@angular/core';
moduleId: module.id,
selector: 'sidenav-a11y',
templateUrl: 'sidenav-a11y.html',
preserveWhitespaces: false,
})
export class SidenavAccessibilityDemo {}
1 change: 0 additions & 1 deletion src/demo-app/autocomplete/autocomplete-demo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export interface StateGroup {
templateUrl: 'autocomplete-demo.html',
styleUrls: ['autocomplete-demo.css'],
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
})
export class AutocompleteDemo {
stateCtrl: FormControl;
Expand Down
1 change: 0 additions & 1 deletion src/demo-app/bottom-sheet/bottom-sheet-demo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ const defaultConfig = new MatBottomSheetConfig();
styleUrls: ['bottom-sheet-demo.css'],
templateUrl: 'bottom-sheet-demo.html',
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
})
export class BottomSheetDemo {
config: MatBottomSheetConfig = {
Expand Down
2 changes: 0 additions & 2 deletions src/demo-app/demo-app/demo-app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import {Component, ElementRef, ViewEncapsulation} from '@angular/core';
selector: 'entry-app',
template: '<router-outlet></router-outlet>',
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
})
export class EntryApp {}

Expand All @@ -45,7 +44,6 @@ export class Home {}
templateUrl: 'demo-app.html',
styleUrls: ['demo-app.css'],
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
})
export class DemoApp {
dark = false;
Expand Down
1 change: 0 additions & 1 deletion src/demo-app/drawer/drawer-demo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import {Component, ViewEncapsulation} from '@angular/core';
templateUrl: 'drawer-demo.html',
styleUrls: ['drawer-demo.css'],
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
})
export class DrawerDemo {
invert = false;
Expand Down
1 change: 0 additions & 1 deletion src/demo-app/expansion/expansion-demo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import {MatAccordion} from '@angular/material';
styleUrls: ['expansion-demo.css'],
templateUrl: 'expansion-demo.html',
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
})
export class ExpansionDemo {
@ViewChild(MatAccordion) accordion: MatAccordion;
Expand Down
1 change: 0 additions & 1 deletion src/demo-app/icon/icon-demo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import {MatIconRegistry} from '@angular/material';
templateUrl: 'icon-demo.html',
styleUrls: ['icon-demo.css'],
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
})
export class IconDemo {
constructor(iconRegistry: MatIconRegistry, sanitizer: DomSanitizer) {
Expand Down
1 change: 0 additions & 1 deletion src/demo-app/overlay/overlay-demo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ import {tap} from 'rxjs/operators/tap';
templateUrl: 'overlay-demo.html',
styleUrls: ['overlay-demo.css'],
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
})
export class OverlayDemo {
nextPosition: number = 0;
Expand Down
1 change: 0 additions & 1 deletion src/demo-app/sidenav/sidenav-demo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import {Component, ViewEncapsulation} from '@angular/core';
templateUrl: 'sidenav-demo.html',
styleUrls: ['sidenav-demo.css'],
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
})
export class SidenavDemo {
isLaunched = false;
Expand Down
1 change: 0 additions & 1 deletion src/demo-app/snack-bar/snack-bar-demo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import {
styleUrls: ['snack-bar-demo.css'],
templateUrl: 'snack-bar-demo.html',
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
})
export class SnackBarDemo {
message: string = 'Snack Bar opened.';
Expand Down
1 change: 0 additions & 1 deletion src/demo-app/tabs/tabs-demo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import {Observable} from 'rxjs/Observable';
templateUrl: 'tabs-demo.html',
styleUrls: ['tabs-demo.css'],
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
})
export class TabsDemo {
// Nav bar demo
Expand Down
1 change: 0 additions & 1 deletion src/demo-app/tooltip/tooltip-demo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import {TooltipPosition} from '@angular/material';
templateUrl: 'tooltip-demo.html',
styleUrls: ['tooltip-demo.css'],
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
})
export class TooltipDemo {
position: TooltipPosition = 'below';
Expand Down
1 change: 0 additions & 1 deletion src/lib/autocomplete/autocomplete.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ export const MAT_AUTOCOMPLETE_DEFAULT_OPTIONS =
templateUrl: 'autocomplete.html',
styleUrls: ['autocomplete.css'],
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush,
exportAs: 'matAutocomplete',
inputs: ['disableRipple'],
Expand Down
1 change: 0 additions & 1 deletion src/lib/bottom-sheet/bottom-sheet-container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ import {FocusTrap, FocusTrapFactory} from '@angular/cdk/a11y';
styleUrls: ['bottom-sheet-container.css'],
changeDetection: ChangeDetectionStrategy.OnPush,
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
animations: [matBottomSheetAnimations.bottomSheetState],
host: {
'class': 'mat-bottom-sheet-container',
Expand Down
1 change: 0 additions & 1 deletion src/lib/button-toggle/button-toggle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,6 @@ export const _MatButtonToggleMixinBase = mixinDisableRipple(MatButtonToggleBase)
templateUrl: 'button-toggle.html',
styleUrls: ['button-toggle.css'],
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
exportAs: 'matButtonToggle',
changeDetection: ChangeDetectionStrategy.OnPush,
inputs: ['disableRipple'],
Expand Down
2 changes: 0 additions & 2 deletions src/lib/button/button.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ export const _MatButtonMixinBase = mixinColor(mixinDisabled(mixinDisableRipple(M
styleUrls: ['button.css'],
inputs: ['disabled', 'disableRipple', 'color'],
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class MatButton extends _MatButtonMixinBase
Expand Down Expand Up @@ -155,7 +154,6 @@ export class MatButton extends _MatButtonMixinBase
templateUrl: 'button.html',
styleUrls: ['button.css'],
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class MatAnchor extends MatButton {
Expand Down
3 changes: 0 additions & 3 deletions src/lib/card/card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,6 @@ export class MatCardAvatar {}
templateUrl: 'card.html',
styleUrls: ['card.css'],
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush,
host: {'class': 'mat-card'}
})
Expand All @@ -172,7 +171,6 @@ export class MatCard {}
selector: 'mat-card-header',
templateUrl: 'card-header.html',
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush,
host: {'class': 'mat-card-header'}
})
Expand All @@ -189,7 +187,6 @@ export class MatCardHeader {}
selector: 'mat-card-title-group',
templateUrl: 'card-title-group.html',
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush,
host: {'class': 'mat-card-title-group'}
})
Expand Down
1 change: 0 additions & 1 deletion src/lib/checkbox/checkbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ export const _MatCheckboxMixinBase =
providers: [MAT_CHECKBOX_CONTROL_VALUE_ACCESSOR],
inputs: ['disabled', 'disableRipple', 'color', 'tabIndex'],
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class MatCheckbox extends _MatCheckboxMixinBase implements ControlValueAccessor,
Expand Down
1 change: 0 additions & 1 deletion src/lib/chips/chip-list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ export class MatChipListChange {
providers: [{provide: MatFormFieldControl, useExisting: MatChipList}],
styleUrls: ['chips.css'],
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class MatChipList extends _MatChipListMixinBase implements MatFormFieldControl<any>,
Expand Down
1 change: 0 additions & 1 deletion src/lib/core/option/optgroup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ let _uniqueOptgroupIdCounter = 0;
exportAs: 'matOptgroup',
templateUrl: 'optgroup.html',
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush,
inputs: ['disabled'],
styleUrls: ['optgroup.css'],
Expand Down
1 change: 0 additions & 1 deletion src/lib/core/option/option.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ export const MAT_OPTION_PARENT_COMPONENT =
styleUrls: ['option.css'],
templateUrl: 'option.html',
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class MatOption implements AfterViewChecked {
Expand Down
1 change: 0 additions & 1 deletion src/lib/core/selection/pseudo-checkbox/pseudo-checkbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ export type MatPseudoCheckboxState = 'unchecked' | 'checked' | 'indeterminate';
@Component({
moduleId: module.id,
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush,
selector: 'mat-pseudo-checkbox',
styleUrls: ['pseudo-checkbox.css'],
Expand Down
1 change: 0 additions & 1 deletion src/lib/datepicker/calendar-body.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ export class MatCalendarCell {
},
exportAs: 'matCalendarBody',
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class MatCalendarBody {
Expand Down
1 change: 0 additions & 1 deletion src/lib/datepicker/calendar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ import {MatYearView} from './year-view';
},
exportAs: 'matCalendar',
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class MatCalendar<D> implements AfterContentInit, OnDestroy, OnChanges {
Expand Down
1 change: 0 additions & 1 deletion src/lib/datepicker/datepicker-toggle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ export class MatDatepickerToggleIcon {}
},
exportAs: 'matDatepickerToggle',
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class MatDatepickerToggle<D> implements AfterContentInit, OnChanges, OnDestroy {
Expand Down
2 changes: 0 additions & 2 deletions src/lib/datepicker/datepicker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ export const _MatDatepickerContentMixinBase = mixinColor(MatDatepickerContentBas
},
exportAs: 'matDatepickerContent',
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush,
inputs: ['color'],
})
Expand Down Expand Up @@ -134,7 +133,6 @@ export class MatDatepickerContent<D> extends _MatDatepickerContentMixinBase
exportAs: 'matDatepicker',
changeDetection: ChangeDetectionStrategy.OnPush,
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
})
export class MatDatepicker<D> implements OnDestroy, CanColor {
/** The date to open the calendar to initially. */
Expand Down
1 change: 0 additions & 1 deletion src/lib/datepicker/month-view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ const DAYS_PER_WEEK = 7;
templateUrl: 'month-view.html',
exportAs: 'matMonthView',
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class MatMonthView<D> implements AfterContentInit {
Expand Down
1 change: 0 additions & 1 deletion src/lib/datepicker/multi-year-view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ export const yearsPerRow = 4;
templateUrl: 'multi-year-view.html',
exportAs: 'matMultiYearView',
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class MatMultiYearView<D> implements AfterContentInit {
Expand Down
1 change: 0 additions & 1 deletion src/lib/datepicker/year-view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ import {createMissingDateImplError} from './datepicker-errors';
templateUrl: 'year-view.html',
exportAs: 'matYearView',
encapsulation: ViewEncapsulation.None,
preserveWhitespaces: false,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class MatYearView<D> implements AfterContentInit {
Expand Down
Loading