@sumaris-net/ngx-components 1.20.1 → 1.20.2

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sumaris-net/ngx-components",
3
3
  "description": "SUMARiS Angular components",
4
- "version": "1.20.1",
4
+ "version": "1.20.2",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -4,7 +4,7 @@ import { BehaviorSubject, Observable } from 'rxjs';
4
4
  import { LoadResult, SuggestFn, SuggestService } from '../../services/entity-service.class';
5
5
  import { InputElement } from '../../inputs';
6
6
  import { DisplayFn, EqualsFn } from '../../form/field.model';
7
- import { FloatLabelType } from '@angular/material/form-field';
7
+ import { FloatLabelType, MatFormFieldAppearance } from '@angular/material/form-field';
8
8
  import { MatSelect } from '@angular/material/select';
9
9
  import { MatAutocomplete, MatAutocompleteTrigger } from '@angular/material/autocomplete';
10
10
  import { IonSearchbar } from '@ionic/angular';
@@ -51,6 +51,7 @@ export declare class MatAutocompleteField implements OnInit, OnDestroy, InputEle
51
51
  formControl: FormControl;
52
52
  formControlName: string;
53
53
  floatLabel: FloatLabelType;
54
+ appearance: MatFormFieldAppearance;
54
55
  placeholder: string;
55
56
  suggestFn: SuggestFn<any, any>;
56
57
  required: boolean;
@@ -1,7 +1,7 @@
1
1
  import { ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
2
2
  import { ControlValueAccessor, FormControl, FormGroupDirective } from '@angular/forms';
3
3
  import { BehaviorSubject, Observable } from 'rxjs';
4
- import { FloatLabelType } from '@angular/material/form-field';
4
+ import { FloatLabelType, MatFormFieldAppearance } from '@angular/material/form-field';
5
5
  import { MatAutocomplete, MatAutocompleteSelectedEvent, MatAutocompleteTrigger } from '@angular/material/autocomplete';
6
6
  import { InputElement } from '../../inputs';
7
7
  import { SuggestFn } from '../../services/entity-service.class';
@@ -19,6 +19,7 @@ export declare class MatChipsField implements OnInit, OnDestroy, InputElement, C
19
19
  formControl: FormControl;
20
20
  formControlName: string;
21
21
  floatLabel: FloatLabelType;
22
+ appearance: MatFormFieldAppearance;
22
23
  placeholder: string;
23
24
  suggestFn: SuggestFn<any, any>;
24
25
  required: boolean;
@@ -3,7 +3,7 @@ import { ControlValueAccessor, FormControl, FormGroupDirective } from '@angular/
3
3
  import { BehaviorSubject, Observable } from 'rxjs';
4
4
  import { InputElement, selectInputContent } from '../../inputs';
5
5
  import { EqualsFn, DisplayFn } from '../../form/field.model';
6
- import { FloatLabelType } from '@angular/material/form-field';
6
+ import { FloatLabelType, MatFormFieldAppearance } from '@angular/material/form-field';
7
7
  import { IonSlides } from '@ionic/angular';
8
8
  import { MatButton } from '@angular/material/button';
9
9
  export declare class MatSwipeField implements OnInit, InputElement, OnDestroy, ControlValueAccessor {
@@ -28,6 +28,7 @@ export declare class MatSwipeField implements OnInit, InputElement, OnDestroy, C
28
28
  formControl: FormControl;
29
29
  formControlName: string;
30
30
  floatLabel: FloatLabelType;
31
+ appearance: MatFormFieldAppearance;
31
32
  placeholder: string;
32
33
  debug: boolean;
33
34
  required: boolean;