@skyux/lookup 5.9.1 → 5.9.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/documentation.json +5 -5
- package/esm2015/lib/modules/autocomplete/autocomplete.component.js.map +1 -1
- package/esm2015/lib/modules/country-field/country-field.component.js.map +1 -1
- package/esm2015/lib/modules/lookup/lookup-autocomplete-adapter.js.map +1 -1
- package/esm2015/lib/modules/lookup/lookup.component.js.map +1 -1
- package/esm2015/lib/modules/lookup/types/lookup-show-more-native-picker-config.js.map +1 -1
- package/fesm2015/skyux-lookup.js.map +1 -1
- package/lib/modules/autocomplete/autocomplete.component.d.ts +2 -2
- package/lib/modules/lookup/lookup-autocomplete-adapter.d.ts +1 -1
- package/lib/modules/lookup/types/lookup-show-more-native-picker-config.d.ts +1 -1
- package/package.json +10 -10
|
@@ -87,8 +87,8 @@ export declare class SkyAutocompleteComponent implements OnDestroy, AfterContent
|
|
|
87
87
|
* The autocomplete component injects search result values into the template
|
|
88
88
|
* as `item` variables that reference all of the object properties of the search results.
|
|
89
89
|
*/
|
|
90
|
-
set searchResultTemplate(value: TemplateRef<
|
|
91
|
-
get searchResultTemplate(): TemplateRef<
|
|
90
|
+
set searchResultTemplate(value: TemplateRef<unknown>);
|
|
91
|
+
get searchResultTemplate(): TemplateRef<unknown>;
|
|
92
92
|
/**
|
|
93
93
|
* Specifies the minimum number of characters that users must enter before
|
|
94
94
|
* the autocomplete component searches the data source and displays search
|
|
@@ -41,7 +41,7 @@ export declare class SkyLookupAutocompleteAdapter {
|
|
|
41
41
|
* injects values into the template as `item` variables that reference all the object
|
|
42
42
|
* properties of the options.
|
|
43
43
|
*/
|
|
44
|
-
searchResultTemplate: TemplateRef<
|
|
44
|
+
searchResultTemplate: TemplateRef<unknown>;
|
|
45
45
|
/**
|
|
46
46
|
* Specifies the minimum number of characters that users must enter before
|
|
47
47
|
* the lookup component searches the data source and displays search results
|
|
@@ -10,7 +10,7 @@ export interface SkyLookupShowMoreNativePickerConfig {
|
|
|
10
10
|
* properties of the options. If you do not specify a template, the picker uses
|
|
11
11
|
* the same template as the dropdown list.
|
|
12
12
|
*/
|
|
13
|
-
itemTemplate?: TemplateRef<
|
|
13
|
+
itemTemplate?: TemplateRef<unknown>;
|
|
14
14
|
/**
|
|
15
15
|
* Specifies a title for the picker.
|
|
16
16
|
* @default "Select an option/Select options"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/lookup",
|
|
3
|
-
"version": "5.9.
|
|
3
|
+
"version": "5.9.2",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -21,15 +21,15 @@
|
|
|
21
21
|
"@angular/core": "^12.2.16",
|
|
22
22
|
"@angular/forms": "^12.2.16",
|
|
23
23
|
"@angular/platform-browser": "^12.2.16",
|
|
24
|
-
"@skyux-sdk/testing": "5.9.
|
|
25
|
-
"@skyux/core": "5.9.
|
|
26
|
-
"@skyux/forms": "5.9.
|
|
27
|
-
"@skyux/i18n": "5.9.
|
|
28
|
-
"@skyux/indicators": "5.9.
|
|
29
|
-
"@skyux/layout": "5.9.
|
|
30
|
-
"@skyux/lists": "5.9.
|
|
31
|
-
"@skyux/modals": "5.9.
|
|
32
|
-
"@skyux/theme": "5.9.
|
|
24
|
+
"@skyux-sdk/testing": "5.9.2",
|
|
25
|
+
"@skyux/core": "5.9.2",
|
|
26
|
+
"@skyux/forms": "5.9.2",
|
|
27
|
+
"@skyux/i18n": "5.9.2",
|
|
28
|
+
"@skyux/indicators": "5.9.2",
|
|
29
|
+
"@skyux/layout": "5.9.2",
|
|
30
|
+
"@skyux/lists": "5.9.2",
|
|
31
|
+
"@skyux/modals": "5.9.2",
|
|
32
|
+
"@skyux/theme": "5.9.2"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"intl-tel-input": "17.0.16",
|