@skyux/progress-indicator 13.0.0-alpha.8 → 13.0.0-beta.0

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
@@ -139,13 +139,13 @@ declare class SkyProgressIndicatorComponent implements OnInit, AfterContentInit,
139
139
  #private;
140
140
  /**
141
141
  * The orientation of the progress indicator, which can be vertical or horizontal.
142
- * For [passive progress indicators](https://developer.blackbaud.com/skyux-progress-indicator/docs/passive-indicator)
143
- * and [waterfall progress indicators](https://developer.blackbaud.com/skyux/components/progress-indicator/waterfall-progress-indicator),
144
- * use the vertical display mode. For [modal wizards](https://developer.blackbaud.com/skyux/components/wizard),
142
+ * For [passive progress indicators](https://developer.blackbaud.com/skyux/components/progress-indicator-passive)
143
+ * and [waterfall progress indicators](https://developer.blackbaud.com/skyux/components/progress-indicator-waterfall),
144
+ * use the vertical display mode. For [modal wizards](https://developer.blackbaud.com/skyux/components/progress-indicator-wizard),
145
145
  * use the horizontal display mode.
146
146
  * @deprecated The property was designed to create wizards by setting `displayMode="horizontal"` on progress indicators in modals,
147
147
  * but this wizard implementation was replaced by the
148
- * [Wizard (Tabs) component](https://developer.blackbaud.com/skyux/components/progress-indicator).
148
+ * [wizard component that uses tabs](https://developer.blackbaud.com/skyux/components/tabs-wizard).
149
149
  * @default "vertical"
150
150
  */
151
151
  set displayMode(value: SkyProgressIndicatorDisplayModeType | undefined);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/progress-indicator",
3
- "version": "13.0.0-alpha.8",
3
+ "version": "13.0.0-beta.0",
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.8",
23
- "@skyux/help-inline": "13.0.0-alpha.8",
24
- "@skyux/i18n": "13.0.0-alpha.8",
25
- "@skyux/icon": "13.0.0-alpha.8",
26
- "@skyux/theme": "13.0.0-alpha.8"
22
+ "@skyux/core": "13.0.0-beta.0",
23
+ "@skyux/help-inline": "13.0.0-beta.0",
24
+ "@skyux/i18n": "13.0.0-beta.0",
25
+ "@skyux/icon": "13.0.0-beta.0",
26
+ "@skyux/theme": "13.0.0-beta.0"
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
  /**