@lagoshny/ngx-validation-messages 3.0.0 → 15.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +61 -0
- package/README.md +427 -426
- package/esm2020/lib/components/ngx-custom-message/ngx-custom-message.component.mjs +9 -9
- package/esm2020/lib/components/ngx-validation-messages/ngx-validation-messages.component.mjs +5 -5
- package/esm2020/lib/directivies/ngx-validator-name.directive.mjs +4 -4
- package/esm2020/lib/interface/ngx-validation-messages.config.mjs +1 -1
- package/esm2020/lib/ngx-validation-messages.module.mjs +8 -10
- package/esm2020/lib/service/ngx-validation-messages.service.mjs +4 -4
- package/esm2020/public-api.mjs +1 -1
- package/fesm2015/lagoshny-ngx-validation-messages.mjs +24 -26
- package/fesm2015/lagoshny-ngx-validation-messages.mjs.map +1 -1
- package/fesm2020/lagoshny-ngx-validation-messages.mjs +24 -26
- package/fesm2020/lagoshny-ngx-validation-messages.mjs.map +1 -1
- package/lib/components/ngx-custom-message/ngx-custom-message.component.d.ts +1 -1
- package/lib/components/ngx-validation-messages/ngx-validation-messages.component.d.ts +1 -1
- package/lib/directivies/ngx-validator-name.directive.d.ts +1 -1
- package/package.json +4 -3
- /package/{lagoshny-ngx-validation-messages.d.ts → index.d.ts} +0 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
## 15.0.0 (2025-11-30)
|
|
2
|
+
#### Updated angular
|
|
3
|
+
Updated to Angular 15.
|
|
4
|
+
|
|
5
|
+
## 3.0.0 (2021-12-23)
|
|
6
|
+
#### Updated angular
|
|
7
|
+
Updated to Angular 13.
|
|
8
|
+
|
|
9
|
+
### ⚠ Breaking changes
|
|
10
|
+
>This version supports only from Angular 12 and above that uses `Ivy compilation`.
|
|
11
|
+
>
|
|
12
|
+
>Angular 13 package tools are [no longer support](https://github.com/ng-packagr/ng-packagr/blob/master/CHANGELOG.md#1300-2021-11-03) old `View Engine` compilation.
|
|
13
|
+
Now it uses only `Ivy` compilation.
|
|
14
|
+
|
|
15
|
+
Now the `lib` have 2 versions for `Angular 6-11` [2.x.x](https://github.com/lagoshny/ngx-validation-messages/tree/lts-view-engine) and `Angular 12-13+` [3.x.x](https://github.com/lagoshny/ngx-validation-messages) that difference between that one is support old `View Engine` compilation, another uses only new `Ivy` compilation.
|
|
16
|
+
|
|
17
|
+
### Versions that support old `View Engine` compilation will place on [lts-view-engine](https://github.com/lagoshny/ngx-validation-messages/tree/lts-view-engine) branch of the repo.
|
|
18
|
+
|
|
19
|
+
>I strongly recommend migrating to Angular Ivy compilation and use new lib version, because support two versions is not simple and in future old versions can not be supported.
|
|
20
|
+
|
|
21
|
+
## 1.1.4 (2021-12-23)
|
|
22
|
+
#### Update
|
|
23
|
+
Deleted max Angular version.
|
|
24
|
+
|
|
25
|
+
## 1.1.3 (2021-02-09)
|
|
26
|
+
#### Update
|
|
27
|
+
Updated to Angular 11 version.
|
|
28
|
+
|
|
29
|
+
## 1.1.2 (2020-10-30)
|
|
30
|
+
#### Update
|
|
31
|
+
Updated libs version and refactoring.
|
|
32
|
+
|
|
33
|
+
## 1.1.0 (2020-06-29)
|
|
34
|
+
#### Update
|
|
35
|
+
Updated to Angular 10 version.
|
|
36
|
+
|
|
37
|
+
## 1.0.10 (2020-03-04)
|
|
38
|
+
Updated Angular version to Angular 9.
|
|
39
|
+
|
|
40
|
+
## 1.0.9 (2019-10-30)
|
|
41
|
+
Added support to use `ngx-validation-messages` with material ui `mat-form-field` `mat-error` component to display error in standard `ngx-validation-messages` way.
|
|
42
|
+
|
|
43
|
+
To get more details go to [README.md](https://github.com/lagoshny/ngx-validation-messages#4-with-material-ui-components-using-mat-error-component).
|
|
44
|
+
|
|
45
|
+
## 1.0.8 (2019-10-13)
|
|
46
|
+
Updated Angular version.
|
|
47
|
+
|
|
48
|
+
## 1.0.7 (2019-08-04)
|
|
49
|
+
#### Bug Fixes
|
|
50
|
+
Fix readme file
|
|
51
|
+
|
|
52
|
+
## 1.0.6 (2019-08-04)
|
|
53
|
+
|
|
54
|
+
#### Features
|
|
55
|
+
|
|
56
|
+
Added ability to use component `<ngx-validation-messages></ngx-validation-messages>` without component and attribute `for`
|
|
57
|
+
to display error messages passed as child elements.
|
|
58
|
+
|
|
59
|
+
#### Bug Fixes
|
|
60
|
+
|
|
61
|
+
Fix error when `for` attribute in `<ngx-validation-messages>` is undefined
|