@cqa-lib/cqa-ui 1.1.171 → 1.1.172
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-action-step/ai-action-step.component.mjs +3 -3
- package/esm2020/lib/execution-screen/ai-agent-step/ai-agent-step.component.mjs +3 -3
- package/esm2020/lib/execution-screen/api-step/api-step.component.mjs +3 -3
- package/esm2020/lib/execution-screen/basic-step/basic-step.component.mjs +3 -3
- package/esm2020/lib/execution-screen/condition-step/condition-step.component.mjs +3 -3
- package/esm2020/lib/execution-screen/db-verification-step/db-verification-step.component.mjs +3 -3
- package/esm2020/lib/execution-screen/loop-step/loop-step.component.mjs +3 -3
- package/esm2020/lib/execution-screen/step-group/step-group.component.mjs +1 -1
- package/esm2020/lib/execution-screen/step-renderer/step-renderer.component.mjs +1 -1
- package/esm2020/lib/simulator/simulator.component.mjs +3 -3
- package/fesm2015/cqa-lib-cqa-ui.mjs +16 -16
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +16 -16
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/execution-screen/ai-action-step/ai-action-step.component.d.ts +6 -2
- package/lib/execution-screen/ai-agent-step/ai-agent-step.component.d.ts +6 -2
- package/lib/execution-screen/api-step/api-step.component.d.ts +6 -2
- package/lib/execution-screen/basic-step/basic-step.component.d.ts +6 -2
- package/lib/execution-screen/condition-step/condition-step.component.d.ts +6 -2
- package/lib/execution-screen/db-verification-step/db-verification-step.component.d.ts +6 -2
- package/lib/execution-screen/loop-step/loop-step.component.d.ts +6 -2
- package/lib/execution-screen/step-group/step-group.component.d.ts +6 -2
- package/lib/execution-screen/step-renderer/step-renderer.component.d.ts +6 -2
- package/package.json +1 -1
- package/styles.css +1 -1
|
@@ -22,8 +22,12 @@ export declare class AIActionStepComponent extends BaseStepComponent implements
|
|
|
22
22
|
isMakingCurrentBaseline: {};
|
|
23
23
|
selfHealAnalysis?: SelfHealAnalysisData;
|
|
24
24
|
getSelfHealLoadingStatesHandler?: () => {
|
|
25
|
-
isLoadingAccept:
|
|
26
|
-
|
|
25
|
+
isLoadingAccept: {
|
|
26
|
+
[key: string]: boolean;
|
|
27
|
+
};
|
|
28
|
+
isLoadingModifyAccept: {
|
|
29
|
+
[key: string]: boolean;
|
|
30
|
+
};
|
|
27
31
|
};
|
|
28
32
|
onStepClickHandler?: (step: ExecutionStepConfig, event?: Event) => void;
|
|
29
33
|
isLive: boolean;
|
|
@@ -25,8 +25,12 @@ export declare class AIAgentStepComponent extends BaseStepComponent implements O
|
|
|
25
25
|
isMakingCurrentBaseline: {};
|
|
26
26
|
selfHealAnalysis?: SelfHealAnalysisData;
|
|
27
27
|
getSelfHealLoadingStatesHandler?: () => {
|
|
28
|
-
isLoadingAccept:
|
|
29
|
-
|
|
28
|
+
isLoadingAccept: {
|
|
29
|
+
[key: string]: boolean;
|
|
30
|
+
};
|
|
31
|
+
isLoadingModifyAccept: {
|
|
32
|
+
[key: string]: boolean;
|
|
33
|
+
};
|
|
30
34
|
};
|
|
31
35
|
onStepClickHandler?: (step: ExecutionStepConfig, event?: Event) => void;
|
|
32
36
|
isLive: boolean;
|
|
@@ -31,8 +31,12 @@ export declare class ApiStepComponent extends BaseStepComponent implements OnIni
|
|
|
31
31
|
isLive: boolean;
|
|
32
32
|
selfHealAnalysis?: SelfHealAnalysisData;
|
|
33
33
|
getSelfHealLoadingStatesHandler?: () => {
|
|
34
|
-
isLoadingAccept:
|
|
35
|
-
|
|
34
|
+
isLoadingAccept: {
|
|
35
|
+
[key: string]: boolean;
|
|
36
|
+
};
|
|
37
|
+
isLoadingModifyAccept: {
|
|
38
|
+
[key: string]: boolean;
|
|
39
|
+
};
|
|
36
40
|
};
|
|
37
41
|
onStepClickHandler?: (step: ExecutionStepConfig, event?: Event) => void;
|
|
38
42
|
onJsonPathCopiedHandler?: (event: {
|
|
@@ -40,8 +40,12 @@ export declare class BasicStepComponent extends BaseStepComponent implements OnI
|
|
|
40
40
|
onViewFullLogsHandler?: () => void;
|
|
41
41
|
onSelfHealActionHandler?: (event: any) => void;
|
|
42
42
|
getSelfHealLoadingStatesHandler?: () => {
|
|
43
|
-
isLoadingAccept:
|
|
44
|
-
|
|
43
|
+
isLoadingAccept: {
|
|
44
|
+
[key: string]: boolean;
|
|
45
|
+
};
|
|
46
|
+
isLoadingModifyAccept: {
|
|
47
|
+
[key: string]: boolean;
|
|
48
|
+
};
|
|
45
49
|
};
|
|
46
50
|
getLoopIterationsHandler?: (step: ExecutionStepConfig) => any[];
|
|
47
51
|
getApiAssertionsHandler?: (step: ExecutionStepConfig) => any[];
|
|
@@ -38,8 +38,12 @@ export declare class ConditionStepComponent extends BaseStepComponent implements
|
|
|
38
38
|
onViewFullLogsHandler?: () => void;
|
|
39
39
|
onSelfHealActionHandler?: (event: any) => void;
|
|
40
40
|
getSelfHealLoadingStatesHandler?: () => {
|
|
41
|
-
isLoadingAccept:
|
|
42
|
-
|
|
41
|
+
isLoadingAccept: {
|
|
42
|
+
[key: string]: boolean;
|
|
43
|
+
};
|
|
44
|
+
isLoadingModifyAccept: {
|
|
45
|
+
[key: string]: boolean;
|
|
46
|
+
};
|
|
43
47
|
};
|
|
44
48
|
getLoopIterationsHandler?: (step: ExecutionStepConfig) => any[];
|
|
45
49
|
getApiAssertionsHandler?: (step: ExecutionStepConfig) => any[];
|
|
@@ -27,8 +27,12 @@ export declare class DbVerificationStepComponent extends BaseStepComponent imple
|
|
|
27
27
|
isMakingCurrentBaseline: {};
|
|
28
28
|
selfHealAnalysis?: SelfHealAnalysisData;
|
|
29
29
|
getSelfHealLoadingStatesHandler?: () => {
|
|
30
|
-
isLoadingAccept:
|
|
31
|
-
|
|
30
|
+
isLoadingAccept: {
|
|
31
|
+
[key: string]: boolean;
|
|
32
|
+
};
|
|
33
|
+
isLoadingModifyAccept: {
|
|
34
|
+
[key: string]: boolean;
|
|
35
|
+
};
|
|
32
36
|
};
|
|
33
37
|
onStepClickHandler?: (step: ExecutionStepConfig, event?: Event) => void;
|
|
34
38
|
isLive: boolean;
|
|
@@ -36,8 +36,12 @@ export declare class LoopStepComponent extends BaseStepComponent implements OnIn
|
|
|
36
36
|
onViewFullLogsHandler?: () => void;
|
|
37
37
|
onSelfHealActionHandler?: (event: any) => void;
|
|
38
38
|
getSelfHealLoadingStatesHandler?: () => {
|
|
39
|
-
isLoadingAccept:
|
|
40
|
-
|
|
39
|
+
isLoadingAccept: {
|
|
40
|
+
[key: string]: boolean;
|
|
41
|
+
};
|
|
42
|
+
isLoadingModifyAccept: {
|
|
43
|
+
[key: string]: boolean;
|
|
44
|
+
};
|
|
41
45
|
};
|
|
42
46
|
getLoopIterationsHandler?: (step: ExecutionStepConfig) => any[];
|
|
43
47
|
getApiAssertionsHandler?: (step: ExecutionStepConfig) => any[];
|
|
@@ -31,8 +31,12 @@ export declare class StepGroupComponent extends BaseStepComponent implements OnI
|
|
|
31
31
|
onViewFullLogsHandler?: () => void;
|
|
32
32
|
onSelfHealActionHandler?: (event: any) => void;
|
|
33
33
|
getSelfHealLoadingStatesHandler?: () => {
|
|
34
|
-
isLoadingAccept:
|
|
35
|
-
|
|
34
|
+
isLoadingAccept: {
|
|
35
|
+
[key: string]: boolean;
|
|
36
|
+
};
|
|
37
|
+
isLoadingModifyAccept: {
|
|
38
|
+
[key: string]: boolean;
|
|
39
|
+
};
|
|
36
40
|
};
|
|
37
41
|
getLoopIterationsHandler?: (step: ExecutionStepConfig) => any[];
|
|
38
42
|
getApiAssertionsHandler?: (step: ExecutionStepConfig) => any[];
|
|
@@ -23,8 +23,12 @@ export declare class StepRendererComponent implements OnChanges, AfterViewInit,
|
|
|
23
23
|
onViewFullLogsHandler?: () => void;
|
|
24
24
|
onSelfHealActionHandler?: (event: any) => void;
|
|
25
25
|
getSelfHealLoadingStatesHandler?: () => {
|
|
26
|
-
isLoadingAccept:
|
|
27
|
-
|
|
26
|
+
isLoadingAccept: {
|
|
27
|
+
[key: string]: boolean;
|
|
28
|
+
};
|
|
29
|
+
isLoadingModifyAccept: {
|
|
30
|
+
[key: string]: boolean;
|
|
31
|
+
};
|
|
28
32
|
};
|
|
29
33
|
isUploadingBaseline?: any;
|
|
30
34
|
isMakingCurrentBaseline?: any;
|