@cqa-lib/cqa-ui 1.1.206 → 1.1.208
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/detail-side-panel/detail-side-panel.component.mjs +3 -3
- package/esm2020/lib/test-case-details/ai-agent-step/ai-agent-step.component.mjs +9 -3
- package/esm2020/lib/test-case-details/ai-verify-step/ai-verify-step.component.mjs +11 -3
- package/esm2020/lib/test-case-details/api-step/api-step.component.mjs +6 -2
- package/esm2020/lib/test-case-details/condition-step/condition-step.component.mjs +8 -3
- package/esm2020/lib/test-case-details/custom-code-step/custom-code-step.component.mjs +11 -3
- package/esm2020/lib/test-case-details/database-step/database-step.component.mjs +11 -3
- package/esm2020/lib/test-case-details/loop-step/loop-step.component.mjs +8 -3
- package/esm2020/lib/test-case-details/normal-step/normal-step.component.mjs +10 -2
- package/esm2020/lib/test-case-details/restore-session-step/restore-session-step.component.mjs +11 -3
- package/esm2020/lib/test-case-details/screenshot-step/screenshot-step.component.mjs +11 -3
- package/esm2020/lib/test-case-details/scroll-step/scroll-step.component.mjs +11 -3
- package/esm2020/lib/test-case-details/step-details-drawer/step-details-drawer-data.mjs +1 -1
- package/esm2020/lib/test-case-details/step-details-drawer/step-details-drawer.component.mjs +27 -3
- package/esm2020/lib/test-case-details/step-details-drawer/step-details-drawer.service.mjs +8 -2
- package/esm2020/lib/test-case-details/step-group/step-group.component.mjs +8 -2
- package/esm2020/lib/test-case-details/test-case-details-renderer/test-case-details-renderer.component.mjs +37 -19
- package/esm2020/lib/test-case-details/upload-step/upload-step.component.mjs +11 -3
- package/esm2020/lib/test-case-details/verify-url-step/verify-url-step.component.mjs +11 -3
- package/fesm2015/cqa-lib-cqa-ui.mjs +197 -50
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +194 -48
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/test-case-details/ai-agent-step/ai-agent-step.component.d.ts +6 -2
- package/lib/test-case-details/ai-verify-step/ai-verify-step.component.d.ts +6 -2
- package/lib/test-case-details/api-step/api-step.component.d.ts +6 -2
- package/lib/test-case-details/condition-step/condition-step.component.d.ts +5 -1
- package/lib/test-case-details/custom-code-step/custom-code-step.component.d.ts +6 -2
- package/lib/test-case-details/database-step/database-step.component.d.ts +6 -2
- package/lib/test-case-details/loop-step/loop-step.component.d.ts +5 -1
- package/lib/test-case-details/normal-step/normal-step.component.d.ts +7 -2
- package/lib/test-case-details/restore-session-step/restore-session-step.component.d.ts +6 -2
- package/lib/test-case-details/screenshot-step/screenshot-step.component.d.ts +6 -2
- package/lib/test-case-details/scroll-step/scroll-step.component.d.ts +6 -2
- package/lib/test-case-details/step-details-drawer/step-details-drawer-data.d.ts +2 -0
- package/lib/test-case-details/step-details-drawer/step-details-drawer.component.d.ts +3 -0
- package/lib/test-case-details/step-details-drawer/step-details-drawer.service.d.ts +6 -1
- package/lib/test-case-details/step-group/step-group.component.d.ts +5 -1
- package/lib/test-case-details/test-case-details-renderer/test-case-details-renderer.component.d.ts +6 -3
- package/lib/test-case-details/upload-step/upload-step.component.d.ts +6 -2
- package/lib/test-case-details/verify-url-step/verify-url-step.component.d.ts +6 -2
- package/package.json +1 -1
- package/styles.css +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { AiAgentStepConfig } from '../test-case-step.models';
|
|
2
|
+
import { AiAgentStepConfig, TestCaseStepConfig } from '../test-case-step.models';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class TestCaseAiAgentStepComponent implements OnInit {
|
|
5
5
|
config: AiAgentStepConfig;
|
|
@@ -12,6 +12,10 @@ export declare class TestCaseAiAgentStepComponent implements OnInit {
|
|
|
12
12
|
isInsideLoop: boolean;
|
|
13
13
|
isReorder: boolean;
|
|
14
14
|
edit: EventEmitter<void>;
|
|
15
|
+
editInDepth: EventEmitter<{
|
|
16
|
+
step: TestCaseStepConfig;
|
|
17
|
+
index: number;
|
|
18
|
+
}>;
|
|
15
19
|
link: EventEmitter<void>;
|
|
16
20
|
duplicate: EventEmitter<void>;
|
|
17
21
|
delete: EventEmitter<void>;
|
|
@@ -27,5 +31,5 @@ export declare class TestCaseAiAgentStepComponent implements OnInit {
|
|
|
27
31
|
onViewDetails(): void;
|
|
28
32
|
onSelectionChange(checked: boolean): void;
|
|
29
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseAiAgentStepComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseAiAgentStepComponent, "cqa-test-case-ai-agent-step", never, { "config": "config"; "stepNumber": "stepNumber"; "instructions": "instructions"; "description": "description"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "edit": "edit"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseAiAgentStepComponent, "cqa-test-case-ai-agent-step", never, { "config": "config"; "stepNumber": "stepNumber"; "instructions": "instructions"; "description": "description"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
|
|
31
35
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { AiVerifyStepConfig } from '../test-case-step.models';
|
|
2
|
+
import { AiVerifyStepConfig, TestCaseStepConfig } from '../test-case-step.models';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class TestCaseAiVerifyStepComponent implements OnInit {
|
|
5
5
|
config: AiVerifyStepConfig;
|
|
@@ -12,6 +12,10 @@ export declare class TestCaseAiVerifyStepComponent implements OnInit {
|
|
|
12
12
|
isInsideLoop: boolean;
|
|
13
13
|
isReorder: boolean;
|
|
14
14
|
edit: EventEmitter<void>;
|
|
15
|
+
editInDepth: EventEmitter<{
|
|
16
|
+
step: TestCaseStepConfig;
|
|
17
|
+
index: number;
|
|
18
|
+
}>;
|
|
15
19
|
link: EventEmitter<void>;
|
|
16
20
|
duplicate: EventEmitter<void>;
|
|
17
21
|
delete: EventEmitter<void>;
|
|
@@ -27,5 +31,5 @@ export declare class TestCaseAiVerifyStepComponent implements OnInit {
|
|
|
27
31
|
onViewDetails(): void;
|
|
28
32
|
onSelectionChange(checked: boolean): void;
|
|
29
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseAiVerifyStepComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseAiVerifyStepComponent, "cqa-test-case-ai-verify-step", never, { "config": "config"; "stepNumber": "stepNumber"; "instructions": "instructions"; "description": "description"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "edit": "edit"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseAiVerifyStepComponent, "cqa-test-case-ai-verify-step", never, { "config": "config"; "stepNumber": "stepNumber"; "instructions": "instructions"; "description": "description"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
|
|
31
35
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { OverlayContainer } from '@angular/cdk/overlay';
|
|
3
|
-
import { ApiStepConfig } from '../test-case-step.models';
|
|
3
|
+
import { ApiStepConfig, TestCaseStepConfig } from '../test-case-step.models';
|
|
4
4
|
import { EnvironmentOptionInput } from '../api-edit-step/api-edit-step.component';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class TestCaseApiStepComponent implements OnInit {
|
|
@@ -28,6 +28,10 @@ export declare class TestCaseApiStepComponent implements OnInit {
|
|
|
28
28
|
/** Header name options for the API edit step (e.g. for header dropdown): strings or { id, name, value, label }. Passed to cqa-api-edit-step. */
|
|
29
29
|
headerNameOptions?: EnvironmentOptionInput[];
|
|
30
30
|
edit: EventEmitter<void>;
|
|
31
|
+
editInDepth: EventEmitter<{
|
|
32
|
+
step: TestCaseStepConfig;
|
|
33
|
+
index: number;
|
|
34
|
+
}>;
|
|
31
35
|
link: EventEmitter<void>;
|
|
32
36
|
duplicate: EventEmitter<void>;
|
|
33
37
|
delete: EventEmitter<void>;
|
|
@@ -55,5 +59,5 @@ export declare class TestCaseApiStepComponent implements OnInit {
|
|
|
55
59
|
onViewDetails(): void;
|
|
56
60
|
onSelectionChange(checked: boolean): void;
|
|
57
61
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseApiStepComponent, never>;
|
|
58
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseApiStepComponent, "cqa-test-case-api-step", never, { "config": "config"; "stepNumber": "stepNumber"; "method": "method"; "endpoint": "endpoint"; "description": "description"; "baseUrl": "baseUrl"; "headersCount": "headersCount"; "hasBody": "hasBody"; "saveTo": "saveTo"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "expanded": "expanded"; "isReorder": "isReorder"; "environmentOptions": "environmentOptions"; "httpMethodOptions": "httpMethodOptions"; "headerNameOptions": "headerNameOptions"; }, { "edit": "edit"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; "toggleExpanded": "toggleExpanded"; }, never, never>;
|
|
62
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseApiStepComponent, "cqa-test-case-api-step", never, { "config": "config"; "stepNumber": "stepNumber"; "method": "method"; "endpoint": "endpoint"; "description": "description"; "baseUrl": "baseUrl"; "headersCount": "headersCount"; "hasBody": "hasBody"; "saveTo": "saveTo"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "expanded": "expanded"; "isReorder": "isReorder"; "environmentOptions": "environmentOptions"; "httpMethodOptions": "httpMethodOptions"; "headerNameOptions": "headerNameOptions"; }, { "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; "toggleExpanded": "toggleExpanded"; }, never, never>;
|
|
59
63
|
}
|
|
@@ -82,6 +82,10 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
|
|
|
82
82
|
duplicate: EventEmitter<void>;
|
|
83
83
|
delete: EventEmitter<void>;
|
|
84
84
|
moreOptions: EventEmitter<void>;
|
|
85
|
+
editInDepth: EventEmitter<{
|
|
86
|
+
step: TestCaseStepConfig;
|
|
87
|
+
index: number;
|
|
88
|
+
}>;
|
|
85
89
|
dndDropInZone: EventEmitter<{
|
|
86
90
|
event: DndDropEvent;
|
|
87
91
|
targetList: TestCaseStepConfig[];
|
|
@@ -164,5 +168,5 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
|
|
|
164
168
|
/** Get select config for a template variable */
|
|
165
169
|
getSelectConfigForVariable(variable: any, branchIdOrIsElse?: string | boolean): DynamicSelectFieldConfig;
|
|
166
170
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseConditionStepComponent, never>;
|
|
167
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseConditionStepComponent, "cqa-test-case-condition-step", never, { "config": "config"; "id": "id"; "stepNumber": "stepNumber"; "condition": "condition"; "branches": "branches"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "setConditionTemplateVariables": "setConditionTemplateVariables"; }, { "toggleExpanded": "toggleExpanded"; "conditionChange": "conditionChange"; "branchStepChange": "branchStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "addBranch": "addBranch"; "addElse": "addElse"; "deleteBranch": "deleteBranch"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "clickAction": "clickAction"; }, never, never>;
|
|
171
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseConditionStepComponent, "cqa-test-case-condition-step", never, { "config": "config"; "id": "id"; "stepNumber": "stepNumber"; "condition": "condition"; "branches": "branches"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "setConditionTemplateVariables": "setConditionTemplateVariables"; }, { "toggleExpanded": "toggleExpanded"; "conditionChange": "conditionChange"; "branchStepChange": "branchStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "addBranch": "addBranch"; "addElse": "addElse"; "deleteBranch": "deleteBranch"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "editInDepth": "editInDepth"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "clickAction": "clickAction"; }, never, never>;
|
|
168
172
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { CustomCodeStepConfig } from '../test-case-step.models';
|
|
2
|
+
import { CustomCodeStepConfig, TestCaseStepConfig } from '../test-case-step.models';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class TestCaseCustomCodeStepComponent implements OnInit {
|
|
5
5
|
config: CustomCodeStepConfig;
|
|
@@ -13,6 +13,10 @@ export declare class TestCaseCustomCodeStepComponent implements OnInit {
|
|
|
13
13
|
isInsideLoop: boolean;
|
|
14
14
|
isReorder: boolean;
|
|
15
15
|
edit: EventEmitter<void>;
|
|
16
|
+
editInDepth: EventEmitter<{
|
|
17
|
+
step: TestCaseStepConfig;
|
|
18
|
+
index: number;
|
|
19
|
+
}>;
|
|
16
20
|
link: EventEmitter<void>;
|
|
17
21
|
duplicate: EventEmitter<void>;
|
|
18
22
|
delete: EventEmitter<void>;
|
|
@@ -30,5 +34,5 @@ export declare class TestCaseCustomCodeStepComponent implements OnInit {
|
|
|
30
34
|
onViewDetails(): void;
|
|
31
35
|
onSelectionChange(checked: boolean): void;
|
|
32
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseCustomCodeStepComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseCustomCodeStepComponent, "cqa-test-case-custom-code-step", never, { "config": "config"; "stepNumber": "stepNumber"; "language": "language"; "code": "code"; "description": "description"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "edit": "edit"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseCustomCodeStepComponent, "cqa-test-case-custom-code-step", never, { "config": "config"; "stepNumber": "stepNumber"; "language": "language"; "code": "code"; "description": "description"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
|
|
34
38
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { DatabaseStepConfig } from '../test-case-step.models';
|
|
2
|
+
import { DatabaseStepConfig, TestCaseStepConfig } from '../test-case-step.models';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class TestCaseDatabaseStepComponent implements OnInit {
|
|
5
5
|
config: DatabaseStepConfig;
|
|
@@ -16,6 +16,10 @@ export declare class TestCaseDatabaseStepComponent implements OnInit {
|
|
|
16
16
|
expanded: boolean;
|
|
17
17
|
isReorder: boolean;
|
|
18
18
|
edit: EventEmitter<void>;
|
|
19
|
+
editInDepth: EventEmitter<{
|
|
20
|
+
step: TestCaseStepConfig;
|
|
21
|
+
index: number;
|
|
22
|
+
}>;
|
|
19
23
|
link: EventEmitter<void>;
|
|
20
24
|
duplicate: EventEmitter<void>;
|
|
21
25
|
delete: EventEmitter<void>;
|
|
@@ -38,5 +42,5 @@ export declare class TestCaseDatabaseStepComponent implements OnInit {
|
|
|
38
42
|
onConnectionChange(value: string): void;
|
|
39
43
|
onQueryChange(value: string): void;
|
|
40
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseDatabaseStepComponent, never>;
|
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseDatabaseStepComponent, "cqa-test-case-database-step", never, { "config": "config"; "stepNumber": "stepNumber"; "query": "query"; "description": "description"; "databaseType": "databaseType"; "connectionName": "connectionName"; "saveTo": "saveTo"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "expanded": "expanded"; "isReorder": "isReorder"; }, { "edit": "edit"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; "toggleExpanded": "toggleExpanded"; "connectionNameChange": "connectionNameChange"; "queryChange": "queryChange"; }, never, never>;
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseDatabaseStepComponent, "cqa-test-case-database-step", never, { "config": "config"; "stepNumber": "stepNumber"; "query": "query"; "description": "description"; "databaseType": "databaseType"; "connectionName": "connectionName"; "saveTo": "saveTo"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "expanded": "expanded"; "isReorder": "isReorder"; }, { "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; "toggleExpanded": "toggleExpanded"; "connectionNameChange": "connectionNameChange"; "queryChange": "queryChange"; }, never, never>;
|
|
42
46
|
}
|
|
@@ -47,6 +47,10 @@ export declare class TestCaseLoopStepComponent implements OnInit, OnChanges {
|
|
|
47
47
|
duplicate: EventEmitter<void>;
|
|
48
48
|
delete: EventEmitter<void>;
|
|
49
49
|
moreOptions: EventEmitter<void>;
|
|
50
|
+
editInDepth: EventEmitter<{
|
|
51
|
+
step: TestCaseStepConfig;
|
|
52
|
+
index: number;
|
|
53
|
+
}>;
|
|
50
54
|
edit: EventEmitter<void>;
|
|
51
55
|
dndDropInZone: EventEmitter<{
|
|
52
56
|
event: DndDropEvent;
|
|
@@ -140,5 +144,5 @@ export declare class TestCaseLoopStepComponent implements OnInit, OnChanges {
|
|
|
140
144
|
onDelete(): void;
|
|
141
145
|
onMoreOptions(): void;
|
|
142
146
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseLoopStepComponent, never>;
|
|
143
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseLoopStepComponent, "cqa-test-case-loop-step", never, { "config": "config"; "id": "id"; "loopType": "loopType"; "stepNumber": "stepNumber"; "condition": "condition"; "maxIterations": "maxIterations"; "testDataProfile": "testDataProfile"; "startStep": "startStep"; "endStep": "endStep"; "nestedSteps": "nestedSteps"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; }, { "toggleExpanded": "toggleExpanded"; "testDataProfileChange": "testDataProfileChange"; "startStepChange": "startStepChange"; "endStepChange": "endStepChange"; "conditionChange": "conditionChange"; "maxIterationsChange": "maxIterationsChange"; "nestedStepChange": "nestedStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "edit": "edit"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "clickAction": "clickAction"; }, never, never>;
|
|
147
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseLoopStepComponent, "cqa-test-case-loop-step", never, { "config": "config"; "id": "id"; "loopType": "loopType"; "stepNumber": "stepNumber"; "condition": "condition"; "maxIterations": "maxIterations"; "testDataProfile": "testDataProfile"; "startStep": "startStep"; "endStep": "endStep"; "nestedSteps": "nestedSteps"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; }, { "toggleExpanded": "toggleExpanded"; "testDataProfileChange": "testDataProfileChange"; "startStepChange": "startStepChange"; "endStepChange": "endStepChange"; "conditionChange": "conditionChange"; "maxIterationsChange": "maxIterationsChange"; "nestedStepChange": "nestedStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "editInDepth": "editInDepth"; "edit": "edit"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "clickAction": "clickAction"; }, never, never>;
|
|
144
148
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, OnInit, ElementRef, ChangeDetectorRef, NgZone } from '@angular/core';
|
|
2
|
-
import { NormalStepConfig, TestCaseEventType, EventTypeConfig, StepParameter } from '../test-case-step.models';
|
|
2
|
+
import { NormalStepConfig, TestCaseEventType, EventTypeConfig, StepParameter, TestCaseStepConfig } from '../test-case-step.models';
|
|
3
3
|
import { CustomEditStepService } from '../custom-edit-step/custom-edit-step.service';
|
|
4
4
|
import { ElementPopupService } from '../element-popup/element-popup.service';
|
|
5
5
|
import { TestDataModalService } from '../test-data-modal/test-data-modal.service';
|
|
@@ -28,12 +28,17 @@ export declare class TestCaseNormalStepComponent implements OnInit {
|
|
|
28
28
|
isNested: boolean;
|
|
29
29
|
isInsideLoop: boolean;
|
|
30
30
|
isReorder: boolean;
|
|
31
|
+
stepIndex?: number;
|
|
31
32
|
eventTypeChange: EventEmitter<TestCaseEventType>;
|
|
32
33
|
parameterChange: EventEmitter<{
|
|
33
34
|
parameter: StepParameter;
|
|
34
35
|
value: string;
|
|
35
36
|
}>;
|
|
36
37
|
edit: EventEmitter<void>;
|
|
38
|
+
editInDepth: EventEmitter<{
|
|
39
|
+
step: TestCaseStepConfig;
|
|
40
|
+
index: number;
|
|
41
|
+
}>;
|
|
37
42
|
link: EventEmitter<void>;
|
|
38
43
|
duplicate: EventEmitter<void>;
|
|
39
44
|
delete: EventEmitter<void>;
|
|
@@ -76,5 +81,5 @@ export declare class TestCaseNormalStepComponent implements OnInit {
|
|
|
76
81
|
onDocumentClick(event: MouseEvent): void;
|
|
77
82
|
clickOnAction(event: MouseEvent): void;
|
|
78
83
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseNormalStepComponent, never>;
|
|
79
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseNormalStepComponent, "cqa-test-case-normal-step", never, { "config": "config"; "stepNumber": "stepNumber"; "action": "action"; "eventType": "eventType"; "parameters": "parameters"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "eventTypeChange": "eventTypeChange"; "parameterChange": "parameterChange"; "edit": "edit"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "selectionChange": "selectionChange"; "clickAction": "clickAction"; }, never, never>;
|
|
84
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseNormalStepComponent, "cqa-test-case-normal-step", never, { "config": "config"; "stepNumber": "stepNumber"; "action": "action"; "eventType": "eventType"; "parameters": "parameters"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; "stepIndex": "stepIndex"; }, { "eventTypeChange": "eventTypeChange"; "parameterChange": "parameterChange"; "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "selectionChange": "selectionChange"; "clickAction": "clickAction"; }, never, never>;
|
|
80
85
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { RestoreSessionStepConfig } from '../test-case-step.models';
|
|
2
|
+
import { RestoreSessionStepConfig, TestCaseStepConfig } from '../test-case-step.models';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class TestCaseRestoreSessionStepComponent implements OnInit {
|
|
5
5
|
config: RestoreSessionStepConfig;
|
|
@@ -11,6 +11,10 @@ export declare class TestCaseRestoreSessionStepComponent implements OnInit {
|
|
|
11
11
|
isInsideLoop: boolean;
|
|
12
12
|
isReorder: boolean;
|
|
13
13
|
edit: EventEmitter<void>;
|
|
14
|
+
editInDepth: EventEmitter<{
|
|
15
|
+
step: TestCaseStepConfig;
|
|
16
|
+
index: number;
|
|
17
|
+
}>;
|
|
14
18
|
link: EventEmitter<void>;
|
|
15
19
|
duplicate: EventEmitter<void>;
|
|
16
20
|
delete: EventEmitter<void>;
|
|
@@ -27,5 +31,5 @@ export declare class TestCaseRestoreSessionStepComponent implements OnInit {
|
|
|
27
31
|
onViewDetails(): void;
|
|
28
32
|
onSelectionChange(checked: boolean): void;
|
|
29
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseRestoreSessionStepComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseRestoreSessionStepComponent, "cqa-test-case-restore-session-step", never, { "config": "config"; "stepNumber": "stepNumber"; "action": "action"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "edit": "edit"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseRestoreSessionStepComponent, "cqa-test-case-restore-session-step", never, { "config": "config"; "stepNumber": "stepNumber"; "action": "action"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
|
|
31
35
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { ScreenshotStepConfig } from '../test-case-step.models';
|
|
2
|
+
import { ScreenshotStepConfig, TestCaseStepConfig } from '../test-case-step.models';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class TestCaseScreenshotStepComponent implements OnInit {
|
|
5
5
|
config: ScreenshotStepConfig;
|
|
@@ -14,6 +14,10 @@ export declare class TestCaseScreenshotStepComponent implements OnInit {
|
|
|
14
14
|
isInsideLoop: boolean;
|
|
15
15
|
isReorder: boolean;
|
|
16
16
|
edit: EventEmitter<void>;
|
|
17
|
+
editInDepth: EventEmitter<{
|
|
18
|
+
step: TestCaseStepConfig;
|
|
19
|
+
index: number;
|
|
20
|
+
}>;
|
|
17
21
|
link: EventEmitter<void>;
|
|
18
22
|
duplicate: EventEmitter<void>;
|
|
19
23
|
delete: EventEmitter<void>;
|
|
@@ -30,5 +34,5 @@ export declare class TestCaseScreenshotStepComponent implements OnInit {
|
|
|
30
34
|
onViewDetails(): void;
|
|
31
35
|
onSelectionChange(checked: boolean): void;
|
|
32
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseScreenshotStepComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseScreenshotStepComponent, "cqa-test-case-screenshot-step", never, { "config": "config"; "stepNumber": "stepNumber"; "name": "name"; "fullPage": "fullPage"; "selector": "selector"; "description": "description"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "edit": "edit"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseScreenshotStepComponent, "cqa-test-case-screenshot-step", never, { "config": "config"; "stepNumber": "stepNumber"; "name": "name"; "fullPage": "fullPage"; "selector": "selector"; "description": "description"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
|
|
34
38
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { ScrollStepConfig } from '../test-case-step.models';
|
|
2
|
+
import { ScrollStepConfig, TestCaseStepConfig } from '../test-case-step.models';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class TestCaseScrollStepComponent implements OnInit {
|
|
5
5
|
config: ScrollStepConfig;
|
|
@@ -14,6 +14,10 @@ export declare class TestCaseScrollStepComponent implements OnInit {
|
|
|
14
14
|
expanded: boolean;
|
|
15
15
|
isReorder: boolean;
|
|
16
16
|
edit: EventEmitter<void>;
|
|
17
|
+
editInDepth: EventEmitter<{
|
|
18
|
+
step: TestCaseStepConfig;
|
|
19
|
+
index: number;
|
|
20
|
+
}>;
|
|
17
21
|
link: EventEmitter<void>;
|
|
18
22
|
duplicate: EventEmitter<void>;
|
|
19
23
|
delete: EventEmitter<void>;
|
|
@@ -37,5 +41,5 @@ export declare class TestCaseScrollStepComponent implements OnInit {
|
|
|
37
41
|
onSelectorChange(value: string): void;
|
|
38
42
|
onDirectionChange(value: 'top' | 'bottom' | 'up' | 'down' | 'left' | 'right'): void;
|
|
39
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseScrollStepComponent, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseScrollStepComponent, "cqa-test-case-scroll-step", never, { "config": "config"; "stepNumber": "stepNumber"; "selector": "selector"; "direction": "direction"; "description": "description"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "expanded": "expanded"; "isReorder": "isReorder"; }, { "edit": "edit"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; "toggleExpanded": "toggleExpanded"; "selectorChange": "selectorChange"; "directionChange": "directionChange"; }, never, never>;
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseScrollStepComponent, "cqa-test-case-scroll-step", never, { "config": "config"; "stepNumber": "stepNumber"; "selector": "selector"; "direction": "direction"; "description": "description"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "expanded": "expanded"; "isReorder": "isReorder"; }, { "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; "toggleExpanded": "toggleExpanded"; "selectorChange": "selectorChange"; "directionChange": "directionChange"; }, never, never>;
|
|
41
45
|
}
|
|
@@ -59,5 +59,7 @@ export interface StepDetailsDrawerData {
|
|
|
59
59
|
dynamicFields: DynamicFieldConfig[];
|
|
60
60
|
/** Optional drawer title (e.g. "API Step Details"). When omitted, defaults to "Step Details". */
|
|
61
61
|
title?: string;
|
|
62
|
+
/** Optional pwLocator array for "Other Locators" section. */
|
|
63
|
+
pwLocator?: string[];
|
|
62
64
|
}
|
|
63
65
|
export declare const STEP_DETAILS_DRAWER_DATA: InjectionToken<StepDetailsDrawerData>;
|
|
@@ -29,6 +29,7 @@ export declare class StepDetailsDrawerComponent implements OnInit, OnChanges {
|
|
|
29
29
|
drawerTitleValue: string;
|
|
30
30
|
advancedExpanded: boolean;
|
|
31
31
|
form: FormGroup;
|
|
32
|
+
pwLocator: string[];
|
|
32
33
|
/** Cached select configs per field key (stable refs for change detection). */
|
|
33
34
|
private selectConfigCache;
|
|
34
35
|
/** All fields from the provided array (same reference; used for single source of truth in template). */
|
|
@@ -57,6 +58,8 @@ export declare class StepDetailsDrawerComponent implements OnInit, OnChanges {
|
|
|
57
58
|
onSaveAsTemplate(): void;
|
|
58
59
|
onSaveChanges(): void;
|
|
59
60
|
private applyFormToStep;
|
|
61
|
+
copyLocator(inputElement: HTMLInputElement): void;
|
|
62
|
+
deleteLocator(index: number): void;
|
|
60
63
|
/** Build select config for dropdown field (cached per key). */
|
|
61
64
|
getSelectConfig(field: DynamicFieldConfig): DynamicSelectFieldConfig | null;
|
|
62
65
|
/** Resolved header title for template: @Input drawerTitle > injected data.title > default. */
|
|
@@ -9,13 +9,18 @@ export interface StepDetailsDrawerResult {
|
|
|
9
9
|
step?: TestCaseStepConfig;
|
|
10
10
|
}
|
|
11
11
|
/**
|
|
12
|
-
* Opens the Step Details Drawer (Edit In Depth)
|
|
12
|
+
* Opens the Step Details Drawer (Edit In Depth) as a right-side drawer overlay.
|
|
13
|
+
* Matches the behavior of Element popup - opens as a right-side drawer panel.
|
|
13
14
|
*/
|
|
14
15
|
export declare class StepDetailsDrawerService {
|
|
15
16
|
private readonly overlay;
|
|
16
17
|
private readonly injector;
|
|
17
18
|
private currentRef;
|
|
18
19
|
constructor(overlay: Overlay, injector: Injector);
|
|
20
|
+
/**
|
|
21
|
+
* Opens the Step Details Drawer as a right-side drawer overlay.
|
|
22
|
+
* @param data Step details drawer data
|
|
23
|
+
*/
|
|
19
24
|
open(data: StepDetailsDrawerData): StepDetailsDrawerRef<StepDetailsDrawerResult>;
|
|
20
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepDetailsDrawerService, never>;
|
|
21
26
|
static ɵprov: i0.ɵɵInjectableDeclaration<StepDetailsDrawerService>;
|
|
@@ -44,6 +44,10 @@ export declare class TestCaseStepGroupComponent implements OnInit, OnChanges, Do
|
|
|
44
44
|
step: TestCaseStepConfig;
|
|
45
45
|
}>;
|
|
46
46
|
edit: EventEmitter<void>;
|
|
47
|
+
editInDepth: EventEmitter<{
|
|
48
|
+
step: TestCaseStepConfig;
|
|
49
|
+
index: number;
|
|
50
|
+
}>;
|
|
47
51
|
link: EventEmitter<void>;
|
|
48
52
|
duplicate: EventEmitter<void>;
|
|
49
53
|
delete: EventEmitter<void>;
|
|
@@ -88,5 +92,5 @@ export declare class TestCaseStepGroupComponent implements OnInit, OnChanges, Do
|
|
|
88
92
|
onNestedConditionAddBranch(nestedStep: ConditionStepConfig, index: number): void;
|
|
89
93
|
onNestedConditionDeleteBranch(nestedStep: ConditionStepConfig, branch: any, index: number): void;
|
|
90
94
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseStepGroupComponent, never>;
|
|
91
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseStepGroupComponent, "cqa-test-case-step-group", never, { "config": "config"; "id": "id"; "stepNumber": "stepNumber"; "groupName": "groupName"; "description": "description"; "reusable": "reusable"; "nestedSteps": "nestedSteps"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; "loading": "loading"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; }, { "toggleExpanded": "toggleExpanded"; "groupNameChange": "groupNameChange"; "descriptionChange": "descriptionChange"; "reusableChange": "reusableChange"; "nestedStepChange": "nestedStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "openExternal": "openExternal"; "edit": "edit"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; }, never, never>;
|
|
95
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseStepGroupComponent, "cqa-test-case-step-group", never, { "config": "config"; "id": "id"; "stepNumber": "stepNumber"; "groupName": "groupName"; "description": "description"; "reusable": "reusable"; "nestedSteps": "nestedSteps"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; "loading": "loading"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; }, { "toggleExpanded": "toggleExpanded"; "groupNameChange": "groupNameChange"; "descriptionChange": "descriptionChange"; "reusableChange": "reusableChange"; "nestedStepChange": "nestedStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "openExternal": "openExternal"; "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; }, never, never>;
|
|
92
96
|
}
|
package/lib/test-case-details/test-case-details-renderer/test-case-details-renderer.component.d.ts
CHANGED
|
@@ -15,7 +15,6 @@ export declare class TestCaseDetailsRendererComponent implements OnChanges, Afte
|
|
|
15
15
|
/** When true, enables drag-and-drop reordering and shows drag handle icon instead of checkbox */
|
|
16
16
|
isReorder: boolean;
|
|
17
17
|
addStepBetween: boolean;
|
|
18
|
-
action?: string;
|
|
19
18
|
nestedStepChange: EventEmitter<{
|
|
20
19
|
step: TestCaseStepConfig;
|
|
21
20
|
index: number;
|
|
@@ -68,7 +67,6 @@ export declare class TestCaseDetailsRendererComponent implements OnChanges, Afte
|
|
|
68
67
|
maxIterationsChange: EventEmitter<number>;
|
|
69
68
|
eventTypeChange: EventEmitter<any>;
|
|
70
69
|
parameterChange: EventEmitter<any>;
|
|
71
|
-
/** Emits with step so parent (e.g. step-list) gets correct step when click is from nested step (e.g. inside loop). */
|
|
72
70
|
clickAction: EventEmitter<{
|
|
73
71
|
event: MouseEvent;
|
|
74
72
|
step: TestCaseStepConfig;
|
|
@@ -98,6 +96,11 @@ export declare class TestCaseDetailsRendererComponent implements OnChanges, Afte
|
|
|
98
96
|
step: TestCaseStepConfig;
|
|
99
97
|
index: number;
|
|
100
98
|
}>;
|
|
99
|
+
/** Emit when user clicks "Edit In depth" in condition-step (or other steps that support it) */
|
|
100
|
+
editInDepth: EventEmitter<{
|
|
101
|
+
step: TestCaseStepConfig;
|
|
102
|
+
index: number;
|
|
103
|
+
}>;
|
|
101
104
|
private componentRef;
|
|
102
105
|
constructor(componentMap: TestCaseStepComponentMap, cdr: ChangeDetectorRef);
|
|
103
106
|
ngAfterViewInit(): void;
|
|
@@ -107,5 +110,5 @@ export declare class TestCaseDetailsRendererComponent implements OnChanges, Afte
|
|
|
107
110
|
private wireOutputs;
|
|
108
111
|
ngOnDestroy(): void;
|
|
109
112
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseDetailsRendererComponent, never>;
|
|
110
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseDetailsRendererComponent, "cqa-test-case-details-renderer", never, { "step": "step"; "index": "index"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "branch": "branch"; "isReorder": "isReorder"; "addStepBetween": "addStepBetween"; "
|
|
113
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseDetailsRendererComponent, "cqa-test-case-details-renderer", never, { "step": "step"; "index": "index"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "branch": "branch"; "isReorder": "isReorder"; "addStepBetween": "addStepBetween"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "setConditionTemplateVariables": "setConditionTemplateVariables"; }, { "nestedStepChange": "nestedStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "toggleExpanded": "toggleExpanded"; "groupNameChange": "groupNameChange"; "descriptionChange": "descriptionChange"; "reusableChange": "reusableChange"; "openExternal": "openExternal"; "edit": "edit"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; "conditionChange": "conditionChange"; "branchStepChange": "branchStepChange"; "addStepForBranch": "addStepForBranch"; "deleteStepWithBranch": "deleteStepWithBranch"; "addBranch": "addBranch"; "addElse": "addElse"; "deleteBranch": "deleteBranch"; "testDataProfileChange": "testDataProfileChange"; "startStepChange": "startStepChange"; "endStepChange": "endStepChange"; "maxIterationsChange": "maxIterationsChange"; "eventTypeChange": "eventTypeChange"; "parameterChange": "parameterChange"; "clickAction": "clickAction"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "addStepBetweenClick": "addStepBetweenClick"; "editInDepth": "editInDepth"; }, never, never>;
|
|
111
114
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { UploadStepConfig } from '../test-case-step.models';
|
|
2
|
+
import { UploadStepConfig, TestCaseStepConfig } from '../test-case-step.models';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class TestCaseUploadStepComponent implements OnInit {
|
|
5
5
|
config: UploadStepConfig;
|
|
@@ -15,6 +15,10 @@ export declare class TestCaseUploadStepComponent implements OnInit {
|
|
|
15
15
|
isInsideLoop: boolean;
|
|
16
16
|
isReorder: boolean;
|
|
17
17
|
edit: EventEmitter<void>;
|
|
18
|
+
editInDepth: EventEmitter<{
|
|
19
|
+
step: TestCaseStepConfig;
|
|
20
|
+
index: number;
|
|
21
|
+
}>;
|
|
18
22
|
link: EventEmitter<void>;
|
|
19
23
|
duplicate: EventEmitter<void>;
|
|
20
24
|
delete: EventEmitter<void>;
|
|
@@ -30,5 +34,5 @@ export declare class TestCaseUploadStepComponent implements OnInit {
|
|
|
30
34
|
onViewDetails(): void;
|
|
31
35
|
onSelectionChange(checked: boolean): void;
|
|
32
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseUploadStepComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseUploadStepComponent, "cqa-test-case-upload-step", never, { "config": "config"; "stepNumber": "stepNumber"; "selector": "selector"; "fileName": "fileName"; "source": "source"; "sourcePath": "sourcePath"; "description": "description"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "edit": "edit"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseUploadStepComponent, "cqa-test-case-upload-step", never, { "config": "config"; "stepNumber": "stepNumber"; "selector": "selector"; "fileName": "fileName"; "source": "source"; "sourcePath": "sourcePath"; "description": "description"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
|
|
34
38
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { VerifyUrlStepConfig } from '../test-case-step.models';
|
|
2
|
+
import { VerifyUrlStepConfig, TestCaseStepConfig } from '../test-case-step.models';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class TestCaseVerifyUrlStepComponent implements OnInit {
|
|
5
5
|
config: VerifyUrlStepConfig;
|
|
@@ -12,6 +12,10 @@ export declare class TestCaseVerifyUrlStepComponent implements OnInit {
|
|
|
12
12
|
isInsideLoop: boolean;
|
|
13
13
|
isReorder: boolean;
|
|
14
14
|
edit: EventEmitter<void>;
|
|
15
|
+
editInDepth: EventEmitter<{
|
|
16
|
+
step: TestCaseStepConfig;
|
|
17
|
+
index: number;
|
|
18
|
+
}>;
|
|
15
19
|
link: EventEmitter<void>;
|
|
16
20
|
duplicate: EventEmitter<void>;
|
|
17
21
|
delete: EventEmitter<void>;
|
|
@@ -28,5 +32,5 @@ export declare class TestCaseVerifyUrlStepComponent implements OnInit {
|
|
|
28
32
|
onViewDetails(): void;
|
|
29
33
|
onSelectionChange(checked: boolean): void;
|
|
30
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseVerifyUrlStepComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseVerifyUrlStepComponent, "cqa-test-case-verify-url-step", never, { "config": "config"; "stepNumber": "stepNumber"; "action": "action"; "url": "url"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "edit": "edit"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseVerifyUrlStepComponent, "cqa-test-case-verify-url-step", never, { "config": "config"; "stepNumber": "stepNumber"; "action": "action"; "url": "url"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
|
|
32
36
|
}
|