Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions guides/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@ determine which features to include:

Whether to apply the global [typography](https://material.angular.io/guide/typography) styles to your application.

3. Set up browser animations for Angular Material:

Importing the [`BrowserAnimationsModule`](https://angular.dev/api/platform-browser/animations/BrowserAnimationsModule) into your application enables Angular's [animation system](https://angular.dev/guide/animations). Declining this will disable most of Angular Material's animations.

The `ng add` command will additionally perform the following actions:

* Add project dependencies to `package.json`
Expand All @@ -48,7 +44,7 @@ You're done! Angular Material is now configured to be used in your application.
Let's display a slide toggle component in your app and verify that everything works.

You need to import the `MatSlideToggleModule` that you want to display by adding the following lines to
your standalone component's imports, or otherwise your component's `NgModule`.
your standalone component's imports, or otherwise your component's `NgModule`.

```ts
import { MatSlideToggleModule } from '@angular/material/slide-toggle';
Expand Down
1 change: 0 additions & 1 deletion guides/schematics.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ ng add @angular/cdk
The Angular Material `ng add` schematic helps you set up an Angular CLI project that uses Material. Running `ng add` will:

- Ensure [project dependencies](./getting-started#step-1-install-angular-material-angular-cdk-and-angular-animations) are placed in `package.json`
- Enable the [BrowserAnimationsModule](./getting-started#step-2-configure-animations) in your app module
- Add either a prebuilt theme or a custom theme
- Add Roboto fonts to your `index.html`
- Add the [Material Icon font](./getting-started#step-6-optional-add-material-icons) to your `index.html`
Expand Down
1 change: 0 additions & 1 deletion src/material-experimental/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
}
},
"peerDependencies": {
"@angular/animations": "0.0.0-NG",
"@angular/cdk": "0.0.0-PLACEHOLDER",
"@angular/core": "0.0.0-NG",
"@angular/common": "0.0.0-NG",
Expand Down
1 change: 0 additions & 1 deletion src/material/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@
}
},
"peerDependencies": {
"@angular/animations": "0.0.0-NG",
"@angular/cdk": "0.0.0-PLACEHOLDER",
"@angular/core": "0.0.0-NG",
"@angular/common": "0.0.0-NG",
Expand Down
Loading