@gravitee/ui-particles-angular 7.37.4 → 7.37.5

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.
@@ -47,6 +47,9 @@ export declare class GioFormTagsInputComponent implements MatFormFieldControl<Ta
47
47
  useAutocompleteOptionValueOnly: boolean;
48
48
  set tagInput(v: ElementRef<HTMLInputElement> | null);
49
49
  private _tagInput;
50
+ autocompleteFilteredOptions$?: Observable<Record<string, string>[]>;
51
+ _displayValueWith?: (value: string) => Observable<string>;
52
+ private displayValueCache;
50
53
  get value(): Tags | null;
51
54
  set value(_tags: Tags | null);
52
55
  private _value;
@@ -55,7 +58,6 @@ export declare class GioFormTagsInputComponent implements MatFormFieldControl<Ta
55
58
  get placeholder(): string;
56
59
  set placeholder(plh: string);
57
60
  private _placeholder;
58
- autocompleteFilteredOptions$?: Observable<Record<string, string>[]>;
59
61
  focused: boolean;
60
62
  get empty(): boolean;
61
63
  get shouldLabelFloat(): boolean;
@@ -65,8 +67,6 @@ export declare class GioFormTagsInputComponent implements MatFormFieldControl<Ta
65
67
  get disabled(): boolean;
66
68
  set disabled(dis: boolean);
67
69
  private _disabled;
68
- _displayValueWith?: (value: string) => Observable<string>;
69
- private displayValueCache;
70
70
  get errorState(): boolean;
71
71
  controlType?: string;
72
72
  autofilled?: boolean;
@@ -74,6 +74,7 @@ export declare class GioFormTagsInputComponent implements MatFormFieldControl<Ta
74
74
  constructor(ngControl: NgControl, elRef: ElementRef, fm: FocusMonitor, changeDetectorRef: ChangeDetectorRef);
75
75
  ngDoCheck(): void;
76
76
  ngOnDestroy(): void;
77
+ setDisabledState(isDisabled: boolean): void;
77
78
  writeValue(value: string[]): void;
78
79
  registerOnChange(fn: (tags: Tags | null) => void): void;
79
80
  registerOnTouched(fn: () => void): void;
@@ -1,6 +1,6 @@
1
1
  import { BaseHarnessFilters, ComponentHarness, HarnessPredicate, TestKey } from '@angular/cdk/testing';
2
2
  import { MatAutocompleteHarness } from '@angular/material/autocomplete/testing';
3
- import { MatChipListHarness } from '@angular/material/chips/testing';
3
+ import { MatChipHarness, MatChipListHarness } from '@angular/material/chips/testing';
4
4
  export declare type GioFormTagsInputHarnessFilters = BaseHarnessFilters;
5
5
  export declare class GioFormTagsInputHarness extends ComponentHarness {
6
6
  static hostSelector: string;
@@ -13,6 +13,7 @@ export declare class GioFormTagsInputHarness extends ComponentHarness {
13
13
  */
14
14
  static with(options?: GioFormTagsInputHarnessFilters): HarnessPredicate<GioFormTagsInputHarness>;
15
15
  protected getMatChipListHarness: import("@angular/cdk/testing").AsyncFactoryFn<MatChipListHarness>;
16
+ protected getMatChipsHarness: import("@angular/cdk/testing").AsyncFactoryFn<MatChipHarness[]>;
16
17
  isDisabled(): Promise<boolean>;
17
18
  getTags(): Promise<string[]>;
18
19
  addTag(tag: string, separatorKey?: TestKey | 'blur'): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravitee/ui-particles-angular",
3
- "version": "7.37.4",
3
+ "version": "7.37.5",
4
4
  "description": "Gravitee.io - UI Particles Angular",
5
5
  "repository": {
6
6
  "type": "git",