@firestitch/form 17.0.0 → 18.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/esm2022/app/components/confirm-unsaved/confirm-unsaved.component.mjs +4 -4
- package/esm2022/app/components/form-dialog-actions/form-dialog-actions.component.mjs +4 -4
- package/esm2022/app/components/form-template/form-template.component.mjs +4 -4
- package/esm2022/app/components/form-template/index.mjs +1 -1
- package/esm2022/app/components/form-template-outlet/form-template-outlet.component.mjs +4 -4
- package/esm2022/app/components/form-template-outlet/index.mjs +1 -1
- package/esm2022/app/directives/button.directive.mjs +4 -4
- package/esm2022/app/directives/form/form.directive.mjs +4 -4
- package/esm2022/app/directives/form-dialog-close.directive.mjs +4 -4
- package/esm2022/app/directives/form-template.directive.mjs +4 -4
- package/esm2022/app/directives/submit-button.directive.mjs +4 -4
- package/esm2022/app/directives/validators/compare.directive.mjs +4 -4
- package/esm2022/app/directives/validators/control.directive.mjs +4 -4
- package/esm2022/app/directives/validators/daterange.directive.mjs +4 -4
- package/esm2022/app/directives/validators/email.directive.mjs +4 -4
- package/esm2022/app/directives/validators/emails.directive.mjs +4 -4
- package/esm2022/app/directives/validators/function.directive.mjs +4 -4
- package/esm2022/app/directives/validators/greater-equal.directive.mjs +4 -4
- package/esm2022/app/directives/validators/greater.directive.mjs +4 -4
- package/esm2022/app/directives/validators/integer.directive.mjs +4 -4
- package/esm2022/app/directives/validators/lesser-equal.directive.mjs +4 -4
- package/esm2022/app/directives/validators/lesser.directive.mjs +4 -4
- package/esm2022/app/directives/validators/max.directive.mjs +4 -4
- package/esm2022/app/directives/validators/maxlength.directive.mjs +4 -4
- package/esm2022/app/directives/validators/min.directive.mjs +4 -4
- package/esm2022/app/directives/validators/minlength.directive.mjs +4 -4
- package/esm2022/app/directives/validators/no-fs-validators.directive.mjs +4 -4
- package/esm2022/app/directives/validators/numeric.directive.mjs +4 -4
- package/esm2022/app/directives/validators/pattern.directive.mjs +4 -4
- package/esm2022/app/directives/validators/phone.directive.mjs +4 -4
- package/esm2022/app/directives/validators/required.directive.mjs +4 -4
- package/esm2022/app/directives/validators/url.directive.mjs +4 -4
- package/esm2022/app/directives/validators/validate.directive.mjs +4 -4
- package/esm2022/app/fs-form.module.mjs +5 -5
- package/esm2022/app/guards/form-deactivate.guard.mjs +4 -4
- package/esm2022/app/services/fsform.service.mjs +4 -4
- package/fesm2022/firestitch-form.mjs +103 -103
- package/fesm2022/firestitch-form.mjs.map +1 -1
- package/package.json +1 -1
- package/styles.scss +3 -3
package/package.json
CHANGED
package/styles.scss
CHANGED
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
|
|
79
79
|
// hack for material form field
|
|
80
80
|
.mat-form-field.mat-form-field-invalid.ng-valid .mat-form-field-ripple {
|
|
81
|
-
background-color: mat.get-color-from-palette($foreground, divider, if($is-dark-theme, 1, 0.87));
|
|
81
|
+
background-color: mat.m2-get-color-from-palette($foreground, divider, if($is-dark-theme, 1, 0.87));
|
|
82
82
|
}
|
|
83
83
|
|
|
84
84
|
// hack for material form field
|
|
@@ -92,12 +92,12 @@
|
|
|
92
92
|
&.mat-raised-button:not([color='primary']),
|
|
93
93
|
&.mat-flat-button:not([color='primary']) {
|
|
94
94
|
svg.svg-icon-process {
|
|
95
|
-
stroke: mat.get-color-from-palette($primary);
|
|
95
|
+
stroke: mat.m2-get-color-from-palette($primary);
|
|
96
96
|
}
|
|
97
97
|
|
|
98
98
|
svg.svg-icon-error path,
|
|
99
99
|
svg.svg-icon-success path {
|
|
100
|
-
fill: mat.get-color-from-palette($primary);
|
|
100
|
+
fill: mat.m2-get-color-from-palette($primary);
|
|
101
101
|
}
|
|
102
102
|
}
|
|
103
103
|
|