Skip to content

Commit 5e50a6d

Browse files
committed
main - 3c84525 refactor(multiple): remove unnecessary dependency arrays (#31903)
1 parent 8eadd07 commit 5e50a6d

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

docs-content/api-docs/cdk-menu.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4007,7 +4007,7 @@ <h4 id="PARENT_OR_NEW_MENU_STACK_PROVIDER" class="docs-header-link docs-api-h4 d
40074007
</h4><p class="docs-api-constant-description"><p>Provider that provides the parent menu stack, or a new menu stack if there is no parent one.</p>
40084008
</p><div class="docs-markdown">
40094009
<pre class="docs-markdown-pre">
4010-
<code class="docs-markdown-code">const PARENT_OR_NEW_MENU_STACK_PROVIDER: { provide: InjectionToken<MenuStack>; deps: Optional[][]; useFactory: (parentMenuStack?: MenuStack) => MenuStack; };</code>
4010+
<code class="docs-markdown-code">const PARENT_OR_NEW_MENU_STACK_PROVIDER: { provide: InjectionToken<MenuStack>; useFactory: () => MenuStack; };</code>
40114011
</pre>
40124012
</div>
40134013

@@ -4021,7 +4021,7 @@ <h4 id="PARENT_OR_NEW_INLINE_MENU_STACK_PROVIDER" class="docs-header-link docs-a
40214021
</h4><p class="docs-api-constant-description"><p>Provider that provides the parent menu stack, or a new inline menu stack if there is no parent one.</p>
40224022
</p><div class="docs-markdown">
40234023
<pre class="docs-markdown-pre">
4024-
<code class="docs-markdown-code">const PARENT_OR_NEW_INLINE_MENU_STACK_PROVIDER: (orientation: "horizontal" | "vertical") => { provide: InjectionToken<MenuStack>; deps: Optional[][]; useFactory: (parentMenuStack?: MenuStack) => MenuStack; };</code>
4024+
<code class="docs-markdown-code">const PARENT_OR_NEW_INLINE_MENU_STACK_PROVIDER: (orientation: "horizontal" | "vertical") => { provide: InjectionToken<MenuStack>; useFactory: () => MenuStack; };</code>
40254025
</pre>
40264026
</div>
40274027

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular/components-examples",
3-
"version": "21.0.0-next.4+sha-84fc0d9",
3+
"version": "21.0.0-next.4+sha-3c84525",
44
"description": "Angular Components Examples",
55
"private": true,
66
"repository": {
@@ -259,15 +259,15 @@
259259
},
260260
"homepage": "https://github.com/angular/components#readme",
261261
"peerDependencies": {
262-
"@angular/cdk": "21.0.0-next.4+sha-84fc0d9",
263-
"@angular/cdk-experimental": "21.0.0-next.4+sha-84fc0d9",
262+
"@angular/cdk": "21.0.0-next.4+sha-3c84525",
263+
"@angular/cdk-experimental": "21.0.0-next.4+sha-3c84525",
264264
"@angular/core": "^21.0.0-0 || ^21.1.0-0 || ^21.2.0-0 || ^21.3.0-0 || ^22.0.0-0",
265265
"@angular/common": "^21.0.0-0 || ^21.1.0-0 || ^21.2.0-0 || ^21.3.0-0 || ^22.0.0-0",
266-
"@angular/material": "21.0.0-next.4+sha-84fc0d9",
267-
"@angular/material-experimental": "21.0.0-next.4+sha-84fc0d9",
268-
"@angular/material-moment-adapter": "21.0.0-next.4+sha-84fc0d9",
269-
"@angular/material-luxon-adapter": "21.0.0-next.4+sha-84fc0d9",
270-
"@angular/material-date-fns-adapter": "21.0.0-next.4+sha-84fc0d9"
266+
"@angular/material": "21.0.0-next.4+sha-3c84525",
267+
"@angular/material-experimental": "21.0.0-next.4+sha-3c84525",
268+
"@angular/material-moment-adapter": "21.0.0-next.4+sha-3c84525",
269+
"@angular/material-luxon-adapter": "21.0.0-next.4+sha-3c84525",
270+
"@angular/material-date-fns-adapter": "21.0.0-next.4+sha-3c84525"
271271
},
272272
"devDependencies": {
273273
"@angular/cdk": "workspace:*",

0 commit comments

Comments
 (0)