@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/layout",
3
- "version": "7.21.0",
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.0",
51
- "@skyux/core": "7.21.0",
52
- "@skyux/forms": "7.21.0",
53
- "@skyux/i18n": "7.21.0",
54
- "@skyux/indicators": "7.21.0",
55
- "@skyux/modals": "7.21.0",
56
- "@skyux/router": "7.21.0",
57
- "@skyux/theme": "7.21.0"
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
+ }
@@ -0,0 +1,6 @@
1
+ import { SkyHarnessFilters } from '@skyux/core/testing';
2
+ /**
3
+ * A set of criteria that can be used to filter a list of `SkyBoxHarness` instances.
4
+ */
5
+ export interface SkyBoxHarnessFilters extends SkyHarnessFilters {
6
+ }
@@ -1,3 +1,5 @@
1
1
  export * from './action-button-fixture';
2
2
  export * from './card-fixture';
3
3
  export * from './page-summary-fixture';
4
+ export * from './box/box-harness';
5
+ export * from './box/box-harness.filters';