@cqa-lib/cqa-ui 1.1.146 → 1.1.147
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 +7 -2
- package/esm2020/lib/execution-screen/api-step/api-step.component.mjs +6 -2
- package/esm2020/lib/execution-screen/basic-step/basic-step.component.mjs +6 -2
- package/esm2020/lib/execution-screen/condition-step/condition-step.component.mjs +6 -2
- package/esm2020/lib/execution-screen/db-verification-step/db-verification-step.component.mjs +6 -2
- package/esm2020/lib/execution-screen/execution-step.models.mjs +1 -1
- package/esm2020/lib/execution-screen/loop-step/loop-step.component.mjs +6 -2
- package/fesm2015/cqa-lib-cqa-ui.mjs +38 -6
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +31 -6
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/execution-screen/ai-agent-step/ai-agent-step.component.d.ts +2 -5
- package/lib/execution-screen/api-step/api-step.component.d.ts +2 -5
- package/lib/execution-screen/basic-step/basic-step.component.d.ts +2 -5
- package/lib/execution-screen/condition-step/condition-step.component.d.ts +2 -5
- package/lib/execution-screen/db-verification-step/db-verification-step.component.d.ts +2 -5
- package/lib/execution-screen/execution-step.models.d.ts +6 -0
- package/lib/execution-screen/loop-step/loop-step.component.d.ts +2 -5
- package/package.json +1 -1
|
@@ -7443,7 +7443,11 @@ class BasicStepComponent extends BaseStepComponent {
|
|
|
7443
7443
|
this.showFailedStepDetails = expanded;
|
|
7444
7444
|
}
|
|
7445
7445
|
onSelfHealAction(event) {
|
|
7446
|
-
this.selfHealAction.emit(
|
|
7446
|
+
this.selfHealAction.emit({
|
|
7447
|
+
type: event.type,
|
|
7448
|
+
healedLocator: event.healedLocator,
|
|
7449
|
+
testStepId: this.step?.testStepId || undefined
|
|
7450
|
+
});
|
|
7447
7451
|
}
|
|
7448
7452
|
onMakeCurrentBaseline(event) {
|
|
7449
7453
|
this.makeCurrentBaseline.emit(event);
|
|
@@ -8430,7 +8434,11 @@ class LoopStepComponent extends BaseStepComponent {
|
|
|
8430
8434
|
this.viewFullLogs.emit();
|
|
8431
8435
|
}
|
|
8432
8436
|
onSelfHealAction(event) {
|
|
8433
|
-
this.selfHealAction.emit(
|
|
8437
|
+
this.selfHealAction.emit({
|
|
8438
|
+
type: event.type,
|
|
8439
|
+
healedLocator: event.healedLocator,
|
|
8440
|
+
testStepId: this.step?.testStepId || undefined
|
|
8441
|
+
});
|
|
8434
8442
|
}
|
|
8435
8443
|
get showViewMoreButton() {
|
|
8436
8444
|
return this.isExpanded && Boolean(this.failureDetails) &&
|
|
@@ -9031,7 +9039,11 @@ class ConditionStepComponent extends BaseStepComponent {
|
|
|
9031
9039
|
this.viewFullLogs.emit();
|
|
9032
9040
|
}
|
|
9033
9041
|
onSelfHealAction(event) {
|
|
9034
|
-
this.selfHealAction.emit(
|
|
9042
|
+
this.selfHealAction.emit({
|
|
9043
|
+
type: event.type,
|
|
9044
|
+
healedLocator: event.healedLocator,
|
|
9045
|
+
testStepId: this.step?.testStepId || undefined
|
|
9046
|
+
});
|
|
9035
9047
|
}
|
|
9036
9048
|
get showViewMoreButton() {
|
|
9037
9049
|
return this.isExpanded && Boolean(this.failureDetails) &&
|
|
@@ -9337,6 +9349,7 @@ class AIAgentStepComponent extends BaseStepComponent {
|
|
|
9337
9349
|
// Build config from individual inputs
|
|
9338
9350
|
this.config = {
|
|
9339
9351
|
id: this.id,
|
|
9352
|
+
testStepId: this.step?.testStepId || undefined,
|
|
9340
9353
|
testStepResultId: this.testStepResultId,
|
|
9341
9354
|
stepNumber: this.stepNumber,
|
|
9342
9355
|
title: titleValue,
|
|
@@ -9473,7 +9486,11 @@ class AIAgentStepComponent extends BaseStepComponent {
|
|
|
9473
9486
|
this.viewFullLogs.emit();
|
|
9474
9487
|
}
|
|
9475
9488
|
onSelfHealAction(event) {
|
|
9476
|
-
this.selfHealAction.emit(
|
|
9489
|
+
this.selfHealAction.emit({
|
|
9490
|
+
type: event.type,
|
|
9491
|
+
healedLocator: event.healedLocator,
|
|
9492
|
+
testStepId: this.step?.testStepId || undefined
|
|
9493
|
+
});
|
|
9477
9494
|
}
|
|
9478
9495
|
get showViewMoreButton() {
|
|
9479
9496
|
return this.isExpanded && Boolean(this.failureDetails) &&
|
|
@@ -9911,7 +9928,11 @@ class ApiStepComponent extends BaseStepComponent {
|
|
|
9911
9928
|
this.viewFullLogs.emit();
|
|
9912
9929
|
}
|
|
9913
9930
|
onSelfHealAction(event) {
|
|
9914
|
-
this.selfHealAction.emit(
|
|
9931
|
+
this.selfHealAction.emit({
|
|
9932
|
+
type: event.type,
|
|
9933
|
+
healedLocator: event.healedLocator,
|
|
9934
|
+
testStepId: this.step?.testStepId || undefined
|
|
9935
|
+
});
|
|
9915
9936
|
}
|
|
9916
9937
|
get showViewMoreButton() {
|
|
9917
9938
|
return this.isExpanded && Boolean(this.failureDetails) &&
|
|
@@ -13211,7 +13232,11 @@ class DbVerificationStepComponent extends BaseStepComponent {
|
|
|
13211
13232
|
this.viewFullLogs.emit();
|
|
13212
13233
|
}
|
|
13213
13234
|
onSelfHealAction(event) {
|
|
13214
|
-
this.selfHealAction.emit(
|
|
13235
|
+
this.selfHealAction.emit({
|
|
13236
|
+
type: event.type,
|
|
13237
|
+
healedLocator: event.healedLocator,
|
|
13238
|
+
testStepId: this.step?.testStepId || undefined
|
|
13239
|
+
});
|
|
13215
13240
|
}
|
|
13216
13241
|
}
|
|
13217
13242
|
DbVerificationStepComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: DbVerificationStepComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|