File tree Expand file tree Collapse file tree
projects/xtream/ngx-validation-errors Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ## 1.0.0 (2020-01-11)
2+
3+ ### Features
4+
5+ * update to angular 8
6+ * add structural directive for controlled errors management
7+
8+ ## Breaking Changes
9+ The 1.0.0 version is compatible with angular 8.
10+
11+ The components have been renamed according to the angular conventions, now they starts with the library prefix.
12+ Update this
13+ ``` angular2html
14+ <form [formGroup]="heroForm" validationContext="USER.REGISTRATION">
15+ <div formFieldContainer>
16+ <label>Name</label>
17+ <input formControlName="name"/>
18+ </div>
19+ </form>
20+ ```
21+ changing the name to ngxValidationErrorsField
22+
23+ ``` angular2html
24+ <form [formGroup]="heroForm" validationContext="USER.REGISTRATION">
25+ <div ngxValidationErrorsField>
26+ <label>Name</label>
27+ <input formControlName="name"/>
28+ </div>
29+ </form>
30+ ```
31+
32+ The old names are still available bu consider it deprecated!
33+
134## 0.3.0 (2019-11-19)
235
336## Breaking Changes
Original file line number Diff line number Diff line change 11{
22 "name" : " ngx-validation-errors" ,
3- "version" : " 0.3 .0" ,
3+ "version" : " 1.0 .0" ,
44 "scripts" : {
55 "ng" : " ng" ,
66 "start" : " ng serve" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " @xtream/ngx-validation-errors" ,
33 "author" : " Luca Micieli <luca.micieli@xtreamers.io>" ,
4- "version" : " 0.3 .0" ,
4+ "version" : " 1.0 .0" ,
55 "repository" : {
66 "url" : " https://github.com/xtreamsrl/ngx-validation-errors"
77 },
You can’t perform that action at this time.
0 commit comments