@skyux/lookup 9.7.0 → 9.9.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 +1405 -1405
- package/esm2022/lib/modules/country-field/country-field.component.mjs +5 -4
- package/esm2022/lib/modules/lookup/lookup.component.mjs +4 -3
- package/esm2022/lib/modules/search/search.component.mjs +2 -2
- package/fesm2022/skyux-lookup.mjs +12 -10
- package/fesm2022/skyux-lookup.mjs.map +1 -1
- package/lib/modules/country-field/country-field.component.d.ts +2 -0
- package/lib/modules/lookup/lookup.component.d.ts +2 -1
- package/package.json +10 -10
|
@@ -3,6 +3,7 @@ import { AbstractControl, ControlValueAccessor, UntypedFormControl, ValidationEr
|
|
|
3
3
|
import { SkyInputBoxHostService } from '@skyux/forms';
|
|
4
4
|
import { SkyThemeService } from '@skyux/theme';
|
|
5
5
|
import 'intl-tel-input';
|
|
6
|
+
import { Observable } from 'rxjs';
|
|
6
7
|
import { SkyAutocompleteInputDirective } from '../autocomplete/autocomplete-input.directive';
|
|
7
8
|
import { SkyAutocompleteSelectionChange } from '../autocomplete/types/autocomplete-selection-change';
|
|
8
9
|
import { SkyCountryFieldCountry } from './types/country';
|
|
@@ -64,6 +65,7 @@ export declare class SkyCountryFieldComponent implements AfterViewInit, ControlV
|
|
|
64
65
|
context: SkyCountryFieldContext | null;
|
|
65
66
|
currentTheme: string;
|
|
66
67
|
inputId: string;
|
|
68
|
+
protected ariaDescribedBy: Observable<string | undefined> | undefined;
|
|
67
69
|
inputTemplateRef: TemplateRef<unknown> | undefined;
|
|
68
70
|
searchIconTemplateRef: TemplateRef<unknown> | undefined;
|
|
69
71
|
constructor(changeDetector: ChangeDetectorRef, elRef: ElementRef, injector: Injector, inputBoxHostSvc?: SkyInputBoxHostService | undefined, themeSvc?: SkyThemeService);
|
|
@@ -3,7 +3,7 @@ import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
|
3
3
|
import { SkyInputBoxHostService } from '@skyux/forms';
|
|
4
4
|
import { SkyToken, SkyTokensMessage } from '@skyux/indicators';
|
|
5
5
|
import { SkyThemeService } from '@skyux/theme';
|
|
6
|
-
import { Subject } from 'rxjs';
|
|
6
|
+
import { Observable, Subject } from 'rxjs';
|
|
7
7
|
import { SkyAutocompleteInputDirective } from '../autocomplete/autocomplete-input.directive';
|
|
8
8
|
import { SkyAutocompleteMessage } from '../autocomplete/types/autocomplete-message';
|
|
9
9
|
import { SkyAutocompleteSearchAsyncArgs } from '../autocomplete/types/autocomplete-search-async-args';
|
|
@@ -107,6 +107,7 @@ export declare class SkyLookupComponent extends SkyLookupAutocompleteAdapter imp
|
|
|
107
107
|
showMorePickerId: string | undefined;
|
|
108
108
|
tokensController: Subject<SkyTokensMessage>;
|
|
109
109
|
protected controlId: string | undefined;
|
|
110
|
+
protected ariaDescribedBy: Observable<string | undefined> | undefined;
|
|
110
111
|
set autocompleteInputDirective(value: SkyAutocompleteInputDirective | undefined);
|
|
111
112
|
get autocompleteInputDirective(): SkyAutocompleteInputDirective | undefined;
|
|
112
113
|
showMoreButtonTemplateRef: TemplateRef<unknown> | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/lookup",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.9.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -42,15 +42,15 @@
|
|
|
42
42
|
"@angular/core": "^16.2.9",
|
|
43
43
|
"@angular/forms": "^16.2.9",
|
|
44
44
|
"@angular/platform-browser": "^16.2.9",
|
|
45
|
-
"@skyux-sdk/testing": "9.
|
|
46
|
-
"@skyux/core": "9.
|
|
47
|
-
"@skyux/forms": "9.
|
|
48
|
-
"@skyux/i18n": "9.
|
|
49
|
-
"@skyux/indicators": "9.
|
|
50
|
-
"@skyux/layout": "9.
|
|
51
|
-
"@skyux/lists": "9.
|
|
52
|
-
"@skyux/modals": "9.
|
|
53
|
-
"@skyux/theme": "9.
|
|
45
|
+
"@skyux-sdk/testing": "9.9.0",
|
|
46
|
+
"@skyux/core": "9.9.0",
|
|
47
|
+
"@skyux/forms": "9.9.0",
|
|
48
|
+
"@skyux/i18n": "9.9.0",
|
|
49
|
+
"@skyux/indicators": "9.9.0",
|
|
50
|
+
"@skyux/layout": "9.9.0",
|
|
51
|
+
"@skyux/lists": "9.9.0",
|
|
52
|
+
"@skyux/modals": "9.9.0",
|
|
53
|
+
"@skyux/theme": "9.9.0"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"intl-tel-input": "18.2.1",
|