Skip to content

v19.0.0-next.1

Pre-release
Pre-release
Compare
Choose a tag to compare
@andrewseguin andrewseguin released this 22 Aug 17:28
· 65 commits to main since this release

19.0.0-next.1 "plastic-moose" (2024-08-22)

cdk

Commit Description
fix - 04ce4d2648 drag-drop: preview positioned incorrectly when RTL is set on the body (#29606)

material

Commit Description
feat - 1abb484aa7 input: add the ability to interact with disabled inputs (#29574)
fix - 7cf8c6c464 datepicker: calendar font tokens not being picked up (#29610)
fix - 4f2bc4da78 icon: update error message for missing HttpClient (#29589)
fix - adf413670f menu: inconsistent layout of submenu icon (#29603)
fix - 357f6f27a5 tabs: switch pagination to not use native buttons (#29605)

multiple

Commit Description
fix - 01711b1804 account for mixed declarations in latest Sass version (#29596)
fix - cb1450fc76 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; }.