Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Latest commit

 

History

History
113 lines (62 loc) · 3.54 KB

CHANGELOG.md

File metadata and controls

113 lines (62 loc) · 3.54 KB

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

3.2.1 (2022-11-25)

Bug Fixes

  • 🐛 fix compatibility with template-driven forms

3.2.0 (2022-02-04)

Features

  • 🎸 move material deps into @ngspot/ngx-errors-material (ad49c7c), closes #9

3.1.5 (2022-01-21)

Bug Fixes

  • 🐛 broken matInput without ngModel (e8d6f47)

3.1.4 (2022-01-16)

Bug Fixes

  • 🐛 providing errorsModule in the lazy app module (b2f1488)

3.1.3 (2022-01-11)

Bug Fixes

  • 🐛 provide config defaults (5242c70)

3.1.2 (2022-01-11)

Bug Fixes

  • 🐛 missed null check for showMaxErrors (66f2f4c)

3.1.1 (2022-01-11)

Bug Fixes

  • 🐛 class used before it was declared (66d27a6)

3.1.0 (2022-01-11)

Features

  • 🎸 integrate with MatInput; support arbitrary showWhen (55fd44a)
  • 🎸 new config option - showMaxErrors (d46ba1b)

3.0.0 (2021-12-09)

⚠ BREAKING CHANGES

  • 🧨 Require Angular v13

Features

  • 🎸 bump Angular to v13 (a9b18aa)

2.0.2 (2021-12-09)

Bug Fixes

  • 🐛 not displaying error when async validator present (684dcf5)

2.0.1 (2021-01-19)

Features

  • 🎸 dependentValidator (b49b82f)

2.0.0 (2020-12-06)

Features

  • You can specify to show errors when input is dirty, touched, dirty and touched or when form is submitted.
  • You can now access error details in the template

Breaking Changes

  • 🎸 new config options. The config file now has different signature.

    export interface IErrorsConfiguration {
      showErrorsWhenInput: ShowErrorWhen;
    }
    
    export type ShowErrorWhen =
      | 'touched'
      | 'dirty'
      | 'touchedAndDirty'
      | 'formIsSubmitted';

Bug Fixes

  • 🐛 headless test not working (d73f689)

1.0.1 (2020-04-13)

Bug Fixes

  • 🐛 headless test not working (d73f689)

1.0.0 (2020-04-13)

Features