Skip to content

Commit 15f3440

Browse files
committed
build: update to TypeScript 4.2
Updates to TS 4.2, tslib 2.1 and resolves some compilation errors.
1 parent 397710d commit 15f3440

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+179
-123
lines changed

package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@
5252
},
5353
"version": "12.0.0-next.2",
5454
"dependencies": {
55-
"@angular/animations": "^12.0.0-next.0",
56-
"@angular/common": "^12.0.0-next.0",
57-
"@angular/compiler": "^12.0.0-next.0",
58-
"@angular/core": "^12.0.0-next.0",
59-
"@angular/elements": "^12.0.0-next.0",
60-
"@angular/forms": "^12.0.0-next.0",
61-
"@angular/platform-browser": "^12.0.0-next.0",
55+
"@angular/animations": "^12.0.0-next.5",
56+
"@angular/common": "^12.0.0-next.5",
57+
"@angular/compiler": "^12.0.0-next.5",
58+
"@angular/core": "^12.0.0-next.5",
59+
"@angular/elements": "^12.0.0-next.5",
60+
"@angular/forms": "^12.0.0-next.5",
61+
"@angular/platform-browser": "^12.0.0-next.5",
6262
"@types/googlemaps": "^3.43.1",
6363
"@types/youtube": "^0.0.40",
6464
"@webcomponents/custom-elements": "^1.1.0",
@@ -67,20 +67,20 @@
6767
"rxjs": "^6.5.3",
6868
"rxjs-tslint-rules": "^4.33.1",
6969
"systemjs": "0.19.43",
70-
"tslib": "^2.0.0",
70+
"tslib": "^2.1.0",
7171
"zone.js": "~0.11.3"
7272
},
7373
"devDependencies": {
74-
"@angular-devkit/build-optimizer": "^0.1200.0-next.0",
75-
"@angular-devkit/core": "^12.0.0-next.0",
76-
"@angular-devkit/schematics": "^12.0.0-next.0",
77-
"@angular/bazel": "^12.0.0-next.0",
74+
"@angular-devkit/build-optimizer": "^0.1200.0-next.4",
75+
"@angular-devkit/core": "^12.0.0-next.4",
76+
"@angular-devkit/schematics": "^12.0.0-next.4",
77+
"@angular/bazel": "^12.0.0-next.5",
7878
"@angular/benchpress": "^0.2.1",
79-
"@angular/compiler-cli": "^12.0.0-next.0",
79+
"@angular/compiler-cli": "^12.0.0-next.5",
8080
"@angular/dev-infra-private": "https://github.com/angular/dev-infra-private-builds.git#a8dbb0d8cd8de1e86a4ec4ea66b5bd89a47d4876",
81-
"@angular/platform-browser-dynamic": "^12.0.0-next.0",
82-
"@angular/platform-server": "^12.0.0-next.0",
83-
"@angular/router": "^12.0.0-next.0",
81+
"@angular/platform-browser-dynamic": "^12.0.0-next.5",
82+
"@angular/platform-server": "^12.0.0-next.5",
83+
"@angular/router": "^12.0.0-next.5",
8484
"@axe-core/webdriverjs": "^4.1.0",
8585
"@bazel/bazelisk": "^1.4.0",
8686
"@bazel/buildifier": "^4.0.0",
@@ -140,7 +140,7 @@
140140
"@material/touch-target": "11.0.0-canary.67d780c79.0",
141141
"@material/typography": "11.0.0-canary.67d780c79.0",
142142
"@octokit/rest": "18.3.5",
143-
"@schematics/angular": "^12.0.0-next.0",
143+
"@schematics/angular": "^12.0.0-next.4",
144144
"@types/autoprefixer": "^9.7.2",
145145
"@types/browser-sync": "^2.26.1",
146146
"@types/fs-extra": "^9.0.5",
@@ -217,11 +217,11 @@
217217
"tsickle": "0.39.1",
218218
"tslint": "^6.1.3",
219219
"tsutils": "^3.17.1",
220-
"typescript": "~4.1.2",
220+
"typescript": "~4.2.3",
221221
"vrsource-tslint-rules": "6.0.0",
222222
"yaml": "^1.10.0"
223223
},
224224
"resolutions": {
225-
"dgeni-packages/typescript": "4.1.2"
225+
"dgeni-packages/typescript": "4.2.3"
226226
}
227227
}

packages.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# version for the placeholders.
44
ANGULAR_PACKAGE_VERSION = "^12.0.0-0 || ^13.0.0-0"
55
MDC_PACKAGE_VERSION = "^9.0.0-canary.419e03572.0"
6-
TSLIB_PACKAGE_VERSION = "^2.0.0"
6+
TSLIB_PACKAGE_VERSION = "^2.1.0"
77

88
# Each placer holder is used to stamp versions during the build process, replacing the key with it's
99
# value pair. These replacements occur during building of `npm_package` and `ng_package` stamping in

src/cdk-experimental/selection/selection.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ export class CdkSelection<T> implements OnInit, AfterContentChecked, CollectionV
138138

139139
/** Toggles selection for a given value. `index` is required if `trackBy` is used. */
140140
toggleSelection(value: T, index?: number) {
141-
if (this.trackByFn && index == null && (typeof ngDevMode === 'undefined' || ngDevMode)) {
141+
if (!!this.trackByFn && index == null && (typeof ngDevMode === 'undefined' || ngDevMode)) {
142142
throw Error('CdkSelection: index required when trackBy is used');
143143
}
144144

@@ -167,7 +167,7 @@ export class CdkSelection<T> implements OnInit, AfterContentChecked, CollectionV
167167

168168
/** Checks whether a value is selected. `index` is required if `trackBy` is used. */
169169
isSelected(value: T, index?: number) {
170-
if (this.trackByFn && index == null && (typeof ngDevMode === 'undefined' || ngDevMode)) {
170+
if (!!this.trackByFn && index == null && (typeof ngDevMode === 'undefined' || ngDevMode)) {
171171
throw Error('CdkSelection: index required when trackBy is used');
172172
}
173173

src/google-maps/map-marker-clusterer/map-marker-clusterer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ export class MapMarkerClusterer implements OnInit, AfterContentInit, OnChanges,
233233
if (changes['batchSizeIE'] && _batchSizeIE !== undefined) {
234234
clusterer.setBatchSizeIE(_batchSizeIE);
235235
}
236-
if (changes['calculator'] && _calculator) {
236+
if (changes['calculator'] && !!_calculator) {
237237
clusterer.setCalculator(_calculator);
238238
}
239239
if (changes['clusterClass'] && _clusterClass !== undefined) {

src/material-experimental/mdc-chips/chip.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ import {
3232
import {
3333
CanColor,
3434
CanColorCtor,
35+
CanDisable,
3536
CanDisableRipple,
3637
CanDisableRippleCtor,
3738
HasTabIndex,
@@ -87,8 +88,7 @@ export class MatChipCssInternalOnly { }
8788
* Boilerplate for applying mixins to MatChip.
8889
* @docs-private
8990
*/
90-
abstract class MatChipBase {
91-
abstract disabled: boolean;
91+
class MatChipBase {
9292
constructor(public _elementRef: ElementRef) {}
9393
}
9494

@@ -126,7 +126,7 @@ const _MatChipMixinBase:
126126
changeDetection: ChangeDetectionStrategy.OnPush,
127127
})
128128
export class MatChip extends _MatChipMixinBase implements AfterContentInit, AfterViewInit,
129-
CanColor, CanDisableRipple, HasTabIndex, OnDestroy {
129+
CanColor, CanDisableRipple, CanDisable, HasTabIndex, OnDestroy {
130130
/** The ripple animation configuration to use for the chip. */
131131
readonly _rippleAnimation: RippleAnimationConfig = RIPPLE_ANIMATION_CONFIG;
132132

src/material/chips/chip.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ import {
2929
import {
3030
CanColor,
3131
CanColorCtor,
32+
CanDisable,
3233
CanDisableRipple,
3334
CanDisableRippleCtor,
3435
HasTabIndex,
@@ -88,8 +89,7 @@ export const MAT_CHIP_TRAILING_ICON =
8889

8990
// Boilerplate for applying mixins to MatChip.
9091
/** @docs-private */
91-
abstract class MatChipBase {
92-
abstract disabled: boolean;
92+
class MatChipBase {
9393
constructor(public _elementRef: ElementRef) {}
9494
}
9595

@@ -146,7 +146,7 @@ export class MatChipTrailingIcon {}
146146
},
147147
})
148148
export class MatChip extends _MatChipMixinBase implements FocusableOption, OnDestroy, CanColor,
149-
CanDisableRipple, RippleTarget, HasTabIndex {
149+
CanDisableRipple, RippleTarget, HasTabIndex, CanDisable {
150150

151151
/** Reference to the RippleRenderer for the chip. */
152152
private _chipRipple: RippleRenderer;

tools/public_api_guard/cdk/a11y.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
export declare class A11yModule {
22
constructor(highContrastModeDetector: HighContrastModeDetector);
3+
static ɵfac: i0.ɵɵFactoryDef<A11yModule, never>;
34
static ɵinj: i0.ɵɵInjectorDef<A11yModule>;
45
static ɵmod: i0.ɵɵNgModuleDefWithMeta<A11yModule, [typeof i1.CdkAriaLive, typeof i2.CdkTrapFocus, typeof i3.CdkMonitorFocus], [typeof i4.PlatformModule, typeof i5.ObserversModule], [typeof i1.CdkAriaLive, typeof i2.CdkTrapFocus, typeof i3.CdkMonitorFocus]>;
56
}

tools/public_api_guard/cdk/accordion.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ export declare class CdkAccordionItem implements OnDestroy {
3737
}
3838

3939
export declare class CdkAccordionModule {
40+
static ɵfac: i0.ɵɵFactoryDef<CdkAccordionModule, never>;
4041
static ɵinj: i0.ɵɵInjectorDef<CdkAccordionModule>;
4142
static ɵmod: i0.ɵɵNgModuleDefWithMeta<CdkAccordionModule, [typeof i1.CdkAccordion, typeof i2.CdkAccordionItem], never, [typeof i1.CdkAccordion, typeof i2.CdkAccordionItem]>;
4243
}

tools/public_api_guard/cdk/bidi.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
export declare class BidiModule {
2+
static ɵfac: i0.ɵɵFactoryDef<BidiModule, never>;
23
static ɵinj: i0.ɵɵInjectorDef<BidiModule>;
34
static ɵmod: i0.ɵɵNgModuleDefWithMeta<BidiModule, [typeof i1.Dir], never, [typeof i1.Dir]>;
45
}

tools/public_api_guard/cdk/clipboard.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export declare class Clipboard {
2626
}
2727

2828
export declare class ClipboardModule {
29+
static ɵfac: i0.ɵɵFactoryDef<ClipboardModule, never>;
2930
static ɵinj: i0.ɵɵInjectorDef<ClipboardModule>;
3031
static ɵmod: i0.ɵɵNgModuleDefWithMeta<ClipboardModule, [typeof i1.CdkCopyToClipboard], never, [typeof i1.CdkCopyToClipboard]>;
3132
}

tools/public_api_guard/cdk/drag-drop.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,7 @@ export interface DragDropConfig extends Partial<DragRefConfig> {
228228
}
229229

230230
export declare class DragDropModule {
231+
static ɵfac: i0.ɵɵFactoryDef<DragDropModule, never>;
231232
static ɵinj: i0.ɵɵInjectorDef<DragDropModule>;
232233
static ɵmod: i0.ɵɵNgModuleDefWithMeta<DragDropModule, [typeof i1.CdkDropList, typeof i2.CdkDropListGroup, typeof i3.CdkDrag, typeof i4.CdkDragHandle, typeof i5.CdkDragPreview, typeof i6.CdkDragPlaceholder], never, [typeof i7.CdkScrollableModule, typeof i1.CdkDropList, typeof i2.CdkDropListGroup, typeof i3.CdkDrag, typeof i4.CdkDragHandle, typeof i5.CdkDragPreview, typeof i6.CdkDragPlaceholder]>;
233234
}

tools/public_api_guard/cdk/layout.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ export interface BreakpointState {
3232
}
3333

3434
export declare class LayoutModule {
35+
static ɵfac: i0.ɵɵFactoryDef<LayoutModule, never>;
3536
static ɵinj: i0.ɵɵInjectorDef<LayoutModule>;
3637
static ɵmod: i0.ɵɵNgModuleDefWithMeta<LayoutModule, never, never, never>;
3738
}

tools/public_api_guard/cdk/observers.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ export declare class MutationObserverFactory {
2929
}
3030

3131
export declare class ObserversModule {
32+
static ɵfac: i0.ɵɵFactoryDef<ObserversModule, never>;
3233
static ɵinj: i0.ɵɵInjectorDef<ObserversModule>;
3334
static ɵmod: i0.ɵɵNgModuleDefWithMeta<ObserversModule, [typeof CdkObserveContent], never, [typeof CdkObserveContent]>;
3435
}

tools/public_api_guard/cdk/overlay.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,7 @@ export declare class OverlayKeyboardDispatcher extends BaseOverlayDispatcher {
241241
}
242242

243243
export declare class OverlayModule {
244+
static ɵfac: i0.ɵɵFactoryDef<OverlayModule, never>;
244245
static ɵinj: i0.ɵɵInjectorDef<OverlayModule>;
245246
static ɵmod: i0.ɵɵNgModuleDefWithMeta<OverlayModule, [typeof i1.CdkConnectedOverlay, typeof i1.CdkOverlayOrigin], [typeof i2.BidiModule, typeof i3.PortalModule, typeof i4.ScrollingModule], [typeof i1.CdkConnectedOverlay, typeof i1.CdkOverlayOrigin, typeof i4.ScrollingModule]>;
246247
}

tools/public_api_guard/cdk/platform.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export declare class Platform {
2424
}
2525

2626
export declare class PlatformModule {
27+
static ɵfac: i0.ɵɵFactoryDef<PlatformModule, never>;
2728
static ɵinj: i0.ɵɵInjectorDef<PlatformModule>;
2829
static ɵmod: i0.ɵɵNgModuleDefWithMeta<PlatformModule, never, never, never>;
2930
}

tools/public_api_guard/cdk/portal.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ export declare class PortalInjector implements Injector {
9191
}
9292

9393
export declare class PortalModule {
94+
static ɵfac: i0.ɵɵFactoryDef<PortalModule, never>;
9495
static ɵinj: i0.ɵɵInjectorDef<PortalModule>;
9596
static ɵmod: i0.ɵɵNgModuleDefWithMeta<PortalModule, [typeof CdkPortal, typeof CdkPortalOutlet, typeof TemplatePortalDirective, typeof PortalHostDirective], never, [typeof CdkPortal, typeof CdkPortalOutlet, typeof TemplatePortalDirective, typeof PortalHostDirective]>;
9697
}

tools/public_api_guard/cdk/scrolling.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ export declare class CdkScrollable implements OnInit, OnDestroy {
7070
}
7171

7272
export declare class CdkScrollableModule {
73+
static ɵfac: i0.ɵɵFactoryDef<CdkScrollableModule, never>;
7374
static ɵinj: i0.ɵɵInjectorDef<CdkScrollableModule>;
7475
static ɵmod: i0.ɵɵNgModuleDefWithMeta<CdkScrollableModule, [typeof i1.CdkScrollable], never, [typeof i1.CdkScrollable]>;
7576
}
@@ -181,6 +182,7 @@ export declare class ScrollDispatcher implements OnDestroy {
181182
}
182183

183184
export declare class ScrollingModule {
185+
static ɵfac: i0.ɵɵFactoryDef<ScrollingModule, never>;
184186
static ɵinj: i0.ɵɵInjectorDef<ScrollingModule>;
185187
static ɵmod: i0.ɵɵNgModuleDefWithMeta<ScrollingModule, [typeof i2.CdkFixedSizeVirtualScroll, typeof i3.CdkVirtualForOf, typeof i4.CdkVirtualScrollViewport], [typeof i5.BidiModule, typeof i6.PlatformModule, typeof CdkScrollableModule], [typeof i5.BidiModule, typeof CdkScrollableModule, typeof i2.CdkFixedSizeVirtualScroll, typeof i3.CdkVirtualForOf, typeof i4.CdkVirtualScrollViewport]>;
186188
}

tools/public_api_guard/cdk/stepper.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ export declare class CdkStepper implements AfterContentInit, AfterViewInit, OnDe
8989
}
9090

9191
export declare class CdkStepperModule {
92+
static ɵfac: i0.ɵɵFactoryDef<CdkStepperModule, never>;
9293
static ɵinj: i0.ɵɵInjectorDef<CdkStepperModule>;
9394
static ɵmod: i0.ɵɵNgModuleDefWithMeta<CdkStepperModule, [typeof i1.CdkStep, typeof i1.CdkStepper, typeof i2.CdkStepHeader, typeof i3.CdkStepLabel, typeof i4.CdkStepperNext, typeof i4.CdkStepperPrevious], [typeof i5.BidiModule], [typeof i1.CdkStep, typeof i1.CdkStepper, typeof i2.CdkStepHeader, typeof i3.CdkStepLabel, typeof i4.CdkStepperNext, typeof i4.CdkStepperPrevious]>;
9495
}

tools/public_api_guard/cdk/table.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,7 @@ export declare class CdkTable<T> implements AfterContentChecked, CollectionViewe
252252
}
253253

254254
export declare class CdkTableModule {
255+
static ɵfac: i0.ɵɵFactoryDef<CdkTableModule, never>;
255256
static ɵinj: i0.ɵɵInjectorDef<CdkTableModule>;
256257
static ɵmod: i0.ɵɵNgModuleDefWithMeta<CdkTableModule, [typeof i1.CdkTable, typeof i2.CdkRowDef, typeof i3.CdkCellDef, typeof i2.CdkCellOutlet, typeof i3.CdkHeaderCellDef, typeof i3.CdkFooterCellDef, typeof i3.CdkColumnDef, typeof i3.CdkCell, typeof i2.CdkRow, typeof i3.CdkHeaderCell, typeof i3.CdkFooterCell, typeof i2.CdkHeaderRow, typeof i2.CdkHeaderRowDef, typeof i2.CdkFooterRow, typeof i2.CdkFooterRowDef, typeof i1.DataRowOutlet, typeof i1.HeaderRowOutlet, typeof i1.FooterRowOutlet, typeof i4.CdkTextColumn, typeof i2.CdkNoDataRow, typeof i1.CdkRecycleRows, typeof i1.NoDataRowOutlet], [typeof i5.ScrollingModule], [typeof i1.CdkTable, typeof i2.CdkRowDef, typeof i3.CdkCellDef, typeof i2.CdkCellOutlet, typeof i3.CdkHeaderCellDef, typeof i3.CdkFooterCellDef, typeof i3.CdkColumnDef, typeof i3.CdkCell, typeof i2.CdkRow, typeof i3.CdkHeaderCell, typeof i3.CdkFooterCell, typeof i2.CdkHeaderRow, typeof i2.CdkHeaderRowDef, typeof i2.CdkFooterRow, typeof i2.CdkFooterRowDef, typeof i1.DataRowOutlet, typeof i1.HeaderRowOutlet, typeof i1.FooterRowOutlet, typeof i4.CdkTextColumn, typeof i2.CdkNoDataRow, typeof i1.CdkRecycleRows, typeof i1.NoDataRowOutlet]>;
257258
}

tools/public_api_guard/cdk/text-field.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ export declare class CdkTextareaAutosize implements AfterViewInit, DoCheck, OnDe
4949
}
5050

5151
export declare class TextFieldModule {
52+
static ɵfac: i0.ɵɵFactoryDef<TextFieldModule, never>;
5253
static ɵinj: i0.ɵɵInjectorDef<TextFieldModule>;
5354
static ɵmod: i0.ɵɵNgModuleDefWithMeta<TextFieldModule, [typeof i1.CdkAutofill, typeof i2.CdkTextareaAutosize], [typeof i3.PlatformModule], [typeof i1.CdkAutofill, typeof i2.CdkTextareaAutosize]>;
5455
}

tools/public_api_guard/cdk/tree.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ export declare class CdkTree<T, K = T> implements AfterContentChecked, Collectio
6060
}
6161

6262
export declare class CdkTreeModule {
63+
static ɵfac: i0.ɵɵFactoryDef<CdkTreeModule, never>;
6364
static ɵinj: i0.ɵɵInjectorDef<CdkTreeModule>;
6465
static ɵmod: i0.ɵɵNgModuleDefWithMeta<CdkTreeModule, [typeof i1.CdkNestedTreeNode, typeof i2.CdkTreeNodeDef, typeof i3.CdkTreeNodePadding, typeof i4.CdkTreeNodeToggle, typeof i5.CdkTree, typeof i5.CdkTreeNode, typeof i6.CdkTreeNodeOutlet], never, [typeof i1.CdkNestedTreeNode, typeof i2.CdkTreeNodeDef, typeof i3.CdkTreeNodePadding, typeof i4.CdkTreeNodeToggle, typeof i5.CdkTree, typeof i5.CdkTreeNode, typeof i6.CdkTreeNodeOutlet]>;
6566
}

tools/public_api_guard/google-maps/google-maps.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ export declare class GoogleMap implements OnChanges, OnInit, OnDestroy {
5151
}
5252

5353
export declare class GoogleMapsModule {
54+
static ɵfac: i0.ɵɵFactoryDef<GoogleMapsModule, never>;
5455
static ɵinj: i0.ɵɵInjectorDef<GoogleMapsModule>;
5556
static ɵmod: i0.ɵɵNgModuleDefWithMeta<GoogleMapsModule, [typeof i1.GoogleMap, typeof i2.MapBaseLayer, typeof i3.MapBicyclingLayer, typeof i4.MapCircle, typeof i5.MapDirectionsRenderer, typeof i6.MapGroundOverlay, typeof i7.MapInfoWindow, typeof i8.MapKmlLayer, typeof i9.MapMarker, typeof i10.MapMarkerClusterer, typeof i11.MapPolygon, typeof i12.MapPolyline, typeof i13.MapRectangle, typeof i14.MapTrafficLayer, typeof i15.MapTransitLayer, typeof i16.MapHeatmapLayer], never, [typeof i1.GoogleMap, typeof i2.MapBaseLayer, typeof i3.MapBicyclingLayer, typeof i4.MapCircle, typeof i5.MapDirectionsRenderer, typeof i6.MapGroundOverlay, typeof i7.MapInfoWindow, typeof i8.MapKmlLayer, typeof i9.MapMarker, typeof i10.MapMarkerClusterer, typeof i11.MapPolygon, typeof i12.MapPolyline, typeof i13.MapRectangle, typeof i14.MapTrafficLayer, typeof i15.MapTransitLayer, typeof i16.MapHeatmapLayer]>;
5657
}

tools/public_api_guard/material/autocomplete.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ export interface MatAutocompleteDefaultOptions {
118118
}
119119

120120
export declare class MatAutocompleteModule {
121+
static ɵfac: i0.ɵɵFactoryDef<MatAutocompleteModule, never>;
121122
static ɵinj: i0.ɵɵInjectorDef<MatAutocompleteModule>;
122123
static ɵmod: i0.ɵɵNgModuleDefWithMeta<MatAutocompleteModule, [typeof i1.MatAutocomplete, typeof i2.MatAutocompleteTrigger, typeof i3.MatAutocompleteOrigin], [typeof i4.OverlayModule, typeof i5.MatOptionModule, typeof i5.MatCommonModule, typeof i6.CommonModule], [typeof i1.MatAutocomplete, typeof i2.MatAutocompleteTrigger, typeof i3.MatAutocompleteOrigin, typeof i7.CdkScrollableModule, typeof i5.MatOptionModule, typeof i5.MatCommonModule]>;
123124
}

tools/public_api_guard/material/badge.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export declare class MatBadge extends _MatBadgeMixinBase implements OnDestroy, O
2626
}
2727

2828
export declare class MatBadgeModule {
29+
static ɵfac: i0.ɵɵFactoryDef<MatBadgeModule, never>;
2930
static ɵinj: i0.ɵɵInjectorDef<MatBadgeModule>;
3031
static ɵmod: i0.ɵɵNgModuleDefWithMeta<MatBadgeModule, [typeof i1.MatBadge], [typeof i2.A11yModule, typeof i3.MatCommonModule], [typeof i1.MatBadge, typeof i3.MatCommonModule]>;
3132
}

tools/public_api_guard/material/bottom-sheet.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ export declare class MatBottomSheetContainer extends BasePortalOutlet implements
5353
}
5454

5555
export declare class MatBottomSheetModule {
56+
static ɵfac: i0.ɵɵFactoryDef<MatBottomSheetModule, never>;
5657
static ɵinj: i0.ɵɵInjectorDef<MatBottomSheetModule>;
5758
static ɵmod: i0.ɵɵNgModuleDefWithMeta<MatBottomSheetModule, [typeof i1.MatBottomSheetContainer], [typeof i2.OverlayModule, typeof i3.MatCommonModule, typeof i4.PortalModule], [typeof i1.MatBottomSheetContainer, typeof i3.MatCommonModule]>;
5859
}

tools/public_api_guard/material/button-toggle.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ export declare class MatButtonToggleGroup implements ControlValueAccessor, OnIni
8888
}
8989

9090
export declare class MatButtonToggleModule {
91+
static ɵfac: i0.ɵɵFactoryDef<MatButtonToggleModule, never>;
9192
static ɵinj: i0.ɵɵInjectorDef<MatButtonToggleModule>;
9293
static ɵmod: i0.ɵɵNgModuleDefWithMeta<MatButtonToggleModule, [typeof i1.MatButtonToggleGroup, typeof i1.MatButtonToggle], [typeof i2.MatCommonModule, typeof i2.MatRippleModule], [typeof i2.MatCommonModule, typeof i1.MatButtonToggleGroup, typeof i1.MatButtonToggle]>;
9394
}

tools/public_api_guard/material/button.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export declare class MatButton extends _MatButtonMixinBase implements AfterViewI
2525
}
2626

2727
export declare class MatButtonModule {
28+
static ɵfac: i0.ɵɵFactoryDef<MatButtonModule, never>;
2829
static ɵinj: i0.ɵɵInjectorDef<MatButtonModule>;
2930
static ɵmod: i0.ɵɵNgModuleDefWithMeta<MatButtonModule, [typeof i1.MatButton, typeof i1.MatAnchor], [typeof i2.MatRippleModule, typeof i2.MatCommonModule], [typeof i1.MatButton, typeof i1.MatAnchor, typeof i2.MatCommonModule]>;
3031
}

tools/public_api_guard/material/card.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ export declare class MatCardMdImage {
4747
}
4848

4949
export declare class MatCardModule {
50+
static ɵfac: i0.ɵɵFactoryDef<MatCardModule, never>;
5051
static ɵinj: i0.ɵɵInjectorDef<MatCardModule>;
5152
static ɵmod: i0.ɵɵNgModuleDefWithMeta<MatCardModule, [typeof i1.MatCard, typeof i1.MatCardHeader, typeof i1.MatCardTitleGroup, typeof i1.MatCardContent, typeof i1.MatCardTitle, typeof i1.MatCardSubtitle, typeof i1.MatCardActions, typeof i1.MatCardFooter, typeof i1.MatCardSmImage, typeof i1.MatCardMdImage, typeof i1.MatCardLgImage, typeof i1.MatCardImage, typeof i1.MatCardXlImage, typeof i1.MatCardAvatar], [typeof i2.MatCommonModule], [typeof i1.MatCard, typeof i1.MatCardHeader, typeof i1.MatCardTitleGroup, typeof i1.MatCardContent, typeof i1.MatCardTitle, typeof i1.MatCardSubtitle, typeof i1.MatCardActions, typeof i1.MatCardFooter, typeof i1.MatCardSmImage, typeof i1.MatCardMdImage, typeof i1.MatCardLgImage, typeof i1.MatCardImage, typeof i1.MatCardXlImage, typeof i1.MatCardAvatar, typeof i2.MatCommonModule]>;
5253
}

0 commit comments

Comments
 (0)