@cqa-lib/cqa-ui 1.1.411 → 1.1.412

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.
Files changed (27) hide show
  1. package/esm2020/lib/execution-screen/basic-step/basic-step.component.mjs +1 -1
  2. package/esm2020/lib/execution-screen/condition-debug-step/condition-branch-editor.component.mjs +413 -0
  3. package/esm2020/lib/execution-screen/condition-debug-step/condition-debug-step.component.mjs +904 -0
  4. package/esm2020/lib/execution-screen/condition-step/condition-step.component.mjs +1 -1
  5. package/esm2020/lib/execution-screen/execution-step.models.mjs +1 -1
  6. package/esm2020/lib/execution-screen/jump-to-step-modal/jump-to-step-modal.component.mjs +46 -8
  7. package/esm2020/lib/execution-screen/loop-step/loop-step.component.mjs +9 -3
  8. package/esm2020/lib/execution-screen/step-group/step-group.component.mjs +9 -3
  9. package/esm2020/lib/execution-screen/step-renderer/step-renderer.component.mjs +27 -3
  10. package/esm2020/lib/test-case-details/test-case-step-components.token.mjs +1 -1
  11. package/esm2020/lib/ui-kit.module.mjs +17 -1
  12. package/esm2020/public-api.mjs +3 -1
  13. package/fesm2015/cqa-lib-cqa-ui.mjs +1403 -17
  14. package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
  15. package/fesm2020/cqa-lib-cqa-ui.mjs +1397 -16
  16. package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
  17. package/lib/execution-screen/condition-debug-step/condition-branch-editor.component.d.ts +131 -0
  18. package/lib/execution-screen/condition-debug-step/condition-debug-step.component.d.ts +221 -0
  19. package/lib/execution-screen/execution-step.models.d.ts +5 -0
  20. package/lib/execution-screen/loop-step/loop-step.component.d.ts +7 -1
  21. package/lib/execution-screen/step-group/step-group.component.d.ts +7 -1
  22. package/lib/execution-screen/step-renderer/step-renderer.component.d.ts +7 -1
  23. package/lib/test-case-details/test-case-step-components.token.d.ts +1 -0
  24. package/lib/ui-kit.module.d.ts +116 -114
  25. package/package.json +1 -1
  26. package/public-api.d.ts +2 -0
  27. package/styles.css +1 -1
@@ -0,0 +1,131 @@
1
+ import { EventEmitter, OnInit, OnChanges, SimpleChanges, ChangeDetectorRef } from '@angular/core';
2
+ import { FormArray, FormBuilder, FormGroup } from '@angular/forms';
3
+ import { DynamicSelectFieldConfig } from '../../dynamic-select/dynamic-select-field.component';
4
+ import { ActionTemplate } from '../../step-builder/step-builder-action/step-builder-action.component';
5
+ import * as i0 from "@angular/core";
6
+ export interface ConditionBranchSaveData {
7
+ template: ActionTemplate | null;
8
+ templateVariables: any[];
9
+ advancedSettingsVariables: any[];
10
+ action: string;
11
+ /** Resolved HTML grammar with actual variable values substituted — use for display/conditionText */
12
+ resolvedAction: string;
13
+ description: string;
14
+ metadata: string;
15
+ }
16
+ /**
17
+ * Lightweight single-condition editor used in debug mode to:
18
+ * - Add a new ELSE IF branch (mode = 'add-else-if')
19
+ * - Edit an existing IF or ELSE IF condition (mode = 'edit')
20
+ *
21
+ * This is a simplified variant of StepBuilderConditionComponent with one condition row.
22
+ */
23
+ export declare class ConditionBranchEditorComponent implements OnInit, OnChanges {
24
+ private fb;
25
+ private cdr;
26
+ /** 'add-else-if' shows "Add ELSE IF" title/button; 'edit' shows "Edit Condition" title/button */
27
+ mode: 'add-else-if' | 'edit';
28
+ /** List of condition action templates (filtered to IF_CONDITION type) */
29
+ conditionTemplates: ActionTemplate[];
30
+ /** Called to derive template variables from a selected template */
31
+ setConditionTemplateVariables: (template: ActionTemplate, testStep?: any) => any[];
32
+ /** Called to derive advanced settings variables */
33
+ setAdvancedSettingsVariables: (template: ActionTemplate, testStep?: any) => any[];
34
+ /** Centralised HTML grammar computation function */
35
+ computeHtmlGrammarFn?: (template: any, variables: any[]) => string;
36
+ /** Element options for variable forms */
37
+ elementOptions: any[];
38
+ hasMoreElements: boolean;
39
+ isLoadingElements: boolean;
40
+ screenNameOptions: {
41
+ id?: number;
42
+ name: string;
43
+ }[];
44
+ hasMoreScreenNames: boolean;
45
+ isLoadingScreenNames: boolean;
46
+ parameterOptions: any[];
47
+ hasMoreParameters: boolean;
48
+ isLoadingParameters: boolean;
49
+ environmentOptions: {
50
+ id: string;
51
+ name: string;
52
+ value: string;
53
+ environment: string;
54
+ }[];
55
+ hasMoreEnvironments: boolean;
56
+ isLoadingEnvironments: boolean;
57
+ defaultTestDataProfileId?: number;
58
+ defaultTestDataStartIndex?: number;
59
+ /** When provided, pre-populates the form for edit mode. shape: { templateId, templateVariables, action } */
60
+ initialConditionData?: {
61
+ templateId?: string | number;
62
+ templateVariables?: any[];
63
+ action?: string;
64
+ description?: string;
65
+ metadata?: string;
66
+ };
67
+ /** Raw branch step object — passed through to setConditionTemplateVariables so the service can extract saved values from step.event */
68
+ editTestStep?: any;
69
+ /** Label shown next to the condition template dropdown (e.g. 'IF', 'ELSE IF'). Inferred from mode when not provided. */
70
+ branchLabel?: string;
71
+ /** True while the parent is saving (disables/shows loader on Save button) */
72
+ isSaving: boolean;
73
+ save: EventEmitter<ConditionBranchSaveData>;
74
+ cancelled: EventEmitter<void>;
75
+ loadMoreElements: EventEmitter<void>;
76
+ searchElements: EventEmitter<string>;
77
+ searchElementsByScreenName: EventEmitter<{
78
+ screenNameId: number;
79
+ searchTerm?: string;
80
+ }>;
81
+ createElement: EventEmitter<any>;
82
+ searchScreenName: EventEmitter<string>;
83
+ loadMoreScreenNames: EventEmitter<string>;
84
+ createScreenNameRequest: EventEmitter<string>;
85
+ searchParameters: EventEmitter<string>;
86
+ loadMoreParameters: EventEmitter<void>;
87
+ searchEnvironments: EventEmitter<string>;
88
+ loadMoreEnvironments: EventEmitter<void>;
89
+ conditionForm: FormGroup;
90
+ private selectedTemplate;
91
+ private templateVariables;
92
+ private variablesForm;
93
+ private advancedSettingsVariables;
94
+ private advancedVariablesForm;
95
+ private advancedExpanded;
96
+ private updatedHtmlGrammar;
97
+ private valueConfigCache;
98
+ private valueConfigWithHandler;
99
+ get title(): string;
100
+ get saveButtonLabel(): string;
101
+ get conditionRowLabel(): string;
102
+ constructor(fb: FormBuilder, cdr: ChangeDetectorRef);
103
+ ngOnInit(): void;
104
+ ngOnChanges(changes: SimpleChanges): void;
105
+ private prefillFromInitialData;
106
+ private updateValueConfigCache;
107
+ getValueConfig(): DynamicSelectFieldConfig;
108
+ onTemplateValueChange(templateId: any): void;
109
+ private buildVariablesForm;
110
+ private clearVariablesForm;
111
+ private buildAdvancedVariablesForm;
112
+ private clearAdvancedVariablesForm;
113
+ private updateHtmlGrammar;
114
+ get currentHtmlGrammar(): string;
115
+ getTemplateVariables(): any[];
116
+ getVariablesForm(): FormArray;
117
+ getAdvancedVariables(): any[];
118
+ getAdvancedVariablesForm(): FormArray;
119
+ get isAdvancedExpanded(): boolean;
120
+ toggleAdvanced(): void;
121
+ get hasSelectedTemplate(): ActionTemplate | null;
122
+ onVariableValueChange(name: string, value: any): void;
123
+ onVariableBooleanChange(name: string, value: boolean): void;
124
+ onAdvancedVariableValueChange(name: string, value: any): void;
125
+ onAdvancedVariableBooleanChange(name: string, value: boolean): void;
126
+ isFormValid(): boolean;
127
+ onCancel(): void;
128
+ onSave(): void;
129
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConditionBranchEditorComponent, never>;
130
+ static ɵcmp: i0.ɵɵComponentDeclaration<ConditionBranchEditorComponent, "cqa-condition-branch-editor", never, { "mode": "mode"; "conditionTemplates": "conditionTemplates"; "setConditionTemplateVariables": "setConditionTemplateVariables"; "setAdvancedSettingsVariables": "setAdvancedSettingsVariables"; "computeHtmlGrammarFn": "computeHtmlGrammarFn"; "elementOptions": "elementOptions"; "hasMoreElements": "hasMoreElements"; "isLoadingElements": "isLoadingElements"; "screenNameOptions": "screenNameOptions"; "hasMoreScreenNames": "hasMoreScreenNames"; "isLoadingScreenNames": "isLoadingScreenNames"; "parameterOptions": "parameterOptions"; "hasMoreParameters": "hasMoreParameters"; "isLoadingParameters": "isLoadingParameters"; "environmentOptions": "environmentOptions"; "hasMoreEnvironments": "hasMoreEnvironments"; "isLoadingEnvironments": "isLoadingEnvironments"; "defaultTestDataProfileId": "defaultTestDataProfileId"; "defaultTestDataStartIndex": "defaultTestDataStartIndex"; "initialConditionData": "initialConditionData"; "editTestStep": "editTestStep"; "branchLabel": "branchLabel"; "isSaving": "isSaving"; }, { "save": "save"; "cancelled": "cancelled"; "loadMoreElements": "loadMoreElements"; "searchElements": "searchElements"; "searchElementsByScreenName": "searchElementsByScreenName"; "createElement": "createElement"; "searchScreenName": "searchScreenName"; "loadMoreScreenNames": "loadMoreScreenNames"; "createScreenNameRequest": "createScreenNameRequest"; "searchParameters": "searchParameters"; "loadMoreParameters": "loadMoreParameters"; "searchEnvironments": "searchEnvironments"; "loadMoreEnvironments": "loadMoreEnvironments"; }, never, never>;
131
+ }
@@ -0,0 +1,221 @@
1
+ import { EventEmitter, OnInit, OnChanges, SimpleChanges, ChangeDetectorRef } from '@angular/core';
2
+ import { ConditionStepConfig, ConditionBranch, StepStatus, TimingBreakdown, FailureDetails, SubStep, SelfHealAnalysisData, ExecutionStepConfig, SelfHealActionEvent, AddStepMenuOption, StepMoreMenuOption } from '../execution-step.models';
3
+ import { BaseStepComponent } from '../base-step.component';
4
+ import { makeCurrentBaselineEvent, uploadBaselineEvent } from '../visual-comparison/visual-comparison.component';
5
+ import * as i0 from "@angular/core";
6
+ export declare class ConditionDebugStepComponent extends BaseStepComponent implements OnInit, OnChanges {
7
+ private cdr;
8
+ id: string;
9
+ testStepResultId: string;
10
+ stepNumber: string;
11
+ title: string;
12
+ status: StepStatus;
13
+ duration: number;
14
+ timingBreakdown?: TimingBreakdown;
15
+ expanded?: boolean;
16
+ conditionText: string;
17
+ branches: ConditionBranch[];
18
+ failureDetails?: FailureDetails;
19
+ reasoning?: string[];
20
+ confidence?: string;
21
+ selfHealAnalysis?: SelfHealAnalysisData;
22
+ isLoading?: boolean;
23
+ nestedSteps?: ExecutionStepConfig[];
24
+ hasChild?: boolean;
25
+ stepDeleted?: boolean;
26
+ isDebug?: boolean;
27
+ debugPointSet?: boolean;
28
+ parentSkipped?: boolean;
29
+ getDebugPointSetHandler?: (step: ExecutionStepConfig) => boolean;
30
+ onDebugPointChangeHandler?: (step: ExecutionStepConfig, value: boolean) => void;
31
+ debugPointChange: EventEmitter<boolean>;
32
+ editStep: EventEmitter<void>;
33
+ addStepOptionSelect: EventEmitter<AddStepMenuOption>;
34
+ stepMoreOptionSelect: EventEmitter<StepMoreMenuOption>;
35
+ addStepMenuOptions: AddStepMenuOption[];
36
+ stepMoreMenuOptions: StepMoreMenuOption[];
37
+ ifChild?: any;
38
+ activeBranchStepId?: string | number;
39
+ selectedBranchForDebug: ConditionBranch | null;
40
+ onExpandHandler?: (step: ExecutionStepConfig) => void;
41
+ /** When provided, passed to nested step-renderer so Edit on nested steps is forwarded with the step config. */
42
+ onEditStepHandler?: (step: ExecutionStepConfig) => void;
43
+ onAddStepOptionSelectHandler?: (option: AddStepMenuOption, step?: ExecutionStepConfig) => void;
44
+ onStepMoreOptionSelectHandler?: (option: StepMoreMenuOption, step?: ExecutionStepConfig) => void;
45
+ /** When provided, used to get add-step menu options per nested step; otherwise addStepMenuOptions is used for all. Supports arbitrary nesting. */
46
+ getAddStepMenuOptionsForNested?: (step: ExecutionStepConfig) => AddStepMenuOption[];
47
+ /** When provided, used to get step-more menu options per nested step; otherwise stepMoreMenuOptions is used for all. Supports arbitrary nesting. */
48
+ getStepMoreMenuOptionsForNested?: (step: ExecutionStepConfig) => StepMoreMenuOption[];
49
+ getConditionBranchesHandler?: (step: ExecutionStepConfig) => ConditionBranch[];
50
+ isStepLoadingHandler?: (step: ExecutionStepConfig) => boolean;
51
+ isStepExpandedHandler?: (step: ExecutionStepConfig) => boolean;
52
+ convertMsToSecondsHandler?: (duration: number) => number;
53
+ formatFailureDetailsHandler?: (step: ExecutionStepConfig) => any;
54
+ getSelfHealAnalysisHandler?: (step: ExecutionStepConfig) => any;
55
+ onMakeCurrentBaselineHandler?: (event: any) => void;
56
+ onUploadBaselineHandler?: (event: any) => void;
57
+ onAnalyzeHandler?: () => void;
58
+ onViewFullLogsHandler?: () => void;
59
+ onSelfHealActionHandler?: (event: any) => void;
60
+ getSelfHealLoadingStatesHandler?: () => {
61
+ isLoadingAccept: {
62
+ [key: string]: boolean;
63
+ };
64
+ isLoadingModifyAccept: {
65
+ [key: string]: boolean;
66
+ };
67
+ };
68
+ getLoopIterationsHandler?: (step: ExecutionStepConfig) => any[];
69
+ getApiAssertionsHandler?: (step: ExecutionStepConfig) => any[];
70
+ formatActionsHandler?: (step: ExecutionStepConfig) => any[];
71
+ onViewAllIterationsHandler?: (step: ExecutionStepConfig) => void;
72
+ onConditionBranchClickHandler?: (step: any, branch: any) => void;
73
+ onStepClickHandler?: (step: ExecutionStepConfig, event?: Event) => void;
74
+ onJsonPathCopiedHandler?: (event: {
75
+ path: string;
76
+ source: 'requestBody' | 'responseBody' | 'requestHeaders' | 'responseHeaders';
77
+ }) => void;
78
+ onDownloadHandler?: (event: {
79
+ fileName: string;
80
+ filePath?: string;
81
+ fileType: string;
82
+ testStepResultId: string;
83
+ }) => void;
84
+ onFilePathCopiedHandler?: (event: {
85
+ filePath: string;
86
+ testStepResultId: string;
87
+ }) => void;
88
+ onTextCopiedHandler?: (event: {
89
+ text: string;
90
+ testStepResultId: string;
91
+ }) => void;
92
+ jumpToTimestampHandler?: (timestamp: number, testStepId?: number | string) => void;
93
+ downloadingStepId: string | null;
94
+ step?: any;
95
+ get stepBadges(): ('skipped' | 'edited' | 'added' | 'removed')[];
96
+ get isSkipped(): boolean;
97
+ get isStepDeleted(): boolean;
98
+ onBranchClickEvent: EventEmitter<ConditionBranch>;
99
+ onExpand: EventEmitter<void>;
100
+ addElseIfBranch: EventEmitter<void>;
101
+ addElseBranch: EventEmitter<void>;
102
+ /** Called when user clicks "Add ELSE IF" on a branch row. Passes the condition step and the branchIndex after which to insert. */
103
+ onAddElseIfBranchAtHandler?: (conditionStep: any, branchIndex: number) => void;
104
+ /** Called when user clicks "Add ELSE" on any branch row. Passes the condition step (this.step). */
105
+ onAddElseBranchHandler?: (conditionStep: any) => void;
106
+ /** Called when user clicks the edit icon on an IF or ELSE IF branch. */
107
+ onEditBranchConditionHandler?: (conditionStep: any, branch: any, branchStep: any) => void;
108
+ isUploadingBaseline: {};
109
+ isMakingCurrentBaseline: {};
110
+ isLive: boolean;
111
+ makeCurrentBaseline: EventEmitter<makeCurrentBaselineEvent>;
112
+ uploadBaseline: EventEmitter<uploadBaselineEvent>;
113
+ analyze: EventEmitter<void>;
114
+ viewFullLogs: EventEmitter<void>;
115
+ selfHealAction: EventEmitter<SelfHealActionEvent>;
116
+ showFailedStepDetails: boolean;
117
+ /** Show debug icon only when this step has no child steps (icon is shown on child steps instead). */
118
+ /** Show debug icon when debug mode is on (shown on parent and all child steps). */
119
+ get showDebugIcon(): boolean;
120
+ /** Per-step filtered three-dot menu options (e.g. hide Duplicate/Delete for step-group children). */
121
+ get effectiveStepMoreMenuOptions(): StepMoreMenuOption[];
122
+ /** True when this condition-step's own breakpoint is disabled (used to propagate parentSkipped to children). */
123
+ get selfDebugDisabled(): boolean;
124
+ config: ConditionStepConfig;
125
+ loadingSteps: Set<string>;
126
+ expandedBranches: Set<number>;
127
+ constructor(cdr: ChangeDetectorRef);
128
+ ngOnInit(): void;
129
+ ngOnChanges(changes: SimpleChanges): void;
130
+ toggle(): void;
131
+ isNestedStepLoading(step: ExecutionStepConfig): boolean;
132
+ markStepLoaded(step: ExecutionStepConfig): void;
133
+ toggleBranch(index: number, event?: Event): void;
134
+ isBranchExpanded(index: number): boolean;
135
+ getExecutedBranch(): ConditionBranch | null;
136
+ getUnexecutedBranches(): ConditionBranch[];
137
+ getSubStepIndex(subSteps: any[], subStep: any): number;
138
+ isStepLoading(): boolean;
139
+ onViewMoreFailedStepClick(expanded: boolean): void;
140
+ getSubStepsForFailedStep(): SubStep[];
141
+ onMakeCurrentBaseline(event: makeCurrentBaselineEvent): void;
142
+ onUploadBaseline(event: uploadBaselineEvent): void;
143
+ onAnalyze(): void;
144
+ onViewFullLogs(): void;
145
+ onSelfHealAction(event: SelfHealActionEvent): void;
146
+ get showViewMoreButton(): boolean;
147
+ onDebugPointClick(event: Event): void;
148
+ onEditStep(event: Event): void;
149
+ onAddStepOptionSelect(option: AddStepMenuOption, event: Event): void;
150
+ onStepMoreOptionSelect(option: StepMoreMenuOption, event: Event): void;
151
+ onAddStepInsideBranch(event: Event): void;
152
+ toggleHeader(event?: Event): void;
153
+ get hasExpandableContent(): boolean;
154
+ /** True when any branch has type 'else' — used to hide the "Add ELSE" button. */
155
+ get hasElseBranch(): boolean;
156
+ onAddElseIfClick(event: Event, branchIndex: number): void;
157
+ onAddElseClick(event: Event): void;
158
+ /**
159
+ * Get the child steps for a specific branch using conditionData.
160
+ */
161
+ getBranchChildren(branch: ConditionBranch): any[];
162
+ /**
163
+ * Returns true if the branch's debug point is currently set.
164
+ */
165
+ isBranchDebugPointSet(branch: ConditionBranch): boolean;
166
+ /**
167
+ * Returns true if the branch breakpoint button should be disabled.
168
+ */
169
+ isBranchBreakpointDisabled(branch: ConditionBranch): boolean;
170
+ getBranchBreakpointTooltip(branch: ConditionBranch): string;
171
+ /**
172
+ * Returns the status of a branch step from conditionData.
173
+ */
174
+ getBranchBadges(branch: ConditionBranch): ('skipped' | 'edited' | 'added' | 'removed')[];
175
+ getBranchBgColor(branch: ConditionBranch): string | null;
176
+ getBranchStatus(branch: ConditionBranch): string;
177
+ /**
178
+ * Toggle the debug point for a branch step.
179
+ */
180
+ onBranchDebugPointClick(event: Event, branch: ConditionBranch): void;
181
+ /**
182
+ * Trigger edit for a branch step (the IF/ELSE_IF/ELSE step itself).
183
+ */
184
+ onEditBranchStep(event: Event, branch: ConditionBranch): void;
185
+ /**
186
+ * Returns menu options for a branch's three-dot menu.
187
+ * ELSE branches never get 'duplicate' since only one ELSE is allowed.
188
+ */
189
+ getBranchMoreMenuOptions(branch: ConditionBranch): StepMoreMenuOption[];
190
+ /**
191
+ * Handle three-dot menu option selection for a branch step.
192
+ */
193
+ onBranchMoreOptionSelect(option: StepMoreMenuOption, event: Event, branch: ConditionBranch): void;
194
+ /**
195
+ * Emit an "add step inside branch" action for a specific branch.
196
+ * Used in the new per-branch layout.
197
+ */
198
+ onAddStepInsideSpecificBranch(event: Event, branch: ConditionBranch): void;
199
+ private determineActiveBranch;
200
+ onBranchClick(branch: ConditionBranch): void;
201
+ getBranchClass(branch: any): string;
202
+ /**
203
+ * Check if any branch is executed.
204
+ */
205
+ private hasAnyExecutedBranch;
206
+ onJumpToTimestamp(event: Event): void;
207
+ /**
208
+ * Get the step number for a branch based on its index
209
+ * Mirrors the logic from ConditionStepComponent so numbering is consistent
210
+ * between live and debug views.
211
+ */
212
+ getBranchStepNumber(branchIndex: number): string;
213
+ /**
214
+ * Get the base step number for nested steps within the executed branch.
215
+ * This ensures child steps in debug mode follow the same numbering scheme
216
+ * as in the non-debug condition step component.
217
+ */
218
+ getExecutedBranchBaseStepNumber(): string;
219
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConditionDebugStepComponent, never>;
220
+ static ɵcmp: i0.ɵɵComponentDeclaration<ConditionDebugStepComponent, "cqa-condition-debug-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"; "stepDeleted": "stepDeleted"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "parentSkipped": "parentSkipped"; "getDebugPointSetHandler": "getDebugPointSetHandler"; "onDebugPointChangeHandler": "onDebugPointChangeHandler"; "addStepMenuOptions": "addStepMenuOptions"; "stepMoreMenuOptions": "stepMoreMenuOptions"; "ifChild": "ifChild"; "activeBranchStepId": "activeBranchStepId"; "onExpandHandler": "onExpandHandler"; "onEditStepHandler": "onEditStepHandler"; "onAddStepOptionSelectHandler": "onAddStepOptionSelectHandler"; "onStepMoreOptionSelectHandler": "onStepMoreOptionSelectHandler"; "getAddStepMenuOptionsForNested": "getAddStepMenuOptionsForNested"; "getStepMoreMenuOptionsForNested": "getStepMoreMenuOptionsForNested"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "onConditionBranchClickHandler": "onConditionBranchClickHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "onDownloadHandler": "onDownloadHandler"; "onFilePathCopiedHandler": "onFilePathCopiedHandler"; "onTextCopiedHandler": "onTextCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "downloadingStepId": "downloadingStepId"; "step": "step"; "onAddElseIfBranchAtHandler": "onAddElseIfBranchAtHandler"; "onAddElseBranchHandler": "onAddElseBranchHandler"; "onEditBranchConditionHandler": "onEditBranchConditionHandler"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; }, { "debugPointChange": "debugPointChange"; "editStep": "editStep"; "addStepOptionSelect": "addStepOptionSelect"; "stepMoreOptionSelect": "stepMoreOptionSelect"; "onBranchClickEvent": "onBranchClickEvent"; "onExpand": "onExpand"; "addElseIfBranch": "addElseIfBranch"; "addElseBranch": "addElseBranch"; "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
221
+ }
@@ -23,6 +23,8 @@ export interface LoopIteration {
23
23
  export interface ConditionBranch {
24
24
  type: 'if' | 'else' | 'else if';
25
25
  label: string;
26
+ conditionText?: string;
27
+ conditionType?: string;
26
28
  executed: boolean;
27
29
  subSteps?: SubStep[];
28
30
  branchStepId?: string | number;
@@ -252,6 +254,9 @@ export declare type ExecutionStepConfig = BasicStepConfig | StepGroupConfig | Lo
252
254
  export interface AddStepMenuOption {
253
255
  id: string;
254
256
  label: string;
257
+ position?: string;
258
+ branchType?: string;
259
+ branchStepId?: string | number;
255
260
  }
256
261
  /** Default options for the Add-step dropdown when isDebug is true. */
257
262
  export declare const DEFAULT_ADD_STEP_MENU_OPTIONS: AddStepMenuOption[];
@@ -45,6 +45,12 @@ export declare class LoopStepComponent extends BaseStepComponent implements OnIn
45
45
  getAddStepMenuOptionsForNested?: (step: ExecutionStepConfig) => AddStepMenuOption[];
46
46
  /** When provided, used to get step-more menu options per nested step; otherwise stepMoreMenuOptions is used for all. */
47
47
  getStepMoreMenuOptionsForNested?: (step: ExecutionStepConfig) => StepMoreMenuOption[];
48
+ /** When provided, passed to nested step-renderers so "Add ELSE IF" on condition steps inside this loop works. */
49
+ onAddElseIfBranchAtHandler?: (conditionStep: any, branchIndex: number) => void;
50
+ /** When provided, passed to nested step-renderers so "Add ELSE" on condition steps inside this loop works. */
51
+ onAddElseBranchHandler?: (conditionStep: any) => void;
52
+ /** When provided, passed to nested step-renderers so edit icon on IF/ELSE IF branches inside this loop opens the condition editor. */
53
+ onEditBranchConditionHandler?: (conditionStep: any, branch: any, branchStep: any) => void;
48
54
  getConditionBranchesHandler?: (step: ExecutionStepConfig) => ConditionBranch[];
49
55
  onConditionBranchClickHandler?: (step: any, branch: any) => void;
50
56
  isStepLoadingHandler?: (step: ExecutionStepConfig) => boolean;
@@ -196,5 +202,5 @@ export declare class LoopStepComponent extends BaseStepComponent implements OnIn
196
202
  private addDurationToWaitLocatorGroupEntry;
197
203
  private processSubStepsForRunResult;
198
204
  static ɵfac: i0.ɵɵFactoryDeclaration<LoopStepComponent, never>;
199
- 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"; "isLive": "isLive"; "isLoading": "isLoading"; "stepDeleted": "stepDeleted"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "parentSkipped": "parentSkipped"; "getDebugPointSetHandler": "getDebugPointSetHandler"; "onDebugPointChangeHandler": "onDebugPointChangeHandler"; "addStepMenuOptions": "addStepMenuOptions"; "stepMoreMenuOptions": "stepMoreMenuOptions"; "onExpandHandler": "onExpandHandler"; "onEditStepHandler": "onEditStepHandler"; "onAddStepOptionSelectHandler": "onAddStepOptionSelectHandler"; "onStepMoreOptionSelectHandler": "onStepMoreOptionSelectHandler"; "getAddStepMenuOptionsForNested": "getAddStepMenuOptionsForNested"; "getStepMoreMenuOptionsForNested": "getStepMoreMenuOptionsForNested"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "onConditionBranchClickHandler": "onConditionBranchClickHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "onDownloadHandler": "onDownloadHandler"; "onFilePathCopiedHandler": "onFilePathCopiedHandler"; "onTextCopiedHandler": "onTextCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "downloadingStepId": "downloadingStepId"; "step": "step"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "selfHealAnalysis": "selfHealAnalysis"; "iterationData": "iterationData"; }, { "debugPointChange": "debugPointChange"; "editStep": "editStep"; "addStepOptionSelect": "addStepOptionSelect"; "stepMoreOptionSelect": "stepMoreOptionSelect"; "addStepInsideLoop": "addStepInsideLoop"; "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; "onExpand": "onExpand"; "onViewAllIterations": "onViewAllIterations"; "onIterationChange": "onIterationChange"; }, never, never>;
205
+ 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"; "isLive": "isLive"; "isLoading": "isLoading"; "stepDeleted": "stepDeleted"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "parentSkipped": "parentSkipped"; "getDebugPointSetHandler": "getDebugPointSetHandler"; "onDebugPointChangeHandler": "onDebugPointChangeHandler"; "addStepMenuOptions": "addStepMenuOptions"; "stepMoreMenuOptions": "stepMoreMenuOptions"; "onExpandHandler": "onExpandHandler"; "onEditStepHandler": "onEditStepHandler"; "onAddStepOptionSelectHandler": "onAddStepOptionSelectHandler"; "onStepMoreOptionSelectHandler": "onStepMoreOptionSelectHandler"; "getAddStepMenuOptionsForNested": "getAddStepMenuOptionsForNested"; "getStepMoreMenuOptionsForNested": "getStepMoreMenuOptionsForNested"; "onAddElseIfBranchAtHandler": "onAddElseIfBranchAtHandler"; "onAddElseBranchHandler": "onAddElseBranchHandler"; "onEditBranchConditionHandler": "onEditBranchConditionHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "onConditionBranchClickHandler": "onConditionBranchClickHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "onDownloadHandler": "onDownloadHandler"; "onFilePathCopiedHandler": "onFilePathCopiedHandler"; "onTextCopiedHandler": "onTextCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "downloadingStepId": "downloadingStepId"; "step": "step"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "selfHealAnalysis": "selfHealAnalysis"; "iterationData": "iterationData"; }, { "debugPointChange": "debugPointChange"; "editStep": "editStep"; "addStepOptionSelect": "addStepOptionSelect"; "stepMoreOptionSelect": "stepMoreOptionSelect"; "addStepInsideLoop": "addStepInsideLoop"; "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; "onExpand": "onExpand"; "onViewAllIterations": "onViewAllIterations"; "onIterationChange": "onIterationChange"; }, never, never>;
200
206
  }
@@ -39,6 +39,12 @@ export declare class StepGroupComponent extends BaseStepComponent implements OnI
39
39
  getAddStepMenuOptionsForNested?: (step: ExecutionStepConfig) => AddStepMenuOption[];
40
40
  /** When provided, used to get step-more menu options per nested step at any depth; otherwise stepMoreMenuOptions is used. */
41
41
  getStepMoreMenuOptionsForNested?: (step: ExecutionStepConfig) => StepMoreMenuOption[];
42
+ /** When provided, passed to nested step-renderers so "Add ELSE IF" on condition steps inside this step-group works. */
43
+ onAddElseIfBranchAtHandler?: (conditionStep: any, branchIndex: number) => void;
44
+ /** When provided, passed to nested step-renderers so "Add ELSE" on condition steps inside this step-group works. */
45
+ onAddElseBranchHandler?: (conditionStep: any) => void;
46
+ /** When provided, passed to nested step-renderers so edit icon on IF/ELSE IF branches inside this step-group opens the condition editor. */
47
+ onEditBranchConditionHandler?: (conditionStep: any, branch: any, branchStep: any) => void;
42
48
  getConditionBranchesHandler?: (step: ExecutionStepConfig) => ConditionBranch[];
43
49
  onConditionBranchClickHandler?: (step: any, branch: any) => void;
44
50
  isStepLoadingHandler?: (step: ExecutionStepConfig) => boolean;
@@ -139,5 +145,5 @@ export declare class StepGroupComponent extends BaseStepComponent implements OnI
139
145
  isStepLoading(): boolean;
140
146
  onJumpToTimestamp(event: Event): void;
141
147
  static ɵfac: i0.ɵɵFactoryDeclaration<StepGroupComponent, never>;
142
- 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"; "isLoading": "isLoading"; "stepDeleted": "stepDeleted"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "parentSkipped": "parentSkipped"; "getDebugPointSetHandler": "getDebugPointSetHandler"; "onDebugPointChangeHandler": "onDebugPointChangeHandler"; "addStepMenuOptions": "addStepMenuOptions"; "stepMoreMenuOptions": "stepMoreMenuOptions"; "onExpandHandler": "onExpandHandler"; "onEditStepHandler": "onEditStepHandler"; "onAddStepOptionSelectHandler": "onAddStepOptionSelectHandler"; "onStepMoreOptionSelectHandler": "onStepMoreOptionSelectHandler"; "getAddStepMenuOptionsForNested": "getAddStepMenuOptionsForNested"; "getStepMoreMenuOptionsForNested": "getStepMoreMenuOptionsForNested"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "onConditionBranchClickHandler": "onConditionBranchClickHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "onDownloadHandler": "onDownloadHandler"; "onFilePathCopiedHandler": "onFilePathCopiedHandler"; "onTextCopiedHandler": "onTextCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "downloadingStepId": "downloadingStepId"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; "step": "step"; }, { "debugPointChange": "debugPointChange"; "editStep": "editStep"; "addStepOptionSelect": "addStepOptionSelect"; "stepMoreOptionSelect": "stepMoreOptionSelect"; "onExpand": "onExpand"; }, never, never>;
148
+ 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"; "isLoading": "isLoading"; "stepDeleted": "stepDeleted"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "parentSkipped": "parentSkipped"; "getDebugPointSetHandler": "getDebugPointSetHandler"; "onDebugPointChangeHandler": "onDebugPointChangeHandler"; "addStepMenuOptions": "addStepMenuOptions"; "stepMoreMenuOptions": "stepMoreMenuOptions"; "onExpandHandler": "onExpandHandler"; "onEditStepHandler": "onEditStepHandler"; "onAddStepOptionSelectHandler": "onAddStepOptionSelectHandler"; "onStepMoreOptionSelectHandler": "onStepMoreOptionSelectHandler"; "getAddStepMenuOptionsForNested": "getAddStepMenuOptionsForNested"; "getStepMoreMenuOptionsForNested": "getStepMoreMenuOptionsForNested"; "onAddElseIfBranchAtHandler": "onAddElseIfBranchAtHandler"; "onAddElseBranchHandler": "onAddElseBranchHandler"; "onEditBranchConditionHandler": "onEditBranchConditionHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "onConditionBranchClickHandler": "onConditionBranchClickHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "onDownloadHandler": "onDownloadHandler"; "onFilePathCopiedHandler": "onFilePathCopiedHandler"; "onTextCopiedHandler": "onTextCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "downloadingStepId": "downloadingStepId"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; "step": "step"; }, { "debugPointChange": "debugPointChange"; "editStep": "editStep"; "addStepOptionSelect": "addStepOptionSelect"; "stepMoreOptionSelect": "stepMoreOptionSelect"; "onExpand": "onExpand"; }, never, never>;
143
149
  }
@@ -80,6 +80,12 @@ export declare class StepRendererComponent implements OnChanges, AfterViewInit,
80
80
  getAddStepMenuOptionsForNested?: (step: ExecutionStepConfig) => AddStepMenuOption[];
81
81
  /** When provided, passed to loop/condition steps so they can supply per-step menu options to their nested step-renderers (supports arbitrary nesting). */
82
82
  getStepMoreMenuOptionsForNested?: (step: ExecutionStepConfig) => StepMoreMenuOption[];
83
+ /** When provided, passed down to condition-debug-step so "Add ELSE IF" button works inside nested containers (loops, step-groups). */
84
+ onAddElseIfBranchAtHandler?: (conditionStep: any, branchIndex: number) => void;
85
+ /** When provided, passed down to condition-debug-step so "Add ELSE" button works inside nested containers (loops, step-groups). */
86
+ onAddElseBranchHandler?: (conditionStep: any) => void;
87
+ /** When provided, passed down to condition-debug-step so edit icon on IF/ELSE IF branches opens the condition editor. */
88
+ onEditBranchConditionHandler?: (conditionStep: any, branch: any, branchStep: any) => void;
83
89
  stepNumber?: string;
84
90
  /** When true, the parent step is skipped — breakpoints on all nested steps are disabled. */
85
91
  parentSkipped?: boolean;
@@ -140,5 +146,5 @@ export declare class StepRendererComponent implements OnChanges, AfterViewInit,
140
146
  private loadComponent;
141
147
  ngDoCheck(): void;
142
148
  static ɵfac: i0.ɵɵFactoryDeclaration<StepRendererComponent, never>;
143
- 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"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "selectedIterationId": "selectedIterationId"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "onConditionBranchClickHandler": "onConditionBranchClickHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "onDownloadHandler": "onDownloadHandler"; "onFilePathCopiedHandler": "onFilePathCopiedHandler"; "onTextCopiedHandler": "onTextCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "downloadingStepId": "downloadingStepId"; "isLive": "isLive"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "getDebugPointSetHandler": "getDebugPointSetHandler"; "onDebugPointChangeHandler": "onDebugPointChangeHandler"; "onEditStepHandler": "onEditStepHandler"; "addStepMenuOptions": "addStepMenuOptions"; "onAddStepOptionSelectHandler": "onAddStepOptionSelectHandler"; "stepMoreMenuOptions": "stepMoreMenuOptions"; "onStepMoreOptionSelectHandler": "onStepMoreOptionSelectHandler"; "getAddStepMenuOptionsForNested": "getAddStepMenuOptionsForNested"; "getStepMoreMenuOptionsForNested": "getStepMoreMenuOptionsForNested"; "stepNumber": "stepNumber"; "parentSkipped": "parentSkipped"; }, { "addStepOptionSelect": "addStepOptionSelect"; "stepMoreOptionSelect": "stepMoreOptionSelect"; "addStepInsideLoop": "addStepInsideLoop"; "componentReady": "componentReady"; }, never, never>;
149
+ 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"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "selectedIterationId": "selectedIterationId"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "onConditionBranchClickHandler": "onConditionBranchClickHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "onDownloadHandler": "onDownloadHandler"; "onFilePathCopiedHandler": "onFilePathCopiedHandler"; "onTextCopiedHandler": "onTextCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "downloadingStepId": "downloadingStepId"; "isLive": "isLive"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "getDebugPointSetHandler": "getDebugPointSetHandler"; "onDebugPointChangeHandler": "onDebugPointChangeHandler"; "onEditStepHandler": "onEditStepHandler"; "addStepMenuOptions": "addStepMenuOptions"; "onAddStepOptionSelectHandler": "onAddStepOptionSelectHandler"; "stepMoreMenuOptions": "stepMoreMenuOptions"; "onStepMoreOptionSelectHandler": "onStepMoreOptionSelectHandler"; "getAddStepMenuOptionsForNested": "getAddStepMenuOptionsForNested"; "getStepMoreMenuOptionsForNested": "getStepMoreMenuOptionsForNested"; "onAddElseIfBranchAtHandler": "onAddElseIfBranchAtHandler"; "onAddElseBranchHandler": "onAddElseBranchHandler"; "onEditBranchConditionHandler": "onEditBranchConditionHandler"; "stepNumber": "stepNumber"; "parentSkipped": "parentSkipped"; }, { "addStepOptionSelect": "addStepOptionSelect"; "stepMoreOptionSelect": "stepMoreOptionSelect"; "addStepInsideLoop": "addStepInsideLoop"; "componentReady": "componentReady"; }, never, never>;
144
150
  }
@@ -3,6 +3,7 @@ import { InjectionToken, Type } from '@angular/core';
3
3
  export interface TestCaseStepComponentMap {
4
4
  stepGroup: Type<unknown>;
5
5
  conditionStep: Type<unknown>;
6
+ conditionDebugStep: Type<unknown>;
6
7
  loopStep: Type<unknown>;
7
8
  normalStep: Type<unknown>;
8
9
  apiStep: Type<unknown>;