@skyux/indicators 13.0.0-alpha.0 → 13.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/index.d.ts CHANGED
@@ -46,7 +46,7 @@ declare class SkyAlertComponent implements AfterViewChecked, OnInit, OnDestroy {
46
46
  * Fires when users close the alert.
47
47
  */
48
48
  closedChange: EventEmitter<boolean>;
49
- iconName: string | undefined;
49
+ iconName: string;
50
50
  alertTypeOrDefault: SkyIndicatorIconType;
51
51
  descriptionComputed: string | undefined;
52
52
  ngOnInit(): void;
@@ -256,7 +256,7 @@ declare class SkyLabelComponent implements AfterViewChecked, OnDestroy, OnInit {
256
256
  set customDescription(value: string | undefined);
257
257
  get customDescription(): string | undefined;
258
258
  descriptionComputed: string | undefined;
259
- iconName: string | undefined;
259
+ iconName: string;
260
260
  labelTypeOrDefault: SkyLabelType;
261
261
  ngOnInit(): void;
262
262
  ngAfterViewChecked(): void;
@@ -314,7 +314,7 @@ declare class SkyStatusIndicatorComponent implements OnInit {
314
314
  */
315
315
  helpKey: string | undefined;
316
316
  descriptionComputed: string | undefined;
317
- iconName: string | undefined;
317
+ iconName: string;
318
318
  indicatorTypeOrDefault: SkyIndicatorIconType;
319
319
  ngOnInit(): void;
320
320
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyStatusIndicatorComponent, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/indicators",
3
- "version": "13.0.0-alpha.0",
3
+ "version": "13.0.0-alpha.10",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -21,12 +21,17 @@
21
21
  "@angular/common": "^20.0.5",
22
22
  "@angular/core": "^20.0.5",
23
23
  "@angular/platform-browser": "^20.0.5",
24
- "@skyux-sdk/testing": "13.0.0-alpha.0",
25
- "@skyux/core": "13.0.0-alpha.0",
26
- "@skyux/help-inline": "13.0.0-alpha.0",
27
- "@skyux/i18n": "13.0.0-alpha.0",
28
- "@skyux/icon": "13.0.0-alpha.0",
29
- "@skyux/theme": "13.0.0-alpha.0"
24
+ "@skyux-sdk/testing": "13.0.0-alpha.10",
25
+ "@skyux/core": "13.0.0-alpha.10",
26
+ "@skyux/help-inline": "13.0.0-alpha.10",
27
+ "@skyux/i18n": "13.0.0-alpha.10",
28
+ "@skyux/icon": "13.0.0-alpha.10",
29
+ "@skyux/theme": "13.0.0-alpha.10"
30
+ },
31
+ "peerDependenciesMeta": {
32
+ "@skyux-sdk/testing": {
33
+ "optional": true
34
+ }
30
35
  },
31
36
  "dependencies": {
32
37
  "tslib": "^2.8.1"
@@ -358,7 +358,14 @@ declare class SkyTokensHarness extends SkyComponentHarness {
358
358
  */
359
359
  dismissTokens(filters?: SkyTokenHarnessFilters): Promise<void>;
360
360
  /**
361
- * Returns a list of tokens.
361
+ * Gets a specific token based on the filter criteria.
362
+ * @param filter The filter criteria.
363
+ */
364
+ getToken(filter: SkyTokenHarnessFilters): Promise<SkyTokenHarness>;
365
+ /**
366
+ * Gets an array of tokens based on the filter criteria.
367
+ * If no filter is provided, returns all tokens.
368
+ * @param filters The optional filter criteria.
362
369
  */
363
370
  getTokens(filters?: SkyTokenHarnessFilters): Promise<SkyTokenHarness[]>;
364
371
  /**
@@ -441,6 +448,7 @@ declare class SkyAlertFixture {
441
448
 
442
449
  /**
443
450
  * Allows interaction with a SKY UX label component.
451
+ * @deprecated Use `SkyLabelHarness` instead.
444
452
  * @internal
445
453
  */
446
454
  declare class SkyLabelFixture {
@@ -457,6 +465,7 @@ declare class SkyLabelFixture {
457
465
  }
458
466
 
459
467
  /**
468
+ * @deprecated Use `SkyWaitHarness` instead.
460
469
  * @internal
461
470
  */
462
471
  declare class SkyWaitFixture {