@skyux/indicators 7.16.0 → 7.18.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 +748 -634
- package/esm2020/lib/modules/help-inline/help-inline-aria-expanded.pipe.mjs +16 -0
- package/esm2020/lib/modules/help-inline/help-inline.component.mjs +12 -5
- package/esm2020/lib/modules/help-inline/help-inline.module.mjs +4 -3
- package/fesm2015/skyux-indicators.mjs +25 -5
- package/fesm2015/skyux-indicators.mjs.map +1 -1
- package/fesm2020/skyux-indicators.mjs +25 -5
- package/fesm2020/skyux-indicators.mjs.map +1 -1
- package/lib/modules/help-inline/help-inline-aria-expanded.pipe.d.ts +7 -0
- package/lib/modules/help-inline/help-inline.component.d.ts +20 -1
- package/lib/modules/help-inline/help-inline.module.d.ts +7 -6
- package/package.json +5 -5
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SkyHelpInlineAriaExpandedPipe implements PipeTransform {
|
|
4
|
+
transform(ariaExpanded: boolean | undefined, ariaControls: string | undefined): boolean | null;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyHelpInlineAriaExpandedPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<SkyHelpInlineAriaExpandedPipe, "skyHelpInlineAriaExpanded", false>;
|
|
7
|
+
}
|
|
@@ -1,11 +1,30 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class SkyHelpInlineComponent {
|
|
4
|
+
/**
|
|
5
|
+
* The ID of the element that the help inline button controls.
|
|
6
|
+
* This property [supports accessibility rules for disclosures](https://www.w3.org/TR/wai-aria-practices-1.1/#disclosure).
|
|
7
|
+
* For more information about the `aria-controls` attribute, see the [WAI-ARIA definition](https://www.w3.org/TR/wai-aria/#aria-controls).
|
|
8
|
+
*/
|
|
9
|
+
ariaControls: string | undefined;
|
|
10
|
+
/**
|
|
11
|
+
* Whether an element controlled by the help inline button is expanded. When set to `true`, the property will only be applied to the HTML element when the `ariaControls` input is also set.
|
|
12
|
+
* This property [supports accessibility rules for disclosures](https://www.w3.org/TR/wai-aria-practices-1.1/#disclosure).
|
|
13
|
+
* For more information about the `aria-expanded` attribute, see the [WAI-ARIA definition](https://www.w3.org/TR/wai-aria/#aria-expanded).
|
|
14
|
+
*/
|
|
15
|
+
ariaExpanded: boolean | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* The ARIA label for help inline button. This sets the button's `aria-label` to provide a text equivalent for screen readers
|
|
18
|
+
* [to support accessibility](https://developer.blackbaud.com/skyux/learn/accessibility).
|
|
19
|
+
* For more information about the `aria-label` attribute, see the [WAI-ARIA definition](https://www.w3.org/TR/wai-aria/#aria-label).
|
|
20
|
+
* @default "Show help content"
|
|
21
|
+
*/
|
|
22
|
+
ariaLabel: string | undefined;
|
|
4
23
|
/**
|
|
5
24
|
* Fires when the user clicks the help inline button.
|
|
6
25
|
*/
|
|
7
26
|
actionClick: EventEmitter<void>;
|
|
8
27
|
onClick(): void;
|
|
9
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyHelpInlineComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkyHelpInlineComponent, "sky-help-inline", never, {}, { "actionClick": "actionClick"; }, never, never, false>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyHelpInlineComponent, "sky-help-inline", never, { "ariaControls": "ariaControls"; "ariaExpanded": "ariaExpanded"; "ariaLabel": "ariaLabel"; }, { "actionClick": "actionClick"; }, never, never, false>;
|
|
11
30
|
}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./help-inline.component";
|
|
3
|
-
import * as i2 from "
|
|
4
|
-
import * as i3 from "@
|
|
5
|
-
import * as i4 from "
|
|
6
|
-
import * as i5 from "../
|
|
7
|
-
import * as i6 from "
|
|
3
|
+
import * as i2 from "./help-inline-aria-expanded.pipe";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@skyux/i18n";
|
|
6
|
+
import * as i5 from "../icon/icon.module";
|
|
7
|
+
import * as i6 from "../shared/sky-indicators-resources.module";
|
|
8
|
+
import * as i7 from "@skyux/theme";
|
|
8
9
|
export declare class SkyHelpInlineModule {
|
|
9
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyHelpInlineModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyHelpInlineModule, [typeof i1.SkyHelpInlineComponent], [typeof
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyHelpInlineModule, [typeof i1.SkyHelpInlineComponent, typeof i2.SkyHelpInlineAriaExpandedPipe], [typeof i3.CommonModule, typeof i4.SkyI18nModule, typeof i5.SkyIconModule, typeof i6.SkyIndicatorsResourcesModule, typeof i7.SkyThemeModule], [typeof i1.SkyHelpInlineComponent]>;
|
|
11
12
|
static ɵinj: i0.ɵɵInjectorDeclaration<SkyHelpInlineModule>;
|
|
12
13
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/indicators",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.18.0",
|
|
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.
|
|
49
|
-
"@skyux/core": "7.
|
|
50
|
-
"@skyux/i18n": "7.
|
|
51
|
-
"@skyux/theme": "7.
|
|
48
|
+
"@skyux-sdk/testing": "7.18.0",
|
|
49
|
+
"@skyux/core": "7.18.0",
|
|
50
|
+
"@skyux/i18n": "7.18.0",
|
|
51
|
+
"@skyux/theme": "7.18.0"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"tslib": "^2.3.1"
|