@skyux/lookup 9.3.0 → 9.4.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 +1928 -1920
- package/esm2022/lib/modules/autocomplete/autocomplete.component.mjs +3 -3
- package/esm2022/lib/modules/country-field/country-field.component.mjs +3 -3
- package/esm2022/lib/modules/lookup/lookup-show-more-modal.component.mjs +3 -3
- package/esm2022/lib/modules/lookup/lookup.component.mjs +3 -3
- package/esm2022/lib/modules/search/search.component.mjs +8 -5
- package/esm2022/lib/modules/selection-modal/selection-modal.component.mjs +3 -3
- package/esm2022/lib/modules/shared/sky-lookup-resources.module.mjs +2 -1
- package/fesm2022/skyux-lookup.mjs +17 -13
- package/fesm2022/skyux-lookup.mjs.map +1 -1
- package/lib/modules/search/search.component.d.ts +6 -3
- package/package.json +10 -10
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
import { AnimationEvent } from '@angular/animations';
|
|
2
2
|
import { ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
3
|
-
import { SkyMediaQueryService } from '@skyux/core';
|
|
4
|
-
import { Subscription } from 'rxjs';
|
|
3
|
+
import { SkyContentInfo, SkyMediaQueryService } from '@skyux/core';
|
|
4
|
+
import { Observable, Subscription } from 'rxjs';
|
|
5
5
|
import { SkySearchAdapterService } from './search-adapter.service';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class SkySearchComponent implements OnDestroy, OnInit, OnChanges {
|
|
8
8
|
#private;
|
|
9
9
|
/**
|
|
10
|
-
* The ARIA label for the search. This sets the search's `aria-label` attribute to provide a text equivalent for screen readers
|
|
10
|
+
* The ARIA label for the search input. This sets the search input's `aria-label` attribute to provide a text equivalent for screen readers
|
|
11
11
|
* [to support accessibility](https://developer.blackbaud.com/skyux/learn/accessibility).
|
|
12
|
+
* Use a context-sensitive label, such as "Search constituents." Context is especially important when multiple search inputs are in close proximity.
|
|
13
|
+
* In toolbars, search inputs use the `listDescriptor` to provide context, and the ARIA label defaults to "Search <listDescriptor>."
|
|
12
14
|
* If the box includes a visible label, use `ariaLabelledBy` instead.
|
|
13
15
|
* For more information about the `aria-label` attribute, see the [WAI-ARIA definition](https://www.w3.org/TR/wai-aria/#aria-label).
|
|
14
16
|
*/
|
|
@@ -72,6 +74,7 @@ export declare class SkySearchComponent implements OnDestroy, OnInit, OnChanges
|
|
|
72
74
|
isFullWidth: boolean;
|
|
73
75
|
mobileSearchShown: boolean;
|
|
74
76
|
searchButtonShown: boolean;
|
|
77
|
+
protected contentInfoObs: Observable<SkyContentInfo> | undefined;
|
|
75
78
|
constructor(mediaQueryService: SkyMediaQueryService, elRef: ElementRef, searchAdapter: SkySearchAdapterService, changeRef: ChangeDetectorRef);
|
|
76
79
|
ngOnInit(): void;
|
|
77
80
|
ngOnChanges(changes: SimpleChanges): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/lookup",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.4.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -42,15 +42,15 @@
|
|
|
42
42
|
"@angular/core": "^16.2.5",
|
|
43
43
|
"@angular/forms": "^16.2.5",
|
|
44
44
|
"@angular/platform-browser": "^16.2.5",
|
|
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.4.0",
|
|
46
|
+
"@skyux/core": "9.4.0",
|
|
47
|
+
"@skyux/forms": "9.4.0",
|
|
48
|
+
"@skyux/i18n": "9.4.0",
|
|
49
|
+
"@skyux/indicators": "9.4.0",
|
|
50
|
+
"@skyux/layout": "9.4.0",
|
|
51
|
+
"@skyux/lists": "9.4.0",
|
|
52
|
+
"@skyux/modals": "9.4.0",
|
|
53
|
+
"@skyux/theme": "9.4.0"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"intl-tel-input": "18.2.1",
|