@skyux/lookup 11.16.0 → 11.17.0
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.
|
@@ -108,9 +108,13 @@ export declare class SkyLookupComponent extends SkyLookupAutocompleteAdapter imp
|
|
|
108
108
|
*/
|
|
109
109
|
openChange: EventEmitter<boolean>;
|
|
110
110
|
get tokens(): SkyToken[] | undefined;
|
|
111
|
-
set tokens(
|
|
111
|
+
set tokens(tokens: SkyToken[] | undefined);
|
|
112
|
+
/**
|
|
113
|
+
* @internal
|
|
114
|
+
* @deprecated This is exposed for unit tests only; refactor unit tests to
|
|
115
|
+
* derive the control value a different way.
|
|
116
|
+
*/
|
|
112
117
|
get value(): any[];
|
|
113
|
-
set value(newValue: any[]);
|
|
114
118
|
autocompleteController: Subject<SkyAutocompleteMessage>;
|
|
115
119
|
isInputFocused: boolean;
|
|
116
120
|
showMorePickerId: string | undefined;
|
|
@@ -135,9 +139,7 @@ export declare class SkyLookupComponent extends SkyLookupAutocompleteAdapter imp
|
|
|
135
139
|
onTokensKeyUp(event: KeyboardEvent): void;
|
|
136
140
|
onTokensRendered(): void;
|
|
137
141
|
writeValue(value: any[]): void;
|
|
138
|
-
|
|
139
|
-
onTouched: () => void;
|
|
140
|
-
registerOnChange(fn: (value: any) => void): void;
|
|
142
|
+
registerOnChange(fn: (value: any[]) => void): void;
|
|
141
143
|
registerOnTouched(fn: () => void): void;
|
|
142
144
|
setDisabledState(disabled: boolean): void;
|
|
143
145
|
clearSearchText(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/lookup",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.17.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -42,16 +42,16 @@
|
|
|
42
42
|
"@angular/core": "^18.2.8",
|
|
43
43
|
"@angular/forms": "^18.2.8",
|
|
44
44
|
"@angular/platform-browser": "^18.2.8",
|
|
45
|
-
"@skyux-sdk/testing": "11.
|
|
46
|
-
"@skyux/core": "11.
|
|
47
|
-
"@skyux/forms": "11.
|
|
48
|
-
"@skyux/i18n": "11.
|
|
49
|
-
"@skyux/icon": "11.
|
|
50
|
-
"@skyux/indicators": "11.
|
|
51
|
-
"@skyux/layout": "11.
|
|
52
|
-
"@skyux/lists": "11.
|
|
53
|
-
"@skyux/modals": "11.
|
|
54
|
-
"@skyux/theme": "11.
|
|
45
|
+
"@skyux-sdk/testing": "11.17.0",
|
|
46
|
+
"@skyux/core": "11.17.0",
|
|
47
|
+
"@skyux/forms": "11.17.0",
|
|
48
|
+
"@skyux/i18n": "11.17.0",
|
|
49
|
+
"@skyux/icon": "11.17.0",
|
|
50
|
+
"@skyux/indicators": "11.17.0",
|
|
51
|
+
"@skyux/layout": "11.17.0",
|
|
52
|
+
"@skyux/lists": "11.17.0",
|
|
53
|
+
"@skyux/modals": "11.17.0",
|
|
54
|
+
"@skyux/theme": "11.17.0"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"intl-tel-input": "24.4.0",
|