@cqa-lib/cqa-ui 1.1.359 → 1.1.361
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/test-case-details/condition-step/condition-step.component.mjs +12 -3
- package/esm2020/lib/test-case-details/loop-step/loop-step.component.mjs +11 -3
- package/esm2020/lib/test-case-details/normal-step/normal-step.component.mjs +6 -2
- package/esm2020/lib/test-case-details/scroll-step/scroll-step.component.mjs +3 -1
- package/fesm2015/cqa-lib-cqa-ui.mjs +27 -5
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +27 -5
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/test-case-details/condition-step/condition-step.component.d.ts +5 -0
- package/lib/test-case-details/loop-step/loop-step.component.d.ts +5 -0
- package/package.json +1 -1
|
@@ -148,6 +148,11 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
|
|
|
148
148
|
onDndDrop(event: DndDropEvent, branch: ConditionBranch): void;
|
|
149
149
|
/** Emit clickAction when user clicks on condition/branch action badges (element, test_data, etc.) so parent can open edit modals */
|
|
150
150
|
onConditionActionClick(event: MouseEvent, branch?: ConditionBranch): void;
|
|
151
|
+
/** Forward clickAction from nested steps only when not inside a step-group (Element/Test Data modals disabled there). */
|
|
152
|
+
onNestedClickAction(payload: {
|
|
153
|
+
event: MouseEvent;
|
|
154
|
+
step: TestCaseStepConfig;
|
|
155
|
+
}): void;
|
|
151
156
|
constructor(fb: FormBuilder, cdr: ChangeDetectorRef);
|
|
152
157
|
ngOnInit(): void;
|
|
153
158
|
ngOnChanges(changes: any): void;
|
|
@@ -113,6 +113,11 @@ export declare class TestCaseLoopStepComponent implements OnInit, OnChanges {
|
|
|
113
113
|
onDndDrop(event: DndDropEvent): void;
|
|
114
114
|
/** Emit clickAction when user clicks on loop display badges (element, test_data, etc.) so parent can open edit modals */
|
|
115
115
|
onLoopActionClick(event: MouseEvent): void;
|
|
116
|
+
/** Forward clickAction from nested steps only when not inside a step-group (Element/Test Data modals disabled there). */
|
|
117
|
+
onNestedClickAction(payload: {
|
|
118
|
+
event: MouseEvent;
|
|
119
|
+
step: TestCaseStepConfig;
|
|
120
|
+
}): void;
|
|
116
121
|
/** Expose global constructors for template (Angular templates don't have String/Number) */
|
|
117
122
|
readonly stringFn: StringConstructor;
|
|
118
123
|
readonly numberFn: NumberConstructor;
|