Skip to content

Releases: ng-matero/extensions

v18.0.1

08 Jun 17:56
Compare
Choose a tag to compare

Bug Fixes

  • remove material-experimental import (#316)

v18.0.0

08 Jun 15:18
Compare
Choose a tag to compare

Features

  • update Angular and Angular Material to v18
  • move Material 3 support into stable
  • add Material 3 pre-built themes
  • add experimental zoneless support
  • improve multiple elevation shadow styles
  • remove isOpen prop for select because ng-select's bug (ng-select/ng-select#2393)
@use '@angular/material' as mat;
@use '@ng-matero/extensions' as mtx;

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

// Merge the Material theme with Material Extensions theme
$light-theme: mat.private-deep-merge-all(
  mat.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);
}

v17.3.5

07 Jun 15:59
Compare
Choose a tag to compare

Bug Fixes

  • select: fix readonly not working (#315)

v15.6.4

07 Jun 06:39
Compare
Choose a tag to compare
  • popover: fix aria-expanded not updating in an OnPush component
  • popover: prevent removal of mat-elevation class
  • grid: add event for rowClick params
  • grid: use dataSource to check empty data

v14.8.5

07 Jun 06:40
Compare
Choose a tag to compare
  • popover: fix aria-expanded not updating in an OnPush component
  • popover: prevent removal of mat-elevation class
  • grid: add event for rowClick params
  • grid: use dataSource to check empty data

v17.3.4

06 Jun 04:48
Compare
Choose a tag to compare

Bug Fixes

  • popover: fix aria-expanded not updating in an OnPush component

v16.3.8

06 Jun 15:32
Compare
Choose a tag to compare

Bug Fixes

  • popover: fix aria-expanded not updating in an OnPush component

v17.3.3

04 Jun 11:02
Compare
Choose a tag to compare

Bug Fixes

  • grid: fix circular dependency for test (#312)

v17.3.2

18 May 08:44
Compare
Choose a tag to compare

Bug Fixes

  • select: revert mat color implement

v16.3.7

18 May 09:00
Compare
Choose a tag to compare

Bug Fixes

  • fix build using Angular 17 (rebuild with Angular 16)