@firestitch/form 13.1.1 → 13.2.0
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/consts/error-messages.const.d.ts +2 -0
- package/app/directives/validators/greater-equal.directive.d.ts +13 -0
- package/app/directives/validators/index.d.ts +2 -0
- package/app/directives/validators/lesser-equal.directive.d.ts +13 -0
- package/app/directives/validators/no-fs-validators.directive.d.ts +1 -1
- package/app/fs-form.module.d.ts +18 -16
- package/app/providers/validate-messages.provider.d.ts +2 -0
- package/esm2020/app/components/form-dialog-actions/form-dialog-actions.component.mjs +3 -3
- package/esm2020/app/consts/error-messages.const.mjs +3 -1
- package/esm2020/app/directives/validators/greater-equal.directive.mjs +40 -0
- package/esm2020/app/directives/validators/index.mjs +3 -1
- package/esm2020/app/directives/validators/lesser-equal.directive.mjs +40 -0
- package/esm2020/app/directives/validators/no-fs-validators.directive.mjs +3 -2
- package/esm2020/app/fs-form.module.mjs +10 -2
- package/esm2020/public_api.mjs +2 -3
- package/fesm2015/firestitch-form.mjs +85 -4
- package/fesm2015/firestitch-form.mjs.map +1 -1
- package/fesm2020/firestitch-form.mjs +85 -4
- package/fesm2020/firestitch-form.mjs.map +1 -1
- package/package.json +1 -1
- package/public_api.d.ts +1 -2
|
@@ -891,6 +891,8 @@ const ERROR_MESSAGES = {
|
|
|
891
891
|
urlProtocol: 'Invalid URL. Proper http protocol is required. eg. https://google.com',
|
|
892
892
|
greater: 'Value must be greater than $(1)',
|
|
893
893
|
lesser: 'Value must be less than $(1)',
|
|
894
|
+
greaterEqual: 'Value must be greater than or equal $(1)',
|
|
895
|
+
lesserEqual: 'Value must be less than or equal $(1)',
|
|
894
896
|
};
|
|
895
897
|
|
|
896
898
|
const VALIDATE_MESSAGES = new InjectionToken('fs.form.validate-messages');
|
|
@@ -2153,10 +2155,10 @@ class FsFormDialogActionsComponent {
|
|
|
2153
2155
|
}
|
|
2154
2156
|
}
|
|
2155
2157
|
FsFormDialogActionsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: FsFormDialogActionsComponent, deps: [{ token: FsFormDirective, optional: true }, { token: i2$1.MatDialogRef, optional: true }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
2156
|
-
FsFormDialogActionsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: FsFormDialogActionsComponent, selector: "fs-form-dialog-actions", inputs: { save: "save", create: "create", close: "close", done: "done", closeData: "closeData", name: "name" }, ngImport: i0, template: "<div class=\"form-buttons\" [ngClass]=\"{ 'save-create': save || create }\">\n <ng-container *ngIf=\"save || create\">\n <button\n mat-button\n type=\"submit\"\n color=\"primary\"\n [name]=\"name\">\n {{create ? 'Create' : 'Save'}}\n </button>\n <button\n mat-button\n type=\"button\"\n class=\"close-button\"\n [disabled]=\"close && !dirty && !create\"\n [mat-dialog-close]=\"null\">\n Cancel\n </button>\n </ng-container>\n\n <ng-container *ngIf=\"done\">\n <button\n mat-button\n type=\"button\"\n color=\"primary\"\n [mat-dialog-close]=\"null\">\n Done\n </button>\n </ng-container>\n\n <ng-container *ngIf=\"save || create\">\n <ng-template [ngTemplateOutlet]=\"content\"></ng-template>\n </ng-container>\n\n <ng-container *ngIf=\"close\">\n <button\n mat-button\n type=\"button\"\n class=\"close-button\"\n fsFormDialogClose\n [closeData]=\"closeData\"\n [color]=\"dirty ? 'basic' : 'primary'\">\n Close\n </button>\n </ng-container>\n\n <ng-container *ngIf=\"!(save || create)\">\n <ng-template [ngTemplateOutlet]=\"content\"></ng-template>\n </ng-container>\n</div>\n\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n", styles: [":host{width:100%}.form-buttons.save-create .close-button:not(.cancel-button){float:right}\n"], components: [{ type: i1$2.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }], directives: [{ type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: FsButtonDirective, selector: "[mat-raised-button],[mat-button],[mat-flat-button],[mat-stroked-button]", inputs: ["name", "dirtySubmit", "form"] }, { type: i2$1.MatDialogClose, selector: "[mat-dialog-close], [matDialogClose]", inputs: ["aria-label", "type", "mat-dialog-close", "matDialogClose"], exportAs: ["matDialogClose"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: FsFormDialogCloseDirective, selector: "[fsFormDialogClose],[fs-form-dialog-close]", inputs: ["closeData"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2158
|
+
FsFormDialogActionsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: FsFormDialogActionsComponent, selector: "fs-form-dialog-actions", inputs: { save: "save", create: "create", close: "close", done: "done", closeData: "closeData", name: "name" }, ngImport: i0, template: "<div class=\"form-buttons\" [ngClass]=\"{ 'save-create': save || create }\">\n <ng-container *ngIf=\"save || create\">\n <button\n mat-button\n type=\"submit\"\n color=\"primary\"\n [name]=\"name\">\n {{create ? 'Create' : 'Save'}}\n </button>\n <button\n mat-button\n type=\"button\"\n class=\"close-button cancel-button\"\n [disabled]=\"close && !dirty && !create\"\n [mat-dialog-close]=\"null\">\n Cancel\n </button>\n </ng-container>\n\n <ng-container *ngIf=\"done\">\n <button\n mat-button\n type=\"button\"\n color=\"primary\"\n [mat-dialog-close]=\"null\">\n Done\n </button>\n </ng-container>\n\n <ng-container *ngIf=\"save || create\">\n <ng-template [ngTemplateOutlet]=\"content\"></ng-template>\n </ng-container>\n\n <ng-container *ngIf=\"close\">\n <button\n mat-button\n type=\"button\"\n class=\"close-button\"\n fsFormDialogClose\n [closeData]=\"closeData\"\n [color]=\"dirty ? 'basic' : 'primary'\">\n Close\n </button>\n </ng-container>\n\n <ng-container *ngIf=\"!(save || create)\">\n <ng-template [ngTemplateOutlet]=\"content\"></ng-template>\n </ng-container>\n</div>\n\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n", styles: [":host{width:100%}.form-buttons.save-create .close-button:not(.cancel-button){float:right}\n"], components: [{ type: i1$2.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }], directives: [{ type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: FsButtonDirective, selector: "[mat-raised-button],[mat-button],[mat-flat-button],[mat-stroked-button]", inputs: ["name", "dirtySubmit", "form"] }, { type: i2$1.MatDialogClose, selector: "[mat-dialog-close], [matDialogClose]", inputs: ["aria-label", "type", "mat-dialog-close", "matDialogClose"], exportAs: ["matDialogClose"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: FsFormDialogCloseDirective, selector: "[fsFormDialogClose],[fs-form-dialog-close]", inputs: ["closeData"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2157
2159
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: FsFormDialogActionsComponent, decorators: [{
|
|
2158
2160
|
type: Component,
|
|
2159
|
-
args: [{ selector: 'fs-form-dialog-actions', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"form-buttons\" [ngClass]=\"{ 'save-create': save || create }\">\n <ng-container *ngIf=\"save || create\">\n <button\n mat-button\n type=\"submit\"\n color=\"primary\"\n [name]=\"name\">\n {{create ? 'Create' : 'Save'}}\n </button>\n <button\n mat-button\n type=\"button\"\n class=\"close-button\"\n [disabled]=\"close && !dirty && !create\"\n [mat-dialog-close]=\"null\">\n Cancel\n </button>\n </ng-container>\n\n <ng-container *ngIf=\"done\">\n <button\n mat-button\n type=\"button\"\n color=\"primary\"\n [mat-dialog-close]=\"null\">\n Done\n </button>\n </ng-container>\n\n <ng-container *ngIf=\"save || create\">\n <ng-template [ngTemplateOutlet]=\"content\"></ng-template>\n </ng-container>\n\n <ng-container *ngIf=\"close\">\n <button\n mat-button\n type=\"button\"\n class=\"close-button\"\n fsFormDialogClose\n [closeData]=\"closeData\"\n [color]=\"dirty ? 'basic' : 'primary'\">\n Close\n </button>\n </ng-container>\n\n <ng-container *ngIf=\"!(save || create)\">\n <ng-template [ngTemplateOutlet]=\"content\"></ng-template>\n </ng-container>\n</div>\n\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n", styles: [":host{width:100%}.form-buttons.save-create .close-button:not(.cancel-button){float:right}\n"] }]
|
|
2161
|
+
args: [{ selector: 'fs-form-dialog-actions', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"form-buttons\" [ngClass]=\"{ 'save-create': save || create }\">\n <ng-container *ngIf=\"save || create\">\n <button\n mat-button\n type=\"submit\"\n color=\"primary\"\n [name]=\"name\">\n {{create ? 'Create' : 'Save'}}\n </button>\n <button\n mat-button\n type=\"button\"\n class=\"close-button cancel-button\"\n [disabled]=\"close && !dirty && !create\"\n [mat-dialog-close]=\"null\">\n Cancel\n </button>\n </ng-container>\n\n <ng-container *ngIf=\"done\">\n <button\n mat-button\n type=\"button\"\n color=\"primary\"\n [mat-dialog-close]=\"null\">\n Done\n </button>\n </ng-container>\n\n <ng-container *ngIf=\"save || create\">\n <ng-template [ngTemplateOutlet]=\"content\"></ng-template>\n </ng-container>\n\n <ng-container *ngIf=\"close\">\n <button\n mat-button\n type=\"button\"\n class=\"close-button\"\n fsFormDialogClose\n [closeData]=\"closeData\"\n [color]=\"dirty ? 'basic' : 'primary'\">\n Close\n </button>\n </ng-container>\n\n <ng-container *ngIf=\"!(save || create)\">\n <ng-template [ngTemplateOutlet]=\"content\"></ng-template>\n </ng-container>\n</div>\n\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n", styles: [":host{width:100%}.form-buttons.save-create .close-button:not(.cancel-button){float:right}\n"] }]
|
|
2160
2162
|
}], ctorParameters: function () {
|
|
2161
2163
|
return [{ type: FsFormDirective, decorators: [{
|
|
2162
2164
|
type: Optional
|
|
@@ -2193,7 +2195,7 @@ class FsFormNoFsValidatorsDirective extends FsControlDirective {
|
|
|
2193
2195
|
}
|
|
2194
2196
|
}
|
|
2195
2197
|
FsFormNoFsValidatorsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: FsFormNoFsValidatorsDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
2196
|
-
FsFormNoFsValidatorsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: FsFormNoFsValidatorsDirective, selector: "[ngModel]:not([required]):not([fsFormRequired]):not([fsFormCompare]):not([fsFormDateRange]):not([fsFormEmail]):not([fsFormEmails]):not([fsFormFunction]):not([fsFormGreater]):not([fsFormInteger]):not([fsFormLesser]):not([fsFormMax]):not([fsFormMaxLength]):not([fsFormMin]):not([fsFormMinLength]):not([fsFormNumeric]):not([fsFormPattern]):not([fsFormPhone]):not([fsFormUrl]):not([validate])", providers: [
|
|
2198
|
+
FsFormNoFsValidatorsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: FsFormNoFsValidatorsDirective, selector: "[ngModel]:not([required]):not([fsFormRequired]):not([fsFormCompare]):not([fsFormDateRange]):not([fsFormEmail]):not([fsFormEmails]):not([fsFormFunction]):not([fsFormGreater]):not([fsFormGreaterEqual]):not([fsFormInteger]):not([fsFormLesser]):not([fsFormMax]):not([fsFormMaxLength]):not([fsFormMin]):not([fsFormMinLength]):not([fsFormNumeric]):not([fsFormPattern]):not([fsFormPhone]):not([fsFormUrl]):not([validate])", providers: [
|
|
2197
2199
|
VALIDATE_MESSAGE_PROVIDER
|
|
2198
2200
|
], usesInheritance: true, usesOnChanges: true, ngImport: i0 });
|
|
2199
2201
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: FsFormNoFsValidatorsDirective, decorators: [{
|
|
@@ -2208,6 +2210,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
2208
2210
|
':not([fsFormEmails])' +
|
|
2209
2211
|
':not([fsFormFunction])' +
|
|
2210
2212
|
':not([fsFormGreater])' +
|
|
2213
|
+
':not([fsFormGreaterEqual])' +
|
|
2211
2214
|
':not([fsFormInteger])' +
|
|
2212
2215
|
':not([fsFormLesser])' +
|
|
2213
2216
|
':not([fsFormMax])' +
|
|
@@ -2225,6 +2228,76 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
2225
2228
|
}]
|
|
2226
2229
|
}] });
|
|
2227
2230
|
|
|
2231
|
+
class FsFormGreaterEqualDirective extends FsControlDirective {
|
|
2232
|
+
set validationMessage(value) {
|
|
2233
|
+
this._validateMessages.greater = value;
|
|
2234
|
+
}
|
|
2235
|
+
ngOnChanges() {
|
|
2236
|
+
this._control.updateValueAndValidity();
|
|
2237
|
+
}
|
|
2238
|
+
validate(control) {
|
|
2239
|
+
const greater = parseFloat(this.fsFormGreaterEqual);
|
|
2240
|
+
const value = parseFloat(this._control.value);
|
|
2241
|
+
if (!isNaN(greater) && !isNaN(value) && value < greater) {
|
|
2242
|
+
return { greaterEqual: { greater, actual: value } };
|
|
2243
|
+
}
|
|
2244
|
+
return FsValidators.numeric(this._control);
|
|
2245
|
+
}
|
|
2246
|
+
}
|
|
2247
|
+
FsFormGreaterEqualDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: FsFormGreaterEqualDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
2248
|
+
FsFormGreaterEqualDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: FsFormGreaterEqualDirective, selector: "[fsFormGreaterEqual]", inputs: { fsFormGreaterEqual: "fsFormGreaterEqual", validationMessage: ["fsFormGreaterEqualMessage", "validationMessage"] }, providers: [
|
|
2249
|
+
VALIDATE_MESSAGE_PROVIDER
|
|
2250
|
+
], usesInheritance: true, usesOnChanges: true, ngImport: i0 });
|
|
2251
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: FsFormGreaterEqualDirective, decorators: [{
|
|
2252
|
+
type: Directive,
|
|
2253
|
+
args: [{
|
|
2254
|
+
selector: '[fsFormGreaterEqual]',
|
|
2255
|
+
providers: [
|
|
2256
|
+
VALIDATE_MESSAGE_PROVIDER
|
|
2257
|
+
],
|
|
2258
|
+
}]
|
|
2259
|
+
}], propDecorators: { fsFormGreaterEqual: [{
|
|
2260
|
+
type: Input
|
|
2261
|
+
}], validationMessage: [{
|
|
2262
|
+
type: Input,
|
|
2263
|
+
args: ['fsFormGreaterEqualMessage']
|
|
2264
|
+
}] } });
|
|
2265
|
+
|
|
2266
|
+
class FsFormLesserEqualDirective extends FsControlDirective {
|
|
2267
|
+
set validationMessage(value) {
|
|
2268
|
+
this._validateMessages.lesser = value;
|
|
2269
|
+
}
|
|
2270
|
+
ngOnChanges() {
|
|
2271
|
+
this._control.updateValueAndValidity();
|
|
2272
|
+
}
|
|
2273
|
+
validate(control) {
|
|
2274
|
+
const lesser = parseFloat(this.fsFormLesserEqual);
|
|
2275
|
+
const value = parseFloat(this._control.value);
|
|
2276
|
+
if (!isNaN(lesser) && !isNaN(value) && value > lesser) {
|
|
2277
|
+
return { lesserEqual: { lesser, actual: value } };
|
|
2278
|
+
}
|
|
2279
|
+
return FsValidators.numeric(this._control);
|
|
2280
|
+
}
|
|
2281
|
+
}
|
|
2282
|
+
FsFormLesserEqualDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: FsFormLesserEqualDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
2283
|
+
FsFormLesserEqualDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: FsFormLesserEqualDirective, selector: "[fsFormLesserEqual]", inputs: { fsFormLesserEqual: "fsFormLesserEqual", validationMessage: ["fsFormLesserEqualMessage", "validationMessage"] }, providers: [
|
|
2284
|
+
VALIDATE_MESSAGE_PROVIDER
|
|
2285
|
+
], usesInheritance: true, usesOnChanges: true, ngImport: i0 });
|
|
2286
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: FsFormLesserEqualDirective, decorators: [{
|
|
2287
|
+
type: Directive,
|
|
2288
|
+
args: [{
|
|
2289
|
+
selector: '[fsFormLesserEqual]',
|
|
2290
|
+
providers: [
|
|
2291
|
+
VALIDATE_MESSAGE_PROVIDER
|
|
2292
|
+
],
|
|
2293
|
+
}]
|
|
2294
|
+
}], propDecorators: { fsFormLesserEqual: [{
|
|
2295
|
+
type: Input
|
|
2296
|
+
}], validationMessage: [{
|
|
2297
|
+
type: Input,
|
|
2298
|
+
args: ['fsFormLesserEqualMessage']
|
|
2299
|
+
}] } });
|
|
2300
|
+
|
|
2228
2301
|
class FsFormTemplateDirective {
|
|
2229
2302
|
constructor() { }
|
|
2230
2303
|
ngAfterContentInit() {
|
|
@@ -2338,7 +2411,9 @@ FsFormModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "
|
|
|
2338
2411
|
FsFormFunctionDirective,
|
|
2339
2412
|
FsFormDateRangeDirective,
|
|
2340
2413
|
FsFormGreaterDirective,
|
|
2414
|
+
FsFormGreaterEqualDirective,
|
|
2341
2415
|
FsFormLesserDirective,
|
|
2416
|
+
FsFormLesserEqualDirective,
|
|
2342
2417
|
FsFormUrlDirective,
|
|
2343
2418
|
FsFormDialogCloseDirective,
|
|
2344
2419
|
FsFormValidateDirective,
|
|
@@ -2368,7 +2443,9 @@ FsFormModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "
|
|
|
2368
2443
|
FsFormFunctionDirective,
|
|
2369
2444
|
FsFormDateRangeDirective,
|
|
2370
2445
|
FsFormGreaterDirective,
|
|
2446
|
+
FsFormGreaterEqualDirective,
|
|
2371
2447
|
FsFormLesserDirective,
|
|
2448
|
+
FsFormLesserEqualDirective,
|
|
2372
2449
|
FsFormUrlDirective,
|
|
2373
2450
|
FsFormDialogCloseDirective,
|
|
2374
2451
|
FsFormValidateDirective,
|
|
@@ -2417,7 +2494,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
2417
2494
|
FsFormFunctionDirective,
|
|
2418
2495
|
FsFormDateRangeDirective,
|
|
2419
2496
|
FsFormGreaterDirective,
|
|
2497
|
+
FsFormGreaterEqualDirective,
|
|
2420
2498
|
FsFormLesserDirective,
|
|
2499
|
+
FsFormLesserEqualDirective,
|
|
2421
2500
|
FsFormUrlDirective,
|
|
2422
2501
|
FsFormDialogCloseDirective,
|
|
2423
2502
|
FsFormValidateDirective,
|
|
@@ -2447,7 +2526,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
2447
2526
|
FsFormFunctionDirective,
|
|
2448
2527
|
FsFormDateRangeDirective,
|
|
2449
2528
|
FsFormGreaterDirective,
|
|
2529
|
+
FsFormGreaterEqualDirective,
|
|
2450
2530
|
FsFormLesserDirective,
|
|
2531
|
+
FsFormLesserEqualDirective,
|
|
2451
2532
|
FsFormUrlDirective,
|
|
2452
2533
|
FsFormDialogCloseDirective,
|
|
2453
2534
|
FsFormValidateDirective,
|
|
@@ -2474,5 +2555,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
|
|
|
2474
2555
|
* Generated bundle index. Do not edit.
|
|
2475
2556
|
*/
|
|
2476
2557
|
|
|
2477
|
-
export { ConfirmResult, FormDeactivateGuard, FormStatus, FsButtonDirective, FsControlDirective, FsForm, FsFormCompareDirective, FsFormDateRangeDirective, FsFormDialogActionsComponent, FsFormDialogCloseDirective, FsFormDirective, FsFormEmailDirective, FsFormEmailsDirective, FsFormFunctionDirective, FsFormGreaterDirective, FsFormIntegerDirective, FsFormLesserDirective, FsFormMaxDirective, FsFormMaxLengthDirective, FsFormMinDirective, FsFormMinLengthDirective, FsFormModule, FsFormNoFsValidatorsDirective, FsFormNumericDirective, FsFormPatternDirective, FsFormPhoneDirective, FsFormRequiredDirective, FsFormTemplateComponent, FsFormTemplateDirective, FsFormTemplateOutletComponent, FsFormUrlDirective, FsFormValidateDirective, FsSubmitButtonDirective, FsValidators };
|
|
2558
|
+
export { ConfirmResult, FormDeactivateGuard, FormStatus, FsButtonDirective, FsControlDirective, FsForm, FsFormCompareDirective, FsFormDateRangeDirective, FsFormDialogActionsComponent, FsFormDialogCloseDirective, FsFormDirective, FsFormEmailDirective, FsFormEmailsDirective, FsFormFunctionDirective, FsFormGreaterDirective, FsFormGreaterEqualDirective, FsFormIntegerDirective, FsFormLesserDirective, FsFormLesserEqualDirective, FsFormMaxDirective, FsFormMaxLengthDirective, FsFormMinDirective, FsFormMinLengthDirective, FsFormModule, FsFormNoFsValidatorsDirective, FsFormNumericDirective, FsFormPatternDirective, FsFormPhoneDirective, FsFormRequiredDirective, FsFormTemplateComponent, FsFormTemplateDirective, FsFormTemplateOutletComponent, FsFormUrlDirective, FsFormValidateDirective, FsSubmitButtonDirective, FsValidators };
|
|
2478
2559
|
//# sourceMappingURL=firestitch-form.mjs.map
|