Skip to content

Commit e2df7e9

Browse files
author
Vivian Hu
committed
build: fix broken api goldens
1 parent f751aff commit e2df7e9

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

tools/public_api_guard/lib/chips.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ export declare class MatChip extends _MatChipMixinBase implements FocusableOptio
2020
removable: boolean;
2121
removeIcon: MatChipRemove;
2222
readonly removed: EventEmitter<MatChipEvent>;
23-
rippleConfig: RippleConfig & RippleGlobalOptions;
23+
rippleConfig: RippleConfig;
2424
readonly rippleDisabled: boolean;
2525
selectable: boolean;
2626
selected: boolean;
2727
readonly selectionChange: EventEmitter<MatChipSelectionChange>;
2828
trailingIcon: MatChipTrailingIcon;
2929
value: any;
30-
constructor(_elementRef: ElementRef, _ngZone: NgZone, platform: Platform, globalRippleOptions: RippleGlobalOptions | null);
30+
constructor(_elementRef: ElementRef, _ngZone: NgZone, platform: Platform, globalOptions: RippleGlobalOptions);
3131
_addHostClassName(): void;
3232
_blur(): void;
3333
_handleClick(event: Event): void;

tools/public_api_guard/lib/core.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ export declare class MatRipple implements OnInit, OnDestroy, RippleTarget {
296296
readonly rippleDisabled: boolean;
297297
trigger: HTMLElement;
298298
unbounded: boolean;
299-
constructor(_elementRef: ElementRef<HTMLElement>, ngZone: NgZone, platform: Platform, globalOptions?: RippleGlobalOptions, animationMode?: string);
299+
constructor(_elementRef: ElementRef<HTMLElement>, ngZone: NgZone, platform: Platform, globalOptions: RippleGlobalOptions, animationMode?: string);
300300
fadeOutAll(): void;
301301
launch(config: RippleConfig): RippleRef;
302302
launch(x: number, y: number, config?: RippleConfig): RippleRef;

tools/public_api_guard/lib/dialog.d.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ export declare class MatDialogRef<T, R = any> {
107107
disableClose: boolean | undefined;
108108
readonly id: string;
109109
constructor(_overlayRef: OverlayRef, _containerInstance: MatDialogContainer, _location?: Location, id?: string);
110-
addPanelClass(classes: string | string[]): this;
111110
afterClosed(): Observable<R | undefined>;
112111
afterOpen(): Observable<void>;
113112
afterOpened(): Observable<void>;
@@ -116,7 +115,6 @@ export declare class MatDialogRef<T, R = any> {
116115
beforeClosed(): Observable<R | undefined>;
117116
close(dialogResult?: R): void;
118117
keydownEvents(): Observable<KeyboardEvent>;
119-
removePanelClass(classes: string | string[]): this;
120118
updatePosition(position?: DialogPosition): this;
121119
updateSize(width?: string, height?: string): this;
122120
}

tools/public_api_guard/lib/tabs.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,9 @@ export declare class MatTabLink extends _MatTabLinkMixinBase implements OnDestro
159159
protected _isActive: boolean;
160160
protected _tabLinkRipple: RippleRenderer;
161161
active: boolean;
162-
rippleConfig: RippleConfig & RippleGlobalOptions;
162+
rippleConfig: RippleConfig;
163163
readonly rippleDisabled: boolean;
164-
constructor(_tabNavBar: MatTabNav, _elementRef: ElementRef, ngZone: NgZone, platform: Platform, globalRippleOptions: RippleGlobalOptions | null, tabIndex: string,
164+
constructor(_tabNavBar: MatTabNav, _elementRef: ElementRef, ngZone: NgZone, platform: Platform, globalOptions: RippleGlobalOptions, tabIndex: string,
165165
_focusMonitor?: FocusMonitor | undefined);
166166
ngOnDestroy(): void;
167167
}

0 commit comments

Comments
 (0)