@fovestta2/web-angular 1.1.8 → 1.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/esm2022/lib/fv-checkbox/fv-checkbox.component.mjs +1 -1
  2. package/esm2022/lib/fv-date-field/fv-date-field.component.mjs +1 -1
  3. package/esm2022/lib/fv-document-field/fv-document-field.component.mjs +1 -1
  4. package/esm2022/lib/fv-dropdown/fv-dropdown.component.mjs +1 -1
  5. package/esm2022/lib/fv-email-field/fv-email-field.component.mjs +1 -1
  6. package/esm2022/lib/fv-entry-field/fv-entry-field.component.mjs +1 -1
  7. package/esm2022/lib/fv-esi-field/fv-esi-field.component.mjs +1 -1
  8. package/esm2022/lib/fv-file-selector/fv-file-selector.component.mjs +1 -1
  9. package/esm2022/lib/fv-iban-field/fv-iban-field.component.mjs +1 -1
  10. package/esm2022/lib/fv-ifsc-field/fv-ifsc-field.component.mjs +1 -1
  11. package/esm2022/lib/fv-image-selector/fv-image-selector.component.mjs +1 -1
  12. package/esm2022/lib/fv-micr-field/fv-micr-field.component.mjs +1 -1
  13. package/esm2022/lib/fv-month-year-field/fv-month-year-field.component.mjs +1 -1
  14. package/esm2022/lib/fv-name-code/fv-name-code.component.mjs +3 -3
  15. package/esm2022/lib/fv-number-field/fv-number-field.component.mjs +1 -1
  16. package/esm2022/lib/fv-password-field/fv-password-field.component.mjs +1 -1
  17. package/esm2022/lib/fv-pf-field/fv-pf-field.component.mjs +1 -1
  18. package/esm2022/lib/fv-phone-field/fv-phone-field.component.mjs +1 -1
  19. package/esm2022/lib/fv-radio-group/fv-radio-group.component.mjs +1 -1
  20. package/esm2022/lib/fv-rich-text-editor/fv-rich-text-editor.component.mjs +1 -1
  21. package/esm2022/lib/fv-service-period/fv-service-period.component.mjs +1 -1
  22. package/esm2022/lib/fv-time-field/fv-time-field.component.mjs +1 -1
  23. package/esm2022/lib/fv-toggle/fv-toggle.component.mjs +1 -1
  24. package/esm2022/lib/fv-uan-field/fv-uan-field.component.mjs +1 -1
  25. package/fesm2022/fovestta2-web-angular.mjs +2 -2
  26. package/fesm2022/fovestta2-web-angular.mjs.map +1 -1
  27. package/lib/fv-checkbox/fv-checkbox.component.d.ts +1 -2
  28. package/lib/fv-date-field/fv-date-field.component.d.ts +1 -2
  29. package/lib/fv-document-field/fv-document-field.component.d.ts +1 -2
  30. package/lib/fv-dropdown/fv-dropdown.component.d.ts +1 -1
  31. package/lib/fv-email-field/fv-email-field.component.d.ts +1 -2
  32. package/lib/fv-entry-field/fv-entry-field.component.d.ts +1 -2
  33. package/lib/fv-esi-field/fv-esi-field.component.d.ts +1 -2
  34. package/lib/fv-file-selector/fv-file-selector.component.d.ts +1 -2
  35. package/lib/fv-iban-field/fv-iban-field.component.d.ts +1 -2
  36. package/lib/fv-ifsc-field/fv-ifsc-field.component.d.ts +1 -2
  37. package/lib/fv-image-selector/fv-image-selector.component.d.ts +1 -2
  38. package/lib/fv-micr-field/fv-micr-field.component.d.ts +1 -2
  39. package/lib/fv-month-year-field/fv-month-year-field.component.d.ts +1 -2
  40. package/lib/fv-name-code/fv-name-code.component.d.ts +1 -1
  41. package/lib/fv-number-field/fv-number-field.component.d.ts +1 -2
  42. package/lib/fv-password-field/fv-password-field.component.d.ts +1 -2
  43. package/lib/fv-pf-field/fv-pf-field.component.d.ts +1 -2
  44. package/lib/fv-phone-field/fv-phone-field.component.d.ts +1 -2
  45. package/lib/fv-radio-group/fv-radio-group.component.d.ts +1 -2
  46. package/lib/fv-rich-text-editor/fv-rich-text-editor.component.d.ts +1 -2
  47. package/lib/fv-service-period/fv-service-period.component.d.ts +2 -2
  48. package/lib/fv-time-field/fv-time-field.component.d.ts +1 -2
  49. package/lib/fv-toggle/fv-toggle.component.d.ts +1 -2
  50. package/lib/fv-uan-field/fv-uan-field.component.d.ts +1 -2
  51. package/package.json +1 -1
@@ -1,9 +1,8 @@
1
1
  import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
2
  import * as i0 from "@angular/core";
4
3
  export declare class FvCheckboxComponent implements OnInit, OnChanges {
5
4
  label: string;
6
- control: FormControl;
5
+ control: any;
7
6
  disabled: boolean;
8
7
  required: boolean;
9
8
  valueChange: EventEmitter<boolean>;
@@ -1,11 +1,10 @@
1
1
  import { EventEmitter, OnInit, OnDestroy, OnChanges } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
2
  import { ValidationSchema } from '@fovestta2/validation-engine';
4
3
  import * as i0 from "@angular/core";
5
4
  export declare class FvDateFieldComponent implements OnInit, OnDestroy, OnChanges {
6
5
  label: string;
7
6
  schema: ValidationSchema;
8
- control: FormControl;
7
+ control: any;
9
8
  disabled: boolean;
10
9
  readonly: boolean;
11
10
  min?: string;
@@ -1,5 +1,4 @@
1
1
  import { EventEmitter, OnInit, OnDestroy, ElementRef, OnChanges, SimpleChanges } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
2
  import { ValidationSchema } from '@fovestta2/validation-engine';
4
3
  import { DomSanitizer, SafeUrl } from '@angular/platform-browser';
5
4
  import * as i0 from "@angular/core";
@@ -14,7 +13,7 @@ export declare class FvDocumentFieldComponent implements OnInit, OnDestroy, OnCh
14
13
  label: string;
15
14
  placeholder: string;
16
15
  schema: ValidationSchema;
17
- control: FormControl;
16
+ control: any;
18
17
  disabled: boolean;
19
18
  accept: string;
20
19
  maxSize?: number;
@@ -23,7 +23,7 @@ export declare class FvDropdownComponent implements OnInit, OnDestroy, OnChanges
23
23
  placeholder: string;
24
24
  options: (DropdownOption | DropdownGroup)[];
25
25
  schema: ValidationSchema;
26
- control: FormControl;
26
+ control: any;
27
27
  disabled: boolean;
28
28
  valueChange: EventEmitter<string | number>;
29
29
  blur: EventEmitter<void>;
@@ -1,12 +1,11 @@
1
1
  import { EventEmitter, OnInit, OnDestroy, OnChanges, SimpleChanges } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
2
  import { ValidationSchema } from '@fovestta2/validation-engine';
4
3
  import * as i0 from "@angular/core";
5
4
  export declare class FvEmailFieldComponent implements OnInit, OnDestroy, OnChanges {
6
5
  label: string;
7
6
  placeholder: string;
8
7
  schema: ValidationSchema;
9
- control: FormControl;
8
+ control: any;
10
9
  disabled: boolean;
11
10
  readonly: boolean;
12
11
  valueChange: EventEmitter<string>;
@@ -1,5 +1,4 @@
1
1
  import { EventEmitter, OnInit, OnDestroy } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
2
  import { OnChanges, SimpleChanges } from '@angular/core';
4
3
  import { ValidationSchema } from '@fovestta2/validation-engine';
5
4
  import * as i0 from "@angular/core";
@@ -7,7 +6,7 @@ export declare class FvEntryFieldComponent implements OnInit, OnDestroy, OnChang
7
6
  label: string;
8
7
  placeholder: string;
9
8
  schema: ValidationSchema;
10
- control: FormControl;
9
+ control: any;
11
10
  disabled: boolean;
12
11
  readonly: boolean;
13
12
  type: 'text' | 'password' | 'email';
@@ -1,10 +1,9 @@
1
1
  import { OnInit, OnDestroy, OnChanges, SimpleChanges, EventEmitter } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
2
  import { ValidationSchema } from '@fovestta2/validation-engine';
4
3
  import * as i0 from "@angular/core";
5
4
  export declare class FvEsiFieldComponent implements OnInit, OnDestroy, OnChanges {
6
5
  label: string;
7
- control: FormControl;
6
+ control: any;
8
7
  disabled: boolean;
9
8
  schema: ValidationSchema;
10
9
  blur: EventEmitter<void>;
@@ -1,5 +1,4 @@
1
1
  import { EventEmitter, OnInit, OnDestroy, ElementRef, OnChanges, SimpleChanges } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
2
  import { ValidationSchema } from '@fovestta2/validation-engine';
4
3
  import * as i0 from "@angular/core";
5
4
  export interface FileInfo {
@@ -12,7 +11,7 @@ export declare class FvFileSelectorComponent implements OnInit, OnDestroy, OnCha
12
11
  label: string;
13
12
  placeholder: string;
14
13
  schema: ValidationSchema;
15
- control: FormControl;
14
+ control: any;
16
15
  disabled: boolean;
17
16
  accept: string;
18
17
  maxSize?: number;
@@ -1,10 +1,9 @@
1
1
  import { OnInit, OnDestroy, OnChanges, SimpleChanges, EventEmitter } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
2
  import { ValidationSchema } from '@fovestta2/validation-engine';
4
3
  import * as i0 from "@angular/core";
5
4
  export declare class FvIbanFieldComponent implements OnInit, OnDestroy, OnChanges {
6
5
  label: string;
7
- control: FormControl;
6
+ control: any;
8
7
  disabled: boolean;
9
8
  schema: ValidationSchema;
10
9
  blur: EventEmitter<void>;
@@ -1,10 +1,9 @@
1
1
  import { OnInit, OnDestroy, EventEmitter } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
2
  import { ValidationSchema } from '@fovestta2/validation-engine';
4
3
  import * as i0 from "@angular/core";
5
4
  export declare class FvIfscFieldComponent implements OnInit, OnDestroy {
6
5
  label: string;
7
- control: FormControl;
6
+ control: any;
8
7
  disabled: boolean;
9
8
  schema: ValidationSchema;
10
9
  blur: EventEmitter<void>;
@@ -1,5 +1,4 @@
1
1
  import { EventEmitter, OnInit, OnDestroy, ElementRef } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
2
  import { ValidationSchema } from '@fovestta2/validation-engine';
4
3
  import { DomSanitizer, SafeUrl } from '@angular/platform-browser';
5
4
  import * as i0 from "@angular/core";
@@ -15,7 +14,7 @@ export declare class FvImageSelectorComponent implements OnInit, OnDestroy {
15
14
  label: string;
16
15
  placeholder: string;
17
16
  schema: ValidationSchema;
18
- control: FormControl;
17
+ control: any;
19
18
  disabled: boolean;
20
19
  maxSize?: number;
21
20
  valueChange: EventEmitter<ImageInfo | null>;
@@ -1,10 +1,9 @@
1
1
  import { OnInit, OnDestroy, EventEmitter } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
2
  import { ValidationSchema } from '@fovestta2/validation-engine';
4
3
  import * as i0 from "@angular/core";
5
4
  export declare class FvMicrFieldComponent implements OnInit, OnDestroy {
6
5
  label: string;
7
- control: FormControl;
6
+ control: any;
8
7
  disabled: boolean;
9
8
  schema: ValidationSchema;
10
9
  blur: EventEmitter<void>;
@@ -1,11 +1,10 @@
1
1
  import { EventEmitter, OnInit, OnDestroy, OnChanges, SimpleChanges } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
2
  import { ValidationSchema } from '@fovestta2/validation-engine';
4
3
  import * as i0 from "@angular/core";
5
4
  export declare class FvMonthYearFieldComponent implements OnInit, OnDestroy, OnChanges {
6
5
  label: string;
7
6
  schema: ValidationSchema;
8
- control: FormControl;
7
+ control: any;
9
8
  disabled: boolean;
10
9
  readonly: boolean;
11
10
  min?: string;
@@ -12,7 +12,7 @@ export declare class FvNameCodeComponent implements ControlValueAccessor, OnChan
12
12
  placeholder: string;
13
13
  options: SearchSelectOption[];
14
14
  schema?: ValidationSchema;
15
- control?: FormControl;
15
+ control?: any;
16
16
  disabled: boolean;
17
17
  valueChange: EventEmitter<any>;
18
18
  searchControl: FormControl<string | null>;
@@ -1,12 +1,11 @@
1
1
  import { EventEmitter, OnDestroy, OnInit, OnChanges, SimpleChanges } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
2
  import { ValidationSchema } from '@fovestta2/validation-engine';
4
3
  import * as i0 from "@angular/core";
5
4
  export declare class FvNumberFieldComponent implements OnInit, OnDestroy, OnChanges {
6
5
  label: string;
7
6
  placeholder: string;
8
7
  schema: ValidationSchema;
9
- control: FormControl;
8
+ control: any;
10
9
  disabled: boolean;
11
10
  readonly: boolean;
12
11
  min?: any;
@@ -1,12 +1,11 @@
1
1
  import { EventEmitter, OnInit, OnDestroy, OnChanges, SimpleChanges } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
2
  import { ValidationSchema } from '@fovestta2/validation-engine';
4
3
  import * as i0 from "@angular/core";
5
4
  export declare class FvPasswordFieldComponent implements OnInit, OnDestroy, OnChanges {
6
5
  label: string;
7
6
  placeholder: string;
8
7
  schema: ValidationSchema;
9
- control: FormControl;
8
+ control: any;
10
9
  disabled: boolean;
11
10
  readonly: boolean;
12
11
  valueChange: EventEmitter<string>;
@@ -1,10 +1,9 @@
1
1
  import { OnInit, OnDestroy, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
2
  import { ValidationSchema } from '@fovestta2/validation-engine';
4
3
  import * as i0 from "@angular/core";
5
4
  export declare class FvPfFieldComponent implements OnInit, OnDestroy, OnChanges {
6
5
  label: string;
7
- control: FormControl;
6
+ control: any;
8
7
  disabled: boolean;
9
8
  schema: ValidationSchema;
10
9
  blur: EventEmitter<void>;
@@ -1,10 +1,9 @@
1
1
  import { OnInit, OnDestroy, OnChanges, SimpleChanges, EventEmitter } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
2
  import { ValidationSchema } from '@fovestta2/validation-engine';
4
3
  import * as i0 from "@angular/core";
5
4
  export declare class FvPhoneFieldComponent implements OnInit, OnDestroy, OnChanges {
6
5
  label: string;
7
- control: FormControl;
6
+ control: any;
8
7
  disabled: boolean;
9
8
  schema: ValidationSchema;
10
9
  blur: EventEmitter<void>;
@@ -1,5 +1,4 @@
1
1
  import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
2
  import * as i0 from "@angular/core";
4
3
  export interface RadioOption {
5
4
  value: any;
@@ -8,7 +7,7 @@ export interface RadioOption {
8
7
  }
9
8
  export declare class FvRadioGroupComponent implements OnInit, OnChanges {
10
9
  label: string;
11
- control: FormControl;
10
+ control: any;
12
11
  options: RadioOption[];
13
12
  disabled: boolean;
14
13
  required: boolean;
@@ -1,12 +1,11 @@
1
1
  import { EventEmitter, OnInit, OnDestroy, ElementRef } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
2
  import { ValidationSchema } from '@fovestta2/validation-engine';
4
3
  import * as i0 from "@angular/core";
5
4
  export declare class FvRichTextEditorComponent implements OnInit, OnDestroy {
6
5
  label: string;
7
6
  placeholder: string;
8
7
  schema: ValidationSchema;
9
- control: FormControl;
8
+ control: any;
10
9
  disabled: boolean;
11
10
  readonly: boolean;
12
11
  minHeight: number;
@@ -1,12 +1,12 @@
1
1
  import { OnInit, OnDestroy } from '@angular/core';
2
- import { FormGroup, FormControl } from '@angular/forms';
2
+ import { FormGroup } from '@angular/forms';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class FvServicePeriodComponent implements OnInit, OnDestroy {
5
5
  label: string;
6
6
  group: FormGroup;
7
7
  startField: string;
8
8
  endField: string;
9
- control?: FormControl;
9
+ control?: any;
10
10
  years: number;
11
11
  months: number;
12
12
  days: number;
@@ -1,11 +1,10 @@
1
1
  import { EventEmitter, OnInit, OnDestroy, OnChanges, SimpleChanges } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
2
  import { ValidationSchema } from '@fovestta2/validation-engine';
4
3
  import * as i0 from "@angular/core";
5
4
  export declare class FvTimeFieldComponent implements OnInit, OnDestroy, OnChanges {
6
5
  label: string;
7
6
  schema: ValidationSchema;
8
- control: FormControl;
7
+ control: any;
9
8
  disabled: boolean;
10
9
  readonly: boolean;
11
10
  placeholder: string;
@@ -1,9 +1,8 @@
1
1
  import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
2
  import * as i0 from "@angular/core";
4
3
  export declare class FvToggleComponent implements OnInit, OnChanges {
5
4
  label: string;
6
- control: FormControl;
5
+ control: any;
7
6
  disabled: boolean;
8
7
  required: boolean;
9
8
  valueChange: EventEmitter<boolean>;
@@ -1,10 +1,9 @@
1
1
  import { OnInit, OnDestroy, OnChanges, SimpleChanges, EventEmitter } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
2
  import { ValidationSchema } from '@fovestta2/validation-engine';
4
3
  import * as i0 from "@angular/core";
5
4
  export declare class FvUanFieldComponent implements OnInit, OnDestroy, OnChanges {
6
5
  label: string;
7
- control: FormControl;
6
+ control: any;
8
7
  disabled: boolean;
9
8
  schema: ValidationSchema;
10
9
  blur: EventEmitter<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fovestta2/web-angular",
3
- "version": "1.1.8",
3
+ "version": "1.1.9",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },