@cqa-lib/cqa-ui 1.1.195 → 1.1.197

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 (34) hide show
  1. package/esm2020/lib/execution-screen/ai-action-step/ai-action-step.component.mjs +14 -3
  2. package/esm2020/lib/execution-screen/ai-agent-step/ai-agent-step.component.mjs +14 -3
  3. package/esm2020/lib/execution-screen/api-step/api-step.component.mjs +14 -3
  4. package/esm2020/lib/execution-screen/basic-step/basic-step.component.mjs +18 -3
  5. package/esm2020/lib/execution-screen/condition-step/condition-step.component.mjs +18 -3
  6. package/esm2020/lib/execution-screen/db-verification-step/db-verification-step.component.mjs +14 -3
  7. package/esm2020/lib/execution-screen/document-verification-step/document-verification-step.component.mjs +15 -4
  8. package/esm2020/lib/execution-screen/file-download-step/file-download-step.component.mjs +14 -3
  9. package/esm2020/lib/execution-screen/live-execution-step/live-execution-step.component.mjs +15 -4
  10. package/esm2020/lib/execution-screen/loop-step/loop-step.component.mjs +18 -3
  11. package/esm2020/lib/execution-screen/step-group/step-group.component.mjs +18 -3
  12. package/esm2020/lib/execution-screen/step-renderer/step-renderer.component.mjs +47 -2
  13. package/esm2020/lib/step-builder/step-builder-database/step-builder-database.component.mjs +531 -13
  14. package/esm2020/lib/ui-kit.module.mjs +9 -1
  15. package/fesm2015/cqa-lib-cqa-ui.mjs +759 -54
  16. package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
  17. package/fesm2020/cqa-lib-cqa-ui.mjs +756 -54
  18. package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
  19. package/lib/execution-screen/ai-action-step/ai-action-step.component.d.ts +4 -1
  20. package/lib/execution-screen/ai-agent-step/ai-agent-step.component.d.ts +4 -1
  21. package/lib/execution-screen/api-step/api-step.component.d.ts +4 -1
  22. package/lib/execution-screen/basic-step/basic-step.component.d.ts +6 -1
  23. package/lib/execution-screen/condition-step/condition-step.component.d.ts +6 -1
  24. package/lib/execution-screen/db-verification-step/db-verification-step.component.d.ts +4 -1
  25. package/lib/execution-screen/document-verification-step/document-verification-step.component.d.ts +5 -2
  26. package/lib/execution-screen/file-download-step/file-download-step.component.d.ts +4 -1
  27. package/lib/execution-screen/live-execution-step/live-execution-step.component.d.ts +5 -2
  28. package/lib/execution-screen/loop-step/loop-step.component.d.ts +6 -1
  29. package/lib/execution-screen/step-group/step-group.component.d.ts +6 -1
  30. package/lib/execution-screen/step-renderer/step-renderer.component.d.ts +4 -1
  31. package/lib/step-builder/step-builder-database/step-builder-database.component.d.ts +105 -5
  32. package/lib/ui-kit.module.d.ts +7 -5
  33. package/package.json +1 -1
  34. package/styles.css +1 -1
@@ -19,7 +19,9 @@ export declare class AIActionStepComponent extends BaseStepComponent implements
19
19
  confidence?: string;
20
20
  stepDeleted?: boolean;
21
21
  isDebug?: boolean;
22
+ debugPointSet?: boolean;
22
23
  isUploadingBaseline: {};
24
+ debugPointChange: EventEmitter<boolean>;
23
25
  isMakingCurrentBaseline: {};
24
26
  selfHealAnalysis?: SelfHealAnalysisData;
25
27
  getSelfHealLoadingStatesHandler?: () => {
@@ -56,9 +58,10 @@ export declare class AIActionStepComponent extends BaseStepComponent implements
56
58
  onSelfHealAction(event: SelfHealActionEvent): void;
57
59
  trackByActionId(index: number, action: AIAgentAction): string;
58
60
  get showViewMoreButton(): boolean;
61
+ onDebugPointClick(event: Event): void;
59
62
  toggleHeader(event?: Event): void;
60
63
  getActionBadgeText(): string;
61
64
  onJumpToTimestamp(event: Event): void;
62
65
  static ɵfac: i0.ɵɵFactoryDeclaration<AIActionStepComponent, never>;
63
- static ɵcmp: i0.ɵɵComponentDeclaration<AIActionStepComponent, "cqa-ai-action-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "actionCount": "actionCount"; "actions": "actions"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "stepDeleted": "stepDeleted"; "isDebug": "isDebug"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "selfHealAnalysis": "selfHealAnalysis"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "onStepClickHandler": "onStepClickHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "isLive": "isLive"; "step": "step"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
66
+ static ɵcmp: i0.ɵɵComponentDeclaration<AIActionStepComponent, "cqa-ai-action-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "actionCount": "actionCount"; "actions": "actions"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "stepDeleted": "stepDeleted"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "selfHealAnalysis": "selfHealAnalysis"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "onStepClickHandler": "onStepClickHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "isLive": "isLive"; "step": "step"; }, { "debugPointChange": "debugPointChange"; "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
64
67
  }
@@ -22,6 +22,8 @@ export declare class AIAgentStepComponent extends BaseStepComponent implements O
22
22
  confidence?: string;
23
23
  stepDeleted?: boolean;
24
24
  isDebug?: boolean;
25
+ debugPointSet?: boolean;
26
+ debugPointChange: EventEmitter<boolean>;
25
27
  isUploadingBaseline: {};
26
28
  isMakingCurrentBaseline: {};
27
29
  selfHealAnalysis?: SelfHealAnalysisData;
@@ -64,8 +66,9 @@ export declare class AIAgentStepComponent extends BaseStepComponent implements O
64
66
  onSelfHealAction(event: SelfHealActionEvent): void;
65
67
  trackByActionId(index: number, action: AIAgentAction): string;
66
68
  get showViewMoreButton(): boolean;
69
+ onDebugPointClick(event: Event): void;
67
70
  toggleHeader(event?: Event): void;
68
71
  onJumpToTimestamp(event: Event): void;
69
72
  static ɵfac: i0.ɵɵFactoryDeclaration<AIAgentStepComponent, never>;
70
- static ɵcmp: i0.ɵɵComponentDeclaration<AIAgentStepComponent, "cqa-ai-agent-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "prompt": "prompt"; "optimizedRun": "optimizedRun"; "actionCount": "actionCount"; "actions": "actions"; "selectedTabInput": "selectedTabInput"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "stepDeleted": "stepDeleted"; "isDebug": "isDebug"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "selfHealAnalysis": "selfHealAnalysis"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "onStepClickHandler": "onStepClickHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "isLive": "isLive"; "step": "step"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
73
+ static ɵcmp: i0.ɵɵComponentDeclaration<AIAgentStepComponent, "cqa-ai-agent-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "prompt": "prompt"; "optimizedRun": "optimizedRun"; "actionCount": "actionCount"; "actions": "actions"; "selectedTabInput": "selectedTabInput"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "stepDeleted": "stepDeleted"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "selfHealAnalysis": "selfHealAnalysis"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "onStepClickHandler": "onStepClickHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "isLive": "isLive"; "step": "step"; }, { "debugPointChange": "debugPointChange"; "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
71
74
  }
@@ -23,6 +23,8 @@ export declare class ApiStepComponent extends BaseStepComponent implements OnIni
23
23
  assertions?: ApiAssertion[];
24
24
  initialActions?: SubStep[];
25
25
  isDebug?: boolean;
26
+ debugPointSet?: boolean;
27
+ debugPointChange: EventEmitter<boolean>;
26
28
  failureDetails?: FailureDetails;
27
29
  reasoning?: string[];
28
30
  confidence?: string;
@@ -98,6 +100,7 @@ export declare class ApiStepComponent extends BaseStepComponent implements OnIni
98
100
  onViewFullLogs(): void;
99
101
  onSelfHealAction(event: SelfHealActionEvent): void;
100
102
  get showViewMoreButton(): boolean;
103
+ onDebugPointClick(event: Event): void;
101
104
  toggleHeader(event?: Event): void;
102
105
  toggle(): void;
103
106
  private autoExpand;
@@ -106,5 +109,5 @@ export declare class ApiStepComponent extends BaseStepComponent implements OnIni
106
109
  ngOnDestroy(): void;
107
110
  onJumpToTimestamp(event: Event): void;
108
111
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiStepComponent, never>;
109
- static ɵcmp: i0.ɵɵComponentDeclaration<ApiStepComponent, "cqa-api-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "method": "method"; "endpoint": "endpoint"; "statusCode": "statusCode"; "responseTime": "responseTime"; "requestBody": "requestBody"; "responseBody": "responseBody"; "requestHeaders": "requestHeaders"; "responseHeaders": "responseHeaders"; "assertions": "assertions"; "initialActions": "initialActions"; "isDebug": "isDebug"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "stepDeleted": "stepDeleted"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; "selfHealAnalysis": "selfHealAnalysis"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "step": "step"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; "jsonPathCopied": "jsonPathCopied"; }, never, never>;
112
+ static ɵcmp: i0.ɵɵComponentDeclaration<ApiStepComponent, "cqa-api-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "method": "method"; "endpoint": "endpoint"; "statusCode": "statusCode"; "responseTime": "responseTime"; "requestBody": "requestBody"; "responseBody": "responseBody"; "requestHeaders": "requestHeaders"; "responseHeaders": "responseHeaders"; "assertions": "assertions"; "initialActions": "initialActions"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "stepDeleted": "stepDeleted"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; "selfHealAnalysis": "selfHealAnalysis"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "step": "step"; }, { "debugPointChange": "debugPointChange"; "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; "jsonPathCopied": "jsonPathCopied"; }, never, never>;
110
113
  }
@@ -10,7 +10,11 @@ export declare class BasicStepComponent extends BaseStepComponent implements OnI
10
10
  title: string;
11
11
  status: StepStatus;
12
12
  isDebug?: boolean;
13
+ debugPointSet?: boolean;
14
+ getDebugPointSetHandler?: (step: ExecutionStepConfig) => boolean;
15
+ onDebugPointChangeHandler?: (step: ExecutionStepConfig, value: boolean) => void;
13
16
  duration: number;
17
+ debugPointChange: EventEmitter<boolean>;
14
18
  timingBreakdown?: TimingBreakdown;
15
19
  expanded?: boolean;
16
20
  subSteps: SubStep[];
@@ -95,9 +99,10 @@ export declare class BasicStepComponent extends BaseStepComponent implements OnI
95
99
  toggle(): void;
96
100
  isNestedStepLoading(step: ExecutionStepConfig): boolean;
97
101
  markStepLoaded(step: ExecutionStepConfig): void;
102
+ onDebugPointClick(event: Event): void;
98
103
  toggleHeader(event?: Event): void;
99
104
  isStepLoading(): boolean;
100
105
  onJumpToTimestamp(event: Event): void;
101
106
  static ɵfac: i0.ɵɵFactoryDeclaration<BasicStepComponent, never>;
102
- static ɵcmp: i0.ɵɵComponentDeclaration<BasicStepComponent, "cqa-basic-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "isDebug": "isDebug"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "subSteps": "subSteps"; "selfHealAnalysis": "selfHealAnalysis"; "selfHealed": "selfHealed"; "selfHealDuration": "selfHealDuration"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "stepDeleted": "stepDeleted"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; "nestedSteps": "nestedSteps"; "hasChild": "hasChild"; "isLoading": "isLoading"; "onExpandHandler": "onExpandHandler"; "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"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
107
+ static ɵcmp: i0.ɵɵComponentDeclaration<BasicStepComponent, "cqa-basic-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "getDebugPointSetHandler": "getDebugPointSetHandler"; "onDebugPointChangeHandler": "onDebugPointChangeHandler"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "subSteps": "subSteps"; "selfHealAnalysis": "selfHealAnalysis"; "selfHealed": "selfHealed"; "selfHealDuration": "selfHealDuration"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "stepDeleted": "stepDeleted"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; "nestedSteps": "nestedSteps"; "hasChild": "hasChild"; "isLoading": "isLoading"; "onExpandHandler": "onExpandHandler"; "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"; }, { "debugPointChange": "debugPointChange"; "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
103
108
  }
@@ -24,6 +24,10 @@ export declare class ConditionStepComponent extends BaseStepComponent implements
24
24
  hasChild?: boolean;
25
25
  stepDeleted?: boolean;
26
26
  isDebug?: boolean;
27
+ debugPointSet?: boolean;
28
+ getDebugPointSetHandler?: (step: ExecutionStepConfig) => boolean;
29
+ onDebugPointChangeHandler?: (step: ExecutionStepConfig, value: boolean) => void;
30
+ debugPointChange: EventEmitter<boolean>;
27
31
  ifChild?: any;
28
32
  activeBranchStepId?: string | number;
29
33
  onExpandHandler?: (step: ExecutionStepConfig) => void;
@@ -104,6 +108,7 @@ export declare class ConditionStepComponent extends BaseStepComponent implements
104
108
  onViewFullLogs(): void;
105
109
  onSelfHealAction(event: SelfHealActionEvent): void;
106
110
  get showViewMoreButton(): boolean;
111
+ onDebugPointClick(event: Event): void;
107
112
  toggleHeader(event?: Event): void;
108
113
  get hasExpandableContent(): boolean;
109
114
  private determineActiveBranch;
@@ -115,5 +120,5 @@ export declare class ConditionStepComponent extends BaseStepComponent implements
115
120
  private hasAnyExecutedBranch;
116
121
  onJumpToTimestamp(event: Event): void;
117
122
  static ɵfac: i0.ɵɵFactoryDeclaration<ConditionStepComponent, never>;
118
- 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"; "stepDeleted": "stepDeleted"; "isDebug": "isDebug"; "ifChild": "ifChild"; "activeBranchStepId": "activeBranchStepId"; "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"; "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"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; }, { "onBranchClickEvent": "onBranchClickEvent"; "onExpand": "onExpand"; "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
123
+ 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"; "stepDeleted": "stepDeleted"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "getDebugPointSetHandler": "getDebugPointSetHandler"; "onDebugPointChangeHandler": "onDebugPointChangeHandler"; "ifChild": "ifChild"; "activeBranchStepId": "activeBranchStepId"; "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"; "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"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; }, { "debugPointChange": "debugPointChange"; "onBranchClickEvent": "onBranchClickEvent"; "onExpand": "onExpand"; "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
119
124
  }
@@ -20,6 +20,8 @@ export declare class DbVerificationStepComponent extends BaseStepComponent imple
20
20
  dbType: string;
21
21
  };
22
22
  isDebug?: boolean;
23
+ debugPointSet?: boolean;
24
+ debugPointChange: EventEmitter<boolean>;
23
25
  failureDetails?: FailureDetails;
24
26
  reasoning?: string[];
25
27
  confidence?: string;
@@ -69,6 +71,7 @@ export declare class DbVerificationStepComponent extends BaseStepComponent imple
69
71
  getStatus(): StepStatus;
70
72
  ngOnChanges(changes: SimpleChanges): void;
71
73
  private updateConfig;
74
+ onDebugPointClick(event: Event): void;
72
75
  toggleHeader(event?: Event): void;
73
76
  private updateCachedQueryResults;
74
77
  getQueryResults(): Array<{
@@ -107,5 +110,5 @@ export declare class DbVerificationStepComponent extends BaseStepComponent imple
107
110
  onSelfHealAction(event: SelfHealActionEvent): void;
108
111
  onJumpToTimestamp(event: Event): void;
109
112
  static ɵfac: i0.ɵɵFactoryDeclaration<DbVerificationStepComponent, never>;
110
- static ɵcmp: i0.ɵɵComponentDeclaration<DbVerificationStepComponent, "cqa-db-verification-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "dbTestResult": "dbTestResult"; "dbConfig": "dbConfig"; "isDebug": "isDebug"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "stepDeleted": "stepDeleted"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "selfHealAnalysis": "selfHealAnalysis"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "onStepClickHandler": "onStepClickHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "isLive": "isLive"; "step": "step"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
113
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbVerificationStepComponent, "cqa-db-verification-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "dbTestResult": "dbTestResult"; "dbConfig": "dbConfig"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "stepDeleted": "stepDeleted"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "selfHealAnalysis": "selfHealAnalysis"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "onStepClickHandler": "onStepClickHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "isLive": "isLive"; "step": "step"; }, { "debugPointChange": "debugPointChange"; "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
111
114
  }
@@ -1,4 +1,4 @@
1
- import { OnInit, OnChanges, SimpleChanges } from '@angular/core';
1
+ import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core';
2
2
  import { DocumentVerificationStepConfig, ExtractedField, VerificationCheck, StepStatus, TimingBreakdown } from '../execution-step.models';
3
3
  import { BaseStepComponent } from '../base-step.component';
4
4
  import * as i0 from "@angular/core";
@@ -16,11 +16,14 @@ export declare class DocumentVerificationStepComponent extends BaseStepComponent
16
16
  step?: any;
17
17
  jumpToTimestampHandler?: (timestamp: number, testStepId?: number | string) => void;
18
18
  isDebug?: boolean;
19
+ debugPointSet?: boolean;
20
+ debugPointChange: EventEmitter<boolean>;
19
21
  config: DocumentVerificationStepConfig;
20
22
  ngOnInit(): void;
21
23
  ngOnChanges(changes: SimpleChanges): void;
24
+ onDebugPointClick(event: Event): void;
22
25
  copyToClipboard(text: string): void;
23
26
  onJumpToTimestamp(event: Event): void;
24
27
  static ɵfac: i0.ɵɵFactoryDeclaration<DocumentVerificationStepComponent, never>;
25
- static ɵcmp: i0.ɵɵComponentDeclaration<DocumentVerificationStepComponent, "cqa-document-verification-step", never, { "id": "id"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "documentScreenshot": "documentScreenshot"; "extractedFields": "extractedFields"; "verificationChecks": "verificationChecks"; "step": "step"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "isDebug": "isDebug"; }, {}, never, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<DocumentVerificationStepComponent, "cqa-document-verification-step", never, { "id": "id"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "documentScreenshot": "documentScreenshot"; "extractedFields": "extractedFields"; "verificationChecks": "verificationChecks"; "step": "step"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; }, { "debugPointChange": "debugPointChange"; }, never, never>;
26
29
  }
@@ -21,6 +21,8 @@ export declare class FileDownloadStepComponent extends BaseStepComponent impleme
21
21
  step?: any;
22
22
  jumpToTimestampHandler?: (timestamp: number, testStepId?: number | string) => void;
23
23
  isDebug?: boolean;
24
+ debugPointSet?: boolean;
25
+ debugPointChange: EventEmitter<boolean>;
24
26
  download: EventEmitter<{
25
27
  fileName: string;
26
28
  filePath?: string;
@@ -41,6 +43,7 @@ export declare class FileDownloadStepComponent extends BaseStepComponent impleme
41
43
  ngOnInit(): void;
42
44
  ngOnChanges(changes: SimpleChanges): void;
43
45
  private updateConfigFromInputs;
46
+ onDebugPointClick(event: Event): void;
44
47
  getFileTypeBadgeClass(): string;
45
48
  onDownload(): void;
46
49
  copyToClipboard(text: string): void;
@@ -48,5 +51,5 @@ export declare class FileDownloadStepComponent extends BaseStepComponent impleme
48
51
  ngOnDestroy(): void;
49
52
  onJumpToTimestamp(event: Event): void;
50
53
  static ɵfac: i0.ɵɵFactoryDeclaration<FileDownloadStepComponent, never>;
51
- static ɵcmp: i0.ɵɵComponentDeclaration<FileDownloadStepComponent, "cqa-file-download-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "fileName": "fileName"; "fileType": "fileType"; "fileSize": "fileSize"; "filePath": "filePath"; "downloaded": "downloaded"; "stepDeleted": "stepDeleted"; "isDownloading": "isDownloading"; "step": "step"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "isDebug": "isDebug"; }, { "download": "download"; "filePathCopied": "filePathCopied"; "textCopied": "textCopied"; }, never, never>;
54
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileDownloadStepComponent, "cqa-file-download-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "fileName": "fileName"; "fileType": "fileType"; "fileSize": "fileSize"; "filePath": "filePath"; "downloaded": "downloaded"; "stepDeleted": "stepDeleted"; "isDownloading": "isDownloading"; "step": "step"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; }, { "debugPointChange": "debugPointChange"; "download": "download"; "filePathCopied": "filePathCopied"; "textCopied": "textCopied"; }, never, never>;
52
55
  }
@@ -1,4 +1,4 @@
1
- import { OnInit, OnChanges, SimpleChanges } from '@angular/core';
1
+ import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core';
2
2
  import { StepStatus, LiveSubStep, LiveExecutionStepConfig } from '../execution-step.models';
3
3
  import { BaseStepComponent } from '../base-step.component';
4
4
  import * as i0 from "@angular/core";
@@ -9,6 +9,8 @@ export declare class LiveExecutionStepComponent extends BaseStepComponent implem
9
9
  title: string;
10
10
  status: StepStatus;
11
11
  isDebug?: boolean;
12
+ debugPointSet?: boolean;
13
+ debugPointChange: EventEmitter<boolean>;
12
14
  duration: number;
13
15
  expanded?: boolean;
14
16
  subSteps: LiveSubStep[];
@@ -18,10 +20,11 @@ export declare class LiveExecutionStepComponent extends BaseStepComponent implem
18
20
  private userManuallyClosed;
19
21
  ngOnInit(): void;
20
22
  ngOnChanges(changes: SimpleChanges): void;
23
+ onDebugPointClick(event: Event): void;
21
24
  toggle(): void;
22
25
  private autoExpand;
23
26
  get hasSubSteps(): boolean;
24
27
  trackBySubStepId(index: number, subStep: LiveSubStep): string;
25
28
  static ɵfac: i0.ɵɵFactoryDeclaration<LiveExecutionStepComponent, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<LiveExecutionStepComponent, "cqa-live-execution-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "isDebug": "isDebug"; "duration": "duration"; "expanded": "expanded"; "subSteps": "subSteps"; "stepDeleted": "stepDeleted"; }, {}, never, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<LiveExecutionStepComponent, "cqa-live-execution-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "duration": "duration"; "expanded": "expanded"; "subSteps": "subSteps"; "stepDeleted": "stepDeleted"; }, { "debugPointChange": "debugPointChange"; }, never, never>;
27
30
  }
@@ -23,6 +23,10 @@ export declare class LoopStepComponent extends BaseStepComponent implements OnIn
23
23
  isLoading?: boolean;
24
24
  stepDeleted?: boolean;
25
25
  isDebug?: boolean;
26
+ debugPointSet?: boolean;
27
+ getDebugPointSetHandler?: (step: ExecutionStepConfig) => boolean;
28
+ onDebugPointChangeHandler?: (step: ExecutionStepConfig, value: boolean) => void;
29
+ debugPointChange: EventEmitter<boolean>;
26
30
  onExpandHandler?: (step: ExecutionStepConfig) => void;
27
31
  getConditionBranchesHandler?: (step: ExecutionStepConfig) => ConditionBranch[];
28
32
  onConditionBranchClickHandler?: (step: any, branch: any) => void;
@@ -113,6 +117,7 @@ export declare class LoopStepComponent extends BaseStepComponent implements OnIn
113
117
  onViewFullLogs(): void;
114
118
  onSelfHealAction(event: SelfHealActionEvent): void;
115
119
  get showViewMoreButton(): boolean;
120
+ onDebugPointClick(event: Event): void;
116
121
  toggleHeader(event?: Event): void;
117
122
  isNestedStepGroupWithChildren(step: ExecutionStepConfig): boolean;
118
123
  getGroupName(step: ExecutionStepConfig): string;
@@ -146,5 +151,5 @@ export declare class LoopStepComponent extends BaseStepComponent implements OnIn
146
151
  isStepLoading(): boolean;
147
152
  onJumpToTimestamp(event: Event): void;
148
153
  static ɵfac: i0.ɵɵFactoryDeclaration<LoopStepComponent, never>;
149
- 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"; "onExpandHandler": "onExpandHandler"; "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"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; "onExpand": "onExpand"; "onViewAllIterations": "onViewAllIterations"; "onIterationChange": "onIterationChange"; }, never, never>;
154
+ 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"; "getDebugPointSetHandler": "getDebugPointSetHandler"; "onDebugPointChangeHandler": "onDebugPointChangeHandler"; "onExpandHandler": "onExpandHandler"; "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"; "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; "onExpand": "onExpand"; "onViewAllIterations": "onViewAllIterations"; "onIterationChange": "onIterationChange"; }, never, never>;
150
155
  }
@@ -18,6 +18,10 @@ export declare class StepGroupComponent extends BaseStepComponent implements OnI
18
18
  isLoading?: boolean;
19
19
  stepDeleted?: boolean;
20
20
  isDebug?: boolean;
21
+ debugPointSet?: boolean;
22
+ getDebugPointSetHandler?: (step: ExecutionStepConfig) => boolean;
23
+ onDebugPointChangeHandler?: (step: ExecutionStepConfig, value: boolean) => void;
24
+ debugPointChange: EventEmitter<boolean>;
21
25
  onExpandHandler?: (step: ExecutionStepConfig) => void;
22
26
  getConditionBranchesHandler?: (step: ExecutionStepConfig) => ConditionBranch[];
23
27
  onConditionBranchClickHandler?: (step: any, branch: any) => void;
@@ -75,6 +79,7 @@ export declare class StepGroupComponent extends BaseStepComponent implements OnI
75
79
  ngOnInit(): void;
76
80
  ngOnChanges(changes: SimpleChanges): void;
77
81
  private updateConfig;
82
+ onDebugPointClick(event: Event): void;
78
83
  toggle(event?: Event): void;
79
84
  isNestedStepLoading(step: ExecutionStepConfig): boolean;
80
85
  markStepLoaded(step: ExecutionStepConfig): void;
@@ -105,5 +110,5 @@ export declare class StepGroupComponent extends BaseStepComponent implements OnI
105
110
  isStepLoading(): boolean;
106
111
  onJumpToTimestamp(event: Event): void;
107
112
  static ɵfac: i0.ɵɵFactoryDeclaration<StepGroupComponent, never>;
108
- 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"; "onExpandHandler": "onExpandHandler"; "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"; }, { "onExpand": "onExpand"; }, never, never>;
113
+ 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"; "getDebugPointSetHandler": "getDebugPointSetHandler"; "onDebugPointChangeHandler": "onDebugPointChangeHandler"; "onExpandHandler": "onExpandHandler"; "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"; "onExpand": "onExpand"; }, never, never>;
109
114
  }
@@ -61,6 +61,9 @@ export declare class StepRendererComponent implements OnChanges, AfterViewInit,
61
61
  downloadingStepId: string | null;
62
62
  container: ViewContainerRef;
63
63
  isLive: boolean;
64
+ isDebug?: boolean;
65
+ getDebugPointSetHandler?: (step: ExecutionStepConfig) => boolean;
66
+ onDebugPointChangeHandler?: (step: ExecutionStepConfig, value: boolean) => void;
64
67
  stepNumber?: string;
65
68
  componentReady: EventEmitter<void>;
66
69
  /** Effective type for component lookup: 'file-download' when testStepType === 'generateDocument'. */
@@ -94,5 +97,5 @@ export declare class StepRendererComponent implements OnChanges, AfterViewInit,
94
97
  private loadComponent;
95
98
  ngDoCheck(): void;
96
99
  static ɵfac: i0.ɵɵFactoryDeclaration<StepRendererComponent, never>;
97
- 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"; "stepNumber": "stepNumber"; }, { "componentReady": "componentReady"; }, never, never>;
100
+ 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"; "getDebugPointSetHandler": "getDebugPointSetHandler"; "onDebugPointChangeHandler": "onDebugPointChangeHandler"; "stepNumber": "stepNumber"; }, { "componentReady": "componentReady"; }, never, never>;
98
101
  }
@@ -1,19 +1,22 @@
1
- import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core';
2
- import { FormBuilder, FormGroup, FormArray } from '@angular/forms';
1
+ import { EventEmitter, OnInit, OnChanges, SimpleChanges, ChangeDetectorRef, OnDestroy } from '@angular/core';
2
+ import { FormBuilder, FormGroup, FormArray, AbstractControl } from '@angular/forms';
3
3
  import { DynamicSelectFieldConfig, SelectOption } from '../../dynamic-select/dynamic-select-field.component';
4
+ import { MatTable } from '@angular/material/table';
4
5
  import * as i0 from "@angular/core";
5
6
  export interface DatabaseQuery {
6
7
  id: string;
7
8
  query: string;
8
9
  variable: string;
9
10
  status?: 'passed' | 'failed' | 'pending';
11
+ assertionData?: any[];
10
12
  }
11
13
  export interface DatabaseFormData {
12
14
  dbEnvironment: string;
13
15
  queries: DatabaseQuery[];
14
16
  }
15
- export declare class StepBuilderDatabaseComponent implements OnInit, OnChanges {
17
+ export declare class StepBuilderDatabaseComponent implements OnInit, OnChanges, OnDestroy {
16
18
  private fb;
19
+ private cdr;
17
20
  /** Options for DB environment dropdown */
18
21
  dbEnvironmentOptions: SelectOption[];
19
22
  /** Initial queries list */
@@ -40,10 +43,24 @@ export declare class StepBuilderDatabaseComponent implements OnInit, OnChanges {
40
43
  addQuery: EventEmitter<void>;
41
44
  /** Emit when query is deleted */
42
45
  deleteQuery: EventEmitter<string>;
46
+ /** Emit when assertion data changes for a query */
47
+ assertionDataChange: EventEmitter<{
48
+ queryIndex: number;
49
+ assertionData: any[];
50
+ }>;
51
+ /** Emit when selected query index changes */
52
+ selectedQueryIndexChange: EventEmitter<number>;
53
+ /** Emit when active tab changes */
54
+ activeTabChange: EventEmitter<"output" | "verification">;
43
55
  databaseForm: FormGroup;
44
56
  selectedTab: 'output' | 'verification';
45
57
  selectedQueryIndex: number;
46
- constructor(fb: FormBuilder);
58
+ assertionsForms: Map<number, FormGroup>;
59
+ displayedColumns: string[];
60
+ defaultExpectedType: string;
61
+ private formSubscriptions;
62
+ assertionsTable?: MatTable<any>;
63
+ constructor(fb: FormBuilder, cdr: ChangeDetectorRef);
47
64
  ngOnInit(): void;
48
65
  ngOnChanges(changes: SimpleChanges): void;
49
66
  private initializeFormWithInitialValues;
@@ -56,11 +73,94 @@ export declare class StepBuilderDatabaseComponent implements OnInit, OnChanges {
56
73
  getCurrentQueryFormGroup(): FormGroup | null;
57
74
  onRunQuery(): void;
58
75
  onSelectQuery(index: number): void;
76
+ /**
77
+ * Get the currently selected query index
78
+ */
79
+ getSelectedQueryIndex(): number;
80
+ /**
81
+ * Get the currently active tab
82
+ */
83
+ getActiveTab(): 'output' | 'verification';
59
84
  onTabChange(tab: 'output' | 'verification'): void;
60
85
  onCopyResults(): void;
61
86
  onCancel(): void;
62
87
  onCreateStep(): void;
63
88
  getTableColumns(): string[];
89
+ /**
90
+ * Get assertion data for a specific query
91
+ */
92
+ getAssertionDataForQuery(queryIndex: number): any[];
93
+ /**
94
+ * Handle assertion data change from external component
95
+ */
96
+ onAssertionDataChange(assertionData: any[], queryIndex: number): void;
97
+ /**
98
+ * Initialize assertion data for a query if it doesn't exist
99
+ */
100
+ private ensureAssertionDataInitialized;
101
+ /**
102
+ * Initialize assertions form for a specific query
103
+ */
104
+ private initializeAssertionsForm;
105
+ /**
106
+ * Get assertions form for current query
107
+ */
108
+ getCurrentAssertionsForm(): FormGroup | null;
109
+ /**
110
+ * Get assertions form array for current query
111
+ */
112
+ getAssertionsFormArray(): FormArray;
113
+ /**
114
+ * Load assertions into form for a specific query
115
+ */
116
+ private loadAssertionsForQuery;
117
+ /**
118
+ * Subscribe to assertions form changes
119
+ */
120
+ private subscribeToAssertionsFormChanges;
121
+ /**
122
+ * Emit assertion data for a specific query
123
+ */
124
+ private emitAssertionDataForQuery;
125
+ /**
126
+ * Add a new assertion
127
+ */
128
+ addAssertion(): void;
129
+ /**
130
+ * Remove an assertion
131
+ */
132
+ removeAssertion(index: number): void;
133
+ /**
134
+ * Get form control at specific index
135
+ */
136
+ getFormControlAt(index: number, controlName: string): AbstractControl | null;
137
+ /**
138
+ * Get expected type for an assertion
139
+ */
140
+ getExpectedType(index: number): string;
141
+ /**
142
+ * Get expected value placeholder
143
+ */
144
+ getExpectedValuePlaceholder(index: number): string;
145
+ /**
146
+ * Handle expected type change
147
+ */
148
+ onExpectedTypeChange(index: number, value: string): void;
149
+ /**
150
+ * Expected value validator
151
+ */
152
+ expectedValueValidator: (control: AbstractControl) => {
153
+ [key: string]: any;
154
+ };
155
+ /**
156
+ * Get assertions data source for table
157
+ */
158
+ get assertionsDataSource(): AbstractControl[];
159
+ /**
160
+ * Track by function for table rows
161
+ */
162
+ trackByIndex(index: number): any;
163
+ ngOnDestroy(): void;
64
164
  static ɵfac: i0.ɵɵFactoryDeclaration<StepBuilderDatabaseComponent, never>;
65
- static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderDatabaseComponent, "cqa-step-builder-database", never, { "dbEnvironmentOptions": "dbEnvironmentOptions"; "queries": "queries"; "queryResults": "queryResults"; "isLoading": "isLoading"; "initialDbEnvironment": "initialDbEnvironment"; "editMode": "editMode"; }, { "createStep": "createStep"; "cancelled": "cancelled"; "runQuery": "runQuery"; "addQuery": "addQuery"; "deleteQuery": "deleteQuery"; }, never, never>;
165
+ static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderDatabaseComponent, "cqa-step-builder-database", never, { "dbEnvironmentOptions": "dbEnvironmentOptions"; "queries": "queries"; "queryResults": "queryResults"; "isLoading": "isLoading"; "initialDbEnvironment": "initialDbEnvironment"; "editMode": "editMode"; }, { "createStep": "createStep"; "cancelled": "cancelled"; "runQuery": "runQuery"; "addQuery": "addQuery"; "deleteQuery": "deleteQuery"; "assertionDataChange": "assertionDataChange"; "selectedQueryIndexChange": "selectedQueryIndexChange"; "activeTabChange": "activeTabChange"; }, never, never>;
66
166
  }
@@ -124,13 +124,15 @@ import * as i121 from "@angular/material/datepicker";
124
124
  import * as i122 from "@angular/material/progress-spinner";
125
125
  import * as i123 from "@angular/material/tooltip";
126
126
  import * as i124 from "@angular/material/dialog";
127
- import * as i125 from "@angular/cdk/overlay";
128
- import * as i126 from "@angular/cdk/portal";
129
- import * as i127 from "ngx-typed-js";
130
- import * as i128 from "ngx-drag-drop";
127
+ import * as i125 from "@angular/material/table";
128
+ import * as i126 from "@angular/material/input";
129
+ import * as i127 from "@angular/cdk/overlay";
130
+ import * as i128 from "@angular/cdk/portal";
131
+ import * as i129 from "ngx-typed-js";
132
+ import * as i130 from "ngx-drag-drop";
131
133
  export declare class UiKitModule {
132
134
  constructor(iconRegistry: MatIconRegistry);
133
135
  static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
134
- static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.DialogComponent, typeof i6.DynamicTableComponent, typeof i7.DynamicCellTemplateDirective, typeof i7.DynamicHeaderTemplateDirective, typeof i8.DynamicCellContainerDirective, typeof i9.PaginationComponent, typeof i10.ActionMenuButtonComponent, typeof i11.OtherButtonComponent, typeof i12.DynamicFilterComponent, typeof i13.DaterangepickerDirective, typeof i14.DaterangepickerComponent, typeof i15.ColumnVisibilityComponent, typeof i16.TableActionToolbarComponent, typeof i17.MetricsCardComponent, typeof i18.MetricsBlockComponent, typeof i19.ChartCardComponent, typeof i20.ProgressTextCardComponent, typeof i21.DashboardHeaderComponent, typeof i22.CoverageModuleCardComponent, typeof i23.TestDistributionCardComponent, typeof i24.FailedTestCasesCardComponent, typeof i25.DynamicSelectFieldComponent, typeof i26.AddPrerequisiteCasesSectionComponent, typeof i27.SelectedFiltersComponent, typeof i28.InsightCardComponent, typeof i29.BadgeComponent, typeof i30.DropdownButtonComponent, typeof i31.HeatErrorMapCellComponent, typeof i32.EmptyStateComponent, typeof i33.TableTemplateComponent, typeof i34.FullTableLoaderComponent, typeof i35.TableDataLoaderComponent, typeof i36.BasicStepComponent, typeof i37.StepRendererComponent, typeof i38.StepGroupComponent, typeof i39.LoopStepComponent, typeof i40.ConditionStepComponent, typeof i41.FailedStepComponent, typeof i42.UpdatedFailedStepComponent, typeof i43.ViewMoreFailedStepButtonComponent, typeof i44.SelfHealAnalysisComponent, typeof i45.AIAgentStepComponent, typeof i46.AIActionStepComponent, typeof i47.ApiStepComponent, typeof i48.FileDownloadStepComponent, typeof i49.DocumentVerificationStepComponent, typeof i50.LiveExecutionStepComponent, typeof i51.MainStepCollapseComponent, typeof i52.VisualComparisonComponent, typeof i53.SimulatorComponent, typeof i54.ConsoleAlertComponent, typeof i55.AiDebugAlertComponent, typeof i56.NetworkRequestComponent, typeof i57.RunHistoryCardComponent, typeof i58.VisualDifferenceModalComponent, typeof i59.ConfigurationCardComponent, typeof i60.CompareRunsComponent, typeof i61.IterationsLoopComponent, typeof i62.FailedStepCardComponent, typeof i63.CustomInputComponent, typeof i64.CustomTextareaComponent, typeof i65.CustomToggleComponent, typeof i66.FileUploadComponent, typeof i67.AiReasoningComponent, typeof i68.ExecutionResultModalComponent, typeof i69.ErrorModalComponent, typeof i70.ProgressIndicatorComponent, typeof i71.StepProgressCardComponent, typeof i72.StepStatusCardComponent, typeof i73.DbVerificationStepComponent, typeof i74.DbQueryExecutionItemComponent, typeof i75.TestCaseNormalStepComponent, typeof i76.TestCaseLoopStepComponent, typeof i77.TestCaseConditionStepComponent, typeof i78.TestCaseStepGroupComponent, typeof i79.TestCaseDetailsRendererComponent, typeof i80.TestCaseApiStepComponent, typeof i81.TestCaseDatabaseStepComponent, typeof i82.TestCaseAiAgentStepComponent, typeof i83.TestCaseAiVerifyStepComponent, typeof i84.TestCaseUploadStepComponent, typeof i85.TestCaseScreenshotStepComponent, typeof i86.TestCaseScrollStepComponent, typeof i87.TestCaseVerifyUrlStepComponent, typeof i88.TestCaseRestoreSessionStepComponent, typeof i89.TestCaseCustomCodeStepComponent, typeof i90.CustomEditStepComponent, typeof i91.ItemListComponent, typeof i92.TestDataModalComponent, typeof i93.CreateStepGroupComponent, typeof i94.DeleteStepsComponent, typeof i95.ApiEditStepComponent, typeof i96.LiveConversationComponent, typeof i97.StepBuilderActionComponent, typeof i98.StepBuilderLoopComponent, typeof i99.ElementPopupComponent, typeof i100.StepBuilderConditionComponent, typeof i101.StepBuilderDatabaseComponent, typeof i102.StepBuilderAiAgentComponent, typeof i103.StepBuilderCustomCodeComponent, typeof i104.StepBuilderRecordStepComponent, typeof i105.StepBuilderDocumentGenerationTemplateStepComponent, typeof i106.ElementListComponent, typeof i107.StepBuilderDocumentComponent, typeof i108.StepBuilderApiComponent, typeof i109.StepDetailsDrawerComponent], [typeof i110.CommonModule, typeof i111.FormsModule, typeof i111.ReactiveFormsModule, typeof i112.MatIconModule, typeof i113.MatMenuModule, typeof i114.MatButtonModule, typeof i115.MatFormFieldModule, typeof i116.MatSelectModule, typeof i117.MatOptionModule, typeof i118.MatCheckboxModule, typeof i119.MatRadioModule, typeof i120.MatSlideToggleModule, typeof i121.MatDatepickerModule, typeof i117.MatNativeDateModule, typeof i122.MatProgressSpinnerModule, typeof i123.MatTooltipModule, typeof i124.MatDialogModule, typeof i125.OverlayModule, typeof i126.PortalModule, typeof i127.NgxTypedJsModule, typeof i128.DndModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.DialogComponent, typeof i6.DynamicTableComponent, typeof i7.DynamicCellTemplateDirective, typeof i7.DynamicHeaderTemplateDirective, typeof i8.DynamicCellContainerDirective, typeof i9.PaginationComponent, typeof i10.ActionMenuButtonComponent, typeof i11.OtherButtonComponent, typeof i12.DynamicFilterComponent, typeof i13.DaterangepickerDirective, typeof i14.DaterangepickerComponent, typeof i15.ColumnVisibilityComponent, typeof i16.TableActionToolbarComponent, typeof i17.MetricsCardComponent, typeof i19.ChartCardComponent, typeof i20.ProgressTextCardComponent, typeof i21.DashboardHeaderComponent, typeof i22.CoverageModuleCardComponent, typeof i23.TestDistributionCardComponent, typeof i24.FailedTestCasesCardComponent, typeof i25.DynamicSelectFieldComponent, typeof i26.AddPrerequisiteCasesSectionComponent, typeof i27.SelectedFiltersComponent, typeof i28.InsightCardComponent, typeof i29.BadgeComponent, typeof i30.DropdownButtonComponent, typeof i31.HeatErrorMapCellComponent, typeof i32.EmptyStateComponent, typeof i33.TableTemplateComponent, typeof i34.FullTableLoaderComponent, typeof i35.TableDataLoaderComponent, typeof i36.BasicStepComponent, typeof i37.StepRendererComponent, typeof i38.StepGroupComponent, typeof i39.LoopStepComponent, typeof i40.ConditionStepComponent, typeof i41.FailedStepComponent, typeof i42.UpdatedFailedStepComponent, typeof i43.ViewMoreFailedStepButtonComponent, typeof i44.SelfHealAnalysisComponent, typeof i45.AIAgentStepComponent, typeof i46.AIActionStepComponent, typeof i47.ApiStepComponent, typeof i48.FileDownloadStepComponent, typeof i49.DocumentVerificationStepComponent, typeof i50.LiveExecutionStepComponent, typeof i51.MainStepCollapseComponent, typeof i52.VisualComparisonComponent, typeof i53.SimulatorComponent, typeof i54.ConsoleAlertComponent, typeof i55.AiDebugAlertComponent, typeof i56.NetworkRequestComponent, typeof i57.RunHistoryCardComponent, typeof i58.VisualDifferenceModalComponent, typeof i59.ConfigurationCardComponent, typeof i60.CompareRunsComponent, typeof i61.IterationsLoopComponent, typeof i62.FailedStepCardComponent, typeof i63.CustomInputComponent, typeof i64.CustomTextareaComponent, typeof i65.CustomToggleComponent, typeof i66.FileUploadComponent, typeof i67.AiReasoningComponent, typeof i68.ExecutionResultModalComponent, typeof i69.ErrorModalComponent, typeof i70.ProgressIndicatorComponent, typeof i71.StepProgressCardComponent, typeof i72.StepStatusCardComponent, typeof i73.DbVerificationStepComponent, typeof i74.DbQueryExecutionItemComponent, typeof i75.TestCaseNormalStepComponent, typeof i76.TestCaseLoopStepComponent, typeof i77.TestCaseConditionStepComponent, typeof i78.TestCaseStepGroupComponent, typeof i79.TestCaseDetailsRendererComponent, typeof i80.TestCaseApiStepComponent, typeof i81.TestCaseDatabaseStepComponent, typeof i82.TestCaseAiAgentStepComponent, typeof i84.TestCaseUploadStepComponent, typeof i85.TestCaseScreenshotStepComponent, typeof i86.TestCaseScrollStepComponent, typeof i87.TestCaseVerifyUrlStepComponent, typeof i88.TestCaseRestoreSessionStepComponent, typeof i89.TestCaseCustomCodeStepComponent, typeof i90.CustomEditStepComponent, typeof i91.ItemListComponent, typeof i92.TestDataModalComponent, typeof i93.CreateStepGroupComponent, typeof i94.DeleteStepsComponent, typeof i95.ApiEditStepComponent, typeof i96.LiveConversationComponent, typeof i97.StepBuilderActionComponent, typeof i98.StepBuilderLoopComponent, typeof i99.ElementPopupComponent, typeof i100.StepBuilderConditionComponent, typeof i101.StepBuilderDatabaseComponent, typeof i102.StepBuilderAiAgentComponent, typeof i103.StepBuilderCustomCodeComponent, typeof i104.StepBuilderRecordStepComponent, typeof i105.StepBuilderDocumentGenerationTemplateStepComponent, typeof i108.StepBuilderApiComponent, typeof i106.ElementListComponent, typeof i107.StepBuilderDocumentComponent, typeof i109.StepDetailsDrawerComponent]>;
136
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.DialogComponent, typeof i6.DynamicTableComponent, typeof i7.DynamicCellTemplateDirective, typeof i7.DynamicHeaderTemplateDirective, typeof i8.DynamicCellContainerDirective, typeof i9.PaginationComponent, typeof i10.ActionMenuButtonComponent, typeof i11.OtherButtonComponent, typeof i12.DynamicFilterComponent, typeof i13.DaterangepickerDirective, typeof i14.DaterangepickerComponent, typeof i15.ColumnVisibilityComponent, typeof i16.TableActionToolbarComponent, typeof i17.MetricsCardComponent, typeof i18.MetricsBlockComponent, typeof i19.ChartCardComponent, typeof i20.ProgressTextCardComponent, typeof i21.DashboardHeaderComponent, typeof i22.CoverageModuleCardComponent, typeof i23.TestDistributionCardComponent, typeof i24.FailedTestCasesCardComponent, typeof i25.DynamicSelectFieldComponent, typeof i26.AddPrerequisiteCasesSectionComponent, typeof i27.SelectedFiltersComponent, typeof i28.InsightCardComponent, typeof i29.BadgeComponent, typeof i30.DropdownButtonComponent, typeof i31.HeatErrorMapCellComponent, typeof i32.EmptyStateComponent, typeof i33.TableTemplateComponent, typeof i34.FullTableLoaderComponent, typeof i35.TableDataLoaderComponent, typeof i36.BasicStepComponent, typeof i37.StepRendererComponent, typeof i38.StepGroupComponent, typeof i39.LoopStepComponent, typeof i40.ConditionStepComponent, typeof i41.FailedStepComponent, typeof i42.UpdatedFailedStepComponent, typeof i43.ViewMoreFailedStepButtonComponent, typeof i44.SelfHealAnalysisComponent, typeof i45.AIAgentStepComponent, typeof i46.AIActionStepComponent, typeof i47.ApiStepComponent, typeof i48.FileDownloadStepComponent, typeof i49.DocumentVerificationStepComponent, typeof i50.LiveExecutionStepComponent, typeof i51.MainStepCollapseComponent, typeof i52.VisualComparisonComponent, typeof i53.SimulatorComponent, typeof i54.ConsoleAlertComponent, typeof i55.AiDebugAlertComponent, typeof i56.NetworkRequestComponent, typeof i57.RunHistoryCardComponent, typeof i58.VisualDifferenceModalComponent, typeof i59.ConfigurationCardComponent, typeof i60.CompareRunsComponent, typeof i61.IterationsLoopComponent, typeof i62.FailedStepCardComponent, typeof i63.CustomInputComponent, typeof i64.CustomTextareaComponent, typeof i65.CustomToggleComponent, typeof i66.FileUploadComponent, typeof i67.AiReasoningComponent, typeof i68.ExecutionResultModalComponent, typeof i69.ErrorModalComponent, typeof i70.ProgressIndicatorComponent, typeof i71.StepProgressCardComponent, typeof i72.StepStatusCardComponent, typeof i73.DbVerificationStepComponent, typeof i74.DbQueryExecutionItemComponent, typeof i75.TestCaseNormalStepComponent, typeof i76.TestCaseLoopStepComponent, typeof i77.TestCaseConditionStepComponent, typeof i78.TestCaseStepGroupComponent, typeof i79.TestCaseDetailsRendererComponent, typeof i80.TestCaseApiStepComponent, typeof i81.TestCaseDatabaseStepComponent, typeof i82.TestCaseAiAgentStepComponent, typeof i83.TestCaseAiVerifyStepComponent, typeof i84.TestCaseUploadStepComponent, typeof i85.TestCaseScreenshotStepComponent, typeof i86.TestCaseScrollStepComponent, typeof i87.TestCaseVerifyUrlStepComponent, typeof i88.TestCaseRestoreSessionStepComponent, typeof i89.TestCaseCustomCodeStepComponent, typeof i90.CustomEditStepComponent, typeof i91.ItemListComponent, typeof i92.TestDataModalComponent, typeof i93.CreateStepGroupComponent, typeof i94.DeleteStepsComponent, typeof i95.ApiEditStepComponent, typeof i96.LiveConversationComponent, typeof i97.StepBuilderActionComponent, typeof i98.StepBuilderLoopComponent, typeof i99.ElementPopupComponent, typeof i100.StepBuilderConditionComponent, typeof i101.StepBuilderDatabaseComponent, typeof i102.StepBuilderAiAgentComponent, typeof i103.StepBuilderCustomCodeComponent, typeof i104.StepBuilderRecordStepComponent, typeof i105.StepBuilderDocumentGenerationTemplateStepComponent, typeof i106.ElementListComponent, typeof i107.StepBuilderDocumentComponent, typeof i108.StepBuilderApiComponent, typeof i109.StepDetailsDrawerComponent], [typeof i110.CommonModule, typeof i111.FormsModule, typeof i111.ReactiveFormsModule, typeof i112.MatIconModule, typeof i113.MatMenuModule, typeof i114.MatButtonModule, typeof i115.MatFormFieldModule, typeof i116.MatSelectModule, typeof i117.MatOptionModule, typeof i118.MatCheckboxModule, typeof i119.MatRadioModule, typeof i120.MatSlideToggleModule, typeof i121.MatDatepickerModule, typeof i117.MatNativeDateModule, typeof i122.MatProgressSpinnerModule, typeof i123.MatTooltipModule, typeof i124.MatDialogModule, typeof i125.MatTableModule, typeof i126.MatInputModule, typeof i127.OverlayModule, typeof i128.PortalModule, typeof i129.NgxTypedJsModule, typeof i130.DndModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.DialogComponent, typeof i6.DynamicTableComponent, typeof i7.DynamicCellTemplateDirective, typeof i7.DynamicHeaderTemplateDirective, typeof i8.DynamicCellContainerDirective, typeof i9.PaginationComponent, typeof i10.ActionMenuButtonComponent, typeof i11.OtherButtonComponent, typeof i12.DynamicFilterComponent, typeof i13.DaterangepickerDirective, typeof i14.DaterangepickerComponent, typeof i15.ColumnVisibilityComponent, typeof i16.TableActionToolbarComponent, typeof i17.MetricsCardComponent, typeof i19.ChartCardComponent, typeof i20.ProgressTextCardComponent, typeof i21.DashboardHeaderComponent, typeof i22.CoverageModuleCardComponent, typeof i23.TestDistributionCardComponent, typeof i24.FailedTestCasesCardComponent, typeof i25.DynamicSelectFieldComponent, typeof i26.AddPrerequisiteCasesSectionComponent, typeof i27.SelectedFiltersComponent, typeof i28.InsightCardComponent, typeof i29.BadgeComponent, typeof i30.DropdownButtonComponent, typeof i31.HeatErrorMapCellComponent, typeof i32.EmptyStateComponent, typeof i33.TableTemplateComponent, typeof i34.FullTableLoaderComponent, typeof i35.TableDataLoaderComponent, typeof i36.BasicStepComponent, typeof i37.StepRendererComponent, typeof i38.StepGroupComponent, typeof i39.LoopStepComponent, typeof i40.ConditionStepComponent, typeof i41.FailedStepComponent, typeof i42.UpdatedFailedStepComponent, typeof i43.ViewMoreFailedStepButtonComponent, typeof i44.SelfHealAnalysisComponent, typeof i45.AIAgentStepComponent, typeof i46.AIActionStepComponent, typeof i47.ApiStepComponent, typeof i48.FileDownloadStepComponent, typeof i49.DocumentVerificationStepComponent, typeof i50.LiveExecutionStepComponent, typeof i51.MainStepCollapseComponent, typeof i52.VisualComparisonComponent, typeof i53.SimulatorComponent, typeof i54.ConsoleAlertComponent, typeof i55.AiDebugAlertComponent, typeof i56.NetworkRequestComponent, typeof i57.RunHistoryCardComponent, typeof i58.VisualDifferenceModalComponent, typeof i59.ConfigurationCardComponent, typeof i60.CompareRunsComponent, typeof i61.IterationsLoopComponent, typeof i62.FailedStepCardComponent, typeof i63.CustomInputComponent, typeof i64.CustomTextareaComponent, typeof i65.CustomToggleComponent, typeof i66.FileUploadComponent, typeof i67.AiReasoningComponent, typeof i68.ExecutionResultModalComponent, typeof i69.ErrorModalComponent, typeof i70.ProgressIndicatorComponent, typeof i71.StepProgressCardComponent, typeof i72.StepStatusCardComponent, typeof i73.DbVerificationStepComponent, typeof i74.DbQueryExecutionItemComponent, typeof i75.TestCaseNormalStepComponent, typeof i76.TestCaseLoopStepComponent, typeof i77.TestCaseConditionStepComponent, typeof i78.TestCaseStepGroupComponent, typeof i79.TestCaseDetailsRendererComponent, typeof i80.TestCaseApiStepComponent, typeof i81.TestCaseDatabaseStepComponent, typeof i82.TestCaseAiAgentStepComponent, typeof i84.TestCaseUploadStepComponent, typeof i85.TestCaseScreenshotStepComponent, typeof i86.TestCaseScrollStepComponent, typeof i87.TestCaseVerifyUrlStepComponent, typeof i88.TestCaseRestoreSessionStepComponent, typeof i89.TestCaseCustomCodeStepComponent, typeof i90.CustomEditStepComponent, typeof i91.ItemListComponent, typeof i92.TestDataModalComponent, typeof i93.CreateStepGroupComponent, typeof i94.DeleteStepsComponent, typeof i95.ApiEditStepComponent, typeof i96.LiveConversationComponent, typeof i97.StepBuilderActionComponent, typeof i98.StepBuilderLoopComponent, typeof i99.ElementPopupComponent, typeof i100.StepBuilderConditionComponent, typeof i101.StepBuilderDatabaseComponent, typeof i102.StepBuilderAiAgentComponent, typeof i103.StepBuilderCustomCodeComponent, typeof i104.StepBuilderRecordStepComponent, typeof i105.StepBuilderDocumentGenerationTemplateStepComponent, typeof i108.StepBuilderApiComponent, typeof i106.ElementListComponent, typeof i107.StepBuilderDocumentComponent, typeof i109.StepDetailsDrawerComponent]>;
135
137
  static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
136
138
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cqa-lib/cqa-ui",
3
- "version": "1.1.195",
3
+ "version": "1.1.197",
4
4
  "description": "UI Kit library for Angular 13.4",
5
5
  "keywords": [
6
6
  "angular",