Ng Matero Extensions Versions Save

Angular Material Extensions Library.

v17.3.0

2 weeks ago

Features

  • datetimepicker: allow calendar header customization (#302)(@CnxYankoNikolov)
  • multiple: remove dependency on NgClass
  • multiple: remove dependency on NgStyle

v14.8.4

3 weeks ago

Bug Fixes

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

v15.6.3

3 weeks ago

Bug Fixes

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

v16.3.5

3 weeks ago

Bug Fixes

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

v17.2.2

3 weeks ago

Bug Fixes

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

v17.2.1

1 month ago

Bug Fixes

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

For Material 3 themes

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

v17.2.0

1 month ago

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

v14.8.3

1 month ago

Bug Fixes

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

v15.6.2

1 month ago

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

v16.3.4

1 month ago

Bug Fixes

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