Open iKrishnaSahu opened 2 years ago
Can you post what the unmigrated code looks like? The old mat-font-size
is a Sass function, not a mixin.
Can you post what the unmigrated code looks like? The old
mat-font-size
is a Sass function, not a mixin.
@import "@angular/material/theming";
$config: (
display-3: (
font-size: 56px,
font-weight: 400,
line-height: 56px,
),
);
.custom-class {
@debug mat-font-size($config, display-3);
font-size: mat-font-size($config, display-3);
}
Is this a regression?
The previous version in which this bug was not present was
No response
Description
ng update is not migrating mat-font-size
Reproduction
Steps to reproduce:
mat-font-size
mixinng update @angular/core@13 @angular/cli@13 @angular/cdk@13 @angular/material@13
mat-font-size
is migrating tomat.font-size
Expected Behavior
ng update should migrate mat-font-size
Actual Behavior
ng update is not migrating mat-font-size
Environment