Skip to content

Release 1.0.0

Compare
Choose a tag to compare
@rams23 rams23 released this 12 Jan 22:47
· 16 commits to master since this release

Features

  • update to angular 8
  • add structural directive for controlled errors management

Breaking Changes

The 1.0.0 version is compatible with angular 8.

The components have been renamed according to the angular conventions, now they starts with the library prefix.
Update this

<form [formGroup]="heroForm" validationContext="USER.REGISTRATION">
  <div formFieldContainer>
    <label>Name</label>
    <input formControlName="name"/>
  </div>
</form>

changing the name to ngxValidationErrorsField

<form [formGroup]="heroForm" validationContext="USER.REGISTRATION">
  <div ngxValidationErrorsField>
    <label>Name</label>
    <input formControlName="name"/>
  </div>
</form>

The old names are still available but consider it deprecated!