@cqa-lib/cqa-ui 1.1.323 → 1.1.325

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.
@@ -134,6 +134,10 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
134
134
  position: 'ABOVE' | 'BELOW';
135
135
  }>;
136
136
  selectionChange: EventEmitter<boolean>;
137
+ /** Re-emit when nested step group emits openExternal (redirect to step group in new tab) */
138
+ openExternal: EventEmitter<{
139
+ step: TestCaseStepConfig;
140
+ }>;
137
141
  onDndDrop(event: DndDropEvent, branch: ConditionBranch): void;
138
142
  /** Emit clickAction when user clicks on condition/branch action badges (element, test_data, etc.) so parent can open edit modals */
139
143
  onConditionActionClick(event: MouseEvent, branch?: ConditionBranch): void;
@@ -198,6 +202,10 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
198
202
  onToggleExpanded(): void;
199
203
  onConditionChange(value: string): void;
200
204
  onBranchStepChange(branch: ConditionBranch, step: TestCaseStepConfig, stepIndex: number): void;
205
+ /** Re-emit openExternal from nested step group so redirect works for step groups inside condition branches. */
206
+ onNestedOpenExternal(payload: {
207
+ step: TestCaseStepConfig;
208
+ }): void;
201
209
  onNestedToggleExpanded(event: boolean | {
202
210
  config: TestCaseStepConfig;
203
211
  expanded: boolean;
@@ -275,5 +283,5 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
275
283
  /** Get select config for a template variable */
276
284
  getSelectConfigForVariable(variable: any, branchIdOrIsElse?: string | boolean): DynamicSelectFieldConfig;
277
285
  static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseConditionStepComponent, never>;
278
- static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseConditionStepComponent, "cqa-test-case-condition-step", never, { "config": "config"; "id": "id"; "stepNumber": "stepNumber"; "index": "index"; "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"; "addStepForLoop": "addStepForLoop"; "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>;
286
+ static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseConditionStepComponent, "cqa-test-case-condition-step", never, { "config": "config"; "id": "id"; "stepNumber": "stepNumber"; "index": "index"; "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"; "addStepForLoop": "addStepForLoop"; "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"; "openExternal": "openExternal"; }, never, never>;
279
287
  }
@@ -95,6 +95,10 @@ export declare class TestCaseLoopStepComponent implements OnInit, OnChanges {
95
95
  }>;
96
96
  selectionChange: EventEmitter<boolean>;
97
97
  deleteBranch: EventEmitter<ConditionBranch>;
98
+ /** Re-emit when nested step group emits openExternal (redirect to step group in new tab) */
99
+ openExternal: EventEmitter<{
100
+ step: TestCaseStepConfig;
101
+ }>;
98
102
  onDndDrop(event: DndDropEvent): void;
99
103
  /** Emit clickAction when user clicks on loop display badges (element, test_data, etc.) so parent can open edit modals */
100
104
  onLoopActionClick(event: MouseEvent): void;
@@ -238,6 +242,10 @@ export declare class TestCaseLoopStepComponent implements OnInit, OnChanges {
238
242
  onConditionChange(value: string): void;
239
243
  onMaxIterationsChange(value: number): void;
240
244
  onNestedStepChange(step: TestCaseStepConfig, index: number): void;
245
+ /** Re-emit openExternal from nested step group so redirect works for step groups inside loops. */
246
+ onNestedOpenExternal(payload: {
247
+ step: TestCaseStepConfig;
248
+ }): void;
241
249
  onNestedToggleExpanded(event: boolean | {
242
250
  config: TestCaseStepConfig;
243
251
  expanded: boolean;
@@ -279,5 +287,5 @@ export declare class TestCaseLoopStepComponent implements OnInit, OnChanges {
279
287
  onMoreOptions(): void;
280
288
  onViewDetails(event?: MouseEvent): void;
281
289
  static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseLoopStepComponent, never>;
282
- static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseLoopStepComponent, "cqa-test-case-loop-step", never, { "config": "config"; "id": "id"; "loopType": "loopType"; "stepNumber": "stepNumber"; "index": "index"; "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"; "deleteBranch": "deleteBranch"; }, never, never>;
290
+ static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseLoopStepComponent, "cqa-test-case-loop-step", never, { "config": "config"; "id": "id"; "loopType": "loopType"; "stepNumber": "stepNumber"; "index": "index"; "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"; "deleteBranch": "deleteBranch"; "openExternal": "openExternal"; }, never, never>;
283
291
  }
@@ -106,6 +106,10 @@ export declare class TestCaseStepGroupComponent implements OnInit, OnChanges, Do
106
106
  onDescriptionChange(value: string): void;
107
107
  onReusableChange(checked: boolean): void;
108
108
  onNestedStepChange(step: TestCaseStepConfig, index: number): void;
109
+ /** Re-emit openExternal from nested step group so redirect works for step groups inside step groups. */
110
+ onNestedOpenExternal(payload: {
111
+ step: TestCaseStepConfig;
112
+ }): void;
109
113
  onNestedToggleExpanded(event: boolean | {
110
114
  config: TestCaseStepConfig;
111
115
  expanded: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cqa-lib/cqa-ui",
3
- "version": "1.1.323",
3
+ "version": "1.1.325",
4
4
  "description": "UI Kit library for Angular 13.4",
5
5
  "keywords": [
6
6
  "angular",