@skyux/indicators 14.0.0-alpha.0 → 14.0.0-alpha.10

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": "14.0.0-alpha.0",
3
+ "version": "14.0.0-alpha.10",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -16,17 +16,16 @@
16
16
  },
17
17
  "homepage": "https://github.com/blackbaud/skyux#readme",
18
18
  "peerDependencies": {
19
- "@angular/animations": "^21.0.8",
20
- "@angular/cdk": "^21.0.6",
21
- "@angular/common": "^21.0.8",
22
- "@angular/core": "^21.0.8",
23
- "@angular/platform-browser": "^21.0.8",
24
- "@skyux-sdk/testing": "14.0.0-alpha.0",
25
- "@skyux/core": "14.0.0-alpha.0",
26
- "@skyux/help-inline": "14.0.0-alpha.0",
27
- "@skyux/i18n": "14.0.0-alpha.0",
28
- "@skyux/icon": "14.0.0-alpha.0",
29
- "@skyux/theme": "14.0.0-alpha.0"
19
+ "@angular/cdk": "^21.2.0",
20
+ "@angular/common": "^21.2.0",
21
+ "@angular/core": "^21.2.0",
22
+ "@angular/platform-browser": "^21.2.0",
23
+ "@skyux-sdk/testing": "14.0.0-alpha.10",
24
+ "@skyux/core": "14.0.0-alpha.10",
25
+ "@skyux/help-inline": "14.0.0-alpha.10",
26
+ "@skyux/i18n": "14.0.0-alpha.10",
27
+ "@skyux/icon": "14.0.0-alpha.10",
28
+ "@skyux/theme": "14.0.0-alpha.10"
30
29
  },
31
30
  "dependencies": {
32
31
  "tslib": "^2.8.1"
@@ -152,6 +152,10 @@ declare abstract class SkyIllustrationResolverService {
152
152
  * If both an `href` and a URL are resolved, the SVG with `href` will be rendered.
153
153
  */
154
154
  resolveHref(name: string): Promise<string>;
155
+ /**
156
+ * Gets the names of all available illustrations.
157
+ */
158
+ getNames(): Promise<string[]>;
155
159
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyIllustrationResolverService, never>;
156
160
  static ɵprov: i0.ɵɵInjectableDeclaration<SkyIllustrationResolverService>;
157
161
  }
@@ -537,10 +541,14 @@ declare class SkyTokensComponent implements OnDestroy {
537
541
  set activeIndex(value: number);
538
542
  trackTokenFn: TrackByFunction<SkyToken>;
539
543
  tokenComponents: QueryList<SkyTokenComponent> | undefined;
544
+ /**
545
+ * Tracks whether the component has completed its initial render.
546
+ * Used to suppress enter animations on first load.
547
+ */
548
+ protected readonly animationReady: i0.WritableSignal<boolean>;
540
549
  constructor();
541
550
  ngOnDestroy(): void;
542
551
  onTokenClick(token: SkyToken): void;
543
- animationDone(): void;
544
552
  onTokenKeyDown(event: KeyboardEvent): void;
545
553
  selectToken(token: SkyToken): void;
546
554
  removeToken(token: SkyToken): void;