@cqa-lib/cqa-ui 1.1.260 → 1.1.261
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/execution-screen/ai-agent-step/ai-agent-step.component.mjs +34 -3
- package/fesm2015/cqa-lib-cqa-ui.mjs +33 -2
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +33 -2
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/execution-screen/ai-agent-step/ai-agent-step.component.d.ts +8 -2
- package/package.json +1 -1
- package/styles.css +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { EventEmitter, OnInit, SimpleChanges } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnInit, SimpleChanges, DoCheck } from '@angular/core';
|
|
2
2
|
import { AIAgentStepConfig, AIAgentAction, StepStatus, TimingBreakdown, FailureDetails, SubStep, SelfHealAnalysisData, ExecutionStepConfig, SelfHealActionEvent, AddStepMenuOption, StepMoreMenuOption } from '../execution-step.models';
|
|
3
3
|
import { BaseStepComponent } from '../base-step.component';
|
|
4
4
|
import { makeCurrentBaselineEvent, uploadBaselineEvent } from '../visual-comparison/visual-comparison.component';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class AIAgentStepComponent extends BaseStepComponent implements OnInit {
|
|
6
|
+
export declare class AIAgentStepComponent extends BaseStepComponent implements OnInit, DoCheck {
|
|
7
7
|
id: string;
|
|
8
8
|
testStepResultId: string;
|
|
9
9
|
stepNumber: string;
|
|
@@ -56,6 +56,12 @@ export declare class AIAgentStepComponent extends BaseStepComponent implements O
|
|
|
56
56
|
private previousStatus?;
|
|
57
57
|
private userManuallyClosed;
|
|
58
58
|
selectedTab: 'action-trace' | 'planner-timeline' | 'ai-reasoning';
|
|
59
|
+
showThinkingLog: boolean;
|
|
60
|
+
private lastProcessedActionsLength;
|
|
61
|
+
private lastProcessedStatus;
|
|
62
|
+
private lastProcessedActionsKey;
|
|
63
|
+
ngDoCheck(): void;
|
|
64
|
+
private processLiveThinkingLog;
|
|
59
65
|
ngOnInit(): void;
|
|
60
66
|
ngOnChanges(changes: SimpleChanges): void;
|
|
61
67
|
private autoExpand;
|