@skyux/lists 9.2.1 → 9.3.1
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 +988 -878
- package/esm2022/lib/modules/filter/filter-button.component.mjs +5 -3
- package/esm2022/lib/modules/sort/sort.component.mjs +6 -4
- package/fesm2022/skyux-lists.mjs +9 -5
- package/fesm2022/skyux-lists.mjs.map +1 -1
- package/lib/modules/filter/filter-button.component.d.ts +9 -1
- package/lib/modules/sort/sort.component.d.ts +9 -1
- package/package.json +10 -10
|
@@ -22,6 +22,14 @@ export declare class SkyFilterButtonComponent {
|
|
|
22
22
|
* For more information about the `aria-expanded` attribute, see the [WAI-ARIA definition](https://www.w3.org/TR/wai-aria/#aria-expanded).
|
|
23
23
|
*/
|
|
24
24
|
ariaExpanded: boolean | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* The ARIA label for the filter button. This sets the
|
|
27
|
+
* filter button's `aria-label` attribute to provide a text equivalent for screen readers
|
|
28
|
+
* [to support accessibility](https://developer.blackbaud.com/skyux/learn/accessibility).
|
|
29
|
+
* The aria label should normally be context sensitive, e.g. "Filter constituents". This is especially true when multiple filter buttons are in close proximity.
|
|
30
|
+
* For more information about the `aria-label` attribute, see the [WAI-ARIA definition](https://www.w3.org/TR/wai-aria/#aria-label).
|
|
31
|
+
*/
|
|
32
|
+
ariaLabel: string | undefined;
|
|
25
33
|
/**
|
|
26
34
|
* Whether to highlight the filter button to indicate that filters were applied.
|
|
27
35
|
* We recommend setting this property to `true` when no indication of filtering is visible
|
|
@@ -43,5 +51,5 @@ export declare class SkyFilterButtonComponent {
|
|
|
43
51
|
constructor();
|
|
44
52
|
filterButtonOnClick(): void;
|
|
45
53
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyFilterButtonComponent, never>;
|
|
46
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkyFilterButtonComponent, "sky-filter-button", never, { "filterButtonId": { "alias": "filterButtonId"; "required": false; }; "ariaControls": { "alias": "ariaControls"; "required": false; }; "ariaExpanded": { "alias": "ariaExpanded"; "required": false; }; "active": { "alias": "active"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "showButtonText": { "alias": "showButtonText"; "required": false; }; }, { "filterButtonClick": "filterButtonClick"; }, never, never, false, never>;
|
|
54
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyFilterButtonComponent, "sky-filter-button", never, { "filterButtonId": { "alias": "filterButtonId"; "required": false; }; "ariaControls": { "alias": "ariaControls"; "required": false; }; "ariaExpanded": { "alias": "ariaExpanded"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "active": { "alias": "active"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "showButtonText": { "alias": "showButtonText"; "required": false; }; }, { "filterButtonClick": "filterButtonClick"; }, never, never, false, never>;
|
|
47
55
|
}
|
|
@@ -2,6 +2,14 @@ import { SkyDropdownMessage } from '@skyux/popovers';
|
|
|
2
2
|
import { Subject } from 'rxjs';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class SkySortComponent {
|
|
5
|
+
/**
|
|
6
|
+
* The ARIA label for the sort button. This sets the
|
|
7
|
+
* sort button's `aria-label` attribute to provide a text equivalent for screen readers
|
|
8
|
+
* [to support accessibility](https://developer.blackbaud.com/skyux/learn/accessibility).
|
|
9
|
+
* The aria label should normally be context sensitive, e.g. "Sort constituents". This is especially true when multiple sort buttons are in close proximity.
|
|
10
|
+
* For more information about the `aria-label` attribute, see the [WAI-ARIA definition](https://www.w3.org/TR/wai-aria/#aria-label).
|
|
11
|
+
*/
|
|
12
|
+
ariaLabel: string | undefined;
|
|
5
13
|
/**
|
|
6
14
|
* Whether to display a "Sort" label beside the icon on the sort button.
|
|
7
15
|
*/
|
|
@@ -9,5 +17,5 @@ export declare class SkySortComponent {
|
|
|
9
17
|
dropdownController: Subject<SkyDropdownMessage>;
|
|
10
18
|
dropdownClicked(): void;
|
|
11
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkySortComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkySortComponent, "sky-sort", never, { "showButtonText": { "alias": "showButtonText"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkySortComponent, "sky-sort", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "showButtonText": { "alias": "showButtonText"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
13
21
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/lists",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.3.1",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -40,15 +40,15 @@
|
|
|
40
40
|
"@angular/common": "^16.2.5",
|
|
41
41
|
"@angular/core": "^16.2.5",
|
|
42
42
|
"@angular/platform-browser": "^16.2.5",
|
|
43
|
-
"@skyux-sdk/testing": "9.
|
|
44
|
-
"@skyux/animations": "9.
|
|
45
|
-
"@skyux/core": "9.
|
|
46
|
-
"@skyux/forms": "9.
|
|
47
|
-
"@skyux/i18n": "9.
|
|
48
|
-
"@skyux/indicators": "9.
|
|
49
|
-
"@skyux/inline-form": "9.
|
|
50
|
-
"@skyux/popovers": "9.
|
|
51
|
-
"@skyux/theme": "9.
|
|
43
|
+
"@skyux-sdk/testing": "9.3.1",
|
|
44
|
+
"@skyux/animations": "9.3.1",
|
|
45
|
+
"@skyux/core": "9.3.1",
|
|
46
|
+
"@skyux/forms": "9.3.1",
|
|
47
|
+
"@skyux/i18n": "9.3.1",
|
|
48
|
+
"@skyux/indicators": "9.3.1",
|
|
49
|
+
"@skyux/inline-form": "9.3.1",
|
|
50
|
+
"@skyux/popovers": "9.3.1",
|
|
51
|
+
"@skyux/theme": "9.3.1"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@types/dragula": "2.1.36",
|