Skip to content

Commit 50a9395

Browse files
authored
build: update to latest Angular (#32164)
Takes over the Angular update from #32159 and resolves one test failure in the API goldens.
1 parent 416fa82 commit 50a9395

File tree

4 files changed

+161
-162
lines changed

4 files changed

+161
-162
lines changed

goldens/cdk/accordion/index.api.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ export class CdkAccordion implements OnDestroy, OnChanges {
2929
ngOnDestroy(): void;
3030
openAll(): void;
3131
readonly _openCloseAllActions: Subject<boolean>;
32-
readonly _stateChanges: Subject<SimpleChanges>;
32+
readonly _stateChanges: Subject<{
33+
[propName: string]: i0.SimpleChange<any>;
34+
}>;
3335
// (undocumented)
3436
static ɵdir: i0.ɵɵDirectiveDeclaration<CdkAccordion, "cdk-accordion, [cdkAccordion]", ["cdkAccordion"], { "multi": { "alias": "multi"; "required": false; }; }, {}, never, never, true, never>;
3537
// (undocumented)

goldens/material/expansion/index.api.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,9 @@ export class MatExpansionPanel extends CdkAccordionItem implements AfterContentI
9595
_headerId: string;
9696
get hideToggle(): boolean;
9797
set hideToggle(value: boolean);
98-
readonly _inputChanges: Subject<SimpleChanges>;
98+
readonly _inputChanges: Subject<{
99+
[propName: string]: i0.SimpleChange<any>;
100+
}>;
99101
_lazyContent: MatExpansionPanelContent;
100102
// (undocumented)
101103
static ngAcceptInputType_hideToggle: unknown;

0 commit comments

Comments
 (0)