@skyux/popovers 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 +34 -34
- package/esm2020/lib/modules/dropdown/dropdown-item.component.mjs +2 -2
- package/esm2020/lib/modules/dropdown/dropdown-menu.component.mjs +2 -2
- package/esm2020/lib/modules/dropdown/dropdown.component.mjs +1 -1
- package/fesm2015/skyux-popovers.mjs +2 -2
- package/fesm2015/skyux-popovers.mjs.map +1 -1
- package/fesm2020/skyux-popovers.mjs +2 -2
- package/fesm2020/skyux-popovers.mjs.map +1 -1
- package/lib/modules/dropdown/dropdown-item.component.d.ts +1 -1
- package/lib/modules/dropdown/dropdown-menu.component.d.ts +3 -2
- package/lib/modules/dropdown/dropdown.component.d.ts +2 -1
- package/package.json +6 -6
|
@@ -11,7 +11,7 @@ export declare class SkyDropdownItemComponent implements AfterViewInit {
|
|
|
11
11
|
* [to support accessibility](https://developer.blackbaud.com/skyux/learn/accessibility)
|
|
12
12
|
* by indicating how the item functions and what it controls. For information about
|
|
13
13
|
* how an ARIA role indicates what an item represents on a web page, see the
|
|
14
|
-
* [WAI-ARIA roles model](https://www.w3.org/WAI/PF/aria
|
|
14
|
+
* [WAI-ARIA roles model](https://www.w3.org/WAI/PF/aria/#roles).
|
|
15
15
|
* @default "menuitem"
|
|
16
16
|
*/
|
|
17
17
|
set ariaRole(value: string | undefined);
|
|
@@ -11,8 +11,9 @@ export declare class SkyDropdownMenuComponent implements AfterContentInit, OnDes
|
|
|
11
11
|
#private;
|
|
12
12
|
/**
|
|
13
13
|
* The HTML element ID of the element that labels
|
|
14
|
-
* the dropdown menu. This sets the dropdown menu's `aria-labelledby` attribute
|
|
14
|
+
* the dropdown menu. This sets the dropdown menu's `aria-labelledby` attribute to provide a text equivalent for
|
|
15
15
|
* [to support accessibility](https://developer.blackbaud.com/skyux/learn/accessibility).
|
|
16
|
+
* For more information about the `aria-labelledby` attribute, see the [WAI-ARIA definition](https://www.w3.org/TR/wai-aria/#aria-labelledby).
|
|
16
17
|
*/
|
|
17
18
|
ariaLabelledBy: string | undefined;
|
|
18
19
|
/**
|
|
@@ -21,7 +22,7 @@ export declare class SkyDropdownMenuComponent implements AfterContentInit, OnDes
|
|
|
21
22
|
* by indicating how the dropdown menu functions and what it controls. The dropdown button
|
|
22
23
|
* inherits this value to set its `aria-haspopup` property. For information
|
|
23
24
|
* about how an ARIA role indicates what an item represents on a web page, see the
|
|
24
|
-
* [WAI-ARIA roles model](https://www.w3.org/WAI/PF/aria
|
|
25
|
+
* [WAI-ARIA roles model](https://www.w3.org/WAI/PF/aria/#roles).
|
|
25
26
|
* @default "menu"
|
|
26
27
|
*/
|
|
27
28
|
set ariaRole(value: string | undefined);
|
|
@@ -41,8 +41,9 @@ export declare class SkyDropdownComponent implements OnInit, OnDestroy {
|
|
|
41
41
|
set dismissOnBlur(value: boolean | undefined);
|
|
42
42
|
get dismissOnBlur(): boolean;
|
|
43
43
|
/**
|
|
44
|
-
* The ARIA label for the dropdown. This sets the dropdown's `aria-label` attribute
|
|
44
|
+
* The ARIA label for the dropdown. This sets the dropdown's `aria-label` attribute to provide a text equivalent for screen readers
|
|
45
45
|
* [to support accessibility](https://developer.blackbaud.com/skyux/learn/accessibility).
|
|
46
|
+
* For more information about the `aria-label` attribute, see the [WAI-ARIA definition](https://www.w3.org/TR/wai-aria/#aria-label).
|
|
46
47
|
*/
|
|
47
48
|
label: string | undefined;
|
|
48
49
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/popovers",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.7.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"@angular/common": "^14.2.11",
|
|
45
45
|
"@angular/core": "^14.2.11",
|
|
46
46
|
"@angular/platform-browser": "^14.2.11",
|
|
47
|
-
"@skyux-sdk/testing": "7.
|
|
48
|
-
"@skyux/core": "7.
|
|
49
|
-
"@skyux/i18n": "7.
|
|
50
|
-
"@skyux/indicators": "7.
|
|
51
|
-
"@skyux/theme": "7.
|
|
47
|
+
"@skyux-sdk/testing": "7.7.0",
|
|
48
|
+
"@skyux/core": "7.7.0",
|
|
49
|
+
"@skyux/i18n": "7.7.0",
|
|
50
|
+
"@skyux/indicators": "7.7.0",
|
|
51
|
+
"@skyux/theme": "7.7.0"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"tslib": "^2.3.1"
|