@firestitch/form 18.0.23 → 18.0.25
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 +0 -2
- package/app/components/form-dialog-actions/form-dialog-actions.component.d.ts +3 -5
- package/app/directives/button.directive.d.ts +1 -1
- package/app/directives/form/form.directive.d.ts +3 -10
- package/app/directives/form-dialog-close.directive.d.ts +2 -5
- package/app/directives/form-group/form-group.directive.d.ts +1 -1
- package/app/directives/form-template-outlet.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 +11 -11
- 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/app/fs-form.module.d.ts +36 -36
- package/app/guards/form-deactivate.guard.d.ts +0 -3
- package/esm2022/app/components/confirm-unsaved/confirm-unsaved.component.mjs +6 -13
- package/esm2022/app/components/form-dialog-actions/form-dialog-actions.component.mjs +20 -20
- package/esm2022/app/directives/button.directive.mjs +5 -3
- package/esm2022/app/directives/form/form.directive.mjs +14 -46
- package/esm2022/app/directives/form-dialog-close.directive.mjs +8 -17
- package/esm2022/app/directives/form-group/form-group.directive.mjs +3 -2
- package/esm2022/app/directives/form-template-outlet.directive.mjs +3 -2
- package/esm2022/app/directives/form-template.directive.mjs +3 -2
- package/esm2022/app/directives/submit-button.directive.mjs +3 -2
- package/esm2022/app/directives/validators/compare.directive.mjs +3 -2
- package/esm2022/app/directives/validators/control.directive.mjs +41 -46
- package/esm2022/app/directives/validators/daterange.directive.mjs +3 -2
- package/esm2022/app/directives/validators/email.directive.mjs +3 -2
- package/esm2022/app/directives/validators/emails.directive.mjs +3 -2
- package/esm2022/app/directives/validators/function.directive.mjs +3 -2
- package/esm2022/app/directives/validators/greater-equal.directive.mjs +3 -2
- package/esm2022/app/directives/validators/greater.directive.mjs +3 -2
- package/esm2022/app/directives/validators/integer.directive.mjs +3 -2
- package/esm2022/app/directives/validators/lesser-equal.directive.mjs +3 -2
- package/esm2022/app/directives/validators/lesser.directive.mjs +3 -2
- package/esm2022/app/directives/validators/max.directive.mjs +3 -2
- package/esm2022/app/directives/validators/maxlength.directive.mjs +3 -2
- package/esm2022/app/directives/validators/min.directive.mjs +3 -2
- package/esm2022/app/directives/validators/minlength.directive.mjs +3 -2
- package/esm2022/app/directives/validators/no-fs-validators.directive.mjs +3 -2
- package/esm2022/app/directives/validators/numeric.directive.mjs +3 -2
- package/esm2022/app/directives/validators/pattern.directive.mjs +3 -2
- package/esm2022/app/directives/validators/phone.directive.mjs +3 -2
- package/esm2022/app/directives/validators/required.directive.mjs +3 -2
- package/esm2022/app/directives/validators/url.directive.mjs +3 -2
- package/esm2022/app/directives/validators/validate.directive.mjs +3 -2
- package/esm2022/app/fs-form.module.mjs +11 -11
- package/esm2022/app/guards/form-deactivate.guard.mjs +6 -12
- package/fesm2022/firestitch-form.mjs +182 -205
- package/fesm2022/firestitch-form.mjs.map +1 -1
- package/package.json +1 -1
- package/styles.scss +8 -4
package/package.json
CHANGED
package/styles.scss
CHANGED
|
@@ -18,6 +18,14 @@
|
|
|
18
18
|
display: inline-flex;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
+
.fs-form-hint-wrapper {
|
|
22
|
+
padding: 0 16px;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.fs-form-error {
|
|
26
|
+
color: #f44336;
|
|
27
|
+
}
|
|
28
|
+
|
|
21
29
|
.fs-form-wrapper.ng-invalid.ng-dirty .fs-form-label,
|
|
22
30
|
.ng-invalid.ng-dirty:not(form) .fs-form-label {
|
|
23
31
|
color: #f44336;
|
|
@@ -27,10 +35,6 @@
|
|
|
27
35
|
background-color: #f44336;
|
|
28
36
|
}
|
|
29
37
|
|
|
30
|
-
.fs-form-error {
|
|
31
|
-
color: #f44336;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
38
|
.mat-placeholder-required {
|
|
35
39
|
display: none;
|
|
36
40
|
}
|