@skyux/layout 7.21.0 → 7.21.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/esm2020/lib/modules/toolbar/toolbar.component.mjs +2 -2
- package/esm2020/testing/box/box-harness.filters.mjs +2 -0
- package/esm2020/testing/box/box-harness.mjs +40 -0
- package/esm2020/testing/public-api.mjs +3 -1
- package/fesm2015/skyux-layout-testing.mjs +47 -2
- package/fesm2015/skyux-layout-testing.mjs.map +1 -1
- package/fesm2015/skyux-layout.mjs +2 -2
- package/fesm2015/skyux-layout.mjs.map +1 -1
- package/fesm2020/skyux-layout-testing.mjs +40 -1
- package/fesm2020/skyux-layout-testing.mjs.map +1 -1
- package/fesm2020/skyux-layout.mjs +2 -2
- package/fesm2020/skyux-layout.mjs.map +1 -1
- package/package.json +9 -9
- package/testing/box/box-harness.d.ts +27 -0
- package/testing/box/box-harness.filters.d.ts +6 -0
- package/testing/public-api.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/layout",
|
|
3
|
-
"version": "7.21.
|
|
3
|
+
"version": "7.21.2",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -47,14 +47,14 @@
|
|
|
47
47
|
"@angular/forms": "^14.2.11",
|
|
48
48
|
"@angular/platform-browser": "^14.2.11",
|
|
49
49
|
"@angular/router": "^14.2.11",
|
|
50
|
-
"@skyux-sdk/testing": "7.21.
|
|
51
|
-
"@skyux/core": "7.21.
|
|
52
|
-
"@skyux/forms": "7.21.
|
|
53
|
-
"@skyux/i18n": "7.21.
|
|
54
|
-
"@skyux/indicators": "7.21.
|
|
55
|
-
"@skyux/modals": "7.21.
|
|
56
|
-
"@skyux/router": "7.21.
|
|
57
|
-
"@skyux/theme": "7.21.
|
|
50
|
+
"@skyux-sdk/testing": "7.21.2",
|
|
51
|
+
"@skyux/core": "7.21.2",
|
|
52
|
+
"@skyux/forms": "7.21.2",
|
|
53
|
+
"@skyux/i18n": "7.21.2",
|
|
54
|
+
"@skyux/indicators": "7.21.2",
|
|
55
|
+
"@skyux/modals": "7.21.2",
|
|
56
|
+
"@skyux/router": "7.21.2",
|
|
57
|
+
"@skyux/theme": "7.21.2"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"tslib": "^2.3.1"
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { HarnessPredicate } from '@angular/cdk/testing';
|
|
2
|
+
import { SkyComponentHarness } from '@skyux/core/testing';
|
|
3
|
+
import { SkyBoxHarnessFilters } from './box-harness.filters';
|
|
4
|
+
export declare class SkyBoxHarness extends SkyComponentHarness {
|
|
5
|
+
#private;
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
static hostSelector: string;
|
|
10
|
+
/**
|
|
11
|
+
* Gets a `HarnessPredicate` that can be used to search for a
|
|
12
|
+
* `SkyBoxHarness` that meets certain criteria
|
|
13
|
+
*/
|
|
14
|
+
static with(filters: SkyBoxHarnessFilters): HarnessPredicate<SkyBoxHarness>;
|
|
15
|
+
/**
|
|
16
|
+
* Gets the aria-label property of the box
|
|
17
|
+
*/
|
|
18
|
+
getAriaLabel(): Promise<string | null>;
|
|
19
|
+
/**
|
|
20
|
+
* Gets the aria-labelledby property of the box
|
|
21
|
+
*/
|
|
22
|
+
getAriaLabelledby(): Promise<string | null>;
|
|
23
|
+
/**
|
|
24
|
+
* Gets the aria-role property of the box
|
|
25
|
+
*/
|
|
26
|
+
getAriaRole(): Promise<string | null>;
|
|
27
|
+
}
|