19.0.0-next.1 "plastic-moose" (2024-08-22)
cdk
Commit | Description |
---|---|
drag-drop: preview positioned incorrectly when RTL is set on the body (#29606) |
material
Commit | Description |
---|---|
input: add the ability to interact with disabled inputs (#29574) | |
datepicker: calendar font tokens not being picked up (#29610) | |
icon: update error message for missing HttpClient (#29589) | |
menu: inconsistent layout of submenu icon (#29603) | |
tabs: switch pagination to not use native buttons (#29605) |
multiple
Commit | Description |
---|---|
account for mixed declarations in latest Sass version (#29596) | |
change fallbacks to use m3 (#29528) |
Breaking Changes
multiple
-
- In order for Material to be compatible with recent changes in Sass and upcoming changes in the CSS standard, tokens are now emitted in-place, rather the being hoisted to the top of the selector. As a result, some token overrides might not apply anymore. This is relevant primarily for the cases like
@include mat.button-theme($theme); --mat-button-color: red;
. It can be resolved by wrapping the overrides with& {}
, for example@include mat.button-theme($theme); & { --mat-button-color: red; }
.
- In order for Material to be compatible with recent changes in Sass and upcoming changes in the CSS standard, tokens are now emitted in-place, rather the being hoisted to the top of the selector. As a result, some token overrides might not apply anymore. This is relevant primarily for the cases like