@cqa-lib/cqa-ui 1.1.251 → 1.1.257
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 +15 -3
- package/esm2020/lib/test-case-details/normal-step/normal-step.component.mjs +3 -3
- package/esm2020/lib/test-case-details/scroll-step/scroll-step.component.mjs +3 -3
- package/fesm2015/cqa-lib-cqa-ui.mjs +19 -6
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +18 -6
- 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
|
@@ -153,6 +153,11 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
|
|
|
153
153
|
private buildConditionFromForm;
|
|
154
154
|
onEditFormFieldChange(controlName: string, value: string): void;
|
|
155
155
|
getStepsSummary(): string;
|
|
156
|
+
/** Event key-value pairs for display, excluding customEvent */
|
|
157
|
+
getEventDetailsForDisplay(): {
|
|
158
|
+
key: string;
|
|
159
|
+
value: string;
|
|
160
|
+
}[];
|
|
156
161
|
onToggleExpanded(): void;
|
|
157
162
|
onConditionChange(value: string): void;
|
|
158
163
|
onBranchStepChange(branch: ConditionBranch, step: TestCaseStepConfig, stepIndex: number): void;
|