@skyux/progress-indicator 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/progress-indicator",
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",
@@ -19,11 +19,11 @@
19
19
  "@angular/cdk": "^20.0.4",
20
20
  "@angular/common": "^20.0.5",
21
21
  "@angular/core": "^20.0.5",
22
- "@skyux/core": "13.0.0-alpha.0",
23
- "@skyux/help-inline": "13.0.0-alpha.0",
24
- "@skyux/i18n": "13.0.0-alpha.0",
25
- "@skyux/icon": "13.0.0-alpha.0",
26
- "@skyux/theme": "13.0.0-alpha.0"
22
+ "@skyux/core": "13.0.0-alpha.10",
23
+ "@skyux/help-inline": "13.0.0-alpha.10",
24
+ "@skyux/i18n": "13.0.0-alpha.10",
25
+ "@skyux/icon": "13.0.0-alpha.10",
26
+ "@skyux/theme": "13.0.0-alpha.10"
27
27
  },
28
28
  "dependencies": {
29
29
  "tslib": "^2.8.1"
@@ -68,11 +68,14 @@ declare class SkyProgressIndicatorHarness extends SkyComponentHarness {
68
68
  */
69
69
  clickResetButton(): Promise<void>;
70
70
  /**
71
- * Gets a specific progress indicator item that meets certain criteria.
71
+ * Gets a specific progress indicator item based on the filter criteria.
72
+ * @param filter The filter criteria.
72
73
  */
73
74
  getItem(filter: SkyProgressIndicatorItemFilters): Promise<SkyProgressIndicatorItemHarness>;
74
75
  /**
75
- * Gets an array of all progress indicator items.
76
+ * Gets an array of progress indicator items based on the filter criteria.
77
+ * If no filter is provided, returns all progress indicator items.
78
+ * @param filters The optional filter criteria.
76
79
  */
77
80
  getItems(filters?: SkyProgressIndicatorItemFilters): Promise<SkyProgressIndicatorItemHarness[]>;
78
81
  /**