@cqa-lib/cqa-ui 1.1.117 → 1.1.118
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/esm2020/lib/run-history-card/run-history-card.component.mjs +43 -4
- package/fesm2015/cqa-lib-cqa-ui.mjs +40 -2
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +40 -2
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/run-history-card/run-history-card.component.d.ts +5 -1
- package/package.json +1 -1
|
@@ -3,6 +3,7 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare type RunStatus = 'passed' | 'failed' | 'aborted' | 'running' | 'stopped' | 'queued' | 'not-executed' | 'unknown';
|
|
4
4
|
export declare type RunType = 'automated' | 'manual';
|
|
5
5
|
export declare type CardSize = 'normal' | 'small';
|
|
6
|
+
export declare type Platform = 'ios' | 'android' | 'web' | 'chromium' | 'desktop';
|
|
6
7
|
export declare class RunHistoryCardComponent {
|
|
7
8
|
id: number;
|
|
8
9
|
status: RunStatus;
|
|
@@ -13,6 +14,7 @@ export declare class RunHistoryCardComponent {
|
|
|
13
14
|
errorMessage?: string;
|
|
14
15
|
size: CardSize;
|
|
15
16
|
durationTooltip?: string;
|
|
17
|
+
platform?: Platform;
|
|
16
18
|
headingClicked: EventEmitter<void>;
|
|
17
19
|
get statusLabel(): string;
|
|
18
20
|
get statusColor(): string;
|
|
@@ -35,7 +37,9 @@ export declare class RunHistoryCardComponent {
|
|
|
35
37
|
};
|
|
36
38
|
get cardPadding(): string;
|
|
37
39
|
get borderLeftWidth(): string;
|
|
40
|
+
get platformIcon(): string;
|
|
41
|
+
get platformLabel(): string;
|
|
38
42
|
linkClicked(): void;
|
|
39
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<RunHistoryCardComponent, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RunHistoryCardComponent, "cqa-run-history-card", never, { "id": "id"; "status": "status"; "type": "type"; "timestamp": "timestamp"; "duration": "duration"; "runLabel": "runLabel"; "errorMessage": "errorMessage"; "size": "size"; "durationTooltip": "durationTooltip"; }, { "headingClicked": "headingClicked"; }, never, never>;
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RunHistoryCardComponent, "cqa-run-history-card", never, { "id": "id"; "status": "status"; "type": "type"; "timestamp": "timestamp"; "duration": "duration"; "runLabel": "runLabel"; "errorMessage": "errorMessage"; "size": "size"; "durationTooltip": "durationTooltip"; "platform": "platform"; }, { "headingClicked": "headingClicked"; }, never, never>;
|
|
41
45
|
}
|