@skyux/indicators 7.10.0 → 7.11.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/indicators",
3
- "version": "7.10.0",
3
+ "version": "7.11.0",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -45,10 +45,10 @@
45
45
  "@angular/common": "^14.2.11",
46
46
  "@angular/core": "^14.2.11",
47
47
  "@angular/platform-browser": "^14.2.11",
48
- "@skyux-sdk/testing": "7.10.0",
49
- "@skyux/core": "7.10.0",
50
- "@skyux/i18n": "7.10.0",
51
- "@skyux/theme": "7.10.0"
48
+ "@skyux-sdk/testing": "7.11.0",
49
+ "@skyux/core": "7.11.0",
50
+ "@skyux/i18n": "7.11.0",
51
+ "@skyux/theme": "7.11.0"
52
52
  },
53
53
  "dependencies": {
54
54
  "tslib": "^2.3.1"
@@ -16,23 +16,23 @@ export declare class SkyIconHarness extends SkyComponentHarness {
16
16
  */
17
17
  static with(filters: SkyIconHarnessFilters): HarnessPredicate<SkyIconHarness>;
18
18
  /**
19
- * Gets the icon name
19
+ * Gets the icon name.
20
20
  */
21
21
  getIconName(): Promise<string | undefined>;
22
22
  /**
23
- * Gets the icon size
23
+ * Gets the icon size.
24
24
  */
25
25
  getIconSize(): Promise<string | undefined>;
26
26
  /**
27
- * Gets the icon type
27
+ * Gets the icon type.
28
28
  */
29
29
  getIconType(): Promise<string>;
30
30
  /**
31
- * Gets if the icon is a variant
31
+ * Gets if the icon is a variant.
32
32
  */
33
33
  getVariant(): Promise<string | undefined>;
34
34
  /**
35
- * Whether the icon has fixed width
35
+ * Whether the icon has fixed width.
36
36
  */
37
37
  isFixedWidth(): Promise<boolean>;
38
38
  }