@hestia-earth/ui-components 0.42.22 → 0.42.24
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
|
@@ -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
|
*/
|
|
@@ -1856,11 +1862,17 @@ declare class PipelineStagesProgressComponent<Status extends string, Group exten
|
|
|
1856
1862
|
* Duration per status, in milliseconds.
|
|
1857
1863
|
*/
|
|
1858
1864
|
protected readonly statusDurationMap: _angular_core.InputSignal<Record<Status, number>>;
|
|
1865
|
+
/**
|
|
1866
|
+
* Optional subtitle rendered under each step label (e.g. the provider/model used for that step).
|
|
1867
|
+
*/
|
|
1868
|
+
protected readonly statusSubtitleMap: _angular_core.InputSignal<Record<Status, string>>;
|
|
1859
1869
|
protected readonly openedStage: _angular_core.WritableSignal<number>;
|
|
1860
1870
|
protected readonly slideDirection: _angular_core.WritableSignal<"up" | "down">;
|
|
1861
1871
|
private readonly successes;
|
|
1862
1872
|
private readonly errors;
|
|
1863
1873
|
private readonly success;
|
|
1874
|
+
private readonly inProgressIndex;
|
|
1875
|
+
private readonly inProgress;
|
|
1864
1876
|
private readonly statusGroups;
|
|
1865
1877
|
private readonly statusIndex;
|
|
1866
1878
|
private readonly statusesWithStepStatus;
|
|
@@ -1871,6 +1883,7 @@ declare class PipelineStagesProgressComponent<Status extends string, Group exten
|
|
|
1871
1883
|
group: Record<Status, Group>[Status];
|
|
1872
1884
|
stepStatus: StepStatus;
|
|
1873
1885
|
duration: Record<Status, number>[Status];
|
|
1886
|
+
subtitle: Record<Status, string>[Status];
|
|
1874
1887
|
}[];
|
|
1875
1888
|
valid: boolean;
|
|
1876
1889
|
palette: {
|
|
@@ -1887,7 +1900,7 @@ declare class PipelineStagesProgressComponent<Status extends string, Group exten
|
|
|
1887
1900
|
private _getGroupColorPalette;
|
|
1888
1901
|
protected toggleOpenedStage(index: number): void;
|
|
1889
1902
|
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>;
|
|
1903
|
+
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; }; "statusSubtitleMap": { "alias": "statusSubtitleMap"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1891
1904
|
}
|
|
1892
1905
|
|
|
1893
1906
|
interface ContentContext {
|