@firestitch/form 18.0.23 → 18.0.24

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 (70) hide show
  1. package/app/components/confirm-unsaved/confirm-unsaved.component.d.ts +0 -2
  2. package/app/components/form-dialog-actions/form-dialog-actions.component.d.ts +3 -5
  3. package/app/directives/button.directive.d.ts +1 -1
  4. package/app/directives/form/form.directive.d.ts +3 -10
  5. package/app/directives/form-dialog-close.directive.d.ts +2 -5
  6. package/app/directives/form-group/form-group.directive.d.ts +1 -1
  7. package/app/directives/form-template-outlet.directive.d.ts +1 -1
  8. package/app/directives/form-template.directive.d.ts +1 -1
  9. package/app/directives/submit-button.directive.d.ts +1 -1
  10. package/app/directives/validators/compare.directive.d.ts +1 -1
  11. package/app/directives/validators/control.directive.d.ts +11 -11
  12. package/app/directives/validators/daterange.directive.d.ts +1 -1
  13. package/app/directives/validators/email.directive.d.ts +1 -1
  14. package/app/directives/validators/emails.directive.d.ts +1 -1
  15. package/app/directives/validators/function.directive.d.ts +1 -1
  16. package/app/directives/validators/greater-equal.directive.d.ts +1 -1
  17. package/app/directives/validators/greater.directive.d.ts +1 -1
  18. package/app/directives/validators/integer.directive.d.ts +1 -1
  19. package/app/directives/validators/lesser-equal.directive.d.ts +1 -1
  20. package/app/directives/validators/lesser.directive.d.ts +1 -1
  21. package/app/directives/validators/max.directive.d.ts +1 -1
  22. package/app/directives/validators/maxlength.directive.d.ts +1 -1
  23. package/app/directives/validators/min.directive.d.ts +1 -1
  24. package/app/directives/validators/minlength.directive.d.ts +1 -1
  25. package/app/directives/validators/no-fs-validators.directive.d.ts +1 -1
  26. package/app/directives/validators/numeric.directive.d.ts +1 -1
  27. package/app/directives/validators/pattern.directive.d.ts +1 -1
  28. package/app/directives/validators/phone.directive.d.ts +1 -1
  29. package/app/directives/validators/required.directive.d.ts +1 -1
  30. package/app/directives/validators/url.directive.d.ts +1 -1
  31. package/app/directives/validators/validate.directive.d.ts +1 -1
  32. package/app/fs-form.module.d.ts +36 -36
  33. package/app/guards/form-deactivate.guard.d.ts +0 -3
  34. package/esm2022/app/components/confirm-unsaved/confirm-unsaved.component.mjs +6 -13
  35. package/esm2022/app/components/form-dialog-actions/form-dialog-actions.component.mjs +20 -20
  36. package/esm2022/app/directives/button.directive.mjs +3 -2
  37. package/esm2022/app/directives/form/form.directive.mjs +14 -46
  38. package/esm2022/app/directives/form-dialog-close.directive.mjs +8 -17
  39. package/esm2022/app/directives/form-group/form-group.directive.mjs +3 -2
  40. package/esm2022/app/directives/form-template-outlet.directive.mjs +3 -2
  41. package/esm2022/app/directives/form-template.directive.mjs +3 -2
  42. package/esm2022/app/directives/submit-button.directive.mjs +3 -2
  43. package/esm2022/app/directives/validators/compare.directive.mjs +3 -2
  44. package/esm2022/app/directives/validators/control.directive.mjs +41 -46
  45. package/esm2022/app/directives/validators/daterange.directive.mjs +3 -2
  46. package/esm2022/app/directives/validators/email.directive.mjs +3 -2
  47. package/esm2022/app/directives/validators/emails.directive.mjs +3 -2
  48. package/esm2022/app/directives/validators/function.directive.mjs +3 -2
  49. package/esm2022/app/directives/validators/greater-equal.directive.mjs +3 -2
  50. package/esm2022/app/directives/validators/greater.directive.mjs +3 -2
  51. package/esm2022/app/directives/validators/integer.directive.mjs +3 -2
  52. package/esm2022/app/directives/validators/lesser-equal.directive.mjs +3 -2
  53. package/esm2022/app/directives/validators/lesser.directive.mjs +3 -2
  54. package/esm2022/app/directives/validators/max.directive.mjs +3 -2
  55. package/esm2022/app/directives/validators/maxlength.directive.mjs +3 -2
  56. package/esm2022/app/directives/validators/min.directive.mjs +3 -2
  57. package/esm2022/app/directives/validators/minlength.directive.mjs +3 -2
  58. package/esm2022/app/directives/validators/no-fs-validators.directive.mjs +3 -2
  59. package/esm2022/app/directives/validators/numeric.directive.mjs +3 -2
  60. package/esm2022/app/directives/validators/pattern.directive.mjs +3 -2
  61. package/esm2022/app/directives/validators/phone.directive.mjs +3 -2
  62. package/esm2022/app/directives/validators/required.directive.mjs +3 -2
  63. package/esm2022/app/directives/validators/url.directive.mjs +3 -2
  64. package/esm2022/app/directives/validators/validate.directive.mjs +3 -2
  65. package/esm2022/app/fs-form.module.mjs +11 -11
  66. package/esm2022/app/guards/form-deactivate.guard.mjs +6 -12
  67. package/fesm2022/firestitch-form.mjs +180 -204
  68. package/fesm2022/firestitch-form.mjs.map +1 -1
  69. package/package.json +1 -1
  70. package/styles.scss +8 -4
@@ -1,5 +1,4 @@
1
1
  import { OnDestroy, OnInit } from '@angular/core';
2
- import { MatDialogRef } from '@angular/material/dialog';
3
2
  import * as i0 from "@angular/core";
4
3
  export declare class ConfirmUnsavedComponent implements OnInit, OnDestroy {
5
4
  private _data;
@@ -10,7 +9,6 @@ export declare class ConfirmUnsavedComponent implements OnInit, OnDestroy {
10
9
  message: any;
11
10
  title: any;
12
11
  private _destroy$;
13
- constructor(_data: any, _dialogRef: MatDialogRef<ConfirmUnsavedComponent>);
14
12
  ngOnInit(): void;
15
13
  save(): void;
16
14
  discard(): void;
@@ -1,5 +1,4 @@
1
- import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
2
- import { FsFormDirective } from '../../directives/form/form.directive';
1
+ import { OnDestroy, OnInit } from '@angular/core';
3
2
  import * as i0 from "@angular/core";
4
3
  export declare class FsFormDialogActionsComponent implements OnInit, OnDestroy {
5
4
  private _form;
@@ -12,9 +11,8 @@ export declare class FsFormDialogActionsComponent implements OnInit, OnDestroy {
12
11
  name: string;
13
12
  dirty: boolean;
14
13
  private _destroy$;
15
- constructor(_form: FsFormDirective, _cdRef: ChangeDetectorRef);
16
14
  ngOnInit(): void;
17
15
  ngOnDestroy(): void;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<FsFormDialogActionsComponent, [{ optional: true; }, null]>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<FsFormDialogActionsComponent, "fs-form-dialog-actions", never, { "save": { "alias": "save"; "required": false; }; "create": { "alias": "create"; "required": false; }; "close": { "alias": "close"; "required": false; }; "done": { "alias": "done"; "required": false; }; "closeData": { "alias": "closeData"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, {}, never, ["*"], false, never>;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsFormDialogActionsComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<FsFormDialogActionsComponent, "fs-form-dialog-actions", never, { "save": { "alias": "save"; "required": false; }; "create": { "alias": "create"; "required": false; }; "close": { "alias": "close"; "required": false; }; "done": { "alias": "done"; "required": false; }; "closeData": { "alias": "closeData"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, {}, never, ["*"], true, never>;
20
18
  }
@@ -26,5 +26,5 @@ export declare class FsButtonDirective implements OnInit, OnDestroy {
26
26
  private _resetClass;
27
27
  private _getSvg;
28
28
  static ɵfac: i0.ɵɵFactoryDeclaration<FsButtonDirective, never>;
29
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsButtonDirective, "[mat-raised-button],[mat-button],[mat-flat-button],[mat-stroked-button]", never, { "name": { "alias": "name"; "required": false; }; "dirtySubmit": { "alias": "dirtySubmit"; "required": false; }; }, {}, never, never, false, never>;
29
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsButtonDirective, "[mat-raised-button],[mat-button],[mat-flat-button],[mat-stroked-button]", never, { "name": { "alias": "name"; "required": false; }; "dirtySubmit": { "alias": "dirtySubmit"; "required": false; }; }, {}, never, never, true, never>;
30
30
  }
@@ -1,13 +1,7 @@
1
- import { AfterContentInit, ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
1
+ import { AfterContentInit, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
2
2
  import { NgForm } from '@angular/forms';
3
- import { ActivatedRoute } from '@angular/router';
4
- import { MatDialogRef } from '@angular/material/dialog';
5
- import { DrawerRef } from '@firestitch/drawer';
6
- import { FsMessage } from '@firestitch/message';
7
3
  import { Observable } from 'rxjs';
8
- import { FsForm } from '../../services/fsform.service';
9
4
  import { FsFormBaseDirective } from '../form-base';
10
- import { FsFormGroupDirective } from '../form-group';
11
5
  import { ConfirmResult } from './../../enums/confirm-result';
12
6
  import { ConfirmConfig, SubmittedEvent } from './../../interfaces';
13
7
  import { SubmitEvent } from './../../interfaces/submit-event';
@@ -50,7 +44,6 @@ export declare class FsFormDirective extends FsFormBaseDirective implements OnIn
50
44
  private _activatedRouteConfig;
51
45
  private _status$;
52
46
  private _submit$;
53
- constructor(ngForm: NgForm, _form: FsForm, _element: ElementRef, _message: FsMessage, _formGroup: FsFormGroupDirective, _dialogRef: MatDialogRef<any>, _drawerRef: DrawerRef<any>, _route: ActivatedRoute);
54
47
  get submitting(): boolean;
55
48
  get validating(): boolean;
56
49
  get completing(): boolean;
@@ -106,6 +99,6 @@ export declare class FsFormDirective extends FsFormBaseDirective implements OnIn
106
99
  private _handleError;
107
100
  private _registerCanDeactivateGuard;
108
101
  private _cleanupCanDeactivate;
109
- static ɵfac: i0.ɵɵFactoryDeclaration<FsFormDirective, [null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }, null]>;
110
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormDirective, "[fsForm]", ["fsForm"], { "wrapperSelector": { "alias": "wrapperSelector"; "required": false; }; "messageSelector": { "alias": "messageSelector"; "required": false; }; "hintSelector": { "alias": "hintSelector"; "required": false; }; "labelSelector": { "alias": "labelSelector"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "shortcuts": { "alias": "shortcuts"; "required": false; }; "confirm": { "alias": "confirm"; "required": false; }; "confirmDialog": { "alias": "confirmDialog"; "required": false; }; "confirmDrawer": { "alias": "confirmDrawer"; "required": false; }; "confirmBrowser": { "alias": "confirmBrowser"; "required": false; }; "dirtySubmitButton": { "alias": "dirtySubmitButton"; "required": false; }; "submit": { "alias": "submit"; "required": false; }; "successDelay": { "alias": "successDelay"; "required": false; }; "errorDelay": { "alias": "errorDelay"; "required": false; }; "deactivationGuard": { "alias": "deactivationGuard"; "required": false; }; }, { "submitEvent": "fsForm"; "invalid": "invalid"; "valid": "valid"; "submitted": "submitted"; "reseted": "reseted"; "cleared": "cleared"; }, never, never, false, never>;
102
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsFormDirective, never>;
103
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormDirective, "[fsForm]", ["fsForm"], { "wrapperSelector": { "alias": "wrapperSelector"; "required": false; }; "messageSelector": { "alias": "messageSelector"; "required": false; }; "hintSelector": { "alias": "hintSelector"; "required": false; }; "labelSelector": { "alias": "labelSelector"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "shortcuts": { "alias": "shortcuts"; "required": false; }; "confirm": { "alias": "confirm"; "required": false; }; "confirmDialog": { "alias": "confirmDialog"; "required": false; }; "confirmDrawer": { "alias": "confirmDrawer"; "required": false; }; "confirmBrowser": { "alias": "confirmBrowser"; "required": false; }; "dirtySubmitButton": { "alias": "dirtySubmitButton"; "required": false; }; "submit": { "alias": "submit"; "required": false; }; "successDelay": { "alias": "successDelay"; "required": false; }; "errorDelay": { "alias": "errorDelay"; "required": false; }; "deactivationGuard": { "alias": "deactivationGuard"; "required": false; }; }, { "submitEvent": "fsForm"; "invalid": "invalid"; "valid": "valid"; "submitted": "submitted"; "reseted": "reseted"; "cleared": "cleared"; }, never, never, true, never>;
111
104
  }
@@ -1,6 +1,4 @@
1
1
  import { OnDestroy } from '@angular/core';
2
- import { MatDialogRef } from '@angular/material/dialog';
3
- import { FsFormDirective } from './form';
4
2
  import * as i0 from "@angular/core";
5
3
  export declare class FsFormDialogCloseDirective implements OnDestroy {
6
4
  private _form;
@@ -8,9 +6,8 @@ export declare class FsFormDialogCloseDirective implements OnDestroy {
8
6
  closeData: any;
9
7
  type: string;
10
8
  private _destroy$;
11
- constructor(_form: FsFormDirective, _dialogRef: MatDialogRef<any>);
12
9
  closeClick(): void;
13
10
  ngOnDestroy(): void;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<FsFormDialogCloseDirective, [{ optional: true; }, { optional: true; }]>;
15
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormDialogCloseDirective, "[fsFormDialogClose],[fs-form-dialog-close]", never, { "closeData": { "alias": "closeData"; "required": false; }; }, {}, never, never, false, never>;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsFormDialogCloseDirective, never>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormDialogCloseDirective, "[fsFormDialogClose],[fs-form-dialog-close]", never, { "closeData": { "alias": "closeData"; "required": false; }; }, {}, never, never, true, never>;
16
13
  }
@@ -11,5 +11,5 @@ export declare class FsFormGroupDirective extends FsFormBaseDirective {
11
11
  registerForm(formDirective: FsFormDirective): void;
12
12
  deregisterForm(): void;
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormGroupDirective, never>;
14
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormGroupDirective, "[fsFormGroup]", ["fsFormGroup"], {}, {}, never, never, false, never>;
14
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormGroupDirective, "[fsFormGroup]", ["fsFormGroup"], {}, {}, never, never, true, never>;
15
15
  }
@@ -7,5 +7,5 @@ export declare class FsFormTemplateOutletDirective implements OnInit {
7
7
  protected _injector: Injector;
8
8
  ngOnInit(): void;
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormTemplateOutletDirective, never>;
10
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormTemplateOutletDirective, "[fsFormTemplateOutlet]", never, { "template": { "alias": "template"; "required": false; }; "context": { "alias": "context"; "required": false; }; }, {}, never, never, false, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormTemplateOutletDirective, "[fsFormTemplateOutlet]", never, { "template": { "alias": "template"; "required": false; }; "context": { "alias": "context"; "required": false; }; }, {}, never, never, true, never>;
11
11
  }
@@ -6,5 +6,5 @@ export declare class FsFormTemplateDirective implements AfterContentInit {
6
6
  protected _ngForm: NgForm;
7
7
  ngAfterContentInit(): void;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormTemplateDirective, never>;
9
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormTemplateDirective, "[fsFormTemplate],fs-form-template", never, {}, {}, ["_projectedControls"], never, false, never>;
9
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormTemplateDirective, "[fsFormTemplate],fs-form-template", never, {}, {}, ["_projectedControls"], never, true, never>;
10
10
  }
@@ -2,5 +2,5 @@ import { FsButtonDirective } from './button.directive';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class FsSubmitButtonDirective extends FsButtonDirective {
4
4
  static ɵfac: i0.ɵɵFactoryDeclaration<FsSubmitButtonDirective, never>;
5
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsSubmitButtonDirective, "dummy-selector", never, {}, {}, never, never, false, never>;
5
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsSubmitButtonDirective, "dummy-selector", never, {}, {}, never, never, true, never>;
6
6
  }
@@ -11,5 +11,5 @@ export declare class FsFormCompareDirective extends FsControlDirective implement
11
11
  ngAfterViewInit(): void;
12
12
  ngOnDestroy(): void;
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormCompareDirective, never>;
14
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormCompareDirective, "[fsFormCompare]", never, { "fsFormCompare": { "alias": "fsFormCompare"; "required": false; }; "validationMessage": { "alias": "fsFormCompareMessage"; "required": false; }; }, {}, never, never, false, never>;
14
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormCompareDirective, "[fsFormCompare]", never, { "fsFormCompare": { "alias": "fsFormCompare"; "required": false; }; "validationMessage": { "alias": "fsFormCompareMessage"; "required": false; }; }, {}, never, never, true, never>;
15
15
  }
@@ -8,30 +8,30 @@ export interface FsControlDirective {
8
8
  validateAsync?(control: AbstractControl): Promise<ValidationErrors | null> | Observable<ValidationErrors | null>;
9
9
  }
10
10
  export declare class FsControlDirective implements OnInit, AfterContentInit, OnDestroy {
11
- protected _elementRef: ElementRef;
12
- protected _renderer2: Renderer2;
13
- protected _injector: Injector;
14
- protected _validateMessages: any;
15
- protected _ngControl: NgControl;
16
- protected _formDirective: FsFormDirective;
17
11
  wrapperSelector: string | false;
18
12
  messageSelector: string | false;
19
13
  hintSelector: string | false;
20
14
  labelSelector: string | false;
21
15
  appendMessageClass: string;
22
- appendLabelClass: string;
23
16
  appendErrorClass: string;
24
17
  appendHintClass: string;
25
18
  set validateMessages(messages: Record<string, string>);
26
19
  errors: any[];
27
20
  protected _control: AbstractControl;
21
+ protected _elementRef: ElementRef<any>;
22
+ protected _renderer2: Renderer2;
23
+ protected _injector: Injector;
24
+ protected _validateMessages: Record<string, string>;
25
+ protected _ngControl: NgControl;
26
+ protected _formDirective: FsFormDirective;
28
27
  private _destroy$;
29
- constructor(_elementRef: ElementRef, _renderer2: Renderer2, _injector: Injector, _validateMessages: any, _ngControl: NgControl, _formDirective: FsFormDirective);
28
+ constructor();
30
29
  ngOnInit(): void;
31
30
  ngOnDestroy(): void;
32
31
  ngAfterContentInit(): void;
33
32
  getMessageSelector(): string;
34
- getHintWrapperSelector(): string;
33
+ getHintWrapper(): HTMLElement | null;
34
+ getHintWrapperSelector(): string | null;
35
35
  getWrapperSelector(): string;
36
36
  getlabelSelector(): string;
37
37
  getWrapperElement(): any;
@@ -47,6 +47,6 @@ export declare class FsControlDirective implements OnInit, AfterContentInit, OnD
47
47
  message: string;
48
48
  };
49
49
  private _setupValidators;
50
- static ɵfac: i0.ɵɵFactoryDeclaration<FsControlDirective, [null, null, null, { self: true; }, { optional: true; }, { optional: true; }]>;
51
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsControlDirective, "[fsFormControl]", never, { "wrapperSelector": { "alias": "wrapperSelector"; "required": false; }; "messageSelector": { "alias": "messageSelector"; "required": false; }; "hintSelector": { "alias": "hintSelector"; "required": false; }; "labelSelector": { "alias": "labelSelector"; "required": false; }; "appendMessageClass": { "alias": "appendMessageClass"; "required": false; }; "appendLabelClass": { "alias": "appendLabelClass"; "required": false; }; "appendErrorClass": { "alias": "appendErrorClass"; "required": false; }; "appendHintClass": { "alias": "appendHintClass"; "required": false; }; "validateMessages": { "alias": "validateMessages"; "required": false; }; }, {}, never, never, false, never>;
50
+ static ɵfac: i0.ɵɵFactoryDeclaration<FsControlDirective, never>;
51
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsControlDirective, "[fsFormControl]", never, { "wrapperSelector": { "alias": "wrapperSelector"; "required": false; }; "messageSelector": { "alias": "messageSelector"; "required": false; }; "hintSelector": { "alias": "hintSelector"; "required": false; }; "labelSelector": { "alias": "labelSelector"; "required": false; }; "appendMessageClass": { "alias": "appendMessageClass"; "required": false; }; "appendErrorClass": { "alias": "appendErrorClass"; "required": false; }; "appendHintClass": { "alias": "appendHintClass"; "required": false; }; "validateMessages": { "alias": "validateMessages"; "required": false; }; }, {}, never, never, true, never>;
52
52
  }
@@ -9,5 +9,5 @@ export declare class FsFormDateRangeDirective extends FsControlDirective impleme
9
9
  ngOnChanges(): void;
10
10
  validate(control: AbstractControl): ValidationErrors | null;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormDateRangeDirective, never>;
12
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormDateRangeDirective, "[fsFormDateRange]", never, { "fsFormDateRange": { "alias": "fsFormDateRange"; "required": false; }; "validationMessage": { "alias": "fsFormDateRangeMessage"; "required": false; }; }, {}, never, never, false, never>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormDateRangeDirective, "[fsFormDateRange]", never, { "fsFormDateRange": { "alias": "fsFormDateRange"; "required": false; }; "validationMessage": { "alias": "fsFormDateRangeMessage"; "required": false; }; }, {}, never, never, true, never>;
13
13
  }
@@ -9,5 +9,5 @@ export declare class FsFormEmailDirective extends FsControlDirective implements
9
9
  ngOnChanges(): void;
10
10
  validate(control: AbstractControl): ValidationErrors | null;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormEmailDirective, never>;
12
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormEmailDirective, "[fsFormEmail]", never, { "fsFormEmail": { "alias": "fsFormEmail"; "required": false; }; "validationMessage": { "alias": "fsFormEmailMessage"; "required": false; }; }, {}, never, never, false, never>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormEmailDirective, "[fsFormEmail]", never, { "fsFormEmail": { "alias": "fsFormEmail"; "required": false; }; "validationMessage": { "alias": "fsFormEmailMessage"; "required": false; }; }, {}, never, never, true, never>;
13
13
  }
@@ -9,5 +9,5 @@ export declare class FsFormEmailsDirective extends FsControlDirective implements
9
9
  ngOnChanges(): void;
10
10
  validate(control: AbstractControl): ValidationErrors | null;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormEmailsDirective, never>;
12
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormEmailsDirective, "[fsFormEmails]", never, { "fsFormEmails": { "alias": "fsFormEmails"; "required": false; }; "validationMessage": { "alias": "fsFormEmailsMessage"; "required": false; }; }, {}, never, never, false, never>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormEmailsDirective, "[fsFormEmails]", never, { "fsFormEmails": { "alias": "fsFormEmails"; "required": false; }; "validationMessage": { "alias": "fsFormEmailsMessage"; "required": false; }; }, {}, never, never, true, never>;
13
13
  }
@@ -11,5 +11,5 @@ export declare class FsFormFunctionDirective extends FsControlDirective implemen
11
11
  ngOnChanges(): void;
12
12
  validateAsync(control: AbstractControl): Promise<ValidationErrors | null> | Observable<ValidationErrors | null>;
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormFunctionDirective, never>;
14
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormFunctionDirective, "[fsFormFunction]", never, { "fsFormFunction": { "alias": "fsFormFunction"; "required": false; }; "fsFormFunctionData": { "alias": "fsFormFunctionData"; "required": false; }; "validateOnSubmit": { "alias": "validateOnSubmit"; "required": false; }; }, {}, never, never, false, never>;
14
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormFunctionDirective, "[fsFormFunction]", never, { "fsFormFunction": { "alias": "fsFormFunction"; "required": false; }; "fsFormFunctionData": { "alias": "fsFormFunctionData"; "required": false; }; "validateOnSubmit": { "alias": "validateOnSubmit"; "required": false; }; }, {}, never, never, true, never>;
15
15
  }
@@ -9,5 +9,5 @@ export declare class FsFormGreaterEqualDirective extends FsControlDirective impl
9
9
  ngOnChanges(): void;
10
10
  validate(control: AbstractControl): ValidationErrors | null;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormGreaterEqualDirective, never>;
12
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormGreaterEqualDirective, "[fsFormGreaterEqual]", never, { "fsFormGreaterEqual": { "alias": "fsFormGreaterEqual"; "required": false; }; "validationMessage": { "alias": "fsFormGreaterEqualMessage"; "required": false; }; }, {}, never, never, false, never>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormGreaterEqualDirective, "[fsFormGreaterEqual]", never, { "fsFormGreaterEqual": { "alias": "fsFormGreaterEqual"; "required": false; }; "validationMessage": { "alias": "fsFormGreaterEqualMessage"; "required": false; }; }, {}, never, never, true, never>;
13
13
  }
@@ -9,5 +9,5 @@ export declare class FsFormGreaterDirective extends FsControlDirective implement
9
9
  ngOnChanges(): void;
10
10
  validate(control: AbstractControl): ValidationErrors | null;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormGreaterDirective, never>;
12
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormGreaterDirective, "[fsFormGreater]", never, { "fsFormGreater": { "alias": "fsFormGreater"; "required": false; }; "validationMessage": { "alias": "fsFormGreaterMessage"; "required": false; }; }, {}, never, never, false, never>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormGreaterDirective, "[fsFormGreater]", never, { "fsFormGreater": { "alias": "fsFormGreater"; "required": false; }; "validationMessage": { "alias": "fsFormGreaterMessage"; "required": false; }; }, {}, never, never, true, never>;
13
13
  }
@@ -9,5 +9,5 @@ export declare class FsFormIntegerDirective extends FsControlDirective implement
9
9
  ngOnChanges(): void;
10
10
  validate(control: AbstractControl): ValidationErrors | null;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormIntegerDirective, never>;
12
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormIntegerDirective, "[fsFormInteger]", never, { "fsFormInteger": { "alias": "fsFormInteger"; "required": false; }; "validationMessage": { "alias": "fsFormIntegerMessage"; "required": false; }; }, {}, never, never, false, never>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormIntegerDirective, "[fsFormInteger]", never, { "fsFormInteger": { "alias": "fsFormInteger"; "required": false; }; "validationMessage": { "alias": "fsFormIntegerMessage"; "required": false; }; }, {}, never, never, true, never>;
13
13
  }
@@ -9,5 +9,5 @@ export declare class FsFormLesserEqualDirective extends FsControlDirective imple
9
9
  ngOnChanges(): void;
10
10
  validate(control: AbstractControl): ValidationErrors | null;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormLesserEqualDirective, never>;
12
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormLesserEqualDirective, "[fsFormLesserEqual]", never, { "fsFormLesserEqual": { "alias": "fsFormLesserEqual"; "required": false; }; "validationMessage": { "alias": "fsFormLesserEqualMessage"; "required": false; }; }, {}, never, never, false, never>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormLesserEqualDirective, "[fsFormLesserEqual]", never, { "fsFormLesserEqual": { "alias": "fsFormLesserEqual"; "required": false; }; "validationMessage": { "alias": "fsFormLesserEqualMessage"; "required": false; }; }, {}, never, never, true, never>;
13
13
  }
@@ -9,5 +9,5 @@ export declare class FsFormLesserDirective extends FsControlDirective implements
9
9
  ngOnChanges(): void;
10
10
  validate(control: AbstractControl): ValidationErrors | null;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormLesserDirective, never>;
12
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormLesserDirective, "[fsFormLesser]", never, { "fsFormLesser": { "alias": "fsFormLesser"; "required": false; }; "validationMessage": { "alias": "fsFormLesserMessage"; "required": false; }; }, {}, never, never, false, never>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormLesserDirective, "[fsFormLesser]", never, { "fsFormLesser": { "alias": "fsFormLesser"; "required": false; }; "validationMessage": { "alias": "fsFormLesserMessage"; "required": false; }; }, {}, never, never, true, never>;
13
13
  }
@@ -9,5 +9,5 @@ export declare class FsFormMaxDirective extends FsControlDirective implements On
9
9
  ngOnChanges(): void;
10
10
  validate(control: AbstractControl): ValidationErrors | null;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormMaxDirective, never>;
12
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormMaxDirective, "[fsFormMax]", never, { "fsFormMax": { "alias": "fsFormMax"; "required": false; }; "validationMessage": { "alias": "fsFormMaxMessage"; "required": false; }; }, {}, never, never, false, never>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormMaxDirective, "[fsFormMax]", never, { "fsFormMax": { "alias": "fsFormMax"; "required": false; }; "validationMessage": { "alias": "fsFormMaxMessage"; "required": false; }; }, {}, never, never, true, never>;
13
13
  }
@@ -9,5 +9,5 @@ export declare class FsFormMaxLengthDirective extends FsControlDirective impleme
9
9
  ngOnChanges(): void;
10
10
  validate(control: AbstractControl): ValidationErrors | null;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormMaxLengthDirective, never>;
12
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormMaxLengthDirective, "[fsFormMaxLength]", never, { "fsFormMaxLength": { "alias": "fsFormMaxLength"; "required": false; }; "validationMessage": { "alias": "fsFormMaxLengthMessage"; "required": false; }; }, {}, never, never, false, never>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormMaxLengthDirective, "[fsFormMaxLength]", never, { "fsFormMaxLength": { "alias": "fsFormMaxLength"; "required": false; }; "validationMessage": { "alias": "fsFormMaxLengthMessage"; "required": false; }; }, {}, never, never, true, never>;
13
13
  }
@@ -9,5 +9,5 @@ export declare class FsFormMinDirective extends FsControlDirective implements On
9
9
  ngOnChanges(): void;
10
10
  validate(control: AbstractControl): ValidationErrors | null;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormMinDirective, never>;
12
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormMinDirective, "[fsFormMin]", never, { "fsFormMin": { "alias": "fsFormMin"; "required": false; }; "validationMessage": { "alias": "fsFormMinMessage"; "required": false; }; }, {}, never, never, false, never>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormMinDirective, "[fsFormMin]", never, { "fsFormMin": { "alias": "fsFormMin"; "required": false; }; "validationMessage": { "alias": "fsFormMinMessage"; "required": false; }; }, {}, never, never, true, never>;
13
13
  }
@@ -9,5 +9,5 @@ export declare class FsFormMinLengthDirective extends FsControlDirective impleme
9
9
  ngOnChanges(): void;
10
10
  validate(control: AbstractControl): ValidationErrors | null;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormMinLengthDirective, never>;
12
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormMinLengthDirective, "[fsFormMinLength]", never, { "fsFormMinLength": { "alias": "fsFormMinLength"; "required": false; }; "validationMessage": { "alias": "fsFormMinLengthMessage"; "required": false; }; }, {}, never, never, false, never>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormMinLengthDirective, "[fsFormMinLength]", never, { "fsFormMinLength": { "alias": "fsFormMinLength"; "required": false; }; "validationMessage": { "alias": "fsFormMinLengthMessage"; "required": false; }; }, {}, never, never, true, never>;
13
13
  }
@@ -10,5 +10,5 @@ export declare class FsFormNoFsValidatorsDirective extends FsControlDirective im
10
10
  ngOnChanges(): void;
11
11
  protected _subscribeToStatusChagnes(): void;
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormNoFsValidatorsDirective, never>;
13
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormNoFsValidatorsDirective, "[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])", never, {}, {}, never, never, false, never>;
13
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormNoFsValidatorsDirective, "[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])", never, {}, {}, never, never, true, never>;
14
14
  }
@@ -9,5 +9,5 @@ export declare class FsFormNumericDirective extends FsControlDirective implement
9
9
  ngOnChanges(): void;
10
10
  validate(control: AbstractControl): ValidationErrors | null;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormNumericDirective, never>;
12
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormNumericDirective, "[fsFormNumeric]", never, { "fsFormNumeric": { "alias": "fsFormNumeric"; "required": false; }; "validationMessage": { "alias": "fsFormNumericMessage"; "required": false; }; }, {}, never, never, false, never>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormNumericDirective, "[fsFormNumeric]", never, { "fsFormNumeric": { "alias": "fsFormNumeric"; "required": false; }; "validationMessage": { "alias": "fsFormNumericMessage"; "required": false; }; }, {}, never, never, true, never>;
13
13
  }
@@ -9,5 +9,5 @@ export declare class FsFormPatternDirective extends FsControlDirective implement
9
9
  ngOnChanges(): void;
10
10
  validate(control: AbstractControl): ValidationErrors | null;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormPatternDirective, never>;
12
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormPatternDirective, "[fsFormPattern]", never, { "fsFormPattern": { "alias": "fsFormPattern"; "required": false; }; "validationMessage": { "alias": "fsFormPatternMessage"; "required": false; }; }, {}, never, never, false, never>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormPatternDirective, "[fsFormPattern]", never, { "fsFormPattern": { "alias": "fsFormPattern"; "required": false; }; "validationMessage": { "alias": "fsFormPatternMessage"; "required": false; }; }, {}, never, never, true, never>;
13
13
  }
@@ -9,5 +9,5 @@ export declare class FsFormPhoneDirective extends FsControlDirective implements
9
9
  ngOnChanges(): void;
10
10
  validate(control: AbstractControl): ValidationErrors | null;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormPhoneDirective, never>;
12
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormPhoneDirective, "[fsFormPhone]", never, { "fsFormPhone": { "alias": "fsFormPhone"; "required": false; }; "validationMessage": { "alias": "fsFormPhoneMessage"; "required": false; }; }, {}, never, never, false, never>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormPhoneDirective, "[fsFormPhone]", never, { "fsFormPhone": { "alias": "fsFormPhone"; "required": false; }; "validationMessage": { "alias": "fsFormPhoneMessage"; "required": false; }; }, {}, never, never, true, never>;
13
13
  }
@@ -12,5 +12,5 @@ export declare class FsFormRequiredDirective extends FsControlDirective implemen
12
12
  validate(control: AbstractControl): ValidationErrors | null;
13
13
  render(): void;
14
14
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormRequiredDirective, never>;
15
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormRequiredDirective, "[fsFormRequired],[ngModel][required]", never, { "setFsFormRequired": { "alias": "fsFormRequired"; "required": false; }; "setRequired": { "alias": "required"; "required": false; }; "validationMessage": { "alias": "fsFormRequiredMessage"; "required": false; }; }, {}, never, never, false, never>;
15
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormRequiredDirective, "[fsFormRequired],[ngModel][required]", never, { "setFsFormRequired": { "alias": "fsFormRequired"; "required": false; }; "setRequired": { "alias": "required"; "required": false; }; "validationMessage": { "alias": "fsFormRequiredMessage"; "required": false; }; }, {}, never, never, true, never>;
16
16
  }
@@ -10,5 +10,5 @@ export declare class FsFormUrlDirective extends FsControlDirective implements On
10
10
  ngOnChanges(): void;
11
11
  validate(control: AbstractControl): ValidationErrors | null;
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormUrlDirective, never>;
13
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormUrlDirective, "[fsFormUrl]", never, { "fsFormUrl": { "alias": "fsFormUrl"; "required": false; }; "fsFormUrlProtocol": { "alias": "fsFormUrlProtocol"; "required": false; }; "validationMessage": { "alias": "fsFormUrlMessage"; "required": false; }; }, {}, never, never, false, never>;
13
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormUrlDirective, "[fsFormUrl]", never, { "fsFormUrl": { "alias": "fsFormUrl"; "required": false; }; "fsFormUrlProtocol": { "alias": "fsFormUrlProtocol"; "required": false; }; "validationMessage": { "alias": "fsFormUrlMessage"; "required": false; }; }, {}, never, never, true, never>;
14
14
  }
@@ -11,5 +11,5 @@ export declare class FsFormValidateDirective extends FsControlDirective implemen
11
11
  ngOnChanges(): void;
12
12
  validateAsync(control: AbstractControl): Promise<ValidationErrors | null> | Observable<ValidationErrors | null>;
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormValidateDirective, never>;
14
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormValidateDirective, "[validate]", never, { "validateFn": { "alias": "validate"; "required": false; }; "validateFnData": { "alias": "validateData"; "required": false; }; "validateOnSubmit": { "alias": "validateOnSubmit"; "required": false; }; }, {}, never, never, false, never>;
14
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FsFormValidateDirective, "[validate]", never, { "validateFn": { "alias": "validate"; "required": false; }; "validateFnData": { "alias": "validateData"; "required": false; }; "validateOnSubmit": { "alias": "validateOnSubmit"; "required": false; }; }, {}, never, never, true, never>;
15
15
  }
@@ -1,43 +1,43 @@
1
1
  import { ModuleWithProviders } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
- import * as i1 from "./directives/form/form.directive";
4
- import * as i2 from "./directives/validators/control.directive";
5
- import * as i3 from "./directives/validators/required.directive";
6
- import * as i4 from "./directives/validators/min.directive";
7
- import * as i5 from "./directives/validators/max.directive";
8
- import * as i6 from "./directives/validators/minlength.directive";
9
- import * as i7 from "./directives/validators/maxlength.directive";
10
- import * as i8 from "./directives/validators/email.directive";
11
- import * as i9 from "./directives/validators/emails.directive";
12
- import * as i10 from "./directives/validators/phone.directive";
13
- import * as i11 from "./directives/validators/compare.directive";
14
- import * as i12 from "./directives/validators/integer.directive";
15
- import * as i13 from "./directives/validators/numeric.directive";
16
- import * as i14 from "./directives/validators/pattern.directive";
17
- import * as i15 from "./directives/validators/function.directive";
18
- import * as i16 from "./directives/validators/daterange.directive";
19
- import * as i17 from "./directives/validators/greater.directive";
20
- import * as i18 from "./directives/validators/greater-equal.directive";
21
- import * as i19 from "./directives/validators/lesser.directive";
22
- import * as i20 from "./directives/validators/lesser-equal.directive";
23
- import * as i21 from "./directives/validators/url.directive";
24
- import * as i22 from "./directives/form-dialog-close.directive";
25
- import * as i23 from "./directives/validators/validate.directive";
26
- import * as i24 from "./components/form-dialog-actions/form-dialog-actions.component";
27
- import * as i25 from "./directives/validators/no-fs-validators.directive";
28
- import * as i26 from "./directives/button.directive";
29
- import * as i27 from "./directives/submit-button.directive";
30
- import * as i28 from "./directives/form-template.directive";
31
- import * as i29 from "./directives/form-template-outlet.directive";
32
- import * as i30 from "./directives/form-group/form-group.directive";
33
- import * as i31 from "@angular/common";
34
- import * as i32 from "@angular/forms";
35
- import * as i33 from "@angular/material/button";
36
- import * as i34 from "@angular/material/dialog";
37
- import * as i35 from "@firestitch/dialog";
3
+ import * as i1 from "@angular/common";
4
+ import * as i2 from "@angular/forms";
5
+ import * as i3 from "@angular/material/button";
6
+ import * as i4 from "@angular/material/dialog";
7
+ import * as i5 from "@firestitch/dialog";
8
+ import * as i6 from "./directives/form/form.directive";
9
+ import * as i7 from "./directives/validators/control.directive";
10
+ import * as i8 from "./directives/validators/required.directive";
11
+ import * as i9 from "./directives/validators/min.directive";
12
+ import * as i10 from "./directives/validators/max.directive";
13
+ import * as i11 from "./directives/validators/minlength.directive";
14
+ import * as i12 from "./directives/validators/maxlength.directive";
15
+ import * as i13 from "./directives/validators/email.directive";
16
+ import * as i14 from "./directives/validators/emails.directive";
17
+ import * as i15 from "./directives/validators/phone.directive";
18
+ import * as i16 from "./directives/validators/compare.directive";
19
+ import * as i17 from "./directives/validators/integer.directive";
20
+ import * as i18 from "./directives/validators/numeric.directive";
21
+ import * as i19 from "./directives/validators/pattern.directive";
22
+ import * as i20 from "./directives/validators/function.directive";
23
+ import * as i21 from "./directives/validators/daterange.directive";
24
+ import * as i22 from "./directives/validators/greater.directive";
25
+ import * as i23 from "./directives/validators/greater-equal.directive";
26
+ import * as i24 from "./directives/validators/lesser.directive";
27
+ import * as i25 from "./directives/validators/lesser-equal.directive";
28
+ import * as i26 from "./directives/validators/url.directive";
29
+ import * as i27 from "./directives/form-dialog-close.directive";
30
+ import * as i28 from "./directives/validators/validate.directive";
31
+ import * as i29 from "./components/form-dialog-actions/form-dialog-actions.component";
32
+ import * as i30 from "./directives/validators/no-fs-validators.directive";
33
+ import * as i31 from "./directives/button.directive";
34
+ import * as i32 from "./directives/submit-button.directive";
35
+ import * as i33 from "./directives/form-template.directive";
36
+ import * as i34 from "./directives/form-template-outlet.directive";
37
+ import * as i35 from "./directives/form-group/form-group.directive";
38
38
  export declare class FsFormModule {
39
39
  static forRoot(): ModuleWithProviders<FsFormModule>;
40
40
  static ɵfac: i0.ɵɵFactoryDeclaration<FsFormModule, never>;
41
- static ɵmod: i0.ɵɵNgModuleDeclaration<FsFormModule, [typeof i1.FsFormDirective, typeof i2.FsControlDirective, typeof i3.FsFormRequiredDirective, typeof i4.FsFormMinDirective, typeof i5.FsFormMaxDirective, typeof i6.FsFormMinLengthDirective, typeof i7.FsFormMaxLengthDirective, typeof i8.FsFormEmailDirective, typeof i9.FsFormEmailsDirective, typeof i10.FsFormPhoneDirective, typeof i11.FsFormCompareDirective, typeof i12.FsFormIntegerDirective, typeof i13.FsFormNumericDirective, typeof i14.FsFormPatternDirective, typeof i15.FsFormFunctionDirective, typeof i16.FsFormDateRangeDirective, typeof i17.FsFormGreaterDirective, typeof i18.FsFormGreaterEqualDirective, typeof i19.FsFormLesserDirective, typeof i20.FsFormLesserEqualDirective, typeof i21.FsFormUrlDirective, typeof i22.FsFormDialogCloseDirective, typeof i23.FsFormValidateDirective, typeof i24.FsFormDialogActionsComponent, typeof i25.FsFormNoFsValidatorsDirective, typeof i26.FsButtonDirective, typeof i27.FsSubmitButtonDirective, typeof i28.FsFormTemplateDirective, typeof i28.FsFormTemplateDirective, typeof i29.FsFormTemplateOutletDirective, typeof i30.FsFormGroupDirective], [typeof i31.CommonModule, typeof i32.FormsModule, typeof i33.MatButtonModule, typeof i34.MatDialogModule, typeof i34.MatDialogModule, typeof i35.FsDialogModule], [typeof i1.FsFormDirective, typeof i2.FsControlDirective, typeof i3.FsFormRequiredDirective, typeof i4.FsFormMinDirective, typeof i5.FsFormMaxDirective, typeof i6.FsFormMinLengthDirective, typeof i7.FsFormMaxLengthDirective, typeof i8.FsFormEmailDirective, typeof i9.FsFormEmailsDirective, typeof i10.FsFormPhoneDirective, typeof i11.FsFormCompareDirective, typeof i12.FsFormIntegerDirective, typeof i13.FsFormNumericDirective, typeof i14.FsFormPatternDirective, typeof i15.FsFormFunctionDirective, typeof i16.FsFormDateRangeDirective, typeof i17.FsFormGreaterDirective, typeof i18.FsFormGreaterEqualDirective, typeof i19.FsFormLesserDirective, typeof i20.FsFormLesserEqualDirective, typeof i21.FsFormUrlDirective, typeof i22.FsFormDialogCloseDirective, typeof i23.FsFormValidateDirective, typeof i24.FsFormDialogActionsComponent, typeof i25.FsFormNoFsValidatorsDirective, typeof i26.FsButtonDirective, typeof i27.FsSubmitButtonDirective, typeof i28.FsFormTemplateDirective, typeof i28.FsFormTemplateDirective, typeof i29.FsFormTemplateOutletDirective, typeof i30.FsFormGroupDirective]>;
41
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FsFormModule, never, [typeof i1.CommonModule, typeof i2.FormsModule, typeof i3.MatButtonModule, typeof i4.MatDialogModule, typeof i4.MatDialogModule, typeof i5.FsDialogModule, typeof i6.FsFormDirective, typeof i7.FsControlDirective, typeof i8.FsFormRequiredDirective, typeof i9.FsFormMinDirective, typeof i10.FsFormMaxDirective, typeof i11.FsFormMinLengthDirective, typeof i12.FsFormMaxLengthDirective, typeof i13.FsFormEmailDirective, typeof i14.FsFormEmailsDirective, typeof i15.FsFormPhoneDirective, typeof i16.FsFormCompareDirective, typeof i17.FsFormIntegerDirective, typeof i18.FsFormNumericDirective, typeof i19.FsFormPatternDirective, typeof i20.FsFormFunctionDirective, typeof i21.FsFormDateRangeDirective, typeof i22.FsFormGreaterDirective, typeof i23.FsFormGreaterEqualDirective, typeof i24.FsFormLesserDirective, typeof i25.FsFormLesserEqualDirective, typeof i26.FsFormUrlDirective, typeof i27.FsFormDialogCloseDirective, typeof i28.FsFormValidateDirective, typeof i29.FsFormDialogActionsComponent, typeof i30.FsFormNoFsValidatorsDirective, typeof i31.FsButtonDirective, typeof i32.FsSubmitButtonDirective, typeof i33.FsFormTemplateDirective, typeof i33.FsFormTemplateDirective, typeof i34.FsFormTemplateOutletDirective, typeof i35.FsFormGroupDirective], [typeof i6.FsFormDirective, typeof i7.FsControlDirective, typeof i8.FsFormRequiredDirective, typeof i9.FsFormMinDirective, typeof i10.FsFormMaxDirective, typeof i11.FsFormMinLengthDirective, typeof i12.FsFormMaxLengthDirective, typeof i13.FsFormEmailDirective, typeof i14.FsFormEmailsDirective, typeof i15.FsFormPhoneDirective, typeof i16.FsFormCompareDirective, typeof i17.FsFormIntegerDirective, typeof i18.FsFormNumericDirective, typeof i19.FsFormPatternDirective, typeof i20.FsFormFunctionDirective, typeof i21.FsFormDateRangeDirective, typeof i22.FsFormGreaterDirective, typeof i23.FsFormGreaterEqualDirective, typeof i24.FsFormLesserDirective, typeof i25.FsFormLesserEqualDirective, typeof i26.FsFormUrlDirective, typeof i27.FsFormDialogCloseDirective, typeof i28.FsFormValidateDirective, typeof i29.FsFormDialogActionsComponent, typeof i30.FsFormNoFsValidatorsDirective, typeof i31.FsButtonDirective, typeof i32.FsSubmitButtonDirective, typeof i33.FsFormTemplateDirective, typeof i33.FsFormTemplateDirective, typeof i34.FsFormTemplateOutletDirective, typeof i35.FsFormGroupDirective]>;
42
42
  static ɵinj: i0.ɵɵInjectorDeclaration<FsFormModule>;
43
43
  }
@@ -1,11 +1,8 @@
1
- import { ActivatedRoute } from '@angular/router';
2
1
  import { Observable } from 'rxjs';
3
- import { FsForm } from '../services/fsform.service';
4
2
  import * as i0 from "@angular/core";
5
3
  export declare class FormDeactivateGuard {
6
4
  private _form;
7
5
  private _route;
8
- constructor(_form: FsForm, _route: ActivatedRoute);
9
6
  canDeactivate(): Observable<boolean>;
10
7
  static ɵfac: i0.ɵɵFactoryDeclaration<FormDeactivateGuard, never>;
11
8
  static ɵprov: i0.ɵɵInjectableDeclaration<FormDeactivateGuard>;
@@ -1,4 +1,4 @@
1
- import { ChangeDetectionStrategy, Component, Inject } from '@angular/core';
1
+ import { ChangeDetectionStrategy, Component, inject } from '@angular/core';
2
2
  import { MatButton } from '@angular/material/button';
3
3
  import { MAT_DIALOG_DATA, MatDialogModule, MatDialogRef } from '@angular/material/dialog';
4
4
  import { FsDialogModule } from '@firestitch/dialog';
@@ -7,18 +7,14 @@ import * as i0 from "@angular/core";
7
7
  import * as i1 from "@angular/material/dialog";
8
8
  import * as i2 from "@firestitch/dialog";
9
9
  export class ConfirmUnsavedComponent {
10
- _data;
11
- _dialogRef;
10
+ _data = inject(MAT_DIALOG_DATA);
11
+ _dialogRef = inject(MatDialogRef);
12
12
  saveLabel;
13
13
  discardLabel;
14
14
  cancelLabel;
15
15
  message;
16
16
  title;
17
17
  _destroy$ = new Subject();
18
- constructor(_data, _dialogRef) {
19
- this._data = _data;
20
- this._dialogRef = _dialogRef;
21
- }
22
18
  ngOnInit() {
23
19
  this.saveLabel = this._data.saveLabel;
24
20
  this.discardLabel = this._data.discardLabel;
@@ -39,7 +35,7 @@ export class ConfirmUnsavedComponent {
39
35
  this._destroy$.next(null);
40
36
  this._destroy$.complete();
41
37
  }
42
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: ConfirmUnsavedComponent, deps: [{ token: MAT_DIALOG_DATA }, { token: i1.MatDialogRef }], target: i0.ɵɵFactoryTarget.Component });
38
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: ConfirmUnsavedComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
43
39
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: ConfirmUnsavedComponent, isStandalone: true, selector: "ng-component", ngImport: i0, template: "<fs-dialog>\n <h1 mat-dialog-title>\n {{ title }}\n </h1>\n <mat-dialog-content>\n {{ message }}\n </mat-dialog-content>\n <mat-dialog-actions>\n <button\n type=\"button\"\n color=\"primary\"\n (click)=\"save()\"\n mat-button>\n {{ saveLabel }}\n </button>\n <button\n type=\"button\"\n (click)=\"discard()\"\n mat-button>\n {{ discardLabel }}\n </button>\n <button\n type=\"button\"\n (click)=\"cancel()\"\n mat-button>\n {{ cancelLabel }}\n </button>\n </mat-dialog-actions>\n</fs-dialog>", styles: [":host{width:100%}.form-buttons.save-create .close-button:not(.cancel-button){float:right}\n"], dependencies: [{ kind: "ngmodule", type: MatDialogModule }, { kind: "directive", type: i1.MatDialogTitle, selector: "[mat-dialog-title], [matDialogTitle]", inputs: ["id"], exportAs: ["matDialogTitle"] }, { kind: "directive", type: i1.MatDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]", inputs: ["align"] }, { kind: "directive", type: i1.MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }, { kind: "component", type: MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", exportAs: ["matButton"] }, { kind: "ngmodule", type: FsDialogModule }, { kind: "component", type: i2.FsDialogComponent, selector: "fs-dialog", inputs: ["mobileMode", "mobileButtonPlacement", "mobileWidth", "mode", "buttonLayout"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
44
40
  }
45
41
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: ConfirmUnsavedComponent, decorators: [{
@@ -49,8 +45,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImpor
49
45
  MatButton,
50
46
  FsDialogModule,
51
47
  ], template: "<fs-dialog>\n <h1 mat-dialog-title>\n {{ title }}\n </h1>\n <mat-dialog-content>\n {{ message }}\n </mat-dialog-content>\n <mat-dialog-actions>\n <button\n type=\"button\"\n color=\"primary\"\n (click)=\"save()\"\n mat-button>\n {{ saveLabel }}\n </button>\n <button\n type=\"button\"\n (click)=\"discard()\"\n mat-button>\n {{ discardLabel }}\n </button>\n <button\n type=\"button\"\n (click)=\"cancel()\"\n mat-button>\n {{ cancelLabel }}\n </button>\n </mat-dialog-actions>\n</fs-dialog>", styles: [":host{width:100%}.form-buttons.save-create .close-button:not(.cancel-button){float:right}\n"] }]
52
- }], ctorParameters: () => [{ type: undefined, decorators: [{
53
- type: Inject,
54
- args: [MAT_DIALOG_DATA]
55
- }] }, { type: i1.MatDialogRef }] });
56
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uZmlybS11bnNhdmVkLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9hcHAvY29tcG9uZW50cy9jb25maXJtLXVuc2F2ZWQvY29uZmlybS11bnNhdmVkLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL3NyYy9hcHAvY29tcG9uZW50cy9jb25maXJtLXVuc2F2ZWQvY29uZmlybS11bnNhdmVkLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFxQixNQUFNLGVBQWUsQ0FBQztBQUU5RixPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDckQsT0FBTyxFQUFFLGVBQWUsRUFBRSxlQUFlLEVBQUUsWUFBWSxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFFMUYsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBRXBELE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSxNQUFNLENBQUM7Ozs7QUFlL0IsTUFBTSxPQUFPLHVCQUF1QjtJQVdDO0lBQ3pCO0lBVkgsU0FBUyxDQUFDO0lBQ1YsWUFBWSxDQUFDO0lBQ2IsV0FBVyxDQUFDO0lBQ1osT0FBTyxDQUFDO0lBQ1IsS0FBSyxDQUFDO0lBRUwsU0FBUyxHQUFHLElBQUksT0FBTyxFQUFRLENBQUM7SUFFeEMsWUFDbUMsS0FBVSxFQUNuQyxVQUFpRDtRQUR4QixVQUFLLEdBQUwsS0FBSyxDQUFLO1FBQ25DLGVBQVUsR0FBVixVQUFVLENBQXVDO0lBQ3hELENBQUM7SUFFRyxRQUFRO1FBQ2IsSUFBSSxDQUFDLFNBQVMsR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLFNBQVMsQ0FBQztRQUN0QyxJQUFJLENBQUMsWUFBWSxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsWUFBWSxDQUFDO1FBQzVDLElBQUksQ0FBQyxXQUFXLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxXQUFXLENBQUM7UUFDMUMsSUFBSSxDQUFDLE9BQU8sR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLE9BQU8sQ0FBQztRQUNsQyxJQUFJLENBQUMsS0FBSyxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsS0FBSyxDQUFDO0lBQ2hDLENBQUM7SUFFTSxJQUFJO1FBQ1QsSUFBSSxDQUFDLFVBQVUsQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUM7SUFDaEMsQ0FBQztJQUVNLE9BQU87UUFDWixJQUFJLENBQUMsVUFBVSxDQUFDLEtBQUssQ0FBQyxTQUFTLENBQUMsQ0FBQztJQUNuQyxDQUFDO0lBRU0sTUFBTTtRQUNYLElBQUksQ0FBQyxVQUFVLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQzlCLENBQUM7SUFFTSxXQUFXO1FBQ2hCLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1FBQzFCLElBQUksQ0FBQyxTQUFTLENBQUMsUUFBUSxFQUFFLENBQUM7SUFDNUIsQ0FBQzt1R0F0Q1UsdUJBQXVCLGtCQVd4QixlQUFlOzJGQVhkLHVCQUF1Qix3RUN0QnBDLCtsQkE0Qlksb0pEWlIsZUFBZSwwYkFDZixTQUFTLGdMQUVULGNBQWM7OzJGQUdMLHVCQUF1QjtrQkFabkMsU0FBUztzQ0FHUyx1QkFBdUIsQ0FBQyxNQUFNLGNBQ25DLElBQUksV0FDUDt3QkFDUCxlQUFlO3dCQUNmLFNBQVM7d0JBRVQsY0FBYztxQkFDZjs7MEJBYUUsTUFBTTsyQkFBQyxlQUFlIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgSW5qZWN0LCBPbkRlc3Ryb3ksIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQgeyBNYXRCdXR0b24gfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9idXR0b24nO1xuaW1wb3J0IHsgTUFUX0RJQUxPR19EQVRBLCBNYXREaWFsb2dNb2R1bGUsIE1hdERpYWxvZ1JlZiB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2RpYWxvZyc7XG5cbmltcG9ydCB7IEZzRGlhbG9nTW9kdWxlIH0gZnJvbSAnQGZpcmVzdGl0Y2gvZGlhbG9nJztcblxuaW1wb3J0IHsgU3ViamVjdCB9IGZyb20gJ3J4anMnO1xuXG5cbkBDb21wb25lbnQoe1xuICB0ZW1wbGF0ZVVybDogJy4vY29uZmlybS11bnNhdmVkLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vY29uZmlybS11bnNhdmVkLmNvbXBvbmVudC5zY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBpbXBvcnRzOiBbXG4gICAgTWF0RGlhbG9nTW9kdWxlLFxuICAgIE1hdEJ1dHRvbixcblxuICAgIEZzRGlhbG9nTW9kdWxlLFxuICBdLFxufSlcbmV4cG9ydCBjbGFzcyBDb25maXJtVW5zYXZlZENvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCwgT25EZXN0cm95IHtcblxuICBwdWJsaWMgc2F2ZUxhYmVsO1xuICBwdWJsaWMgZGlzY2FyZExhYmVsO1xuICBwdWJsaWMgY2FuY2VsTGFiZWw7XG4gIHB1YmxpYyBtZXNzYWdlO1xuICBwdWJsaWMgdGl0bGU7XG5cbiAgcHJpdmF0ZSBfZGVzdHJveSQgPSBuZXcgU3ViamVjdDx2b2lkPigpO1xuICBcbiAgY29uc3RydWN0b3IoXG4gICAgQEluamVjdChNQVRfRElBTE9HX0RBVEEpIHByaXZhdGUgX2RhdGE6IGFueSxcbiAgICBwcml2YXRlIF9kaWFsb2dSZWY6IE1hdERpYWxvZ1JlZjxDb25maXJtVW5zYXZlZENvbXBvbmVudD4sXG4gICkge31cblxuICBwdWJsaWMgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgdGhpcy5zYXZlTGFiZWwgPSB0aGlzLl9kYXRhLnNhdmVMYWJlbDtcbiAgICB0aGlzLmRpc2NhcmRMYWJlbCA9IHRoaXMuX2RhdGEuZGlzY2FyZExhYmVsO1xuICAgIHRoaXMuY2FuY2VsTGFiZWwgPSB0aGlzLl9kYXRhLmNhbmNlbExhYmVsO1xuICAgIHRoaXMubWVzc2FnZSA9IHRoaXMuX2RhdGEubWVzc2FnZTtcbiAgICB0aGlzLnRpdGxlID0gdGhpcy5fZGF0YS50aXRsZTtcbiAgfVxuXG4gIHB1YmxpYyBzYXZlKCk6IHZvaWQge1xuICAgIHRoaXMuX2RpYWxvZ1JlZi5jbG9zZSgnc2F2ZScpO1xuICB9XG5cbiAgcHVibGljIGRpc2NhcmQoKTogdm9pZCB7XG4gICAgdGhpcy5fZGlhbG9nUmVmLmNsb3NlKCdkaXNjYXJkJyk7XG4gIH1cblxuICBwdWJsaWMgY2FuY2VsKCk6IHZvaWQge1xuICAgIHRoaXMuX2RpYWxvZ1JlZi5jbG9zZShudWxsKTtcbiAgfVxuXG4gIHB1YmxpYyBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICB0aGlzLl9kZXN0cm95JC5uZXh0KG51bGwpO1xuICAgIHRoaXMuX2Rlc3Ryb3kkLmNvbXBsZXRlKCk7XG4gIH1cbn1cbiIsIjxmcy1kaWFsb2c+XG4gIDxoMSBtYXQtZGlhbG9nLXRpdGxlPlxuICAgIHt7IHRpdGxlIH19XG4gIDwvaDE+XG4gIDxtYXQtZGlhbG9nLWNvbnRlbnQ+XG4gICAge3sgbWVzc2FnZSB9fVxuICA8L21hdC1kaWFsb2ctY29udGVudD5cbiAgPG1hdC1kaWFsb2ctYWN0aW9ucz5cbiAgICA8YnV0dG9uXG4gICAgICAgIHR5cGU9XCJidXR0b25cIlxuICAgICAgICBjb2xvcj1cInByaW1hcnlcIlxuICAgICAgICAoY2xpY2spPVwic2F2ZSgpXCJcbiAgICAgICAgbWF0LWJ1dHRvbj5cbiAgICAgIHt7IHNhdmVMYWJlbCB9fVxuICAgIDwvYnV0dG9uPlxuICAgIDxidXR0b25cbiAgICAgICAgdHlwZT1cImJ1dHRvblwiXG4gICAgICAgIChjbGljayk9XCJkaXNjYXJkKClcIlxuICAgICAgICBtYXQtYnV0dG9uPlxuICAgICAge3sgZGlzY2FyZExhYmVsIH19XG4gICAgPC9idXR0b24+XG4gICAgPGJ1dHRvblxuICAgICAgICB0eXBlPVwiYnV0dG9uXCJcbiAgICAgICAgKGNsaWNrKT1cImNhbmNlbCgpXCJcbiAgICAgICAgbWF0LWJ1dHRvbj5cbiAgICAgIHt7IGNhbmNlbExhYmVsIH19XG4gICAgPC9idXR0b24+XG4gIDwvbWF0LWRpYWxvZy1hY3Rpb25zPlxuPC9mcy1kaWFsb2c+Il19
48
+ }] });
49
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uZmlybS11bnNhdmVkLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9hcHAvY29tcG9uZW50cy9jb25maXJtLXVuc2F2ZWQvY29uZmlybS11bnNhdmVkLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL3NyYy9hcHAvY29tcG9uZW50cy9jb25maXJtLXVuc2F2ZWQvY29uZmlybS11bnNhdmVkLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQXFCLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUU5RixPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDckQsT0FBTyxFQUFFLGVBQWUsRUFBRSxlQUFlLEVBQUUsWUFBWSxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFFMUYsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBRXBELE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSxNQUFNLENBQUM7Ozs7QUFlL0IsTUFBTSxPQUFPLHVCQUF1QjtJQUMxQixLQUFLLEdBQUcsTUFBTSxDQUFDLGVBQWUsQ0FBQyxDQUFDO0lBQ2hDLFVBQVUsR0FBRyxNQUFNLENBQXdDLFlBQVksQ0FBQyxDQUFDO0lBRzFFLFNBQVMsQ0FBQztJQUNWLFlBQVksQ0FBQztJQUNiLFdBQVcsQ0FBQztJQUNaLE9BQU8sQ0FBQztJQUNSLEtBQUssQ0FBQztJQUVMLFNBQVMsR0FBRyxJQUFJLE9BQU8sRUFBUSxDQUFDO0lBRWpDLFFBQVE7UUFDYixJQUFJLENBQUMsU0FBUyxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsU0FBUyxDQUFDO1FBQ3RDLElBQUksQ0FBQyxZQUFZLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxZQUFZLENBQUM7UUFDNUMsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLFdBQVcsQ0FBQztRQUMxQyxJQUFJLENBQUMsT0FBTyxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDO1FBQ2xDLElBQUksQ0FBQyxLQUFLLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxLQUFLLENBQUM7SUFDaEMsQ0FBQztJQUVNLElBQUk7UUFDVCxJQUFJLENBQUMsVUFBVSxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQztJQUNoQyxDQUFDO0lBRU0sT0FBTztRQUNaLElBQUksQ0FBQyxVQUFVLENBQUMsS0FBSyxDQUFDLFNBQVMsQ0FBQyxDQUFDO0lBQ25DLENBQUM7SUFFTSxNQUFNO1FBQ1gsSUFBSSxDQUFDLFVBQVUsQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDOUIsQ0FBQztJQUVNLFdBQVc7UUFDaEIsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUM7UUFDMUIsSUFBSSxDQUFDLFNBQVMsQ0FBQyxRQUFRLEVBQUUsQ0FBQztJQUM1QixDQUFDO3VHQXBDVSx1QkFBdUI7MkZBQXZCLHVCQUF1Qix3RUN0QnBDLCtsQkE0Qlksb0pEWlIsZUFBZSwwYkFDZixTQUFTLGdMQUVULGNBQWM7OzJGQUdMLHVCQUF1QjtrQkFabkMsU0FBUztzQ0FHUyx1QkFBdUIsQ0FBQyxNQUFNLGNBQ25DLElBQUksV0FDUDt3QkFDUCxlQUFlO3dCQUNmLFNBQVM7d0JBRVQsY0FBYztxQkFDZiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIE9uRGVzdHJveSwgT25Jbml0LCBpbmplY3QgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHsgTWF0QnV0dG9uIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvYnV0dG9uJztcbmltcG9ydCB7IE1BVF9ESUFMT0dfREFUQSwgTWF0RGlhbG9nTW9kdWxlLCBNYXREaWFsb2dSZWYgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9kaWFsb2cnO1xuXG5pbXBvcnQgeyBGc0RpYWxvZ01vZHVsZSB9IGZyb20gJ0BmaXJlc3RpdGNoL2RpYWxvZyc7XG5cbmltcG9ydCB7IFN1YmplY3QgfSBmcm9tICdyeGpzJztcblxuXG5AQ29tcG9uZW50KHtcbiAgdGVtcGxhdGVVcmw6ICcuL2NvbmZpcm0tdW5zYXZlZC5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2NvbmZpcm0tdW5zYXZlZC5jb21wb25lbnQuc2NzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW1xuICAgIE1hdERpYWxvZ01vZHVsZSxcbiAgICBNYXRCdXR0b24sXG5cbiAgICBGc0RpYWxvZ01vZHVsZSxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgQ29uZmlybVVuc2F2ZWRDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQsIE9uRGVzdHJveSB7XG4gIHByaXZhdGUgX2RhdGEgPSBpbmplY3QoTUFUX0RJQUxPR19EQVRBKTtcbiAgcHJpdmF0ZSBfZGlhbG9nUmVmID0gaW5qZWN0PE1hdERpYWxvZ1JlZjxDb25maXJtVW5zYXZlZENvbXBvbmVudD4+KE1hdERpYWxvZ1JlZik7XG5cblxuICBwdWJsaWMgc2F2ZUxhYmVsO1xuICBwdWJsaWMgZGlzY2FyZExhYmVsO1xuICBwdWJsaWMgY2FuY2VsTGFiZWw7XG4gIHB1YmxpYyBtZXNzYWdlO1xuICBwdWJsaWMgdGl0bGU7XG5cbiAgcHJpdmF0ZSBfZGVzdHJveSQgPSBuZXcgU3ViamVjdDx2b2lkPigpO1xuXG4gIHB1YmxpYyBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLnNhdmVMYWJlbCA9IHRoaXMuX2RhdGEuc2F2ZUxhYmVsO1xuICAgIHRoaXMuZGlzY2FyZExhYmVsID0gdGhpcy5fZGF0YS5kaXNjYXJkTGFiZWw7XG4gICAgdGhpcy5jYW5jZWxMYWJlbCA9IHRoaXMuX2RhdGEuY2FuY2VsTGFiZWw7XG4gICAgdGhpcy5tZXNzYWdlID0gdGhpcy5fZGF0YS5tZXNzYWdlO1xuICAgIHRoaXMudGl0bGUgPSB0aGlzLl9kYXRhLnRpdGxlO1xuICB9XG5cbiAgcHVibGljIHNhdmUoKTogdm9pZCB7XG4gICAgdGhpcy5fZGlhbG9nUmVmLmNsb3NlKCdzYXZlJyk7XG4gIH1cblxuICBwdWJsaWMgZGlzY2FyZCgpOiB2b2lkIHtcbiAgICB0aGlzLl9kaWFsb2dSZWYuY2xvc2UoJ2Rpc2NhcmQnKTtcbiAgfVxuXG4gIHB1YmxpYyBjYW5jZWwoKTogdm9pZCB7XG4gICAgdGhpcy5fZGlhbG9nUmVmLmNsb3NlKG51bGwpO1xuICB9XG5cbiAgcHVibGljIG5nT25EZXN0cm95KCk6IHZvaWQge1xuICAgIHRoaXMuX2Rlc3Ryb3kkLm5leHQobnVsbCk7XG4gICAgdGhpcy5fZGVzdHJveSQuY29tcGxldGUoKTtcbiAgfVxufVxuIiwiPGZzLWRpYWxvZz5cbiAgPGgxIG1hdC1kaWFsb2ctdGl0bGU+XG4gICAge3sgdGl0bGUgfX1cbiAgPC9oMT5cbiAgPG1hdC1kaWFsb2ctY29udGVudD5cbiAgICB7eyBtZXNzYWdlIH19XG4gIDwvbWF0LWRpYWxvZy1jb250ZW50PlxuICA8bWF0LWRpYWxvZy1hY3Rpb25zPlxuICAgIDxidXR0b25cbiAgICAgICAgdHlwZT1cImJ1dHRvblwiXG4gICAgICAgIGNvbG9yPVwicHJpbWFyeVwiXG4gICAgICAgIChjbGljayk9XCJzYXZlKClcIlxuICAgICAgICBtYXQtYnV0dG9uPlxuICAgICAge3sgc2F2ZUxhYmVsIH19XG4gICAgPC9idXR0b24+XG4gICAgPGJ1dHRvblxuICAgICAgICB0eXBlPVwiYnV0dG9uXCJcbiAgICAgICAgKGNsaWNrKT1cImRpc2NhcmQoKVwiXG4gICAgICAgIG1hdC1idXR0b24+XG4gICAgICB7eyBkaXNjYXJkTGFiZWwgfX1cbiAgICA8L2J1dHRvbj5cbiAgICA8YnV0dG9uXG4gICAgICAgIHR5cGU9XCJidXR0b25cIlxuICAgICAgICAoY2xpY2spPVwiY2FuY2VsKClcIlxuICAgICAgICBtYXQtYnV0dG9uPlxuICAgICAge3sgY2FuY2VsTGFiZWwgfX1cbiAgICA8L2J1dHRvbj5cbiAgPC9tYXQtZGlhbG9nLWFjdGlvbnM+XG48L2ZzLWRpYWxvZz4iXX0=