@cqa-lib/cqa-ui 1.1.314 → 1.1.316
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/dynamic-select/dynamic-select-field.component.mjs +3 -3
- package/esm2020/lib/step-builder/step-builder-action/step-builder-action.component.mjs +21 -16
- package/esm2020/lib/step-builder/step-builder-condition/step-builder-condition.component.mjs +41 -3
- package/esm2020/lib/step-builder/template-variables-form/template-variables-form.component.mjs +79 -30
- package/esm2020/lib/test-case-details/loop-step/loop-step.component.mjs +49 -27
- package/fesm2015/cqa-lib-cqa-ui.mjs +201 -86
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +188 -74
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/step-builder/step-builder-condition/step-builder-condition.component.d.ts +7 -0
- package/lib/test-case-details/loop-step/loop-step.component.d.ts +3 -1
- package/package.json +1 -1
|
@@ -140,6 +140,13 @@ export declare class StepBuilderConditionComponent implements OnInit, OnChanges
|
|
|
140
140
|
trackByConditionIndex(index: number): number;
|
|
141
141
|
onIncludeElseChange(checked: boolean): void;
|
|
142
142
|
onCancel(): void;
|
|
143
|
+
/**
|
|
144
|
+
* Overall form validity for condition step.
|
|
145
|
+
* In addition to Angular form validity, we must ensure that for any template variable
|
|
146
|
+
* with dataKey 'test_data' | 'source_value' | 'target_value' and dataType 'plain-text'
|
|
147
|
+
* or 'runtime', the value is non-empty.
|
|
148
|
+
*/
|
|
149
|
+
isFormValid(): boolean;
|
|
143
150
|
onCreateStep(): void;
|
|
144
151
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepBuilderConditionComponent, never>;
|
|
145
152
|
static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderConditionComponent, "cqa-step-builder-condition", never, { "operatorOptions": "operatorOptions"; "conditionTemplates": "conditionTemplates"; "setConditionTemplateVariables": "setConditionTemplateVariables"; "setAdvancedSettingsVariables": "setAdvancedSettingsVariables"; "elementOptions": "elementOptions"; "hasMoreElements": "hasMoreElements"; "isLoadingElements": "isLoadingElements"; "screenNameOptions": "screenNameOptions"; "hasMoreScreenNames": "hasMoreScreenNames"; "isLoadingScreenNames": "isLoadingScreenNames"; "parameterOptions": "parameterOptions"; "hasMoreParameters": "hasMoreParameters"; "isLoadingParameters": "isLoadingParameters"; "environmentOptions": "environmentOptions"; "hasMoreEnvironments": "hasMoreEnvironments"; "isLoadingEnvironments": "isLoadingEnvironments"; "defaultTestDataProfileId": "defaultTestDataProfileId"; "defaultTestDataStartIndex": "defaultTestDataStartIndex"; }, { "createStep": "createStep"; "cancelled": "cancelled"; "loadMoreElements": "loadMoreElements"; "searchElements": "searchElements"; "searchElementsByScreenName": "searchElementsByScreenName"; "createElement": "createElement"; "searchScreenName": "searchScreenName"; "loadMoreScreenNames": "loadMoreScreenNames"; "createScreenNameRequest": "createScreenNameRequest"; "searchParameters": "searchParameters"; "loadMoreParameters": "loadMoreParameters"; "searchEnvironments": "searchEnvironments"; "loadMoreEnvironments": "loadMoreEnvironments"; "redirectToParameter": "redirectToParameter"; "redirectToEnvironment": "redirectToEnvironment"; }, never, never>;
|
|
@@ -168,6 +168,8 @@ export declare class TestCaseLoopStepComponent implements OnInit, OnChanges {
|
|
|
168
168
|
private updateForLoopSelectConfigsSelectedValues;
|
|
169
169
|
/** Convert DataProfileOption[] to SelectOption[] */
|
|
170
170
|
private convertDataProfileOptionsToSelectOptions;
|
|
171
|
+
/** Best-known persisted label for the selected test data profile, even when current search results exclude it. */
|
|
172
|
+
private getStoredTestDataProfileLabel;
|
|
171
173
|
/** Resolve a data profile id/value back to the display name used by the dropdown trigger. */
|
|
172
174
|
private resolveTestDataProfileName;
|
|
173
175
|
/** Data length (N) of the currently selected test data profile; 0 if none selected or not found. */
|
|
@@ -183,7 +185,7 @@ export declare class TestCaseLoopStepComponent implements OnInit, OnChanges {
|
|
|
183
185
|
private getLoopStartSelectOptions;
|
|
184
186
|
/** Loop End dropdown options: data rows first, then "End" (value -1) last. Same values as old UI. */
|
|
185
187
|
private getLoopEndSelectOptions;
|
|
186
|
-
/** Handle data profile selection: update display
|
|
188
|
+
/** Handle data profile selection: update display and reset start/end like the old UI. */
|
|
187
189
|
private onDataProfileChange;
|
|
188
190
|
/** Handle search for data profiles */
|
|
189
191
|
private onSearchDataProfiles;
|