Releases: ng-matero/extensions
Releases · ng-matero/extensions
v19.0.2
v19.0.1
v19.0.0
Features
- update Angular and Material to v19
- support the new Material theme API
- multiple: switch to
inject
function - datetimepicker: improve a11y and RTL (#380)
- grid: expose
ColumnResize
instance (#386) - checkbox-group: add
trackBy
option - dialog: improve confirm buttons
BREAKING CHANGES
- datetimepicker: rename
MtxTime
toMtxTimeView
Support the new Material theme API
@use '@angular/material' as mat;
@use '@ng-matero/extensions' as mtx;
$light-config: (...);
// 👇 before v19
$light-theme: mat.private-deep-merge-all(
mat.define-theme($light-config),
mtx.define-theme($light-config)
);
html {
@include mat.all-component-themes($light-theme);
@include mtx.all-component-themes($light-theme);
}
// 👇 v19
html {
color-scheme: light;
@include mat.theme($light-config);
}
v18.4.1
v18.4.0
v18.3.4
v18.3.3
v18.3.2
v18.3.1
Bug Fixes
- datetimepicker: fix date selection with action buttons (#361)(@CnxAtanasIliev)
- datetimepicker: fix AM/PM with action buttons (#363)(@CnxAtanasIliev )