@firestitch/form 12.4.8 → 12.4.10
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/form-dialog-actions/form-dialog-actions.component.d.ts +23 -23
- package/app/consts/error-messages.const.d.ts +19 -19
- package/app/directives/button.directive.d.ts +35 -34
- package/app/directives/form/form.directive.d.ts +122 -122
- package/app/directives/form-dialog-close.directive.d.ts +12 -12
- package/app/directives/index.d.ts +2 -2
- 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 +48 -48
- 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.directive.d.ts +13 -13
- package/app/directives/validators/integer.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 +13 -13
- 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/fs-form.module.d.ts +37 -37
- package/app/guards/form-deactivate.guard.d.ts +14 -14
- package/app/helpers/confirm-result-continue.d.ts +1 -1
- package/app/helpers/confirm-unsaved.d.ts +5 -5
- 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 +2 -2
- 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 +25 -25
- package/app/services/fsform.service.d.ts +16 -16
- package/app/validators/validators.d.ts +12 -12
- package/bundles/firestitch-form.umd.js +2839 -2836
- package/bundles/firestitch-form.umd.js.map +1 -1
- package/esm2015/app/components/form-dialog-actions/form-dialog-actions.component.js +91 -91
- package/esm2015/app/consts/error-messages.const.js +19 -19
- package/esm2015/app/directives/button.directive.js +153 -150
- package/esm2015/app/directives/form/form.directive.js +696 -696
- package/esm2015/app/directives/form-dialog-close.directive.js +30 -30
- package/esm2015/app/directives/index.js +2 -2
- package/esm2015/app/directives/submit-button.directive.js +13 -13
- package/esm2015/app/directives/validators/compare.directive.js +48 -48
- package/esm2015/app/directives/validators/control.directive.js +264 -264
- package/esm2015/app/directives/validators/daterange.directive.js +40 -40
- package/esm2015/app/directives/validators/email.directive.js +40 -40
- package/esm2015/app/directives/validators/emails.directive.js +40 -40
- package/esm2015/app/directives/validators/function.directive.js +40 -40
- package/esm2015/app/directives/validators/greater.directive.js +39 -39
- package/esm2015/app/directives/validators/integer.directive.js +40 -40
- package/esm2015/app/directives/validators/lesser.directive.js +39 -39
- package/esm2015/app/directives/validators/max.directive.js +35 -35
- package/esm2015/app/directives/validators/maxlength.directive.js +34 -34
- package/esm2015/app/directives/validators/min.directive.js +35 -35
- package/esm2015/app/directives/validators/minlength.directive.js +34 -34
- package/esm2015/app/directives/validators/no-fs-validators.directive.js +46 -46
- package/esm2015/app/directives/validators/numeric.directive.js +40 -40
- package/esm2015/app/directives/validators/pattern.directive.js +34 -34
- package/esm2015/app/directives/validators/phone.directive.js +40 -40
- package/esm2015/app/directives/validators/required.directive.js +70 -70
- package/esm2015/app/directives/validators/url.directive.js +46 -46
- package/esm2015/app/directives/validators/validate.directive.js +42 -42
- package/esm2015/app/enums/confirm-result.js +8 -8
- package/esm2015/app/enums/form-status.js +11 -11
- package/esm2015/app/fs-form.module.js +180 -180
- package/esm2015/app/guards/form-deactivate.guard.js +44 -44
- package/esm2015/app/helpers/confirm-result-continue.js +4 -4
- package/esm2015/app/helpers/confirm-unsaved.js +71 -71
- package/esm2015/app/helpers/get-active-route.js +6 -6
- package/esm2015/app/helpers/get-form-errors.js +24 -24
- package/esm2015/app/helpers/index.js +2 -2
- package/esm2015/app/helpers/is-enabled.js +3 -3
- package/esm2015/app/interfaces/async-validator.js +1 -1
- package/esm2015/app/interfaces/confirm-config.js +1 -1
- package/esm2015/app/interfaces/confirm-tab-group.js +1 -1
- package/esm2015/app/interfaces/index.js +4 -4
- package/esm2015/app/interfaces/submit-event.js +1 -1
- package/esm2015/app/interfaces/submitted-event.js +1 -1
- package/esm2015/app/interfaces/validator.js +1 -1
- package/esm2015/app/providers/validate-messages.provider.js +10 -10
- package/esm2015/app/services/fsform.service.js +39 -39
- package/esm2015/app/validators/validators.js +96 -96
- package/esm2015/firestitch-form.js +4 -4
- package/esm2015/public_api.js +36 -36
- package/fesm2015/firestitch-form.js +2276 -2273
- package/fesm2015/firestitch-form.js.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 { FsFormDirective } from './app/directives/form/form.directive';
|
|
4
|
-
export { FsControlDirective } from './app/directives/validators/control.directive';
|
|
5
|
-
export { FsFormRequiredDirective } from './app/directives/validators/required.directive';
|
|
6
|
-
export { FsFormMinDirective } from './app/directives/validators/min.directive';
|
|
7
|
-
export { FsFormMaxDirective } from './app/directives/validators/max.directive';
|
|
8
|
-
export { FsFormMinLengthDirective } from './app/directives/validators/minlength.directive';
|
|
9
|
-
export { FsFormMaxLengthDirective } from './app/directives/validators/maxlength.directive';
|
|
10
|
-
export { FsFormEmailDirective } from './app/directives/validators/email.directive';
|
|
11
|
-
export { FsFormEmailsDirective } from './app/directives/validators/emails.directive';
|
|
12
|
-
export { FsFormPhoneDirective } from './app/directives/validators/phone.directive';
|
|
13
|
-
export { FsFormCompareDirective } from './app/directives/validators/compare.directive';
|
|
14
|
-
export { FsFormIntegerDirective } from './app/directives/validators/integer.directive';
|
|
15
|
-
export { FsFormNumericDirective } from './app/directives/validators/numeric.directive';
|
|
16
|
-
export { FsFormPatternDirective } from './app/directives/validators/pattern.directive';
|
|
17
|
-
export { FsFormFunctionDirective } from './app/directives/validators/function.directive';
|
|
18
|
-
export { FsFormDateRangeDirective } from './app/directives/validators/daterange.directive';
|
|
19
|
-
export { FsFormGreaterDirective } from './app/directives/validators/greater.directive';
|
|
20
|
-
export { FsFormLesserDirective } from './app/directives/validators/lesser.directive';
|
|
21
|
-
export { FsFormUrlDirective } from './app/directives/validators/url.directive';
|
|
22
|
-
export { FsFormDialogCloseDirective } from './app/directives/form-dialog-close.directive';
|
|
23
|
-
export { FsButtonDirective } from './app/directives/button.directive';
|
|
24
|
-
export { FsSubmitButtonDirective } from './app/directives/submit-button.directive';
|
|
25
|
-
export { FsFormValidateDirective } from './app/directives/validators/validate.directive';
|
|
26
|
-
export { FsFormNoFsValidatorsDirective } from './app/directives/validators/no-fs-validators.directive';
|
|
27
|
-
export { FsFormDialogActionsComponent } from './app/components/form-dialog-actions/form-dialog-actions.component';
|
|
28
|
-
export { FsValidators } from './app/validators/validators';
|
|
29
|
-
export { FormDeactivateGuard } from './app/guards/form-deactivate.guard';
|
|
30
|
-
export { SubmitEvent } from './app/interfaces/submit-event';
|
|
31
|
-
export { SubmittedEvent } from './app/interfaces/submitted-event';
|
|
32
|
-
export { ConfirmConfig } from './app/interfaces/confirm-config';
|
|
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 { FsFormDirective } from './app/directives/form/form.directive';
|
|
4
|
+
export { FsControlDirective } from './app/directives/validators/control.directive';
|
|
5
|
+
export { FsFormRequiredDirective } from './app/directives/validators/required.directive';
|
|
6
|
+
export { FsFormMinDirective } from './app/directives/validators/min.directive';
|
|
7
|
+
export { FsFormMaxDirective } from './app/directives/validators/max.directive';
|
|
8
|
+
export { FsFormMinLengthDirective } from './app/directives/validators/minlength.directive';
|
|
9
|
+
export { FsFormMaxLengthDirective } from './app/directives/validators/maxlength.directive';
|
|
10
|
+
export { FsFormEmailDirective } from './app/directives/validators/email.directive';
|
|
11
|
+
export { FsFormEmailsDirective } from './app/directives/validators/emails.directive';
|
|
12
|
+
export { FsFormPhoneDirective } from './app/directives/validators/phone.directive';
|
|
13
|
+
export { FsFormCompareDirective } from './app/directives/validators/compare.directive';
|
|
14
|
+
export { FsFormIntegerDirective } from './app/directives/validators/integer.directive';
|
|
15
|
+
export { FsFormNumericDirective } from './app/directives/validators/numeric.directive';
|
|
16
|
+
export { FsFormPatternDirective } from './app/directives/validators/pattern.directive';
|
|
17
|
+
export { FsFormFunctionDirective } from './app/directives/validators/function.directive';
|
|
18
|
+
export { FsFormDateRangeDirective } from './app/directives/validators/daterange.directive';
|
|
19
|
+
export { FsFormGreaterDirective } from './app/directives/validators/greater.directive';
|
|
20
|
+
export { FsFormLesserDirective } from './app/directives/validators/lesser.directive';
|
|
21
|
+
export { FsFormUrlDirective } from './app/directives/validators/url.directive';
|
|
22
|
+
export { FsFormDialogCloseDirective } from './app/directives/form-dialog-close.directive';
|
|
23
|
+
export { FsButtonDirective } from './app/directives/button.directive';
|
|
24
|
+
export { FsSubmitButtonDirective } from './app/directives/submit-button.directive';
|
|
25
|
+
export { FsFormValidateDirective } from './app/directives/validators/validate.directive';
|
|
26
|
+
export { FsFormNoFsValidatorsDirective } from './app/directives/validators/no-fs-validators.directive';
|
|
27
|
+
export { FsFormDialogActionsComponent } from './app/components/form-dialog-actions/form-dialog-actions.component';
|
|
28
|
+
export { FsValidators } from './app/validators/validators';
|
|
29
|
+
export { FormDeactivateGuard } from './app/guards/form-deactivate.guard';
|
|
30
|
+
export { SubmitEvent } from './app/interfaces/submit-event';
|
|
31
|
+
export { SubmittedEvent } from './app/interfaces/submitted-event';
|
|
32
|
+
export { ConfirmConfig } from './app/interfaces/confirm-config';
|
|
33
|
+
export { ConfirmResult } from './app/enums/confirm-result';
|
|
34
|
+
export { FormStatus } from './app/enums/form-status';
|