@skyux/lookup 7.6.1 → 7.7.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 +363 -339
- package/esm2020/lib/modules/autocomplete/autocomplete.component.mjs +1 -1
- package/esm2020/lib/modules/lookup/lookup.component.mjs +2 -1
- package/esm2020/lib/modules/selection-modal/selection-modal.service.mjs +2 -1
- package/esm2020/lib/modules/selection-modal/types/selection-modal-open-args.mjs +1 -1
- package/fesm2015/skyux-lookup.mjs +2 -0
- package/fesm2015/skyux-lookup.mjs.map +1 -1
- package/fesm2020/skyux-lookup.mjs +2 -0
- package/fesm2020/skyux-lookup.mjs.map +1 -1
- package/lib/modules/autocomplete/autocomplete.component.d.ts +3 -2
- package/lib/modules/lookup/lookup.component.d.ts +5 -3
- package/lib/modules/selection-modal/types/selection-modal-open-args.d.ts +5 -0
- package/package.json +10 -10
|
@@ -21,9 +21,10 @@ interface SkyAutocompleteSearchResult {
|
|
|
21
21
|
export declare class SkyAutocompleteComponent implements OnDestroy, AfterViewInit {
|
|
22
22
|
#private;
|
|
23
23
|
/**
|
|
24
|
-
* The HTML element ID
|
|
25
|
-
* the autocomplete text input. This sets the input's `aria-labelledby` attribute
|
|
24
|
+
* The HTML element ID of the element that labels
|
|
25
|
+
* the autocomplete text input. This sets the input's `aria-labelledby` attribute to provide a text equivalent for screen readers
|
|
26
26
|
* [to support accessibility](https://developer.blackbaud.com/skyux/learn/accessibility).
|
|
27
|
+
* For more information about the `aria-labelledby` attribute, see the [WAI-ARIA definition](https://www.w3.org/TR/wai-aria/#aria-labelledby).
|
|
27
28
|
*/
|
|
28
29
|
ariaLabelledBy: string | undefined;
|
|
29
30
|
/**
|
|
@@ -24,16 +24,18 @@ export declare class SkyLookupComponent extends SkyLookupAutocompleteAdapter imp
|
|
|
24
24
|
inputBoxHostSvc?: SkyInputBoxHostService | undefined;
|
|
25
25
|
themeSvc?: SkyThemeService | undefined;
|
|
26
26
|
/**
|
|
27
|
-
* The ARIA label for the typeahead search input
|
|
27
|
+
* The ARIA label for the typeahead search input. This sets the input's `aria-label` attribute to provide a text equivalent for
|
|
28
28
|
* [to support accessibility](https://developer.blackbaud.com/skyux/learn/accessibility).
|
|
29
29
|
* If the input includes a visible label, use `ariaLabelledBy` instead.
|
|
30
|
+
* For more information about the `aria-label` attribute, see the [WAI-ARIA definition](https://www.w3.org/TR/wai-aria/#aria-label).
|
|
30
31
|
*/
|
|
31
32
|
ariaLabel: string | undefined;
|
|
32
33
|
/**
|
|
33
|
-
* The HTML element ID
|
|
34
|
-
* the typeahead search input. This sets the input's `aria-labelledby` attribute
|
|
34
|
+
* The HTML element ID of the element that labels
|
|
35
|
+
* the typeahead search input. This sets the input's `aria-labelledby` attribute to provide a text equivalent for
|
|
35
36
|
* [to support accessibility](https://developer.blackbaud.com/skyux/learn/accessibility).
|
|
36
37
|
* If the input does not include a visible label, use `ariaLabel` instead.
|
|
38
|
+
* For more information about the `aria-labelledby` attribute, see the [WAI-ARIA definition](https://www.w3.org/TR/wai-aria/#aria-labelledby).
|
|
37
39
|
*/
|
|
38
40
|
ariaLabelledBy: string | undefined;
|
|
39
41
|
/**
|
|
@@ -55,4 +55,9 @@ export interface SkySelectionModalOpenArgs {
|
|
|
55
55
|
* Called when users select the button to add options to the list.
|
|
56
56
|
*/
|
|
57
57
|
addClick?: (args: SkySelectionModalAddClickEventArgs) => void;
|
|
58
|
+
/**
|
|
59
|
+
* The CSS class to add to the modal, such as `ag-custom-component-popup` for
|
|
60
|
+
* using a modal as part of a cell editor in Data Entry Grid.
|
|
61
|
+
*/
|
|
62
|
+
wrapperClass?: string;
|
|
58
63
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/lookup",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.7.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -46,15 +46,15 @@
|
|
|
46
46
|
"@angular/core": "^14.2.11",
|
|
47
47
|
"@angular/forms": "^14.2.11",
|
|
48
48
|
"@angular/platform-browser": "^14.2.11",
|
|
49
|
-
"@skyux-sdk/testing": "7.
|
|
50
|
-
"@skyux/core": "7.
|
|
51
|
-
"@skyux/forms": "7.
|
|
52
|
-
"@skyux/i18n": "7.
|
|
53
|
-
"@skyux/indicators": "7.
|
|
54
|
-
"@skyux/layout": "7.
|
|
55
|
-
"@skyux/lists": "7.
|
|
56
|
-
"@skyux/modals": "7.
|
|
57
|
-
"@skyux/theme": "7.
|
|
49
|
+
"@skyux-sdk/testing": "7.7.0",
|
|
50
|
+
"@skyux/core": "7.7.0",
|
|
51
|
+
"@skyux/forms": "7.7.0",
|
|
52
|
+
"@skyux/i18n": "7.7.0",
|
|
53
|
+
"@skyux/indicators": "7.7.0",
|
|
54
|
+
"@skyux/layout": "7.7.0",
|
|
55
|
+
"@skyux/lists": "7.7.0",
|
|
56
|
+
"@skyux/modals": "7.7.0",
|
|
57
|
+
"@skyux/theme": "7.7.0"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"intl-tel-input": "17.0.19",
|