@firestitch/form 13.3.7 → 13.3.9
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 +21 -21
- package/app/components/confirm-unsaved/index.d.ts +1 -1
- package/app/components/form-dialog-actions/form-dialog-actions.component.d.ts +22 -22
- package/app/components/form-dialog-actions/index.d.ts +1 -1
- package/app/components/form-template/form-template.component.d.ts +13 -13
- package/app/components/form-template/index.d.ts +1 -1
- package/app/components/form-template-outlet/form-template-outlet.component.d.ts +13 -13
- package/app/components/form-template-outlet/index.d.ts +1 -1
- package/app/components/index.d.ts +4 -4
- package/app/consts/error-messages.const.d.ts +21 -21
- package/app/directives/button.directive.d.ts +35 -35
- package/app/directives/form/form.directive.d.ts +122 -122
- package/app/directives/form/index.d.ts +1 -1
- package/app/directives/form-dialog-close.directive.d.ts +16 -16
- package/app/directives/form-template.directive.d.ts +10 -10
- package/app/directives/index.d.ts +6 -6
- package/app/directives/submit-button.directive.d.ts +6 -6
- package/app/directives/validators/compare.directive.d.ts +15 -15
- package/app/directives/validators/control.directive.d.ts +49 -49
- package/app/directives/validators/daterange.directive.d.ts +13 -13
- package/app/directives/validators/email.directive.d.ts +13 -13
- package/app/directives/validators/emails.directive.d.ts +13 -13
- package/app/directives/validators/function.directive.d.ts +15 -15
- package/app/directives/validators/greater-equal.directive.d.ts +13 -13
- package/app/directives/validators/greater.directive.d.ts +13 -13
- package/app/directives/validators/index.d.ts +22 -22
- package/app/directives/validators/integer.directive.d.ts +13 -13
- package/app/directives/validators/lesser-equal.directive.d.ts +13 -13
- package/app/directives/validators/lesser.directive.d.ts +13 -13
- package/app/directives/validators/max.directive.d.ts +13 -13
- package/app/directives/validators/maxlength.directive.d.ts +13 -13
- package/app/directives/validators/min.directive.d.ts +13 -13
- package/app/directives/validators/minlength.directive.d.ts +13 -13
- package/app/directives/validators/no-fs-validators.directive.d.ts +14 -14
- package/app/directives/validators/numeric.directive.d.ts +13 -13
- package/app/directives/validators/pattern.directive.d.ts +13 -13
- package/app/directives/validators/phone.directive.d.ts +13 -13
- package/app/directives/validators/required.directive.d.ts +16 -16
- package/app/directives/validators/url.directive.d.ts +14 -14
- package/app/directives/validators/validate.directive.d.ts +15 -15
- package/app/enums/confirm-result.d.ts +7 -7
- package/app/enums/form-status.d.ts +10 -10
- package/app/enums/index.d.ts +2 -2
- package/app/fs-form.module.d.ts +44 -44
- package/app/guards/form-deactivate.guard.d.ts +12 -12
- package/app/helpers/confirm-result-continue.d.ts +1 -1
- package/app/helpers/get-active-route.d.ts +2 -2
- package/app/helpers/get-form-errors.d.ts +2 -2
- package/app/helpers/index.d.ts +1 -1
- package/app/helpers/is-enabled.d.ts +1 -1
- package/app/interfaces/async-validator.d.ts +14 -14
- package/app/interfaces/confirm-config.d.ts +7 -7
- package/app/interfaces/confirm-tab-group.d.ts +10 -10
- package/app/interfaces/index.d.ts +4 -4
- package/app/interfaces/submit-event.d.ts +6 -6
- package/app/interfaces/submitted-event.d.ts +7 -7
- package/app/interfaces/validator.d.ts +13 -13
- package/app/providers/validate-messages.provider.d.ts +27 -27
- package/app/services/fsform.service.d.ts +20 -20
- package/app/validators/validators.d.ts +12 -12
- package/esm2020/app/components/confirm-unsaved/confirm-unsaved.component.mjs +43 -43
- package/esm2020/app/components/confirm-unsaved/index.mjs +1 -1
- package/esm2020/app/components/form-dialog-actions/form-dialog-actions.component.mjs +74 -74
- package/esm2020/app/components/form-dialog-actions/index.mjs +1 -1
- package/esm2020/app/components/form-template/form-template.component.mjs +31 -31
- package/esm2020/app/components/form-template/index.mjs +2 -2
- package/esm2020/app/components/form-template-outlet/form-template-outlet.component.mjs +30 -30
- package/esm2020/app/components/form-template-outlet/index.mjs +2 -2
- package/esm2020/app/components/index.mjs +4 -4
- package/esm2020/app/consts/error-messages.const.mjs +21 -21
- package/esm2020/app/directives/button.directive.mjs +151 -151
- package/esm2020/app/directives/form/form.directive.mjs +692 -689
- package/esm2020/app/directives/form/index.mjs +1 -1
- package/esm2020/app/directives/form-dialog-close.directive.mjs +53 -53
- package/esm2020/app/directives/form-template.directive.mjs +19 -19
- package/esm2020/app/directives/index.mjs +6 -6
- package/esm2020/app/directives/submit-button.directive.mjs +13 -13
- package/esm2020/app/directives/validators/compare.directive.mjs +46 -46
- package/esm2020/app/directives/validators/control.directive.mjs +257 -257
- package/esm2020/app/directives/validators/daterange.directive.mjs +40 -40
- package/esm2020/app/directives/validators/email.directive.mjs +40 -40
- package/esm2020/app/directives/validators/emails.directive.mjs +40 -40
- package/esm2020/app/directives/validators/function.directive.mjs +40 -40
- package/esm2020/app/directives/validators/greater-equal.directive.mjs +39 -39
- package/esm2020/app/directives/validators/greater.directive.mjs +39 -39
- package/esm2020/app/directives/validators/index.mjs +22 -22
- package/esm2020/app/directives/validators/integer.directive.mjs +38 -38
- package/esm2020/app/directives/validators/lesser-equal.directive.mjs +39 -39
- package/esm2020/app/directives/validators/lesser.directive.mjs +39 -39
- package/esm2020/app/directives/validators/max.directive.mjs +35 -35
- package/esm2020/app/directives/validators/maxlength.directive.mjs +34 -34
- package/esm2020/app/directives/validators/min.directive.mjs +35 -35
- package/esm2020/app/directives/validators/minlength.directive.mjs +34 -34
- package/esm2020/app/directives/validators/no-fs-validators.directive.mjs +52 -52
- package/esm2020/app/directives/validators/numeric.directive.mjs +40 -40
- package/esm2020/app/directives/validators/pattern.directive.mjs +34 -34
- package/esm2020/app/directives/validators/phone.directive.mjs +40 -40
- package/esm2020/app/directives/validators/required.directive.mjs +68 -68
- package/esm2020/app/directives/validators/url.directive.mjs +44 -44
- package/esm2020/app/directives/validators/validate.directive.mjs +42 -42
- package/esm2020/app/enums/confirm-result.mjs +8 -8
- package/esm2020/app/enums/form-status.mjs +11 -11
- package/esm2020/app/enums/index.mjs +2 -2
- package/esm2020/app/fs-form.module.mjs +210 -210
- package/esm2020/app/guards/form-deactivate.guard.mjs +41 -41
- package/esm2020/app/helpers/confirm-result-continue.mjs +4 -4
- package/esm2020/app/helpers/get-active-route.mjs +6 -6
- package/esm2020/app/helpers/get-form-errors.mjs +24 -24
- package/esm2020/app/helpers/index.mjs +1 -1
- package/esm2020/app/helpers/is-enabled.mjs +3 -3
- package/esm2020/app/interfaces/async-validator.mjs +1 -1
- package/esm2020/app/interfaces/confirm-config.mjs +1 -1
- package/esm2020/app/interfaces/confirm-tab-group.mjs +1 -1
- package/esm2020/app/interfaces/index.mjs +4 -4
- package/esm2020/app/interfaces/submit-event.mjs +1 -1
- package/esm2020/app/interfaces/submitted-event.mjs +1 -1
- package/esm2020/app/interfaces/validator.mjs +1 -1
- package/esm2020/app/providers/validate-messages.provider.mjs +10 -10
- package/esm2020/app/services/fsform.service.mjs +91 -91
- package/esm2020/app/validators/validators.mjs +92 -92
- package/esm2020/firestitch-form.mjs +4 -4
- package/esm2020/public_api.mjs +36 -36
- package/fesm2015/firestitch-form.mjs +2452 -2450
- package/fesm2015/firestitch-form.mjs.map +1 -1
- package/fesm2020/firestitch-form.mjs +2439 -2436
- package/fesm2020/firestitch-form.mjs.map +1 -1
- package/firestitch-form.d.ts +5 -5
- package/package.json +1 -1
- package/public_api.d.ts +34 -34
package/firestitch-form.d.ts
CHANGED
|
@@ -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
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';
|