@skyux/lookup 6.9.0 → 6.10.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.
- package/documentation.json +610 -656
- package/esm2020/lib/modules/autocomplete/autocomplete.component.mjs +40 -44
- package/esm2020/lib/modules/country-field/country-field.component.mjs +10 -7
- package/fesm2015/skyux-lookup.mjs +50 -50
- package/fesm2015/skyux-lookup.mjs.map +1 -1
- package/fesm2020/skyux-lookup.mjs +49 -50
- package/fesm2020/skyux-lookup.mjs.map +1 -1
- package/lib/modules/autocomplete/autocomplete.component.d.ts +1 -3
- package/lib/modules/country-field/country-field.component.d.ts +1 -1
- package/package.json +10 -10
|
@@ -82,8 +82,7 @@ export declare class SkyAutocompleteComponent implements OnDestroy, AfterViewIni
|
|
|
82
82
|
* The autocomplete component injects search result values into the template
|
|
83
83
|
* as `item` variables that reference all of the object properties of the search results.
|
|
84
84
|
*/
|
|
85
|
-
|
|
86
|
-
get searchResultTemplate(): TemplateRef<unknown>;
|
|
85
|
+
searchResultTemplate: TemplateRef<unknown> | undefined;
|
|
87
86
|
/**
|
|
88
87
|
* Specifies the minimum number of characters that users must enter before
|
|
89
88
|
* the autocomplete component searches the data source and displays search
|
|
@@ -152,7 +151,6 @@ export declare class SkyAutocompleteComponent implements OnDestroy, AfterViewIni
|
|
|
152
151
|
get showActionsArea(): boolean;
|
|
153
152
|
isSearchingAsync: boolean;
|
|
154
153
|
searchResultsCount: number | undefined;
|
|
155
|
-
private defaultSearchResultTemplate;
|
|
156
154
|
private set inputDirective(value);
|
|
157
155
|
private get inputDirective();
|
|
158
156
|
private resultsTemplateRef;
|
|
@@ -54,7 +54,7 @@ export declare class SkyCountryFieldComponent implements AfterViewInit, ControlV
|
|
|
54
54
|
countrySearchFormControl: FormControl;
|
|
55
55
|
isInputFocused: boolean;
|
|
56
56
|
searchTextMinimumCharacters: number;
|
|
57
|
-
countrySearchAutocompleteDirective: SkyAutocompleteInputDirective;
|
|
57
|
+
countrySearchAutocompleteDirective: SkyAutocompleteInputDirective | undefined;
|
|
58
58
|
set selectedCountry(newCountry: SkyCountryFieldCountry | undefined);
|
|
59
59
|
get selectedCountry(): SkyCountryFieldCountry | undefined;
|
|
60
60
|
currentTheme: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/lookup",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.10.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -45,15 +45,15 @@
|
|
|
45
45
|
"@angular/core": "^13.3.2",
|
|
46
46
|
"@angular/forms": "^13.3.2",
|
|
47
47
|
"@angular/platform-browser": "^13.3.2",
|
|
48
|
-
"@skyux-sdk/testing": "6.
|
|
49
|
-
"@skyux/core": "6.
|
|
50
|
-
"@skyux/forms": "6.
|
|
51
|
-
"@skyux/i18n": "6.
|
|
52
|
-
"@skyux/indicators": "6.
|
|
53
|
-
"@skyux/layout": "6.
|
|
54
|
-
"@skyux/lists": "6.
|
|
55
|
-
"@skyux/modals": "6.
|
|
56
|
-
"@skyux/theme": "6.
|
|
48
|
+
"@skyux-sdk/testing": "6.10.0",
|
|
49
|
+
"@skyux/core": "6.10.0",
|
|
50
|
+
"@skyux/forms": "6.10.0",
|
|
51
|
+
"@skyux/i18n": "6.10.0",
|
|
52
|
+
"@skyux/indicators": "6.10.0",
|
|
53
|
+
"@skyux/layout": "6.10.0",
|
|
54
|
+
"@skyux/lists": "6.10.0",
|
|
55
|
+
"@skyux/modals": "6.10.0",
|
|
56
|
+
"@skyux/theme": "6.10.0"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"intl-tel-input": "17.0.16",
|