@skyux/indicators 7.6.1 → 7.6.2
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 +25 -25
- package/esm2020/lib/modules/chevron/chevron.component.mjs +1 -1
- package/esm2020/lib/modules/tokens/token.component.mjs +1 -1
- package/esm2020/lib/modules/wait/wait.component.mjs +2 -1
- package/fesm2015/skyux-indicators.mjs +1 -0
- package/fesm2015/skyux-indicators.mjs.map +1 -1
- package/fesm2020/skyux-indicators.mjs +1 -0
- package/fesm2020/skyux-indicators.mjs.map +1 -1
- package/lib/modules/chevron/chevron.component.d.ts +4 -2
- package/lib/modules/tokens/token.component.d.ts +2 -1
- package/lib/modules/wait/wait.component.d.ts +1 -0
- package/package.json +5 -5
|
@@ -7,13 +7,15 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
export declare class SkyChevronComponent {
|
|
8
8
|
/**
|
|
9
9
|
* The element whose contents are controlled by the chevron.
|
|
10
|
-
* This sets the chevron's aria-controls attribute
|
|
10
|
+
* This sets the chevron's `aria-controls` attribute
|
|
11
11
|
* [to support accessibility](https://developer.blackbaud.com/skyux/learn/accessibility).
|
|
12
|
+
* For more information about the `aria-controls` attribute, see the [WAI-ARIA definition](https://www.w3.org/TR/wai-aria/#aria-controls).
|
|
12
13
|
*/
|
|
13
14
|
ariaControls: string | undefined;
|
|
14
15
|
/**
|
|
15
|
-
* The ARIA label for the chevron. This sets the chevron's aria-label attribute
|
|
16
|
+
* The ARIA label for the chevron. This sets the chevron's `aria-label` attribute to provide a text equivalent for screen readers
|
|
16
17
|
* [to support accessibility](https://developer.blackbaud.com/skyux/learn/accessibility).
|
|
18
|
+
* For more information about the `aria-label` attribute, see the [WAI-ARIA definition](https://www.w3.org/TR/wai-aria/#aria-label).
|
|
17
19
|
*/
|
|
18
20
|
ariaLabel: string | undefined;
|
|
19
21
|
/**
|
|
@@ -11,8 +11,9 @@ export declare class SkyTokenComponent {
|
|
|
11
11
|
set disabled(value: boolean | undefined);
|
|
12
12
|
get disabled(): boolean;
|
|
13
13
|
/**
|
|
14
|
-
* The ARIA label for the token's close button. This sets the button's `aria-label`
|
|
14
|
+
* The ARIA label for the token's close button. This sets the button's `aria-label` to provide a text equivalent for screen readers
|
|
15
15
|
* [to support accessibility](https://developer.blackbaud.com/skyux/learn/accessibility).
|
|
16
|
+
* For more information about the `aria-label` attribute, see the [WAI-ARIA definition](https://www.w3.org/TR/wai-aria/#aria-label).
|
|
16
17
|
* @default "Remove item"
|
|
17
18
|
*/
|
|
18
19
|
ariaLabel: string | undefined;
|
|
@@ -12,6 +12,7 @@ export declare class SkyWaitComponent implements OnInit, OnDestroy {
|
|
|
12
12
|
* The default value varies based on whether the wait is for an element or a page
|
|
13
13
|
* and whether it is a blocking wait. For example, the default for a page-blocking
|
|
14
14
|
* wait is "Page loading. Please wait."
|
|
15
|
+
* For more information about the `aria-label` attribute, see the [WAI-ARIA definition](https://www.w3.org/TR/wai-aria/#aria-label).
|
|
15
16
|
*/
|
|
16
17
|
set ariaLabel(value: string | undefined);
|
|
17
18
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/indicators",
|
|
3
|
-
"version": "7.6.
|
|
3
|
+
"version": "7.6.2",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -45,10 +45,10 @@
|
|
|
45
45
|
"@angular/common": "^14.2.11",
|
|
46
46
|
"@angular/core": "^14.2.11",
|
|
47
47
|
"@angular/platform-browser": "^14.2.11",
|
|
48
|
-
"@skyux-sdk/testing": "7.6.
|
|
49
|
-
"@skyux/core": "7.6.
|
|
50
|
-
"@skyux/i18n": "7.6.
|
|
51
|
-
"@skyux/theme": "7.6.
|
|
48
|
+
"@skyux-sdk/testing": "7.6.2",
|
|
49
|
+
"@skyux/core": "7.6.2",
|
|
50
|
+
"@skyux/i18n": "7.6.2",
|
|
51
|
+
"@skyux/theme": "7.6.2"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"tslib": "^2.3.1"
|