@cqa-lib/cqa-ui 1.1.413 → 1.1.415
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 +3 -3
- package/esm2020/lib/test-case-details/normal-step/normal-step.component.mjs +3 -10
- package/fesm2015/cqa-lib-cqa-ui.mjs +16 -13
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +15 -13
- 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/package.json +1 -1
|
@@ -158,6 +158,11 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
|
|
|
158
158
|
step: TestCaseStepConfig;
|
|
159
159
|
}>;
|
|
160
160
|
onDndDrop(event: DndDropEvent, branch: ConditionBranch): void;
|
|
161
|
+
/**
|
|
162
|
+
* Toggle skip state for the whole condition step.
|
|
163
|
+
* Uses the same payload shape as other step types (emits `stepUpdate` with `shouldSkip` flipped).
|
|
164
|
+
*/
|
|
165
|
+
onSkipToggle(): void;
|
|
161
166
|
/** Emit clickAction when user clicks on condition/branch action badges (element, test_data, etc.) so parent can open edit modals */
|
|
162
167
|
onConditionActionClick(event: MouseEvent, branch?: ConditionBranch): void;
|
|
163
168
|
/** Forward clickAction from nested steps only when not inside a step-group (Element/Test Data modals disabled there). */
|