@hestia-earth/ui-components 0.42.21 → 0.42.23

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": "@hestia-earth/ui-components",
3
- "version": "0.42.21",
3
+ "version": "0.42.23",
4
4
  "description": "HESTIA reusable components",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1832,6 +1832,12 @@ declare class PipelineStagesProgressComponent<Status extends string, Group exten
1832
1832
  * Is the current status in progress?
1833
1833
  */
1834
1834
  protected readonly processing: _angular_core.InputSignal<boolean>;
1835
+ /**
1836
+ * Optional status that is actively in progress. When set, that step is rendered as the current step
1837
+ * (spinner), the steps before it as completed and the steps after it as pending. This is opt-in and
1838
+ * takes precedence over `status`; leave it unset to keep the default `status`/`processing` behavior.
1839
+ */
1840
+ protected readonly inProgressStatus: _angular_core.InputSignal<Status>;
1835
1841
  /**
1836
1842
  * List of statuses, without the `Done` or `Error` suffix.
1837
1843
  */
@@ -1861,6 +1867,8 @@ declare class PipelineStagesProgressComponent<Status extends string, Group exten
1861
1867
  private readonly successes;
1862
1868
  private readonly errors;
1863
1869
  private readonly success;
1870
+ private readonly inProgressIndex;
1871
+ private readonly inProgress;
1864
1872
  private readonly statusGroups;
1865
1873
  private readonly statusIndex;
1866
1874
  private readonly statusesWithStepStatus;
@@ -1887,7 +1895,7 @@ declare class PipelineStagesProgressComponent<Status extends string, Group exten
1887
1895
  private _getGroupColorPalette;
1888
1896
  protected toggleOpenedStage(index: number): void;
1889
1897
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<PipelineStagesProgressComponent<any, any>, never>;
1890
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<PipelineStagesProgressComponent<any, any>, "he-pipeline-stages-progress", never, { "status": { "alias": "status"; "required": false; "isSignal": true; }; "processing": { "alias": "processing"; "required": false; "isSignal": true; }; "statuses": { "alias": "statuses"; "required": true; "isSignal": true; }; "statusToGroupMap": { "alias": "statusToGroupMap"; "required": true; "isSignal": true; }; "statusToLabelMap": { "alias": "statusToLabelMap"; "required": true; "isSignal": true; }; "statusGroupColorFn": { "alias": "statusGroupColorFn"; "required": true; "isSignal": true; }; "statusDurationMap": { "alias": "statusDurationMap"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1898
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<PipelineStagesProgressComponent<any, any>, "he-pipeline-stages-progress", never, { "status": { "alias": "status"; "required": false; "isSignal": true; }; "processing": { "alias": "processing"; "required": false; "isSignal": true; }; "inProgressStatus": { "alias": "inProgressStatus"; "required": false; "isSignal": true; }; "statuses": { "alias": "statuses"; "required": true; "isSignal": true; }; "statusToGroupMap": { "alias": "statusToGroupMap"; "required": true; "isSignal": true; }; "statusToLabelMap": { "alias": "statusToLabelMap"; "required": true; "isSignal": true; }; "statusGroupColorFn": { "alias": "statusGroupColorFn"; "required": true; "isSignal": true; }; "statusDurationMap": { "alias": "statusDurationMap"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1891
1899
  }
1892
1900
 
1893
1901
  interface ContentContext {