@skyux/indicators 7.0.0-beta.4 → 7.0.0-beta.6

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/indicators",
3
- "version": "7.0.0-beta.4",
3
+ "version": "7.0.0-beta.6",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -45,10 +45,10 @@
45
45
  "@angular/common": "^14.2.0",
46
46
  "@angular/core": "^14.2.0",
47
47
  "@angular/platform-browser": "^14.2.0",
48
- "@skyux-sdk/testing": "7.0.0-beta.4",
49
- "@skyux/core": "7.0.0-beta.4",
50
- "@skyux/i18n": "7.0.0-beta.4",
51
- "@skyux/theme": "7.0.0-beta.4"
48
+ "@skyux-sdk/testing": "7.0.0-beta.6",
49
+ "@skyux/core": "7.0.0-beta.6",
50
+ "@skyux/i18n": "7.0.0-beta.6",
51
+ "@skyux/theme": "7.0.0-beta.6"
52
52
  },
53
53
  "dependencies": {
54
54
  "tslib": "^2.3.1"
@@ -5,6 +5,7 @@ import { ComponentFixture } from '@angular/core/testing';
5
5
  * @internal
6
6
  */
7
7
  export declare class SkyAlertFixture {
8
+ #private;
8
9
  /**
9
10
  * The alert's current text.
10
11
  */
@@ -21,12 +22,9 @@ export declare class SkyAlertFixture {
21
22
  * The alert's current type.
22
23
  */
23
24
  get alertType(): string | undefined;
24
- private debugEl;
25
25
  constructor(fixture: ComponentFixture<unknown>, skyTestId: string);
26
26
  /**
27
27
  * Closes the alert. If the alert is not closeable, an error is thrown.
28
28
  */
29
29
  close(): void;
30
- private getAlertEl;
31
- private getCloseBtnEl;
32
30
  }