@cqa-lib/cqa-ui 1.1.72 → 1.1.74
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/execution-screen/ai-agent-step/ai-agent-step.component.mjs +47 -3
- package/esm2020/lib/execution-screen/api-step/api-step.component.mjs +3 -3
- package/esm2020/lib/execution-screen/basic-step/basic-step.component.mjs +9 -3
- package/esm2020/lib/execution-screen/condition-step/condition-step.component.mjs +65 -9
- package/esm2020/lib/execution-screen/execution-step.models.mjs +1 -1
- package/esm2020/lib/execution-screen/loop-step/loop-step.component.mjs +9 -3
- package/esm2020/lib/execution-screen/step-group/step-group.component.mjs +15 -7
- package/esm2020/lib/execution-screen/step-renderer/step-renderer.component.mjs +69 -2
- package/fesm2015/cqa-lib-cqa-ui.mjs +205 -19
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +205 -19
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/execution-screen/ai-agent-step/ai-agent-step.component.d.ts +6 -1
- package/lib/execution-screen/basic-step/basic-step.component.d.ts +4 -1
- package/lib/execution-screen/condition-step/condition-step.component.d.ts +18 -2
- package/lib/execution-screen/execution-step.models.d.ts +1 -0
- package/lib/execution-screen/loop-step/loop-step.component.d.ts +4 -1
- package/lib/execution-screen/step-group/step-group.component.d.ts +7 -2
- package/lib/execution-screen/step-renderer/step-renderer.component.d.ts +4 -1
- package/package.json +1 -1
- package/styles.css +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { AIAgentStepConfig, AIAgentAction, StepStatus, TimingBreakdown, FailureDetails, SubStep, SelfHealAnalysisData, SelfHealAction } from '../execution-step.models';
|
|
3
3
|
import { BaseStepComponent } from '../base-step.component';
|
|
4
4
|
import { makeCurrentBaselineEvent, uploadBaselineEvent } from '../visual-comparison/visual-comparison.component';
|
|
@@ -32,8 +32,13 @@ export declare class AIAgentStepComponent extends BaseStepComponent implements O
|
|
|
32
32
|
healedLocator: string;
|
|
33
33
|
}>;
|
|
34
34
|
config: AIAgentStepConfig;
|
|
35
|
+
private previousStatus?;
|
|
36
|
+
private userManuallyClosed;
|
|
35
37
|
selectedTab: 'action-trace' | 'planner-timeline' | 'ai-reasoning';
|
|
36
38
|
ngOnInit(): void;
|
|
39
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
40
|
+
private autoExpand;
|
|
41
|
+
get hasSubSteps(): boolean;
|
|
37
42
|
selectTab(tab: 'action-trace' | 'planner-timeline' | 'ai-reasoning'): void;
|
|
38
43
|
getActionIcon(actionType: 'extract' | 'validate'): string;
|
|
39
44
|
copyToClipboard(text: string): void;
|
|
@@ -35,6 +35,9 @@ export declare class BasicStepComponent extends BaseStepComponent implements OnI
|
|
|
35
35
|
onViewFullLogsHandler?: () => void;
|
|
36
36
|
onSelfHealActionHandler?: (event: any) => void;
|
|
37
37
|
getLoopIterationsHandler?: (step: ExecutionStepConfig) => any[];
|
|
38
|
+
getApiAssertionsHandler?: (step: ExecutionStepConfig) => any[];
|
|
39
|
+
formatActionsHandler?: (step: ExecutionStepConfig) => any[];
|
|
40
|
+
onViewAllIterationsHandler?: (step: ExecutionStepConfig) => void;
|
|
38
41
|
makeCurrentBaseline: EventEmitter<makeCurrentBaselineEvent>;
|
|
39
42
|
uploadBaseline: EventEmitter<uploadBaselineEvent>;
|
|
40
43
|
analyze: EventEmitter<void>;
|
|
@@ -60,5 +63,5 @@ export declare class BasicStepComponent extends BaseStepComponent implements OnI
|
|
|
60
63
|
toggle(): void;
|
|
61
64
|
toggleHeader(): void;
|
|
62
65
|
static ɵfac: i0.ɵɵFactoryDeclaration<BasicStepComponent, never>;
|
|
63
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BasicStepComponent, "cqa-basic-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "subSteps": "subSteps"; "selfHealAnalysis": "selfHealAnalysis"; "selfHealed": "selfHealed"; "selfHealDuration": "selfHealDuration"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "isUploadingBaseline": "isUploadingBaseline"; "nestedSteps": "nestedSteps"; "hasChild": "hasChild"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
|
|
66
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BasicStepComponent, "cqa-basic-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "subSteps": "subSteps"; "selfHealAnalysis": "selfHealAnalysis"; "selfHealed": "selfHealed"; "selfHealDuration": "selfHealDuration"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "isUploadingBaseline": "isUploadingBaseline"; "nestedSteps": "nestedSteps"; "hasChild": "hasChild"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
|
|
64
67
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { ConditionStepConfig, ConditionBranch, StepStatus, TimingBreakdown, FailureDetails, SubStep, SelfHealAnalysisData, SelfHealAction } from '../execution-step.models';
|
|
2
|
+
import { ConditionStepConfig, ConditionBranch, StepStatus, TimingBreakdown, FailureDetails, SubStep, SelfHealAnalysisData, SelfHealAction, ExecutionStepConfig } from '../execution-step.models';
|
|
3
3
|
import { BaseStepComponent } from '../base-step.component';
|
|
4
4
|
import { makeCurrentBaselineEvent, uploadBaselineEvent } from '../visual-comparison/visual-comparison.component';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
@@ -19,6 +19,21 @@ export declare class ConditionStepComponent extends BaseStepComponent implements
|
|
|
19
19
|
confidence?: string;
|
|
20
20
|
selfHealAnalysis?: SelfHealAnalysisData;
|
|
21
21
|
isLoading?: boolean;
|
|
22
|
+
nestedSteps?: ExecutionStepConfig[];
|
|
23
|
+
hasChild?: boolean;
|
|
24
|
+
onExpandHandler?: (step: ExecutionStepConfig) => void;
|
|
25
|
+
getConditionBranchesHandler?: (step: ExecutionStepConfig) => ConditionBranch[];
|
|
26
|
+
isStepLoadingHandler?: (step: ExecutionStepConfig) => boolean;
|
|
27
|
+
isStepExpandedHandler?: (step: ExecutionStepConfig) => boolean;
|
|
28
|
+
convertMsToSecondsHandler?: (duration: number) => number;
|
|
29
|
+
formatFailureDetailsHandler?: (step: ExecutionStepConfig) => any;
|
|
30
|
+
getSelfHealAnalysisHandler?: (step: ExecutionStepConfig) => any;
|
|
31
|
+
onMakeCurrentBaselineHandler?: (event: any) => void;
|
|
32
|
+
onUploadBaselineHandler?: (event: any) => void;
|
|
33
|
+
onAnalyzeHandler?: () => void;
|
|
34
|
+
onViewFullLogsHandler?: () => void;
|
|
35
|
+
onSelfHealActionHandler?: (event: any) => void;
|
|
36
|
+
getLoopIterationsHandler?: (step: ExecutionStepConfig) => any[];
|
|
22
37
|
onBranchClickEvent: EventEmitter<ConditionBranch>;
|
|
23
38
|
onExpand: EventEmitter<void>;
|
|
24
39
|
isUploadingBaseline: {};
|
|
@@ -49,6 +64,7 @@ export declare class ConditionStepComponent extends BaseStepComponent implements
|
|
|
49
64
|
}): void;
|
|
50
65
|
get showViewMoreButton(): boolean;
|
|
51
66
|
toggleHeader(): void;
|
|
67
|
+
get hasExpandableContent(): boolean;
|
|
52
68
|
static ɵfac: i0.ɵɵFactoryDeclaration<ConditionStepComponent, never>;
|
|
53
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ConditionStepComponent, "cqa-condition-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "conditionText": "conditionText"; "branches": "branches"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "selfHealAnalysis": "selfHealAnalysis"; "isLoading": "isLoading"; "isUploadingBaseline": "isUploadingBaseline"; }, { "onBranchClickEvent": "onBranchClickEvent"; "onExpand": "onExpand"; "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
|
|
69
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConditionStepComponent, "cqa-condition-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "conditionText": "conditionText"; "branches": "branches"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "selfHealAnalysis": "selfHealAnalysis"; "isLoading": "isLoading"; "nestedSteps": "nestedSteps"; "hasChild": "hasChild"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "isUploadingBaseline": "isUploadingBaseline"; }, { "onBranchClickEvent": "onBranchClickEvent"; "onExpand": "onExpand"; "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
|
|
54
70
|
}
|
|
@@ -90,6 +90,7 @@ export interface ConditionStepConfig extends BaseStepConfig {
|
|
|
90
90
|
type: 'condition';
|
|
91
91
|
conditionText: string;
|
|
92
92
|
branches: ConditionBranch[];
|
|
93
|
+
nestedSteps?: ExecutionStepConfig[];
|
|
93
94
|
}
|
|
94
95
|
export interface FailedStepConfig extends BaseStepConfig {
|
|
95
96
|
type: 'failed';
|
|
@@ -32,6 +32,9 @@ export declare class LoopStepComponent extends BaseStepComponent implements OnIn
|
|
|
32
32
|
onViewFullLogsHandler?: () => void;
|
|
33
33
|
onSelfHealActionHandler?: (event: any) => void;
|
|
34
34
|
getLoopIterationsHandler?: (step: ExecutionStepConfig) => any[];
|
|
35
|
+
getApiAssertionsHandler?: (step: ExecutionStepConfig) => any[];
|
|
36
|
+
formatActionsHandler?: (step: ExecutionStepConfig) => any[];
|
|
37
|
+
onViewAllIterationsHandler?: (step: ExecutionStepConfig) => void;
|
|
35
38
|
failureDetails?: FailureDetails;
|
|
36
39
|
reasoning?: string[];
|
|
37
40
|
confidence?: string;
|
|
@@ -103,5 +106,5 @@ export declare class LoopStepComponent extends BaseStepComponent implements OnIn
|
|
|
103
106
|
getLoopDefaultIteration(step: ExecutionStepConfig): 'first' | 'last' | undefined;
|
|
104
107
|
getLoopShowViewAllIterations(step: ExecutionStepConfig): boolean | undefined;
|
|
105
108
|
static ɵfac: i0.ɵɵFactoryDeclaration<LoopStepComponent, never>;
|
|
106
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LoopStepComponent, "cqa-loop-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "loopType": "loopType"; "iterations": "iterations"; "selectedIterationId": "selectedIterationId"; "defaultIteration": "defaultIteration"; "nestedSteps": "nestedSteps"; "showViewAllIterations": "showViewAllIterations"; "hasChild": "hasChild"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "isUploadingBaseline": "isUploadingBaseline"; "selfHealAnalysis": "selfHealAnalysis"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; "onExpand": "onExpand"; "onViewAllIterations": "onViewAllIterations"; "onIterationChange": "onIterationChange"; }, never, never>;
|
|
109
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoopStepComponent, "cqa-loop-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "loopType": "loopType"; "iterations": "iterations"; "selectedIterationId": "selectedIterationId"; "defaultIteration": "defaultIteration"; "nestedSteps": "nestedSteps"; "showViewAllIterations": "showViewAllIterations"; "hasChild": "hasChild"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "isUploadingBaseline": "isUploadingBaseline"; "selfHealAnalysis": "selfHealAnalysis"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; "onExpand": "onExpand"; "onViewAllIterations": "onViewAllIterations"; "onIterationChange": "onIterationChange"; }, never, never>;
|
|
107
110
|
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnInit, OnChanges, SimpleChanges, ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { StepGroupConfig, ConditionBranch, ExecutionStepConfig, StepStatus, TimingBreakdown } from '../execution-step.models';
|
|
3
3
|
import { BaseStepComponent } from '../base-step.component';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class StepGroupComponent extends BaseStepComponent implements OnInit, OnChanges {
|
|
6
|
+
private cdr;
|
|
6
7
|
id: string;
|
|
7
8
|
testStepResultId: string;
|
|
8
9
|
stepNumber: string;
|
|
@@ -27,9 +28,13 @@ export declare class StepGroupComponent extends BaseStepComponent implements OnI
|
|
|
27
28
|
onViewFullLogsHandler?: () => void;
|
|
28
29
|
onSelfHealActionHandler?: (event: any) => void;
|
|
29
30
|
getLoopIterationsHandler?: (step: ExecutionStepConfig) => any[];
|
|
31
|
+
getApiAssertionsHandler?: (step: ExecutionStepConfig) => any[];
|
|
32
|
+
formatActionsHandler?: (step: ExecutionStepConfig) => any[];
|
|
33
|
+
onViewAllIterationsHandler?: (step: ExecutionStepConfig) => void;
|
|
30
34
|
isUploadingBaseline?: any;
|
|
31
35
|
onExpand: EventEmitter<void>;
|
|
32
36
|
config: StepGroupConfig;
|
|
37
|
+
constructor(cdr: ChangeDetectorRef);
|
|
33
38
|
ngOnInit(): void;
|
|
34
39
|
ngOnChanges(changes: SimpleChanges): void;
|
|
35
40
|
private updateConfig;
|
|
@@ -59,5 +64,5 @@ export declare class StepGroupComponent extends BaseStepComponent implements OnI
|
|
|
59
64
|
getLoopDefaultIteration(step: ExecutionStepConfig): 'first' | 'last' | undefined;
|
|
60
65
|
getLoopShowViewAllIterations(step: ExecutionStepConfig): boolean | undefined;
|
|
61
66
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepGroupComponent, never>;
|
|
62
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepGroupComponent, "cqa-step-group", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "groupName": "groupName"; "steps": "steps"; "hasChild": "hasChild"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "isUploadingBaseline": "isUploadingBaseline"; }, { "onExpand": "onExpand"; }, never, never>;
|
|
67
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepGroupComponent, "cqa-step-group", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "groupName": "groupName"; "steps": "steps"; "hasChild": "hasChild"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "isUploadingBaseline": "isUploadingBaseline"; }, { "onExpand": "onExpand"; }, never, never>;
|
|
63
68
|
}
|
|
@@ -23,11 +23,14 @@ export declare class StepRendererComponent implements OnChanges, AfterViewInit {
|
|
|
23
23
|
onSelfHealActionHandler?: (event: any) => void;
|
|
24
24
|
isUploadingBaseline?: any;
|
|
25
25
|
getLoopIterationsHandler?: (step: ExecutionStepConfig) => any[];
|
|
26
|
+
getApiAssertionsHandler?: (step: ExecutionStepConfig) => any[];
|
|
27
|
+
formatActionsHandler?: (step: ExecutionStepConfig) => any[];
|
|
28
|
+
onViewAllIterationsHandler?: (step: ExecutionStepConfig) => void;
|
|
26
29
|
container: ViewContainerRef;
|
|
27
30
|
constructor(componentMap: Map<string, Type<any>>);
|
|
28
31
|
ngOnChanges(changes: SimpleChanges): void;
|
|
29
32
|
ngAfterViewInit(): void;
|
|
30
33
|
private loadComponent;
|
|
31
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepRendererComponent, never>;
|
|
32
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepRendererComponent, "cqa-step-renderer", never, { "step": "step"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "isUploadingBaseline": "isUploadingBaseline"; "getLoopIterationsHandler": "getLoopIterationsHandler"; }, {}, never, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepRendererComponent, "cqa-step-renderer", never, { "step": "step"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "isUploadingBaseline": "isUploadingBaseline"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; }, {}, never, never>;
|
|
33
36
|
}
|