@firestitch/form 9.7.6 → 9.7.7

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 (131) hide show
  1. package/app/components/form-dialog-actions/form-dialog-actions.component.d.ts +18 -18
  2. package/app/consts/error-messages.const.d.ts +19 -19
  3. package/app/directives/form/form.directive.d.ts +102 -102
  4. package/app/directives/form-dialog-close.directive.d.ts +9 -9
  5. package/app/directives/submit-button.directive.d.ts +28 -28
  6. package/app/directives/validators/compare.directive.d.ts +12 -12
  7. package/app/directives/validators/control.directive.d.ts +45 -45
  8. package/app/directives/validators/daterange.directive.d.ts +10 -10
  9. package/app/directives/validators/email.directive.d.ts +10 -10
  10. package/app/directives/validators/emails.directive.d.ts +10 -10
  11. package/app/directives/validators/function.directive.d.ts +11 -11
  12. package/app/directives/validators/greater.directive.d.ts +10 -10
  13. package/app/directives/validators/integer.directive.d.ts +10 -10
  14. package/app/directives/validators/lesser.directive.d.ts +10 -10
  15. package/app/directives/validators/max.directive.d.ts +10 -10
  16. package/app/directives/validators/maxlength.directive.d.ts +10 -10
  17. package/app/directives/validators/min.directive.d.ts +10 -10
  18. package/app/directives/validators/minlength.directive.d.ts +10 -10
  19. package/app/directives/validators/numeric.directive.d.ts +10 -10
  20. package/app/directives/validators/pattern.directive.d.ts +10 -10
  21. package/app/directives/validators/phone.directive.d.ts +10 -10
  22. package/app/directives/validators/required.directive.d.ts +13 -13
  23. package/app/directives/validators/url.directive.d.ts +11 -11
  24. package/app/directives/validators/validate.directive.d.ts +11 -11
  25. package/app/enums/confirm-result.d.ts +7 -7
  26. package/app/enums/form-status.d.ts +9 -9
  27. package/app/fs-form.module.d.ts +4 -4
  28. package/app/guards/form-deactivate.guard.d.ts +9 -9
  29. package/app/helpers/confirm-result-continue.d.ts +1 -1
  30. package/app/helpers/confirm-unsaved.d.ts +5 -5
  31. package/app/helpers/get-form-errors.d.ts +2 -2
  32. package/app/helpers/index.d.ts +2 -2
  33. package/app/helpers/is-enabled.d.ts +1 -1
  34. package/app/interfaces/async-validator.d.ts +14 -14
  35. package/app/interfaces/confirm-config.d.ts +7 -7
  36. package/app/interfaces/confirm-tab-group.d.ts +10 -10
  37. package/app/interfaces/form-deactivate.d.ts +4 -4
  38. package/app/interfaces/index.d.ts +4 -4
  39. package/app/interfaces/submit-event.d.ts +5 -5
  40. package/app/interfaces/submitted-event.d.ts +6 -6
  41. package/app/interfaces/validator.d.ts +13 -13
  42. package/app/providers/validate-messages.provider.d.ts +25 -25
  43. package/app/services/fsform.service.d.ts +7 -7
  44. package/app/validators/validators.d.ts +12 -12
  45. package/bundles/firestitch-form.umd.js +2300 -2303
  46. package/bundles/firestitch-form.umd.js.map +1 -1
  47. package/bundles/firestitch-form.umd.min.js +1 -1
  48. package/bundles/firestitch-form.umd.min.js.map +1 -1
  49. package/esm2015/app/components/form-dialog-actions/form-dialog-actions.component.js +92 -92
  50. package/esm2015/app/consts/error-messages.const.js +19 -19
  51. package/esm2015/app/directives/form/form.directive.js +665 -668
  52. package/esm2015/app/directives/form-dialog-close.directive.js +32 -32
  53. package/esm2015/app/directives/submit-button.directive.js +137 -137
  54. package/esm2015/app/directives/validators/compare.directive.js +48 -48
  55. package/esm2015/app/directives/validators/control.directive.js +272 -272
  56. package/esm2015/app/directives/validators/daterange.directive.js +40 -40
  57. package/esm2015/app/directives/validators/email.directive.js +40 -40
  58. package/esm2015/app/directives/validators/emails.directive.js +40 -40
  59. package/esm2015/app/directives/validators/function.directive.js +30 -30
  60. package/esm2015/app/directives/validators/greater.directive.js +39 -39
  61. package/esm2015/app/directives/validators/integer.directive.js +40 -40
  62. package/esm2015/app/directives/validators/lesser.directive.js +39 -39
  63. package/esm2015/app/directives/validators/max.directive.js +35 -35
  64. package/esm2015/app/directives/validators/maxlength.directive.js +34 -34
  65. package/esm2015/app/directives/validators/min.directive.js +35 -35
  66. package/esm2015/app/directives/validators/minlength.directive.js +34 -34
  67. package/esm2015/app/directives/validators/numeric.directive.js +40 -40
  68. package/esm2015/app/directives/validators/pattern.directive.js +34 -34
  69. package/esm2015/app/directives/validators/phone.directive.js +40 -40
  70. package/esm2015/app/directives/validators/required.directive.js +72 -72
  71. package/esm2015/app/directives/validators/url.directive.js +48 -48
  72. package/esm2015/app/directives/validators/validate.directive.js +30 -30
  73. package/esm2015/app/enums/confirm-result.js +8 -8
  74. package/esm2015/app/enums/form-status.js +10 -10
  75. package/esm2015/app/fs-form.module.js +105 -105
  76. package/esm2015/app/guards/form-deactivate.guard.js +43 -43
  77. package/esm2015/app/helpers/confirm-result-continue.js +4 -4
  78. package/esm2015/app/helpers/confirm-unsaved.js +69 -69
  79. package/esm2015/app/helpers/get-form-errors.js +24 -24
  80. package/esm2015/app/helpers/index.js +2 -2
  81. package/esm2015/app/helpers/is-enabled.js +3 -3
  82. package/esm2015/app/providers/validate-messages.provider.js +10 -10
  83. package/esm2015/app/services/fsform.service.js +25 -25
  84. package/esm2015/app/validators/validators.js +96 -96
  85. package/esm2015/firestitch-form.js +26 -26
  86. package/esm2015/public_api.js +13 -13
  87. package/esm5/app/components/form-dialog-actions/form-dialog-actions.component.js +95 -95
  88. package/esm5/app/consts/error-messages.const.js +19 -19
  89. package/esm5/app/directives/form/form.directive.js +706 -709
  90. package/esm5/app/directives/form-dialog-close.directive.js +33 -33
  91. package/esm5/app/directives/submit-button.directive.js +143 -143
  92. package/esm5/app/directives/validators/compare.directive.js +59 -59
  93. package/esm5/app/directives/validators/control.directive.js +278 -278
  94. package/esm5/app/directives/validators/daterange.directive.js +49 -49
  95. package/esm5/app/directives/validators/email.directive.js +49 -49
  96. package/esm5/app/directives/validators/emails.directive.js +49 -49
  97. package/esm5/app/directives/validators/function.directive.js +35 -35
  98. package/esm5/app/directives/validators/greater.directive.js +48 -48
  99. package/esm5/app/directives/validators/integer.directive.js +49 -49
  100. package/esm5/app/directives/validators/lesser.directive.js +48 -48
  101. package/esm5/app/directives/validators/max.directive.js +44 -44
  102. package/esm5/app/directives/validators/maxlength.directive.js +43 -43
  103. package/esm5/app/directives/validators/min.directive.js +44 -44
  104. package/esm5/app/directives/validators/minlength.directive.js +43 -43
  105. package/esm5/app/directives/validators/numeric.directive.js +49 -49
  106. package/esm5/app/directives/validators/pattern.directive.js +43 -43
  107. package/esm5/app/directives/validators/phone.directive.js +49 -49
  108. package/esm5/app/directives/validators/required.directive.js +87 -87
  109. package/esm5/app/directives/validators/url.directive.js +55 -55
  110. package/esm5/app/directives/validators/validate.directive.js +35 -35
  111. package/esm5/app/enums/confirm-result.js +8 -8
  112. package/esm5/app/enums/form-status.js +10 -10
  113. package/esm5/app/fs-form.module.js +109 -109
  114. package/esm5/app/guards/form-deactivate.guard.js +44 -44
  115. package/esm5/app/helpers/confirm-result-continue.js +4 -4
  116. package/esm5/app/helpers/confirm-unsaved.js +69 -69
  117. package/esm5/app/helpers/get-form-errors.js +27 -27
  118. package/esm5/app/helpers/index.js +2 -2
  119. package/esm5/app/helpers/is-enabled.js +3 -3
  120. package/esm5/app/providers/validate-messages.provider.js +11 -11
  121. package/esm5/app/services/fsform.service.js +26 -26
  122. package/esm5/app/validators/validators.js +101 -101
  123. package/esm5/firestitch-form.js +26 -26
  124. package/esm5/public_api.js +13 -13
  125. package/fesm2015/firestitch-form.js +2074 -2077
  126. package/fesm2015/firestitch-form.js.map +1 -1
  127. package/fesm5/firestitch-form.js +2303 -2306
  128. package/fesm5/firestitch-form.js.map +1 -1
  129. package/firestitch-form.d.ts +26 -26
  130. package/package.json +1 -1
  131. package/public_api.d.ts +12 -12
@@ -1,26 +1,26 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- export * from './public_api';
5
- export { FsFormDialogCloseDirective as ɵa } from './app/directives/form-dialog-close.directive';
6
- export { FsSubmitButtonDirective as ɵw } from './app/directives/submit-button.directive';
7
- export { FsFormCompareDirective as ɵn } from './app/directives/validators/compare.directive';
8
- export { FsControlDirective as ɵb } from './app/directives/validators/control.directive';
9
- export { FsFormDateRangeDirective as ɵs } from './app/directives/validators/daterange.directive';
10
- export { FsFormEmailDirective as ɵk } from './app/directives/validators/email.directive';
11
- export { FsFormEmailsDirective as ɵl } from './app/directives/validators/emails.directive';
12
- export { FsFormFunctionDirective as ɵr } from './app/directives/validators/function.directive';
13
- export { FsFormGreaterDirective as ɵt } from './app/directives/validators/greater.directive';
14
- export { FsFormIntegerDirective as ɵo } from './app/directives/validators/integer.directive';
15
- export { FsFormLesserDirective as ɵu } from './app/directives/validators/lesser.directive';
16
- export { FsFormMaxDirective as ɵh } from './app/directives/validators/max.directive';
17
- export { FsFormMaxLengthDirective as ɵj } from './app/directives/validators/maxlength.directive';
18
- export { FsFormMinDirective as ɵg } from './app/directives/validators/min.directive';
19
- export { FsFormMinLengthDirective as ɵi } from './app/directives/validators/minlength.directive';
20
- export { FsFormNumericDirective as ɵp } from './app/directives/validators/numeric.directive';
21
- export { FsFormPatternDirective as ɵq } from './app/directives/validators/pattern.directive';
22
- export { FsFormPhoneDirective as ɵm } from './app/directives/validators/phone.directive';
23
- export { FsFormRequiredDirective as ɵf } from './app/directives/validators/required.directive';
24
- export { FsFormUrlDirective as ɵv } from './app/directives/validators/url.directive';
25
- export { FsFormValidateDirective as ɵx } from './app/directives/validators/validate.directive';
26
- export { VALIDATE_MESSAGES as ɵc, VALIDATE_MESSAGE_PROVIDER as ɵd, messageProviderFactory as ɵe } from './app/providers/validate-messages.provider';
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public_api';
5
+ export { FsFormDialogCloseDirective as ɵa } from './app/directives/form-dialog-close.directive';
6
+ export { FsSubmitButtonDirective as ɵw } from './app/directives/submit-button.directive';
7
+ export { FsFormCompareDirective as ɵn } from './app/directives/validators/compare.directive';
8
+ export { FsControlDirective as ɵb } from './app/directives/validators/control.directive';
9
+ export { FsFormDateRangeDirective as ɵs } from './app/directives/validators/daterange.directive';
10
+ export { FsFormEmailDirective as ɵk } from './app/directives/validators/email.directive';
11
+ export { FsFormEmailsDirective as ɵl } from './app/directives/validators/emails.directive';
12
+ export { FsFormFunctionDirective as ɵr } from './app/directives/validators/function.directive';
13
+ export { FsFormGreaterDirective as ɵt } from './app/directives/validators/greater.directive';
14
+ export { FsFormIntegerDirective as ɵo } from './app/directives/validators/integer.directive';
15
+ export { FsFormLesserDirective as ɵu } from './app/directives/validators/lesser.directive';
16
+ export { FsFormMaxDirective as ɵh } from './app/directives/validators/max.directive';
17
+ export { FsFormMaxLengthDirective as ɵj } from './app/directives/validators/maxlength.directive';
18
+ export { FsFormMinDirective as ɵg } from './app/directives/validators/min.directive';
19
+ export { FsFormMinLengthDirective as ɵi } from './app/directives/validators/minlength.directive';
20
+ export { FsFormNumericDirective as ɵp } from './app/directives/validators/numeric.directive';
21
+ export { FsFormPatternDirective as ɵq } from './app/directives/validators/pattern.directive';
22
+ export { FsFormPhoneDirective as ɵm } from './app/directives/validators/phone.directive';
23
+ export { FsFormRequiredDirective as ɵf } from './app/directives/validators/required.directive';
24
+ export { FsFormUrlDirective as ɵv } from './app/directives/validators/url.directive';
25
+ export { FsFormValidateDirective as ɵx } from './app/directives/validators/validate.directive';
26
+ export { VALIDATE_MESSAGES as ɵc, VALIDATE_MESSAGE_PROVIDER as ɵd, messageProviderFactory as ɵe } from './app/providers/validate-messages.provider';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestitch/form",
3
- "version": "9.7.6",
3
+ "version": "9.7.7",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/Firestitch/ngx-form"
package/public_api.d.ts CHANGED
@@ -1,12 +1,12 @@
1
- export { FsFormModule } from './app/fs-form.module';
2
- export { FsForm } from './app/services/fsform.service';
3
- export { FsFormDirective } from './app/directives/form/form.directive';
4
- export { FsFormDialogActionsComponent } from './app/components/form-dialog-actions/form-dialog-actions.component';
5
- export { FsValidators } from './app/validators/validators';
6
- export { FormDeactivate } from './app/interfaces/form-deactivate';
7
- export { FormDeactivateGuard } from './app/guards/form-deactivate.guard';
8
- export { SubmitEvent } from './app/interfaces/submit-event';
9
- export { SubmittedEvent } from './app/interfaces/submitted-event';
10
- export { ConfirmConfig } from './app/interfaces/confirm-config';
11
- export { ConfirmResult } from './app/enums/confirm-result';
12
- export { FormStatus } from './app/enums/form-status';
1
+ export { FsFormModule } from './app/fs-form.module';
2
+ export { FsForm } from './app/services/fsform.service';
3
+ export { FsFormDirective } from './app/directives/form/form.directive';
4
+ export { FsFormDialogActionsComponent } from './app/components/form-dialog-actions/form-dialog-actions.component';
5
+ export { FsValidators } from './app/validators/validators';
6
+ export { FormDeactivate } from './app/interfaces/form-deactivate';
7
+ export { FormDeactivateGuard } from './app/guards/form-deactivate.guard';
8
+ export { SubmitEvent } from './app/interfaces/submit-event';
9
+ export { SubmittedEvent } from './app/interfaces/submitted-event';
10
+ export { ConfirmConfig } from './app/interfaces/confirm-config';
11
+ export { ConfirmResult } from './app/enums/confirm-result';
12
+ export { FormStatus } from './app/enums/form-status';