@firestitch/form 13.3.9 → 14.0.2

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 (129) hide show
  1. package/app/components/confirm-unsaved/confirm-unsaved.component.d.ts +21 -21
  2. package/app/components/confirm-unsaved/index.d.ts +1 -1
  3. package/app/components/form-dialog-actions/form-dialog-actions.component.d.ts +22 -22
  4. package/app/components/form-dialog-actions/index.d.ts +1 -1
  5. package/app/components/form-template/form-template.component.d.ts +13 -13
  6. package/app/components/form-template/index.d.ts +1 -1
  7. package/app/components/form-template-outlet/form-template-outlet.component.d.ts +13 -13
  8. package/app/components/form-template-outlet/index.d.ts +1 -1
  9. package/app/components/index.d.ts +4 -4
  10. package/app/consts/error-messages.const.d.ts +21 -21
  11. package/app/directives/button.directive.d.ts +35 -35
  12. package/app/directives/form/form.directive.d.ts +122 -122
  13. package/app/directives/form/index.d.ts +1 -1
  14. package/app/directives/form-dialog-close.directive.d.ts +16 -16
  15. package/app/directives/form-template.directive.d.ts +10 -10
  16. package/app/directives/index.d.ts +6 -6
  17. package/app/directives/submit-button.directive.d.ts +6 -6
  18. package/app/directives/validators/compare.directive.d.ts +15 -15
  19. package/app/directives/validators/control.directive.d.ts +49 -49
  20. package/app/directives/validators/daterange.directive.d.ts +13 -13
  21. package/app/directives/validators/email.directive.d.ts +13 -13
  22. package/app/directives/validators/emails.directive.d.ts +13 -13
  23. package/app/directives/validators/function.directive.d.ts +15 -15
  24. package/app/directives/validators/greater-equal.directive.d.ts +13 -13
  25. package/app/directives/validators/greater.directive.d.ts +13 -13
  26. package/app/directives/validators/index.d.ts +22 -22
  27. package/app/directives/validators/integer.directive.d.ts +13 -13
  28. package/app/directives/validators/lesser-equal.directive.d.ts +13 -13
  29. package/app/directives/validators/lesser.directive.d.ts +13 -13
  30. package/app/directives/validators/max.directive.d.ts +13 -13
  31. package/app/directives/validators/maxlength.directive.d.ts +13 -13
  32. package/app/directives/validators/min.directive.d.ts +13 -13
  33. package/app/directives/validators/minlength.directive.d.ts +13 -13
  34. package/app/directives/validators/no-fs-validators.directive.d.ts +14 -14
  35. package/app/directives/validators/numeric.directive.d.ts +13 -13
  36. package/app/directives/validators/pattern.directive.d.ts +13 -13
  37. package/app/directives/validators/phone.directive.d.ts +13 -13
  38. package/app/directives/validators/required.directive.d.ts +16 -16
  39. package/app/directives/validators/url.directive.d.ts +14 -14
  40. package/app/directives/validators/validate.directive.d.ts +15 -15
  41. package/app/enums/confirm-result.d.ts +7 -7
  42. package/app/enums/form-status.d.ts +10 -10
  43. package/app/enums/index.d.ts +2 -2
  44. package/app/fs-form.module.d.ts +44 -44
  45. package/app/guards/form-deactivate.guard.d.ts +12 -12
  46. package/app/helpers/confirm-result-continue.d.ts +1 -1
  47. package/app/helpers/get-active-route.d.ts +2 -2
  48. package/app/helpers/get-form-errors.d.ts +2 -2
  49. package/app/helpers/index.d.ts +1 -1
  50. package/app/helpers/is-enabled.d.ts +1 -1
  51. package/app/interfaces/async-validator.d.ts +14 -14
  52. package/app/interfaces/confirm-config.d.ts +7 -7
  53. package/app/interfaces/confirm-tab-group.d.ts +10 -10
  54. package/app/interfaces/index.d.ts +4 -4
  55. package/app/interfaces/submit-event.d.ts +6 -6
  56. package/app/interfaces/submitted-event.d.ts +7 -7
  57. package/app/interfaces/validator.d.ts +13 -13
  58. package/app/providers/validate-messages.provider.d.ts +27 -27
  59. package/app/services/fsform.service.d.ts +20 -20
  60. package/app/validators/validators.d.ts +12 -12
  61. package/esm2020/app/components/confirm-unsaved/confirm-unsaved.component.mjs +43 -43
  62. package/esm2020/app/components/confirm-unsaved/index.mjs +1 -1
  63. package/esm2020/app/components/form-dialog-actions/form-dialog-actions.component.mjs +74 -74
  64. package/esm2020/app/components/form-dialog-actions/index.mjs +1 -1
  65. package/esm2020/app/components/form-template/form-template.component.mjs +31 -31
  66. package/esm2020/app/components/form-template/index.mjs +2 -2
  67. package/esm2020/app/components/form-template-outlet/form-template-outlet.component.mjs +30 -30
  68. package/esm2020/app/components/form-template-outlet/index.mjs +2 -2
  69. package/esm2020/app/components/index.mjs +4 -4
  70. package/esm2020/app/consts/error-messages.const.mjs +21 -21
  71. package/esm2020/app/directives/button.directive.mjs +151 -151
  72. package/esm2020/app/directives/form/form.directive.mjs +689 -692
  73. package/esm2020/app/directives/form/index.mjs +1 -1
  74. package/esm2020/app/directives/form-dialog-close.directive.mjs +53 -53
  75. package/esm2020/app/directives/form-template.directive.mjs +19 -19
  76. package/esm2020/app/directives/index.mjs +6 -6
  77. package/esm2020/app/directives/submit-button.directive.mjs +13 -13
  78. package/esm2020/app/directives/validators/compare.directive.mjs +46 -46
  79. package/esm2020/app/directives/validators/control.directive.mjs +257 -257
  80. package/esm2020/app/directives/validators/daterange.directive.mjs +40 -40
  81. package/esm2020/app/directives/validators/email.directive.mjs +40 -40
  82. package/esm2020/app/directives/validators/emails.directive.mjs +40 -40
  83. package/esm2020/app/directives/validators/function.directive.mjs +40 -40
  84. package/esm2020/app/directives/validators/greater-equal.directive.mjs +39 -39
  85. package/esm2020/app/directives/validators/greater.directive.mjs +39 -39
  86. package/esm2020/app/directives/validators/index.mjs +22 -22
  87. package/esm2020/app/directives/validators/integer.directive.mjs +38 -38
  88. package/esm2020/app/directives/validators/lesser-equal.directive.mjs +39 -39
  89. package/esm2020/app/directives/validators/lesser.directive.mjs +39 -39
  90. package/esm2020/app/directives/validators/max.directive.mjs +35 -35
  91. package/esm2020/app/directives/validators/maxlength.directive.mjs +34 -34
  92. package/esm2020/app/directives/validators/min.directive.mjs +35 -35
  93. package/esm2020/app/directives/validators/minlength.directive.mjs +34 -34
  94. package/esm2020/app/directives/validators/no-fs-validators.directive.mjs +52 -52
  95. package/esm2020/app/directives/validators/numeric.directive.mjs +40 -40
  96. package/esm2020/app/directives/validators/pattern.directive.mjs +34 -34
  97. package/esm2020/app/directives/validators/phone.directive.mjs +40 -40
  98. package/esm2020/app/directives/validators/required.directive.mjs +68 -68
  99. package/esm2020/app/directives/validators/url.directive.mjs +44 -44
  100. package/esm2020/app/directives/validators/validate.directive.mjs +42 -42
  101. package/esm2020/app/enums/confirm-result.mjs +8 -8
  102. package/esm2020/app/enums/form-status.mjs +11 -11
  103. package/esm2020/app/enums/index.mjs +2 -2
  104. package/esm2020/app/fs-form.module.mjs +209 -211
  105. package/esm2020/app/guards/form-deactivate.guard.mjs +41 -41
  106. package/esm2020/app/helpers/confirm-result-continue.mjs +4 -4
  107. package/esm2020/app/helpers/get-active-route.mjs +6 -6
  108. package/esm2020/app/helpers/get-form-errors.mjs +25 -25
  109. package/esm2020/app/helpers/index.mjs +1 -1
  110. package/esm2020/app/helpers/is-enabled.mjs +3 -3
  111. package/esm2020/app/interfaces/async-validator.mjs +1 -1
  112. package/esm2020/app/interfaces/confirm-config.mjs +1 -1
  113. package/esm2020/app/interfaces/confirm-tab-group.mjs +1 -1
  114. package/esm2020/app/interfaces/index.mjs +4 -4
  115. package/esm2020/app/interfaces/submit-event.mjs +1 -1
  116. package/esm2020/app/interfaces/submitted-event.mjs +1 -1
  117. package/esm2020/app/interfaces/validator.mjs +1 -1
  118. package/esm2020/app/providers/validate-messages.provider.mjs +10 -10
  119. package/esm2020/app/services/fsform.service.mjs +91 -91
  120. package/esm2020/app/validators/validators.mjs +92 -92
  121. package/esm2020/firestitch-form.mjs +4 -4
  122. package/esm2020/public_api.mjs +36 -36
  123. package/fesm2015/firestitch-form.mjs +2457 -2461
  124. package/fesm2015/firestitch-form.mjs.map +1 -1
  125. package/fesm2020/firestitch-form.mjs +2443 -2448
  126. package/fesm2020/firestitch-form.mjs.map +1 -1
  127. package/{firestitch-form.d.ts → index.d.ts} +5 -5
  128. package/package.json +3 -3
  129. package/public_api.d.ts +34 -34
@@ -1,5 +1,5 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@firestitch/form" />
5
- export * from './public_api';
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@firestitch/form" />
5
+ export * from './public_api';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestitch/form",
3
- "version": "13.3.9",
3
+ "version": "14.0.2",
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": "firestitch-form.d.ts",
25
+ "typings": "index.d.ts",
26
26
  "exports": {
27
27
  "./package.json": {
28
28
  "default": "./package.json"
29
29
  },
30
30
  ".": {
31
- "types": "./firestitch-form.d.ts",
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",
package/public_api.d.ts CHANGED
@@ -1,34 +1,34 @@
1
- export { FsFormModule } from './app/fs-form.module';
2
- export { FsForm } from './app/services/fsform.service';
3
- export { FsFormGreaterDirective, FsFormGreaterEqualDirective, FsFormLesserEqualDirective, FsFormTemplateDirective } from './app/directives';
4
- export { FsButtonDirective } from './app/directives/button.directive';
5
- export { FsFormDialogCloseDirective } from './app/directives/form-dialog-close.directive';
6
- export { FsFormDirective } from './app/directives/form/form.directive';
7
- export { FsSubmitButtonDirective } from './app/directives/submit-button.directive';
8
- export { FsFormCompareDirective } from './app/directives/validators/compare.directive';
9
- export { FsControlDirective } from './app/directives/validators/control.directive';
10
- export { FsFormDateRangeDirective } from './app/directives/validators/daterange.directive';
11
- export { FsFormEmailDirective } from './app/directives/validators/email.directive';
12
- export { FsFormEmailsDirective } from './app/directives/validators/emails.directive';
13
- export { FsFormFunctionDirective } from './app/directives/validators/function.directive';
14
- export { FsFormIntegerDirective } from './app/directives/validators/integer.directive';
15
- export { FsFormLesserDirective } from './app/directives/validators/lesser.directive';
16
- export { FsFormMaxDirective } from './app/directives/validators/max.directive';
17
- export { FsFormMaxLengthDirective } from './app/directives/validators/maxlength.directive';
18
- export { FsFormMinDirective } from './app/directives/validators/min.directive';
19
- export { FsFormMinLengthDirective } from './app/directives/validators/minlength.directive';
20
- export { FsFormNoFsValidatorsDirective } from './app/directives/validators/no-fs-validators.directive';
21
- export { FsFormNumericDirective } from './app/directives/validators/numeric.directive';
22
- export { FsFormPatternDirective } from './app/directives/validators/pattern.directive';
23
- export { FsFormPhoneDirective } from './app/directives/validators/phone.directive';
24
- export { FsFormRequiredDirective } from './app/directives/validators/required.directive';
25
- export { FsFormUrlDirective } from './app/directives/validators/url.directive';
26
- export { FsFormValidateDirective } from './app/directives/validators/validate.directive';
27
- export { FsFormDialogActionsComponent, FsFormTemplateComponent, FsFormTemplateOutletComponent } from './app/components';
28
- export { FsValidators } from './app/validators/validators';
29
- export { FormDeactivateGuard } from './app/guards/form-deactivate.guard';
30
- export { ConfirmConfig } from './app/interfaces/confirm-config';
31
- export { SubmitEvent } from './app/interfaces/submit-event';
32
- export { SubmittedEvent } from './app/interfaces/submitted-event';
33
- export { ConfirmResult } from './app/enums/confirm-result';
34
- 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 { FsFormGreaterDirective, FsFormGreaterEqualDirective, FsFormLesserEqualDirective, FsFormTemplateDirective } from './app/directives';
4
+ export { FsButtonDirective } from './app/directives/button.directive';
5
+ export { FsFormDialogCloseDirective } from './app/directives/form-dialog-close.directive';
6
+ export { FsFormDirective } from './app/directives/form/form.directive';
7
+ export { FsSubmitButtonDirective } from './app/directives/submit-button.directive';
8
+ export { FsFormCompareDirective } from './app/directives/validators/compare.directive';
9
+ export { FsControlDirective } from './app/directives/validators/control.directive';
10
+ export { FsFormDateRangeDirective } from './app/directives/validators/daterange.directive';
11
+ export { FsFormEmailDirective } from './app/directives/validators/email.directive';
12
+ export { FsFormEmailsDirective } from './app/directives/validators/emails.directive';
13
+ export { FsFormFunctionDirective } from './app/directives/validators/function.directive';
14
+ export { FsFormIntegerDirective } from './app/directives/validators/integer.directive';
15
+ export { FsFormLesserDirective } from './app/directives/validators/lesser.directive';
16
+ export { FsFormMaxDirective } from './app/directives/validators/max.directive';
17
+ export { FsFormMaxLengthDirective } from './app/directives/validators/maxlength.directive';
18
+ export { FsFormMinDirective } from './app/directives/validators/min.directive';
19
+ export { FsFormMinLengthDirective } from './app/directives/validators/minlength.directive';
20
+ export { FsFormNoFsValidatorsDirective } from './app/directives/validators/no-fs-validators.directive';
21
+ export { FsFormNumericDirective } from './app/directives/validators/numeric.directive';
22
+ export { FsFormPatternDirective } from './app/directives/validators/pattern.directive';
23
+ export { FsFormPhoneDirective } from './app/directives/validators/phone.directive';
24
+ export { FsFormRequiredDirective } from './app/directives/validators/required.directive';
25
+ export { FsFormUrlDirective } from './app/directives/validators/url.directive';
26
+ export { FsFormValidateDirective } from './app/directives/validators/validate.directive';
27
+ export { FsFormDialogActionsComponent, FsFormTemplateComponent, FsFormTemplateOutletComponent } from './app/components';
28
+ export { FsValidators } from './app/validators/validators';
29
+ export { FormDeactivateGuard } from './app/guards/form-deactivate.guard';
30
+ export { ConfirmConfig } from './app/interfaces/confirm-config';
31
+ export { SubmitEvent } from './app/interfaces/submit-event';
32
+ export { SubmittedEvent } from './app/interfaces/submitted-event';
33
+ export { ConfirmResult } from './app/enums/confirm-result';
34
+ export { FormStatus } from './app/enums/form-status';