@cqa-lib/cqa-ui 1.1.338 → 1.1.340
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/ai-agent-step/ai-agent-step.component.mjs +4 -3
- package/esm2020/lib/test-case-details/condition-step/condition-step.component.mjs +19 -7
- package/esm2020/lib/test-case-details/test-data-modal/test-data-modal.component.mjs +3 -6
- package/fesm2015/cqa-lib-cqa-ui.mjs +22 -14
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +22 -13
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/test-case-details/condition-step/condition-step.component.d.ts +4 -2
- package/lib/test-case-details/test-data-modal/test-data-modal.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -109,8 +109,10 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
|
|
|
109
109
|
viewDetails: EventEmitter<ViewDetailsPayload>;
|
|
110
110
|
editInDepth: EventEmitter<{
|
|
111
111
|
step: TestCaseStepConfig;
|
|
112
|
-
index
|
|
112
|
+
index?: number;
|
|
113
113
|
templateOverride?: any;
|
|
114
|
+
isCreateMode?: boolean;
|
|
115
|
+
createModeBranchData?: any;
|
|
114
116
|
}>;
|
|
115
117
|
dndDropInZone: EventEmitter<{
|
|
116
118
|
event: DndDropEvent;
|
|
@@ -275,7 +277,7 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
|
|
|
275
277
|
* Emit editInDepth. When branch is provided (ELSE IF/ELSE branch row), use branch's nested condition step
|
|
276
278
|
* and branch display number for correct "Edit Step N" title. When isCreateMode (new ELSE IF), modal shows "Create In depth" and calls create API on save.
|
|
277
279
|
*/
|
|
278
|
-
onEditInDepth(templateOverride?: any, branch?: ConditionBranch, branchIndex?: number, isCreateMode?: boolean): void;
|
|
280
|
+
onEditInDepth(templateOverride?: any, branch?: ConditionBranch, branchIndex?: number, isCreateMode?: boolean, elseIfBranch?: any): void;
|
|
279
281
|
onLink(): void;
|
|
280
282
|
onDuplicate(): void;
|
|
281
283
|
onDelete(): void;
|
|
@@ -92,7 +92,7 @@ export declare class TestDataModalComponent implements OnInit, OnChanges {
|
|
|
92
92
|
onEnvironmentSelect(itemId: string): void;
|
|
93
93
|
onEnvironmentEdit(itemId: string): void;
|
|
94
94
|
onCreateNewEnvironment(event: Event): void;
|
|
95
|
-
/** Runtime tab:
|
|
95
|
+
/** Runtime tab: replace the runtime input with the selected suggestion. */
|
|
96
96
|
onRuntimeChipInsert(snippet: string): void;
|
|
97
97
|
onApply(): void;
|
|
98
98
|
onCancel(): void;
|