chrv-components 1.10.73 → 1.10.75

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.
@@ -21,7 +21,9 @@ export declare class ChrBaseInputComponent implements OnInit, ControlValueAccess
21
21
  * The name of the input. It's the model's property name or the key that will be set to the value object
22
22
  */
23
23
  name: string | null;
24
- value: any | null;
24
+ private _value;
25
+ get value(): any | null;
26
+ set value(value: any | null);
25
27
  private valueSubject;
26
28
  private valueSubscription;
27
29
  /**
@@ -58,7 +58,7 @@ export declare class ChrSearchSelectComponent extends ChrBaseInputComponent impl
58
58
  * @param input the input in which the user should type
59
59
  */
60
60
  protected increment: (input: any) => void;
61
- protected void: () => void;
61
+ protected voidd: () => void;
62
62
  protected enableShowPanel: (input: any) => void;
63
63
  protected disableShowPanel: () => void;
64
64
  protected addFromText: (event: any) => void;
@@ -10,7 +10,6 @@ export declare class ChrTagSelectComponent extends ChrBaseInputComponent impleme
10
10
  autocomplete: MatAutocomplete;
11
11
  protected overrideShowResults: boolean;
12
12
  filteredModelOptions?: Observable<any>;
13
- value: any[] | null;
14
13
  protected textInputValue: string;
15
14
  private values;
16
15
  placeholder?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chrv-components",
3
- "version": "1.10.73",
3
+ "version": "1.10.75",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=17.3.0",
6
6
  "@angular/core": ">=17.3.0",
Binary file