@firestitch/form 16.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.
Files changed (41) hide show
  1. package/esm2022/app/components/confirm-unsaved/confirm-unsaved.component.mjs +7 -7
  2. package/esm2022/app/components/form-dialog-actions/form-dialog-actions.component.mjs +7 -7
  3. package/esm2022/app/components/form-template/form-template.component.mjs +5 -5
  4. package/esm2022/app/components/form-template-outlet/form-template-outlet.component.mjs +5 -5
  5. package/esm2022/app/directives/button.directive.mjs +7 -7
  6. package/esm2022/app/directives/form/form.directive.mjs +13 -12
  7. package/esm2022/app/directives/form-dialog-close.directive.mjs +7 -7
  8. package/esm2022/app/directives/form-template.directive.mjs +5 -5
  9. package/esm2022/app/directives/submit-button.directive.mjs +4 -4
  10. package/esm2022/app/directives/validators/compare.directive.mjs +4 -4
  11. package/esm2022/app/directives/validators/control.directive.mjs +7 -7
  12. package/esm2022/app/directives/validators/daterange.directive.mjs +4 -4
  13. package/esm2022/app/directives/validators/email.directive.mjs +4 -4
  14. package/esm2022/app/directives/validators/emails.directive.mjs +4 -4
  15. package/esm2022/app/directives/validators/function.directive.mjs +4 -4
  16. package/esm2022/app/directives/validators/greater-equal.directive.mjs +4 -4
  17. package/esm2022/app/directives/validators/greater.directive.mjs +4 -4
  18. package/esm2022/app/directives/validators/integer.directive.mjs +4 -4
  19. package/esm2022/app/directives/validators/lesser-equal.directive.mjs +4 -4
  20. package/esm2022/app/directives/validators/lesser.directive.mjs +4 -4
  21. package/esm2022/app/directives/validators/max.directive.mjs +4 -4
  22. package/esm2022/app/directives/validators/maxlength.directive.mjs +4 -4
  23. package/esm2022/app/directives/validators/min.directive.mjs +4 -4
  24. package/esm2022/app/directives/validators/minlength.directive.mjs +4 -4
  25. package/esm2022/app/directives/validators/no-fs-validators.directive.mjs +4 -4
  26. package/esm2022/app/directives/validators/numeric.directive.mjs +4 -4
  27. package/esm2022/app/directives/validators/pattern.directive.mjs +4 -4
  28. package/esm2022/app/directives/validators/phone.directive.mjs +4 -4
  29. package/esm2022/app/directives/validators/required.directive.mjs +4 -4
  30. package/esm2022/app/directives/validators/url.directive.mjs +4 -4
  31. package/esm2022/app/directives/validators/validate.directive.mjs +4 -4
  32. package/esm2022/app/fs-form.module.mjs +5 -5
  33. package/esm2022/app/guards/form-deactivate.guard.mjs +5 -5
  34. package/esm2022/app/helpers/get-active-route.mjs +1 -1
  35. package/esm2022/app/helpers/get-form-errors.mjs +1 -1
  36. package/esm2022/app/services/fsform.service.mjs +5 -5
  37. package/esm2022/app/validators/validators.mjs +1 -1
  38. package/fesm2022/firestitch-form.mjs +132 -131
  39. package/fesm2022/firestitch-form.mjs.map +1 -1
  40. package/package.json +1 -1
  41. package/styles.scss +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestitch/form",
3
- "version": "16.0.0",
3
+ "version": "18.0.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/Firestitch/ngx-form"
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