@skyux/icon 14.0.0-beta.2 → 14.0.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.
@@ -1,6 +1,6 @@
1
- import { CommonModule } from '@angular/common';
2
1
  import * as i0 from '@angular/core';
3
2
  import { Injectable, inject, input, computed, Component, Input, ChangeDetectionStrategy, NgModule } from '@angular/core';
3
+ import { CommonModule } from '@angular/common';
4
4
  import { toSignal, toObservable } from '@angular/core/rxjs-interop';
5
5
  import * as i1 from '@skyux/theme';
6
6
  import { SkyThemeComponentClassDirective } from '@skyux/theme';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/icon",
3
- "version": "14.0.0-beta.2",
3
+ "version": "14.0.1",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -19,8 +19,8 @@
19
19
  "@angular/cdk": "^21.2.0",
20
20
  "@angular/common": "^21.2.0",
21
21
  "@angular/core": "^21.2.0",
22
- "@skyux/core": "14.0.0-beta.2",
23
- "@skyux/theme": "14.0.0-beta.2"
22
+ "@skyux/core": "14.0.1",
23
+ "@skyux/theme": "14.0.1"
24
24
  },
25
25
  "dependencies": {
26
26
  "tslib": "^2.8.1"
@@ -40,5 +40,6 @@
40
40
  "types": "./types/skyux-icon-testing.d.ts",
41
41
  "default": "./fesm2022/skyux-icon-testing.mjs"
42
42
  }
43
- }
43
+ },
44
+ "type": "module"
44
45
  }
@@ -2,10 +2,21 @@ import * as i0 from '@angular/core';
2
2
  import * as i2 from '@angular/common';
3
3
  import * as i1 from '@skyux/theme';
4
4
 
5
- type SkyIconSize = 'xxxs' | 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl' | 'xxxl';
6
-
7
5
  type SkyIconVariantType = 'line' | 'solid';
8
6
 
7
+ /**
8
+ * @internal
9
+ */
10
+ declare class SkyIconSvgResolverService {
11
+ resolveHref(name: string, pixelSize?: number, variant?: SkyIconVariantType): Promise<string>;
12
+ refreshIconMap(): void;
13
+ resetIconMap(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<SkyIconSvgResolverService, never>;
15
+ static ɵprov: i0.ɵɵInjectableDeclaration<SkyIconSvgResolverService>;
16
+ }
17
+
18
+ type SkyIconSize = 'xxxs' | 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl' | 'xxxl';
19
+
9
20
  declare class SkyIconComponent {
10
21
  /**
11
22
  * The name of the Blackbaud SVG icon to display.
@@ -44,16 +55,5 @@ declare class SkyIconModule {
44
55
  static ɵinj: i0.ɵɵInjectorDeclaration<SkyIconModule>;
45
56
  }
46
57
 
47
- /**
48
- * @internal
49
- */
50
- declare class SkyIconSvgResolverService {
51
- resolveHref(name: string, pixelSize?: number, variant?: SkyIconVariantType): Promise<string>;
52
- refreshIconMap(): void;
53
- resetIconMap(): void;
54
- static ɵfac: i0.ɵɵFactoryDeclaration<SkyIconSvgResolverService, never>;
55
- static ɵprov: i0.ɵɵInjectableDeclaration<SkyIconSvgResolverService>;
56
- }
57
-
58
58
  export { SkyIconModule, SkyIconSvgResolverService, SkyIconComponent as λ1 };
59
59
  export type { SkyIconSize, SkyIconVariantType };