@firestitch/form 13.3.9 → 14.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/app/components/confirm-unsaved/confirm-unsaved.component.d.ts +1 -1
- package/app/components/form-dialog-actions/form-dialog-actions.component.d.ts +1 -1
- package/app/components/form-template/form-template.component.d.ts +1 -1
- package/app/components/form-template-outlet/form-template-outlet.component.d.ts +1 -1
- package/app/directives/button.directive.d.ts +1 -1
- package/app/directives/form/form.directive.d.ts +1 -1
- package/app/directives/form-dialog-close.directive.d.ts +1 -1
- package/app/directives/form-template.directive.d.ts +1 -1
- package/app/directives/submit-button.directive.d.ts +1 -1
- package/app/directives/validators/compare.directive.d.ts +1 -1
- package/app/directives/validators/control.directive.d.ts +1 -1
- package/app/directives/validators/daterange.directive.d.ts +1 -1
- package/app/directives/validators/email.directive.d.ts +1 -1
- package/app/directives/validators/emails.directive.d.ts +1 -1
- package/app/directives/validators/function.directive.d.ts +1 -1
- package/app/directives/validators/greater-equal.directive.d.ts +1 -1
- package/app/directives/validators/greater.directive.d.ts +1 -1
- package/app/directives/validators/integer.directive.d.ts +1 -1
- package/app/directives/validators/lesser-equal.directive.d.ts +1 -1
- package/app/directives/validators/lesser.directive.d.ts +1 -1
- package/app/directives/validators/max.directive.d.ts +1 -1
- package/app/directives/validators/maxlength.directive.d.ts +1 -1
- package/app/directives/validators/min.directive.d.ts +1 -1
- package/app/directives/validators/minlength.directive.d.ts +1 -1
- package/app/directives/validators/no-fs-validators.directive.d.ts +1 -1
- package/app/directives/validators/numeric.directive.d.ts +1 -1
- package/app/directives/validators/pattern.directive.d.ts +1 -1
- package/app/directives/validators/phone.directive.d.ts +1 -1
- package/app/directives/validators/required.directive.d.ts +1 -1
- package/app/directives/validators/url.directive.d.ts +1 -1
- package/app/directives/validators/validate.directive.d.ts +1 -1
- package/esm2020/app/components/confirm-unsaved/confirm-unsaved.component.mjs +5 -5
- package/esm2020/app/components/form-dialog-actions/form-dialog-actions.component.mjs +7 -7
- package/esm2020/app/components/form-template/form-template.component.mjs +3 -3
- package/esm2020/app/components/form-template-outlet/form-template-outlet.component.mjs +3 -3
- package/esm2020/app/directives/button.directive.mjs +3 -3
- package/esm2020/app/directives/form/form.directive.mjs +29 -32
- package/esm2020/app/directives/form-dialog-close.directive.mjs +3 -3
- package/esm2020/app/directives/form-template.directive.mjs +3 -3
- package/esm2020/app/directives/submit-button.directive.mjs +3 -3
- package/esm2020/app/directives/validators/compare.directive.mjs +3 -3
- package/esm2020/app/directives/validators/control.directive.mjs +3 -3
- package/esm2020/app/directives/validators/daterange.directive.mjs +3 -3
- package/esm2020/app/directives/validators/email.directive.mjs +3 -3
- package/esm2020/app/directives/validators/emails.directive.mjs +3 -3
- package/esm2020/app/directives/validators/function.directive.mjs +3 -3
- package/esm2020/app/directives/validators/greater-equal.directive.mjs +3 -3
- package/esm2020/app/directives/validators/greater.directive.mjs +3 -3
- package/esm2020/app/directives/validators/integer.directive.mjs +3 -3
- package/esm2020/app/directives/validators/lesser-equal.directive.mjs +3 -3
- package/esm2020/app/directives/validators/lesser.directive.mjs +3 -3
- package/esm2020/app/directives/validators/max.directive.mjs +3 -3
- package/esm2020/app/directives/validators/maxlength.directive.mjs +3 -3
- package/esm2020/app/directives/validators/min.directive.mjs +3 -3
- package/esm2020/app/directives/validators/minlength.directive.mjs +3 -3
- package/esm2020/app/directives/validators/no-fs-validators.directive.mjs +3 -3
- package/esm2020/app/directives/validators/numeric.directive.mjs +3 -3
- package/esm2020/app/directives/validators/pattern.directive.mjs +3 -3
- package/esm2020/app/directives/validators/phone.directive.mjs +3 -3
- package/esm2020/app/directives/validators/required.directive.mjs +3 -3
- package/esm2020/app/directives/validators/url.directive.mjs +3 -3
- package/esm2020/app/directives/validators/validate.directive.mjs +3 -3
- package/esm2020/app/fs-form.module.mjs +11 -13
- package/esm2020/app/guards/form-deactivate.guard.mjs +3 -3
- package/esm2020/app/helpers/get-form-errors.mjs +3 -3
- package/esm2020/app/services/fsform.service.mjs +3 -3
- package/fesm2015/firestitch-form.mjs +189 -193
- package/fesm2015/firestitch-form.mjs.map +1 -1
- package/fesm2020/firestitch-form.mjs +186 -191
- package/fesm2020/firestitch-form.mjs.map +1 -1
- package/package.json +3 -3
- /package/{firestitch-form.d.ts → index.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firestitch/form",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "14.0.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/Firestitch/ngx-form"
|
|
@@ -22,13 +22,13 @@
|
|
|
22
22
|
"esm2020": "esm2020/firestitch-form.mjs",
|
|
23
23
|
"fesm2020": "fesm2020/firestitch-form.mjs",
|
|
24
24
|
"fesm2015": "fesm2015/firestitch-form.mjs",
|
|
25
|
-
"typings": "
|
|
25
|
+
"typings": "index.d.ts",
|
|
26
26
|
"exports": {
|
|
27
27
|
"./package.json": {
|
|
28
28
|
"default": "./package.json"
|
|
29
29
|
},
|
|
30
30
|
".": {
|
|
31
|
-
"types": "./
|
|
31
|
+
"types": "./index.d.ts",
|
|
32
32
|
"esm2020": "./esm2020/firestitch-form.mjs",
|
|
33
33
|
"es2020": "./fesm2020/firestitch-form.mjs",
|
|
34
34
|
"es2015": "./fesm2015/firestitch-form.mjs",
|
|
File without changes
|