Skip to content

Commit 9330c84

Browse files
committed
main - 24c2567 fix(material/select): overlay not detached on time after exit animation in some cases (#30456)
1 parent f7de947 commit 9330c84

File tree

3 files changed

+9
-13
lines changed

3 files changed

+9
-13
lines changed

docs-content/guides/getting-started.html

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ <h2 id="install-angular-material" class="docs-header-link">
2121
<li><p>Set up global Angular Material typography styles:</p>
2222
<p>Whether to apply the global <a href="https://material.angular.io/guide/typography">typography</a> styles to your application.</p>
2323
</li>
24-
<li><p>Set up browser animations for Angular Material:</p>
25-
<p>Importing the <a href="https://angular.dev/api/platform-browser/animations/BrowserAnimationsModule"><code>BrowserAnimationsModule</code></a> into your application enables Angular&#39;s <a href="https://angular.dev/guide/animations">animation system</a>. Declining this will disable most of Angular Material&#39;s animations.</p>
26-
</li>
2724
</ol>
2825
<p>The <code>ng add</code> command will additionally perform the following actions:</p>
2926
<ul>
@@ -45,7 +42,7 @@ <h3 id="display-a-component" class="docs-header-link">
4542
</h3>
4643
<p>Let&#39;s display a slide toggle component in your app and verify that everything works.</p>
4744
<p>You need to import the <code>MatSlideToggleModule</code> that you want to display by adding the following lines to
48-
your standalone component&#39;s imports, or otherwise your component&#39;s <code>NgModule</code>. </p>
45+
your standalone component&#39;s imports, or otherwise your component&#39;s <code>NgModule</code>.</p>
4946
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { MatSlideToggleModule } <span class="hljs-keyword">from</span> <span class="hljs-string">&#x27;@angular/material/slide-toggle&#x27;</span>;
5047

5148
<span class="hljs-meta">@Component</span> ({

docs-content/guides/schematics.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ <h2 id="install-schematics" class="docs-header-link">
1818
<p>The Angular Material <code>ng add</code> schematic helps you set up an Angular CLI project that uses Material. Running <code>ng add</code> will:</p>
1919
<ul>
2020
<li>Ensure <a href="guide/getting-started#step-1-install-angular-material-angular-cdk-and-angular-animations">project dependencies</a> are placed in <code>package.json</code></li>
21-
<li>Enable the <a href="guide/getting-started#step-2-configure-animations">BrowserAnimationsModule</a> in your app module</li>
2221
<li>Add either a prebuilt theme or a custom theme</li>
2322
<li>Add Roboto fonts to your <code>index.html</code></li>
2423
<li>Add the <a href="guide/getting-started#step-6-optional-add-material-icons">Material Icon font</a> to your <code>index.html</code></li>

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": "19.2.0-next.3+sha-622152d",
3+
"version": "19.2.0-next.3+sha-24c2567",
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": "19.2.0-next.3+sha-622152d",
263-
"@angular/cdk-experimental": "19.2.0-next.3+sha-622152d",
262+
"@angular/cdk": "19.2.0-next.3+sha-24c2567",
263+
"@angular/cdk-experimental": "19.2.0-next.3+sha-24c2567",
264264
"@angular/core": "^19.0.0-0 || ^19.1.0-0 || ^19.2.0-0 || ^19.3.0-0 || ^20.0.0-0",
265265
"@angular/common": "^19.0.0-0 || ^19.1.0-0 || ^19.2.0-0 || ^19.3.0-0 || ^20.0.0-0",
266-
"@angular/material": "19.2.0-next.3+sha-622152d",
267-
"@angular/material-experimental": "19.2.0-next.3+sha-622152d",
268-
"@angular/material-moment-adapter": "19.2.0-next.3+sha-622152d",
269-
"@angular/material-luxon-adapter": "19.2.0-next.3+sha-622152d",
270-
"@angular/material-date-fns-adapter": "19.2.0-next.3+sha-622152d"
266+
"@angular/material": "19.2.0-next.3+sha-24c2567",
267+
"@angular/material-experimental": "19.2.0-next.3+sha-24c2567",
268+
"@angular/material-moment-adapter": "19.2.0-next.3+sha-24c2567",
269+
"@angular/material-luxon-adapter": "19.2.0-next.3+sha-24c2567",
270+
"@angular/material-date-fns-adapter": "19.2.0-next.3+sha-24c2567"
271271
},
272272
"dependencies": {
273273
"tslib": "^2.3.0"

0 commit comments

Comments
 (0)