@skyux/lookup 9.5.0 → 9.6.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 +2103 -2001
- package/esm2022/lib/modules/autocomplete/autocomplete.component.mjs +2 -2
- package/esm2022/lib/modules/lookup/lookup-show-more-modal.component.mjs +3 -3
- package/esm2022/lib/modules/lookup/lookup.component.mjs +6 -1
- package/esm2022/lib/modules/lookup/types/lookup-show-more-native-picker-config.mjs +1 -1
- package/esm2022/lib/modules/search/search.component.mjs +3 -3
- package/esm2022/lib/modules/selection-modal/types/selection-modal-open-args.mjs +1 -1
- package/esm2022/lib/modules/shared/sky-lookup-resources.module.mjs +1 -3
- package/fesm2022/skyux-lookup.mjs +10 -7
- package/fesm2022/skyux-lookup.mjs.map +1 -1
- package/lib/modules/lookup/types/lookup-show-more-native-picker-config.d.ts +7 -0
- package/lib/modules/selection-modal/types/selection-modal-open-args.d.ts +1 -1
- package/package.json +10 -10
|
@@ -14,6 +14,13 @@ export interface SkyLookupShowMoreNativePickerConfig {
|
|
|
14
14
|
/**
|
|
15
15
|
* The title for the picker.
|
|
16
16
|
* @default "Select an option/Select options"
|
|
17
|
+
* @deprecated Use the `selectionDescriptor` input to give context to the title and accessibility labels instead.
|
|
17
18
|
*/
|
|
18
19
|
title?: string;
|
|
20
|
+
/**
|
|
21
|
+
* A descriptor for the item or items being selected. Use a plural term when the lookup's `selectMode` is set to `'multiple'`; otherwise, use a singular term. The descriptor helps set the picker's `aria-label` attributes for the multiselect toolbar controls, the search input, and the save button to provide text equivalents for screen readers [to support accessibility](https://developer.blackbaud.com/skyux/components/checkbox#accessibility).
|
|
22
|
+
* For example, when the descriptor is "constituents," the search input's `aria-label` is "Search constituents." For more information about the `aria-label` attribute, see the [WAI-ARIA definition](https://www.w3.org/TR/wai-aria/#aria-label).
|
|
23
|
+
* @default "item"/"items"
|
|
24
|
+
*/
|
|
25
|
+
selectionDescriptor?: string;
|
|
19
26
|
}
|
|
@@ -63,7 +63,7 @@ export interface SkySelectionModalOpenArgs {
|
|
|
63
63
|
wrapperClass?: string;
|
|
64
64
|
/**
|
|
65
65
|
* A descriptor for the item or items being selected. Use a plural term when `selectMode` is set to `multiple`; otherwise, use a singular term. The descriptor helps set the selection modal's `aria-label` attributes for the multiselect toolbar controls, the search input, and the save button to provide text equivalents for screen readers [to support accessibility](https://developer.blackbaud.com/skyux/components/checkbox#accessibility).
|
|
66
|
-
* For example, when the descriptor is
|
|
66
|
+
* For example, when the descriptor is "constituents," the search input's `aria-label` is "Search constituents." For more information about the `aria-label` attribute, see the [WAI-ARIA definition](https://www.w3.org/TR/wai-aria/#aria-label).
|
|
67
67
|
* @default "item"/"items"
|
|
68
68
|
*/
|
|
69
69
|
selectionDescriptor?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/lookup",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.6.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.6.0",
|
|
46
|
+
"@skyux/core": "9.6.0",
|
|
47
|
+
"@skyux/forms": "9.6.0",
|
|
48
|
+
"@skyux/i18n": "9.6.0",
|
|
49
|
+
"@skyux/indicators": "9.6.0",
|
|
50
|
+
"@skyux/layout": "9.6.0",
|
|
51
|
+
"@skyux/lists": "9.6.0",
|
|
52
|
+
"@skyux/modals": "9.6.0",
|
|
53
|
+
"@skyux/theme": "9.6.0"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"intl-tel-input": "18.2.1",
|