Skip to content

Releases: ng-matero/extensions

v17.2.2

17 Apr 14:46
Compare
Choose a tag to compare

Bug Fixes

  • select: fix groupBy type and add bufferAmount (#301)

v17.2.1

11 Apr 07:57
Compare
Choose a tag to compare

Bug Fixes

  • 🚨 Move m3 styles to experimental and fix dependency error (#298)(fbb990d)

For Material 3 themes

- @use '@ng-matero/extensions' as mtx;
+ @use '@ng-matero/extensions/experimental' as mtx;

v17.2.0

03 Apr 15:47
Compare
Choose a tag to compare

Features

🎉🎉🎉 Material 3 themes (experimental) are out now! 🎉🎉🎉

@use '@angular/material' as mat;
@use '@angular/material-experimental' as matx;
@use '@ng-matero/extensions/experimental' as mtx;

$light-config: (
  color: (
    theme-type: 'light',
    primary: matx.$m3-azure-palette,
    tertiary: matx.$m3-blue-palette,
  ),
  typography: ...,
  density: ...
);

// Merge the Material theme with Material Extensions theme
$light-theme: mat.private-deep-merge-all(
  matx.define-theme($light-config),
  mtx.define-theme($light-config)
);

html {
  // Apply the base theme at the root, so it will be inherited by the whole app.
  @include mat.all-component-themes($light-theme);
  @include mtx.all-component-themes($light-theme);
}

BREAKING CHANGES

rename some tokens

  • datetimepicker
    • calendar-container-background-color => container-background-color
    • calendar-container-text-color => container-text-color
    • time-input-focus-state-border-color => time-input-focus-state-outline-color
    • time-input-warn-state-border-color => time-input-warn-state-outline-color
    • time-ampm-border-color => time-ampm-outline-color
  • popover
    • arrow-outline-color => outline-color
  • select
    • multiple-value-border-color => multiple-value-outline-color

v17.1.4

31 Mar 13:23
Compare
Choose a tag to compare

Bug Fixes

  • select: fix error when reinit formGroup (#293)
  • datetimepicker: fix tokens and styles for m2 spec

v16.3.4

31 Mar 14:00
Compare
Choose a tag to compare

Bug Fixes

  • select: fix error when reinit formGroup
  • datetimepicker: fix tokens and styles for m2 spec

v15.6.2

31 Mar 14:44
Compare
Choose a tag to compare

Bug Fixes

  • grid: fix column checked being reset when data reload
  • select: fix error when reinit formGroup
  • datetimepicker: fix tokens and styles for m2 spec

v14.8.3

31 Mar 15:32
Compare
Choose a tag to compare

Bug Fixes

  • grid: fix column checked being reset when data reload
  • select: fix error when reinit formGroup
  • datetimepicker: fix styles for m2 spec

v17.1.3

19 Mar 15:03
Compare
Choose a tag to compare

Bug Fixes

  • fix column checked being reset when data reload (29467d3)

v16.3.3

19 Mar 16:11
Compare
Choose a tag to compare

Bug Fixes

  • fix column checked being reset when data reload

v17.1.2

07 Feb 13:12
Compare
Choose a tag to compare

Bug Fixes

  • core: remove provideNativeDateAdapter and add NativeDateAdapter
  • moment-adapter: add MomentDateAdapter
  • luxon-adapter: add LuxonDateAdapter
  • date-fns-adapter add DateFnsAdapter