@cqa-lib/cqa-ui 1.1.518 → 1.1.520
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/step-builder/step-builder-group/step-builder-group.component.mjs +23 -7
- package/esm2020/lib/test-case-details/loop-step/loop-step.component.mjs +7 -4
- package/esm2020/lib/test-case-details/normal-step/normal-step.component.mjs +6 -3
- package/fesm2015/cqa-lib-cqa-ui.mjs +33 -11
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +33 -11
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/test-case-details/loop-step/loop-step.component.d.ts +2 -2
- package/package.json +1 -1
|
@@ -96,8 +96,8 @@ export declare class TestCaseLoopStepComponent implements OnInit, OnChanges {
|
|
|
96
96
|
loadMoreDataProfiles: EventEmitter<string>;
|
|
97
97
|
/** Emit when data profile search query changes */
|
|
98
98
|
searchDataProfiles: EventEmitter<string>;
|
|
99
|
-
/** Emit when step
|
|
100
|
-
stepUpdate: EventEmitter<
|
|
99
|
+
/** Emit when this step (or nested steps) is updated. */
|
|
100
|
+
stepUpdate: EventEmitter<TestCaseStepConfig>;
|
|
101
101
|
/** Re-emit when a nested step (e.g. normal-step) emits clickAction (e.g. element/label click for popup) */
|
|
102
102
|
clickAction: EventEmitter<{
|
|
103
103
|
event: MouseEvent;
|