@skyux/indicators 9.0.0-alpha.9 → 9.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.
@@ -7,7 +7,7 @@ import * as i0 from "@angular/core";
7
7
  */
8
8
  export declare class SkyIconClassListPipe implements PipeTransform {
9
9
  #private;
10
- transform(icon: string, themeSettings?: SkyThemeSettings, iconType?: string, size?: string, fixedWidth?: boolean, variant?: SkyIconVariantType): string[];
10
+ transform(icon: string, themeSettings?: SkyThemeSettings, size?: string, fixedWidth?: boolean, variant?: SkyIconVariantType): string[];
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyIconClassListPipe, never>;
12
12
  static ɵpipe: i0.ɵɵPipeDeclaration<SkyIconClassListPipe, "skyIconClassList", false>;
13
13
  }
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
8
8
  export declare class SkyIconResolverService {
9
9
  #private;
10
10
  constructor();
11
- resolveIcon(icon: string, variant?: SkyIconVariantType, iconType?: string, themeSettings?: SkyThemeSettings): SkyIconResolved;
11
+ resolveIcon(icon: string, variant?: SkyIconVariantType, themeSettings?: SkyThemeSettings): SkyIconResolved;
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyIconResolverService, never>;
13
13
  static ɵprov: i0.ɵɵInjectableDeclaration<SkyIconResolverService>;
14
14
  }
@@ -14,6 +14,7 @@ export interface SkyIconStackItem {
14
14
  * The type of icon to display. Specifying `fa` displays a Font Awesome icon,
15
15
  * while specifying `skyux` displays an icon from the custom SKY UX icon font. Note that
16
16
  * the custom SKY UX icon font is currently in beta.
17
+ * @deprecated
17
18
  */
18
19
  iconType?: SkyIconType;
19
20
  }
@@ -15,6 +15,7 @@ export declare class SkyIconComponent {
15
15
  * while specifying `"skyux"` displays an icon from the custom SKY UX icon font. Note that
16
16
  * the custom SKY UX icon font is currently in beta.
17
17
  * @default "fa"
18
+ * @deprecated The icon component now automatically infers which type of icon to use based on the current theme. This input will be removed in a future version.
18
19
  */
19
20
  iconType: SkyIconType | undefined;
20
21
  /**
@@ -1 +1,4 @@
1
+ /**
2
+ * @deprecated
3
+ */
1
4
  export type SkyIconType = 'fa' | 'skyux';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/indicators",
3
- "version": "9.0.0-alpha.9",
3
+ "version": "9.0.0-beta.1",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -41,10 +41,10 @@
41
41
  "@angular/common": "^16.2.1",
42
42
  "@angular/core": "^16.2.1",
43
43
  "@angular/platform-browser": "^16.2.1",
44
- "@skyux-sdk/testing": "9.0.0-alpha.9",
45
- "@skyux/core": "9.0.0-alpha.9",
46
- "@skyux/i18n": "9.0.0-alpha.9",
47
- "@skyux/theme": "9.0.0-alpha.9"
44
+ "@skyux-sdk/testing": "9.0.0-beta.1",
45
+ "@skyux/core": "9.0.0-beta.1",
46
+ "@skyux/i18n": "9.0.0-beta.1",
47
+ "@skyux/theme": "9.0.0-beta.1"
48
48
  },
49
49
  "dependencies": {
50
50
  "tslib": "^2.6.2"
@@ -25,6 +25,7 @@ export declare class SkyIconHarness extends SkyComponentHarness {
25
25
  getIconSize(): Promise<string | undefined>;
26
26
  /**
27
27
  * Gets the icon type.
28
+ * @deprecated The `iconType` input is no longer used. This method will be removed in a future version.
28
29
  */
29
30
  getIconType(): Promise<string>;
30
31
  /**