Skip to content

Releases: ng-matero/extensions

v18.1.2

31 Jul 12:23
Compare
Choose a tag to compare

Bug Fixes

  • datetimepicker: fix clicking hour not working for zoneless (#327)

v18.1.1

26 Jul 02:12
Compare
Choose a tag to compare

Bug Fixes

  • fix material 18.1.2 breaks the build (#326)

v18.1.0

17 Jul 15:25
Compare
Choose a tag to compare

Features

  • alert: add border tokens and improve colors

  • popover: update elevation logic for M3

  • drawer: use CDK dialog internally and enable open multiple drawers (#325)

  • datetimepicker: add action buttons potal (#281)(@CnxAtanasIliev)

    <mtx-datetimepicker-actions>
      <button mat-button mtxDatetimepickerClear>Clear</button>
      <button mat-button mtxDatetimepickerCancel>Cancel</button>
      <button mat-raised-button mtxDatetimepickerApply>Apply</button>
    </mtx-datetimepicker-actions>
  • tooltip: simplify structural styles and small fix

v18.0.3

25 Jun 01:30
Compare
Choose a tag to compare

Bug Fixes

  • split: fix boolean input not working (#320)

v18.0.2

24 Jun 09:31
Compare
Choose a tag to compare

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