@skyux/layout 8.0.0-alpha.9 → 8.0.0-beta.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.
@@ -5,8 +5,9 @@ import * as i3 from "@angular/common";
5
5
  import * as i4 from "@skyux/core";
6
6
  import * as i5 from "@skyux/i18n";
7
7
  import * as i6 from "../shared/sky-layout-resources.module";
8
+ import * as i7 from "@skyux/theme";
8
9
  export declare class SkyBackToTopModule {
9
10
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyBackToTopModule, never>;
10
- static ɵmod: i0.ɵɵNgModuleDeclaration<SkyBackToTopModule, [typeof i1.SkyBackToTopComponent, typeof i2.SkyBackToTopDirective], [typeof i3.CommonModule, typeof i4.SkyDockModule, typeof i5.SkyI18nModule, typeof i6.SkyLayoutResourcesModule], [typeof i1.SkyBackToTopComponent, typeof i2.SkyBackToTopDirective]>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SkyBackToTopModule, [typeof i1.SkyBackToTopComponent, typeof i2.SkyBackToTopDirective], [typeof i3.CommonModule, typeof i4.SkyDockModule, typeof i5.SkyI18nModule, typeof i6.SkyLayoutResourcesModule, typeof i7.SkyThemeModule], [typeof i1.SkyBackToTopComponent, typeof i2.SkyBackToTopDirective]>;
11
12
  static ɵinj: i0.ɵɵInjectorDeclaration<SkyBackToTopModule>;
12
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/layout",
3
- "version": "8.0.0-alpha.9",
3
+ "version": "8.0.0-beta.1",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -47,14 +47,14 @@
47
47
  "@angular/forms": "^15.2.1",
48
48
  "@angular/platform-browser": "^15.2.1",
49
49
  "@angular/router": "^15.2.1",
50
- "@skyux-sdk/testing": "8.0.0-alpha.9",
51
- "@skyux/core": "8.0.0-alpha.9",
52
- "@skyux/forms": "8.0.0-alpha.9",
53
- "@skyux/i18n": "8.0.0-alpha.9",
54
- "@skyux/indicators": "8.0.0-alpha.9",
55
- "@skyux/modals": "8.0.0-alpha.9",
56
- "@skyux/router": "8.0.0-alpha.9",
57
- "@skyux/theme": "8.0.0-alpha.9"
50
+ "@skyux-sdk/testing": "8.0.0-beta.1",
51
+ "@skyux/core": "8.0.0-beta.1",
52
+ "@skyux/forms": "8.0.0-beta.1",
53
+ "@skyux/i18n": "8.0.0-beta.1",
54
+ "@skyux/indicators": "8.0.0-beta.1",
55
+ "@skyux/modals": "8.0.0-beta.1",
56
+ "@skyux/router": "8.0.0-beta.1",
57
+ "@skyux/theme": "8.0.0-beta.1"
58
58
  },
59
59
  "dependencies": {
60
60
  "tslib": "^2.5.0"
@@ -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';