@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.
- package/app/components/form-dialog-actions/form-dialog-actions.component.d.ts +18 -18
- package/app/consts/error-messages.const.d.ts +19 -19
- package/app/directives/form/form.directive.d.ts +102 -102
- package/app/directives/form-dialog-close.directive.d.ts +9 -9
- package/app/directives/submit-button.directive.d.ts +28 -28
- package/app/directives/validators/compare.directive.d.ts +12 -12
- package/app/directives/validators/control.directive.d.ts +45 -45
- package/app/directives/validators/daterange.directive.d.ts +10 -10
- package/app/directives/validators/email.directive.d.ts +10 -10
- package/app/directives/validators/emails.directive.d.ts +10 -10
- package/app/directives/validators/function.directive.d.ts +11 -11
- package/app/directives/validators/greater.directive.d.ts +10 -10
- package/app/directives/validators/integer.directive.d.ts +10 -10
- package/app/directives/validators/lesser.directive.d.ts +10 -10
- package/app/directives/validators/max.directive.d.ts +10 -10
- package/app/directives/validators/maxlength.directive.d.ts +10 -10
- package/app/directives/validators/min.directive.d.ts +10 -10
- package/app/directives/validators/minlength.directive.d.ts +10 -10
- package/app/directives/validators/numeric.directive.d.ts +10 -10
- package/app/directives/validators/pattern.directive.d.ts +10 -10
- package/app/directives/validators/phone.directive.d.ts +10 -10
- package/app/directives/validators/required.directive.d.ts +13 -13
- package/app/directives/validators/url.directive.d.ts +11 -11
- package/app/directives/validators/validate.directive.d.ts +11 -11
- package/app/enums/confirm-result.d.ts +7 -7
- package/app/enums/form-status.d.ts +9 -9
- package/app/fs-form.module.d.ts +4 -4
- package/app/guards/form-deactivate.guard.d.ts +9 -9
- package/app/helpers/confirm-result-continue.d.ts +1 -1
- package/app/helpers/confirm-unsaved.d.ts +5 -5
- 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/form-deactivate.d.ts +4 -4
- package/app/interfaces/index.d.ts +4 -4
- package/app/interfaces/submit-event.d.ts +5 -5
- package/app/interfaces/submitted-event.d.ts +6 -6
- 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 +7 -7
- package/app/validators/validators.d.ts +12 -12
- package/bundles/firestitch-form.umd.js +2300 -2303
- package/bundles/firestitch-form.umd.js.map +1 -1
- package/bundles/firestitch-form.umd.min.js +1 -1
- package/bundles/firestitch-form.umd.min.js.map +1 -1
- package/esm2015/app/components/form-dialog-actions/form-dialog-actions.component.js +92 -92
- package/esm2015/app/consts/error-messages.const.js +19 -19
- package/esm2015/app/directives/form/form.directive.js +665 -668
- package/esm2015/app/directives/form-dialog-close.directive.js +32 -32
- package/esm2015/app/directives/submit-button.directive.js +137 -137
- package/esm2015/app/directives/validators/compare.directive.js +48 -48
- package/esm2015/app/directives/validators/control.directive.js +272 -272
- 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 +30 -30
- 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/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 +72 -72
- package/esm2015/app/directives/validators/url.directive.js +48 -48
- package/esm2015/app/directives/validators/validate.directive.js +30 -30
- package/esm2015/app/enums/confirm-result.js +8 -8
- package/esm2015/app/enums/form-status.js +10 -10
- package/esm2015/app/fs-form.module.js +105 -105
- package/esm2015/app/guards/form-deactivate.guard.js +43 -43
- package/esm2015/app/helpers/confirm-result-continue.js +4 -4
- package/esm2015/app/helpers/confirm-unsaved.js +69 -69
- 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/providers/validate-messages.provider.js +10 -10
- package/esm2015/app/services/fsform.service.js +25 -25
- package/esm2015/app/validators/validators.js +96 -96
- package/esm2015/firestitch-form.js +26 -26
- package/esm2015/public_api.js +13 -13
- package/esm5/app/components/form-dialog-actions/form-dialog-actions.component.js +95 -95
- package/esm5/app/consts/error-messages.const.js +19 -19
- package/esm5/app/directives/form/form.directive.js +706 -709
- package/esm5/app/directives/form-dialog-close.directive.js +33 -33
- package/esm5/app/directives/submit-button.directive.js +143 -143
- package/esm5/app/directives/validators/compare.directive.js +59 -59
- package/esm5/app/directives/validators/control.directive.js +278 -278
- package/esm5/app/directives/validators/daterange.directive.js +49 -49
- package/esm5/app/directives/validators/email.directive.js +49 -49
- package/esm5/app/directives/validators/emails.directive.js +49 -49
- package/esm5/app/directives/validators/function.directive.js +35 -35
- package/esm5/app/directives/validators/greater.directive.js +48 -48
- package/esm5/app/directives/validators/integer.directive.js +49 -49
- package/esm5/app/directives/validators/lesser.directive.js +48 -48
- package/esm5/app/directives/validators/max.directive.js +44 -44
- package/esm5/app/directives/validators/maxlength.directive.js +43 -43
- package/esm5/app/directives/validators/min.directive.js +44 -44
- package/esm5/app/directives/validators/minlength.directive.js +43 -43
- package/esm5/app/directives/validators/numeric.directive.js +49 -49
- package/esm5/app/directives/validators/pattern.directive.js +43 -43
- package/esm5/app/directives/validators/phone.directive.js +49 -49
- package/esm5/app/directives/validators/required.directive.js +87 -87
- package/esm5/app/directives/validators/url.directive.js +55 -55
- package/esm5/app/directives/validators/validate.directive.js +35 -35
- package/esm5/app/enums/confirm-result.js +8 -8
- package/esm5/app/enums/form-status.js +10 -10
- package/esm5/app/fs-form.module.js +109 -109
- package/esm5/app/guards/form-deactivate.guard.js +44 -44
- package/esm5/app/helpers/confirm-result-continue.js +4 -4
- package/esm5/app/helpers/confirm-unsaved.js +69 -69
- package/esm5/app/helpers/get-form-errors.js +27 -27
- package/esm5/app/helpers/index.js +2 -2
- package/esm5/app/helpers/is-enabled.js +3 -3
- package/esm5/app/providers/validate-messages.provider.js +11 -11
- package/esm5/app/services/fsform.service.js +26 -26
- package/esm5/app/validators/validators.js +101 -101
- package/esm5/firestitch-form.js +26 -26
- package/esm5/public_api.js +13 -13
- package/fesm2015/firestitch-form.js +2074 -2077
- package/fesm2015/firestitch-form.js.map +1 -1
- package/fesm5/firestitch-form.js +2303 -2306
- package/fesm5/firestitch-form.js.map +1 -1
- package/firestitch-form.d.ts +26 -26
- package/package.json +1 -1
- package/public_api.d.ts +12 -12
package/firestitch-form.d.ts
CHANGED
|
@@ -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
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';
|