@cqa-lib/cqa-ui 1.1.274 → 1.1.276
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 +16 -3
- package/esm2020/lib/test-case-details/loop-step/loop-step.component.mjs +14 -7
- package/fesm2015/cqa-lib-cqa-ui.mjs +27 -8
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +28 -8
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/test-case-details/condition-step/condition-step.component.d.ts +2 -0
- package/lib/test-case-details/loop-step/loop-step.component.d.ts +3 -1
- package/package.json +1 -1
|
@@ -132,6 +132,8 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
|
|
|
132
132
|
}>;
|
|
133
133
|
selectionChange: EventEmitter<boolean>;
|
|
134
134
|
onDndDrop(event: DndDropEvent, branch: ConditionBranch): void;
|
|
135
|
+
/** Emit clickAction when user clicks on condition/branch action badges (element, test_data, etc.) so parent can open edit modals */
|
|
136
|
+
onConditionActionClick(event: MouseEvent, branch?: ConditionBranch): void;
|
|
135
137
|
constructor(fb: FormBuilder, cdr: ChangeDetectorRef);
|
|
136
138
|
ngOnInit(): void;
|
|
137
139
|
ngOnChanges(changes: any): void;
|
|
@@ -92,6 +92,8 @@ export declare class TestCaseLoopStepComponent implements OnInit, OnChanges {
|
|
|
92
92
|
}>;
|
|
93
93
|
selectionChange: EventEmitter<boolean>;
|
|
94
94
|
onDndDrop(event: DndDropEvent): void;
|
|
95
|
+
/** Emit clickAction when user clicks on loop display badges (element, test_data, etc.) so parent can open edit modals */
|
|
96
|
+
onLoopActionClick(event: MouseEvent): void;
|
|
95
97
|
/** Expose global constructors for template (Angular templates don't have String/Number) */
|
|
96
98
|
readonly stringFn: StringConstructor;
|
|
97
99
|
readonly numberFn: NumberConstructor;
|
|
@@ -198,7 +200,7 @@ export declare class TestCaseLoopStepComponent implements OnInit, OnChanges {
|
|
|
198
200
|
getStartStepLabel(): string;
|
|
199
201
|
getEndStepLabel(): string;
|
|
200
202
|
getTestDataProfileLabel(): string;
|
|
201
|
-
/** Combined display for for loop with HTML badges - supports test_data badges like condition step */
|
|
203
|
+
/** Combined display for for loop with HTML badges - supports test_data badges like condition step; data-key/data-event-key enable click-to-edit */
|
|
202
204
|
getForLoopDisplay(): string;
|
|
203
205
|
private escapeForLoopHtml;
|
|
204
206
|
/** Full display for while loop: "While element ".selector" exists (max N iterations)" - supports HTML badges via innerHTML */
|