File tree Expand file tree Collapse file tree 4 files changed +4
-6
lines changed
integration/yarn-pnp-compat/src Expand file tree Collapse file tree 4 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ $theme: mat.define-light-theme((
8
8
density: 0
9
9
));
10
10
11
- @include mat .core ($theme );
11
+ @include mat .core ();
12
12
13
13
@include mat .all-legacy-component-themes ($theme );
14
14
@include mat .all-component-themes ($theme );
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ $candy-app-theme: mat.define-light-theme((
21
21
// Include the common styles for Angular Material. We include this here so that you only
22
22
// have to load a single css file for Angular Material in your app.
23
23
// **Be sure that you only ever include this mixin once!**
24
- @include mat .core ($candy-app-theme );
24
+ @include mat .core ();
25
25
26
26
// Include the default theme styles.
27
27
@include mat .all-component-themes ($candy-app-theme );
Original file line number Diff line number Diff line change 5
5
@use ' ./focus-indicators/private' ;
6
6
7
7
// Mixin that renders all of the core styles that are not theme-dependent.
8
- // TODO: Remove the mixin's parameters after all internal clients migrated
9
- @mixin core ($typography-config : null, $exclude-typography : false) {
8
+ @mixin core () {
10
9
@include ripple .ripple ();
11
10
@include cdk .a11y-visually-hidden ();
12
11
@include cdk .overlay ();
Original file line number Diff line number Diff line change 5
5
@use ' ../core/focus-indicators/private' ;
6
6
7
7
// Mixin that renders all of the core styles that are not theme-dependent.
8
- // TODO: Remove the mixin's parameters after all internal clients migrated
9
8
/// @deprecated Use `mat.core` instead. See https://material.angular.io/guide/mdc-migration for information about migrating.
10
9
/// @breaking-change 17.0.0
11
- @mixin core ($typography-config : null, $exclude-typography : false ) {
10
+ @mixin core () {
12
11
@include ripple .ripple ();
13
12
@include cdk .a11y-visually-hidden ();
14
13
@include cdk .overlay ();
You can’t perform that action at this time.
0 commit comments