@cqa-lib/cqa-ui 1.1.243 → 1.1.245

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 (36) hide show
  1. package/esm2020/lib/step-builder/step-builder-custom-code/step-builder-custom-code.component.mjs +37 -3
  2. package/esm2020/lib/test-case-details/ai-agent-step/ai-agent-step.component.mjs +6 -3
  3. package/esm2020/lib/test-case-details/ai-verify-step/ai-verify-step.component.mjs +6 -3
  4. package/esm2020/lib/test-case-details/api-step/api-step.component.mjs +6 -3
  5. package/esm2020/lib/test-case-details/condition-step/condition-step.component.mjs +6 -3
  6. package/esm2020/lib/test-case-details/custom-code-step/custom-code-step.component.mjs +6 -3
  7. package/esm2020/lib/test-case-details/database-step/database-step.component.mjs +6 -3
  8. package/esm2020/lib/test-case-details/loop-step/loop-step.component.mjs +30 -3
  9. package/esm2020/lib/test-case-details/normal-step/normal-step.component.mjs +6 -3
  10. package/esm2020/lib/test-case-details/restore-session-step/restore-session-step.component.mjs +6 -3
  11. package/esm2020/lib/test-case-details/screenshot-step/screenshot-step.component.mjs +6 -3
  12. package/esm2020/lib/test-case-details/scroll-step/scroll-step.component.mjs +6 -3
  13. package/esm2020/lib/test-case-details/step-group/step-group.component.mjs +3 -3
  14. package/esm2020/lib/test-case-details/test-case-details-renderer/test-case-details-renderer.component.mjs +8 -3
  15. package/esm2020/lib/test-case-details/upload-step/upload-step.component.mjs +6 -3
  16. package/esm2020/lib/test-case-details/verify-url-step/verify-url-step.component.mjs +6 -3
  17. package/fesm2015/cqa-lib-cqa-ui.mjs +136 -32
  18. package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
  19. package/fesm2020/cqa-lib-cqa-ui.mjs +134 -32
  20. package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
  21. package/lib/step-builder/step-builder-custom-code/step-builder-custom-code.component.d.ts +8 -1
  22. package/lib/test-case-details/ai-agent-step/ai-agent-step.component.d.ts +2 -1
  23. package/lib/test-case-details/ai-verify-step/ai-verify-step.component.d.ts +2 -1
  24. package/lib/test-case-details/api-step/api-step.component.d.ts +2 -1
  25. package/lib/test-case-details/condition-step/condition-step.component.d.ts +2 -1
  26. package/lib/test-case-details/custom-code-step/custom-code-step.component.d.ts +2 -1
  27. package/lib/test-case-details/database-step/database-step.component.d.ts +2 -1
  28. package/lib/test-case-details/loop-step/loop-step.component.d.ts +8 -1
  29. package/lib/test-case-details/normal-step/normal-step.component.d.ts +2 -1
  30. package/lib/test-case-details/restore-session-step/restore-session-step.component.d.ts +2 -1
  31. package/lib/test-case-details/screenshot-step/screenshot-step.component.d.ts +2 -1
  32. package/lib/test-case-details/scroll-step/scroll-step.component.d.ts +2 -1
  33. package/lib/test-case-details/test-case-details-renderer/test-case-details-renderer.component.d.ts +3 -1
  34. package/lib/test-case-details/upload-step/upload-step.component.d.ts +2 -1
  35. package/lib/test-case-details/verify-url-step/verify-url-step.component.d.ts +2 -1
  36. package/package.json +1 -1
@@ -18,6 +18,12 @@ export declare class StepBuilderCustomCodeComponent implements OnInit, OnChanges
18
18
  template: ActionTemplate | null;
19
19
  /** Function to handle variable processing or custom logic. Can be passed from parent component. */
20
20
  setTemplateVariables: (variables: ActionTemplate) => any;
21
+ /** Initial values for editing mode */
22
+ initialCode?: string;
23
+ initialLanguage?: string;
24
+ initialMetadata?: string;
25
+ initialDescription?: string;
26
+ isEditMode: boolean;
21
27
  /** Emit when step is created */
22
28
  createStep: EventEmitter<CustomCodeFormData>;
23
29
  /** Emit when cancelled */
@@ -28,6 +34,7 @@ export declare class StepBuilderCustomCodeComponent implements OnInit, OnChanges
28
34
  constructor(fb: FormBuilder);
29
35
  ngOnInit(): void;
30
36
  ngOnChanges(changes: SimpleChanges): void;
37
+ private initializeFormWithValues;
31
38
  private loadTemplateVariables;
32
39
  private buildVariablesForm;
33
40
  getSelectConfig(variable: any): DynamicSelectFieldConfig;
@@ -37,5 +44,5 @@ export declare class StepBuilderCustomCodeComponent implements OnInit, OnChanges
37
44
  onCancel(): void;
38
45
  onCreateStep(): void;
39
46
  static ɵfac: i0.ɵɵFactoryDeclaration<StepBuilderCustomCodeComponent, never>;
40
- static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderCustomCodeComponent, "cqa-step-builder-custom-code", never, { "languageOptions": "languageOptions"; "template": "template"; "setTemplateVariables": "setTemplateVariables"; }, { "createStep": "createStep"; "cancelled": "cancelled"; }, never, never>;
47
+ static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderCustomCodeComponent, "cqa-step-builder-custom-code", never, { "languageOptions": "languageOptions"; "template": "template"; "setTemplateVariables": "setTemplateVariables"; "initialCode": "initialCode"; "initialLanguage": "initialLanguage"; "initialMetadata": "initialMetadata"; "initialDescription": "initialDescription"; "isEditMode": "isEditMode"; }, { "createStep": "createStep"; "cancelled": "cancelled"; }, never, never>;
41
48
  }
@@ -10,6 +10,7 @@ export declare class TestCaseAiAgentStepComponent implements OnInit {
10
10
  selected: boolean;
11
11
  disabled: boolean;
12
12
  isNested: boolean;
13
+ isInsideStepGroup: boolean;
13
14
  isInsideLoop: boolean;
14
15
  isReorder: boolean;
15
16
  viewDetailsTrigger?: ElementRef<HTMLElement>;
@@ -34,5 +35,5 @@ export declare class TestCaseAiAgentStepComponent implements OnInit {
34
35
  onViewDetails(event?: MouseEvent): void;
35
36
  onSelectionChange(checked: boolean): void;
36
37
  static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseAiAgentStepComponent, never>;
37
- 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>;
38
+ 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"; "isInsideStepGroup": "isInsideStepGroup"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
38
39
  }
@@ -10,6 +10,7 @@ export declare class TestCaseAiVerifyStepComponent implements OnInit {
10
10
  selected: boolean;
11
11
  disabled: boolean;
12
12
  isNested: boolean;
13
+ isInsideStepGroup: boolean;
13
14
  isInsideLoop: boolean;
14
15
  isReorder: boolean;
15
16
  viewDetailsTrigger?: ElementRef<HTMLElement>;
@@ -34,5 +35,5 @@ export declare class TestCaseAiVerifyStepComponent implements OnInit {
34
35
  onViewDetails(event?: MouseEvent): void;
35
36
  onSelectionChange(checked: boolean): void;
36
37
  static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseAiVerifyStepComponent, never>;
37
- 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>;
38
+ 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"; "isInsideStepGroup": "isInsideStepGroup"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
38
39
  }
@@ -20,6 +20,7 @@ export declare class TestCaseApiStepComponent implements OnInit {
20
20
  disabled: boolean;
21
21
  isNested: boolean;
22
22
  isInsideLoop: boolean;
23
+ isInsideStepGroup: boolean;
23
24
  expanded: boolean;
24
25
  isReorder: boolean;
25
26
  /** Environment options for the API edit step dropdown: strings or { id, name, value, label }. Passed to cqa-api-edit-step. */
@@ -60,5 +61,5 @@ export declare class TestCaseApiStepComponent implements OnInit {
60
61
  onViewDetails(event?: MouseEvent): void;
61
62
  onSelectionChange(checked: boolean): void;
62
63
  static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseApiStepComponent, never>;
63
- 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>;
64
+ 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"; "isInsideStepGroup": "isInsideStepGroup"; "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>;
64
65
  }
@@ -17,6 +17,7 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
17
17
  expanded: boolean;
18
18
  isNested: boolean;
19
19
  isInsideLoop: boolean;
20
+ isInsideStepGroup: boolean;
20
21
  isReorder: boolean;
21
22
  selected: boolean;
22
23
  /** Options for the data profile dropdown */
@@ -198,5 +199,5 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
198
199
  /** Get select config for a template variable */
199
200
  getSelectConfigForVariable(variable: any, branchIdOrIsElse?: string | boolean): DynamicSelectFieldConfig;
200
201
  static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseConditionStepComponent, never>;
201
- 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"; "selected": "selected"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "setConditionTemplateVariables": "setConditionTemplateVariables"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; }, { "toggleExpanded": "toggleExpanded"; "conditionChange": "conditionChange"; "branchStepChange": "branchStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "addBranch": "addBranch"; "addElse": "addElse"; "deleteBranch": "deleteBranch"; "duplicate": "duplicate"; "delete": "delete"; "edit": "edit"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "editInDepth": "editInDepth"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "clickAction": "clickAction"; "addStepBetweenClick": "addStepBetweenClick"; "selectionChange": "selectionChange"; }, never, never>;
202
+ 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"; "isInsideStepGroup": "isInsideStepGroup"; "isReorder": "isReorder"; "selected": "selected"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "setConditionTemplateVariables": "setConditionTemplateVariables"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; }, { "toggleExpanded": "toggleExpanded"; "conditionChange": "conditionChange"; "branchStepChange": "branchStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "addBranch": "addBranch"; "addElse": "addElse"; "deleteBranch": "deleteBranch"; "duplicate": "duplicate"; "delete": "delete"; "edit": "edit"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "editInDepth": "editInDepth"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "clickAction": "clickAction"; "addStepBetweenClick": "addStepBetweenClick"; "selectionChange": "selectionChange"; }, never, never>;
202
203
  }
@@ -11,6 +11,7 @@ export declare class TestCaseCustomCodeStepComponent implements OnInit {
11
11
  selected: boolean;
12
12
  disabled: boolean;
13
13
  isNested: boolean;
14
+ isInsideStepGroup: boolean;
14
15
  isInsideLoop: boolean;
15
16
  isReorder: boolean;
16
17
  viewDetailsTrigger?: ElementRef<HTMLElement>;
@@ -37,5 +38,5 @@ export declare class TestCaseCustomCodeStepComponent implements OnInit {
37
38
  onViewDetails(event?: MouseEvent): void;
38
39
  onSelectionChange(checked: boolean): void;
39
40
  static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseCustomCodeStepComponent, never>;
40
- 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>;
41
+ 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"; "isInsideStepGroup": "isInsideStepGroup"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
41
42
  }
@@ -13,6 +13,7 @@ export declare class TestCaseDatabaseStepComponent implements OnInit {
13
13
  selected: boolean;
14
14
  disabled: boolean;
15
15
  isNested: boolean;
16
+ isInsideStepGroup: boolean;
16
17
  isInsideLoop: boolean;
17
18
  expanded: boolean;
18
19
  isReorder: boolean;
@@ -43,5 +44,5 @@ export declare class TestCaseDatabaseStepComponent implements OnInit {
43
44
  onConnectionChange(value: string): void;
44
45
  onQueryChange(value: string): void;
45
46
  static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseDatabaseStepComponent, never>;
46
- 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>;
47
+ 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"; "isInsideStepGroup": "isInsideStepGroup"; "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>;
47
48
  }
@@ -23,6 +23,7 @@ export declare class TestCaseLoopStepComponent implements OnInit, OnChanges {
23
23
  expanded: boolean;
24
24
  isNested: boolean;
25
25
  isInsideLoop: boolean;
26
+ isInsideStepGroup: boolean;
26
27
  isReorder: boolean;
27
28
  selected: boolean;
28
29
  /** Options for the data profile dropdown - accepts DataProfileOption objects */
@@ -176,6 +177,12 @@ export declare class TestCaseLoopStepComponent implements OnInit, OnChanges {
176
177
  private getDisplayEndIndex;
177
178
  /** Resolve display profile name: map forLoopTestDataId to profile name from dataProfileOptions, else use testDataProfile */
178
179
  private getDisplayTestDataProfileName;
180
+ /** Whether test data profile is set (so we can show/hide the chip) */
181
+ hasTestDataProfile(): boolean;
182
+ /** Whether start value is explicitly set (config or startStep input), not inferred from nested steps */
183
+ hasStartValue(): boolean;
184
+ /** Whether end value is explicitly set (config or endStep input), not inferred from nested steps */
185
+ hasEndValue(): boolean;
179
186
  getStepsSummary(): string;
180
187
  getStartStepLabel(): string;
181
188
  getEndStepLabel(): string;
@@ -225,5 +232,5 @@ export declare class TestCaseLoopStepComponent implements OnInit, OnChanges {
225
232
  onMoreOptions(): void;
226
233
  onViewDetails(event?: MouseEvent): void;
227
234
  static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseLoopStepComponent, never>;
228
- 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"; "selected": "selected"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "setConditionTemplateVariables": "setConditionTemplateVariables"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; }, { "toggleExpanded": "toggleExpanded"; "testDataProfileChange": "testDataProfileChange"; "startStepChange": "startStepChange"; "endStepChange": "endStepChange"; "conditionChange": "conditionChange"; "maxIterationsChange": "maxIterationsChange"; "nestedStepChange": "nestedStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "editInDepth": "editInDepth"; "edit": "edit"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "clickAction": "clickAction"; "addStepBetweenClick": "addStepBetweenClick"; "selectionChange": "selectionChange"; }, never, never>;
235
+ 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"; "isInsideStepGroup": "isInsideStepGroup"; "isReorder": "isReorder"; "selected": "selected"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "setConditionTemplateVariables": "setConditionTemplateVariables"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; }, { "toggleExpanded": "toggleExpanded"; "testDataProfileChange": "testDataProfileChange"; "startStepChange": "startStepChange"; "endStepChange": "endStepChange"; "conditionChange": "conditionChange"; "maxIterationsChange": "maxIterationsChange"; "nestedStepChange": "nestedStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "editInDepth": "editInDepth"; "edit": "edit"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "clickAction": "clickAction"; "addStepBetweenClick": "addStepBetweenClick"; "selectionChange": "selectionChange"; }, never, never>;
229
236
  }
@@ -29,6 +29,7 @@ export declare class TestCaseNormalStepComponent implements OnInit {
29
29
  disabled: boolean;
30
30
  isNested: boolean;
31
31
  isInsideLoop: boolean;
32
+ isInsideStepGroup: boolean;
32
33
  isReorder: boolean;
33
34
  stepIndex?: number;
34
35
  eventTypeChange: EventEmitter<TestCaseEventType>;
@@ -86,5 +87,5 @@ export declare class TestCaseNormalStepComponent implements OnInit {
86
87
  onDocumentClick(event: MouseEvent): void;
87
88
  clickOnAction(event: MouseEvent): void;
88
89
  static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseNormalStepComponent, never>;
89
- 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"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; "clickAction": "clickAction"; }, never, never>;
90
+ 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"; "isInsideStepGroup": "isInsideStepGroup"; "isReorder": "isReorder"; "stepIndex": "stepIndex"; }, { "eventTypeChange": "eventTypeChange"; "parameterChange": "parameterChange"; "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; "clickAction": "clickAction"; }, never, never>;
90
91
  }
@@ -9,6 +9,7 @@ export declare class TestCaseRestoreSessionStepComponent implements OnInit {
9
9
  selected: boolean;
10
10
  disabled: boolean;
11
11
  isNested: boolean;
12
+ isInsideStepGroup: boolean;
12
13
  isInsideLoop: boolean;
13
14
  isReorder: boolean;
14
15
  viewDetailsTrigger?: ElementRef<HTMLElement>;
@@ -34,5 +35,5 @@ export declare class TestCaseRestoreSessionStepComponent implements OnInit {
34
35
  onViewDetails(event?: MouseEvent): void;
35
36
  onSelectionChange(checked: boolean): void;
36
37
  static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseRestoreSessionStepComponent, never>;
37
- 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>;
38
+ static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseRestoreSessionStepComponent, "cqa-test-case-restore-session-step", never, { "config": "config"; "stepNumber": "stepNumber"; "action": "action"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideStepGroup": "isInsideStepGroup"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
38
39
  }
@@ -12,6 +12,7 @@ export declare class TestCaseScreenshotStepComponent implements OnInit {
12
12
  selected: boolean;
13
13
  disabled: boolean;
14
14
  isNested: boolean;
15
+ isInsideStepGroup: boolean;
15
16
  isInsideLoop: boolean;
16
17
  isReorder: boolean;
17
18
  viewDetailsTrigger?: ElementRef<HTMLElement>;
@@ -37,5 +38,5 @@ export declare class TestCaseScreenshotStepComponent implements OnInit {
37
38
  onViewDetails(event?: MouseEvent): void;
38
39
  onSelectionChange(checked: boolean): void;
39
40
  static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseScreenshotStepComponent, never>;
40
- 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>;
41
+ 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"; "isInsideStepGroup": "isInsideStepGroup"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
41
42
  }
@@ -11,6 +11,7 @@ export declare class TestCaseScrollStepComponent implements OnInit {
11
11
  selected: boolean;
12
12
  disabled: boolean;
13
13
  isNested: boolean;
14
+ isInsideStepGroup: boolean;
14
15
  isInsideLoop: boolean;
15
16
  expanded: boolean;
16
17
  isReorder: boolean;
@@ -44,5 +45,5 @@ export declare class TestCaseScrollStepComponent implements OnInit {
44
45
  onSelectorChange(value: string): void;
45
46
  onDirectionChange(value: 'top' | 'bottom' | 'up' | 'down' | 'left' | 'right'): void;
46
47
  static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseScrollStepComponent, never>;
47
- 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>;
48
+ 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"; "isInsideStepGroup": "isInsideStepGroup"; "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>;
48
49
  }
@@ -10,6 +10,8 @@ export declare class TestCaseDetailsRendererComponent implements OnChanges, Afte
10
10
  index: number;
11
11
  isNested: boolean;
12
12
  isInsideLoop: boolean;
13
+ /** When true, step is rendered inside a step-group; row actions (Edit/Duplicate/Delete) are hidden. */
14
+ isInsideStepGroup: boolean;
13
15
  /** When rendering a step inside a condition branch, the branch context (for addStepForBranch / deleteStepWithBranch). */
14
16
  branch?: ConditionBranch;
15
17
  /** When true, enables drag-and-drop reordering and shows drag handle icon instead of checkbox */
@@ -122,5 +124,5 @@ export declare class TestCaseDetailsRendererComponent implements OnChanges, Afte
122
124
  private wireOutputs;
123
125
  ngOnDestroy(): void;
124
126
  static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseDetailsRendererComponent, never>;
125
- static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseDetailsRendererComponent, "cqa-test-case-details-renderer", never, { "step": "step"; "index": "index"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "branch": "branch"; "isReorder": "isReorder"; "selected": "selected"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "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"; "addStepForLoop": "addStepForLoop"; "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>;
127
+ static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseDetailsRendererComponent, "cqa-test-case-details-renderer", never, { "step": "step"; "index": "index"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isInsideStepGroup": "isInsideStepGroup"; "branch": "branch"; "isReorder": "isReorder"; "selected": "selected"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "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"; "addStepForLoop": "addStepForLoop"; "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>;
126
128
  }
@@ -13,6 +13,7 @@ export declare class TestCaseUploadStepComponent implements OnInit {
13
13
  selected: boolean;
14
14
  disabled: boolean;
15
15
  isNested: boolean;
16
+ isInsideStepGroup: boolean;
16
17
  isInsideLoop: boolean;
17
18
  isReorder: boolean;
18
19
  viewDetailsTrigger?: ElementRef<HTMLElement>;
@@ -37,5 +38,5 @@ export declare class TestCaseUploadStepComponent implements OnInit {
37
38
  onViewDetails(event?: MouseEvent): void;
38
39
  onSelectionChange(checked: boolean): void;
39
40
  static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseUploadStepComponent, never>;
40
- 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>;
41
+ 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"; "isInsideStepGroup": "isInsideStepGroup"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
41
42
  }
@@ -10,6 +10,7 @@ export declare class TestCaseVerifyUrlStepComponent implements OnInit {
10
10
  selected: boolean;
11
11
  disabled: boolean;
12
12
  isNested: boolean;
13
+ isInsideStepGroup: boolean;
13
14
  isInsideLoop: boolean;
14
15
  isReorder: boolean;
15
16
  viewDetailsTrigger?: ElementRef<HTMLElement>;
@@ -35,5 +36,5 @@ export declare class TestCaseVerifyUrlStepComponent implements OnInit {
35
36
  onViewDetails(event?: MouseEvent): void;
36
37
  onSelectionChange(checked: boolean): void;
37
38
  static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseVerifyUrlStepComponent, never>;
38
- 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>;
39
+ 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"; "isInsideStepGroup": "isInsideStepGroup"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
39
40
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cqa-lib/cqa-ui",
3
- "version": "1.1.243",
3
+ "version": "1.1.245",
4
4
  "description": "UI Kit library for Angular 13.4",
5
5
  "keywords": [
6
6
  "angular",