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.
- package/fesm2022/chrv-components.mjs +22 -9
- package/fesm2022/chrv-components.mjs.map +1 -1
- package/lib/chr-form/chr-base-input/chr-base-input.component.d.ts +3 -1
- package/lib/chr-search-select/chr-search-select.component.d.ts +1 -1
- package/lib/chr-tag-select/chr-tag-select.component.d.ts +0 -1
- package/package.json +1 -1
- package/chrv-components-1.10.73.tgz +0 -0
|
@@ -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
|
-
|
|
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
|
|
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
|
Binary file
|