@skyux/layout 12.0.0-alpha.8 → 12.0.0-beta.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/layout",
3
- "version": "12.0.0-alpha.8",
3
+ "version": "12.0.0-beta.0",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -15,6 +15,30 @@
15
15
  "url": "https://github.com/blackbaud/skyux/issues"
16
16
  },
17
17
  "homepage": "https://github.com/blackbaud/skyux#readme",
18
+ "peerDependencies": {
19
+ "@angular/animations": "^19.2.1",
20
+ "@angular/cdk": "^19.2.2",
21
+ "@angular/common": "^19.2.1",
22
+ "@angular/core": "^19.2.1",
23
+ "@angular/forms": "^19.2.1",
24
+ "@angular/platform-browser": "^19.2.1",
25
+ "@angular/router": "^19.2.1",
26
+ "@skyux-sdk/testing": "12.0.0-beta.0",
27
+ "@skyux/core": "12.0.0-beta.0",
28
+ "@skyux/forms": "12.0.0-beta.0",
29
+ "@skyux/help-inline": "12.0.0-beta.0",
30
+ "@skyux/i18n": "12.0.0-beta.0",
31
+ "@skyux/icon": "12.0.0-beta.0",
32
+ "@skyux/indicators": "12.0.0-beta.0",
33
+ "@skyux/modals": "12.0.0-beta.0",
34
+ "@skyux/router": "12.0.0-beta.0",
35
+ "@skyux/theme": "12.0.0-beta.0"
36
+ },
37
+ "dependencies": {
38
+ "tslib": "^2.8.1"
39
+ },
40
+ "module": "fesm2022/skyux-layout.mjs",
41
+ "typings": "index.d.ts",
18
42
  "exports": {
19
43
  "./package.json": {
20
44
  "default": "./package.json"
@@ -26,34 +50,7 @@
26
50
  "./testing": {
27
51
  "types": "./testing/index.d.ts",
28
52
  "default": "./fesm2022/skyux-layout-testing.mjs"
29
- },
30
- "./documentation.json": {
31
- "default": "./documentation.json"
32
53
  }
33
54
  },
34
- "peerDependencies": {
35
- "@angular/animations": "^19.0.5",
36
- "@angular/cdk": "^19.0.4",
37
- "@angular/common": "^19.0.5",
38
- "@angular/core": "^19.0.5",
39
- "@angular/forms": "^19.0.5",
40
- "@angular/platform-browser": "^19.0.5",
41
- "@angular/router": "^19.0.5",
42
- "@skyux-sdk/testing": "12.0.0-alpha.8",
43
- "@skyux/core": "12.0.0-alpha.8",
44
- "@skyux/forms": "12.0.0-alpha.8",
45
- "@skyux/help-inline": "12.0.0-alpha.8",
46
- "@skyux/i18n": "12.0.0-alpha.8",
47
- "@skyux/icon": "12.0.0-alpha.8",
48
- "@skyux/indicators": "12.0.0-alpha.8",
49
- "@skyux/modals": "12.0.0-alpha.8",
50
- "@skyux/router": "12.0.0-alpha.8",
51
- "@skyux/theme": "12.0.0-alpha.8"
52
- },
53
- "dependencies": {
54
- "tslib": "^2.8.1"
55
- },
56
- "module": "fesm2022/skyux-layout.mjs",
57
- "typings": "index.d.ts",
58
55
  "sideEffects": false
59
- }
56
+ }
@@ -0,0 +1,15 @@
1
+ import { ComponentHarness } from '@angular/cdk/testing';
2
+ /**
3
+ * Harness for interacting with a back to top component in tests.
4
+ */
5
+ export declare class SkyBackToTopHarness extends ComponentHarness {
6
+ #private;
7
+ /**
8
+ * @internal
9
+ */
10
+ static hostSelector: string;
11
+ /**
12
+ * Clicks the back to top button.
13
+ */
14
+ clickBackToTop(): Promise<void>;
15
+ }
@@ -2,6 +2,9 @@ import { HarnessPredicate } from '@angular/cdk/testing';
2
2
  import { SkyComponentHarness } from '@skyux/core/testing';
3
3
  import { SkyBoxHeadingLevel, SkyBoxHeadingStyle } from '@skyux/layout';
4
4
  import { SkyBoxHarnessFilters } from './box-harness.filters';
5
+ /**
6
+ * Harness for interacting with a box component in tests.
7
+ */
5
8
  export declare class SkyBoxHarness extends SkyComponentHarness {
6
9
  #private;
7
10
  /**
@@ -1,6 +1,7 @@
1
1
  export { SkyActionButtonFixture } from './legacy/action-button-fixture';
2
2
  export { SkyCardFixture } from './legacy/card-fixture';
3
3
  export { SkyPageSummaryFixture } from './legacy/page-summary-fixture';
4
+ export { SkyBackToTopHarness } from './modules/back-to-top/back-to-top-harness';
4
5
  export { SkyBoxHarness } from './modules/box/box-harness';
5
6
  export { SkyBoxHarnessFilters } from './modules/box/box-harness.filters';
6
7
  export { SkyDescriptionListContentHarness } from './modules/description-list/description-list-content-harness';