@cqa-lib/cqa-ui 1.1.486 → 1.1.488
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/execution-screen/condition-debug-step/condition-branch-editor.component.mjs +1 -1
- package/esm2020/lib/mixed-variable-input/mixed-variable-input.component.mjs +307 -0
- package/esm2020/lib/step-builder/step-builder-action/step-builder-action.component.mjs +7 -3
- package/esm2020/lib/step-builder/step-builder-condition/step-builder-condition.component.mjs +6 -3
- package/esm2020/lib/step-builder/step-builder-loop/step-builder-loop.component.mjs +54 -6
- package/esm2020/lib/step-builder/template-variables-form/template-variables-form.component.mjs +45 -13
- package/esm2020/lib/test-case-details/condition-step/condition-step.component.mjs +8 -3
- package/esm2020/lib/test-case-details/loop-step/loop-step.component.mjs +28 -5
- package/esm2020/lib/test-case-details/step-group/step-group.component.mjs +8 -3
- package/esm2020/lib/test-case-details/test-case-details-renderer/test-case-details-renderer.component.mjs +11 -3
- package/esm2020/lib/ui-kit.module.mjs +6 -1
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/cqa-lib-cqa-ui.mjs +490 -54
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +465 -30
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/mixed-variable-input/mixed-variable-input.component.d.ts +41 -0
- package/lib/step-builder/step-builder-action/step-builder-action.component.d.ts +3 -1
- package/lib/step-builder/step-builder-condition/step-builder-condition.component.d.ts +2 -1
- package/lib/step-builder/step-builder-loop/step-builder-loop.component.d.ts +8 -1
- package/lib/step-builder/template-variables-form/template-variables-form.component.d.ts +3 -1
- package/lib/test-case-details/condition-step/condition-step.component.d.ts +3 -1
- package/lib/test-case-details/loop-step/loop-step.component.d.ts +9 -1
- package/lib/test-case-details/step-group/step-group.component.d.ts +3 -1
- package/lib/test-case-details/test-case-details-renderer/test-case-details-renderer.component.d.ts +5 -1
- package/lib/ui-kit.module.d.ts +96 -95
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface MixedSegment {
|
|
4
|
+
type: 'text' | 'variable';
|
|
5
|
+
value: string;
|
|
6
|
+
}
|
|
7
|
+
export declare class MixedVariableInputComponent implements OnChanges, AfterViewInit {
|
|
8
|
+
private cdr;
|
|
9
|
+
private hostRef;
|
|
10
|
+
value: string;
|
|
11
|
+
placeholder: string;
|
|
12
|
+
disabled: boolean;
|
|
13
|
+
valueChange: EventEmitter<string>;
|
|
14
|
+
editorRef: ElementRef<HTMLDivElement>;
|
|
15
|
+
showSuggestion: boolean;
|
|
16
|
+
pendingWord: string;
|
|
17
|
+
private lastEmitted;
|
|
18
|
+
constructor(cdr: ChangeDetectorRef, hostRef: ElementRef<HTMLElement>);
|
|
19
|
+
onDocumentMouseDown(event: MouseEvent): void;
|
|
20
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
21
|
+
ngAfterViewInit(): void;
|
|
22
|
+
onInput(): void;
|
|
23
|
+
onKeyDown(event: KeyboardEvent): void;
|
|
24
|
+
onEditorBlur(): void;
|
|
25
|
+
addAsText(): void;
|
|
26
|
+
addAsVariable(): void;
|
|
27
|
+
private refreshSuggestion;
|
|
28
|
+
private hideSuggestion;
|
|
29
|
+
private autoChipify;
|
|
30
|
+
private render;
|
|
31
|
+
private serialize;
|
|
32
|
+
private buildChip;
|
|
33
|
+
private getSelectionRange;
|
|
34
|
+
private getNodeBeforeCaret;
|
|
35
|
+
private getCurrentWord;
|
|
36
|
+
private insertChipReplacingCurrentWord;
|
|
37
|
+
private placeCaretAfter;
|
|
38
|
+
private placeCaretAtEnd;
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MixedVariableInputComponent, never>;
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MixedVariableInputComponent, "cqa-mixed-variable-input", never, { "value": "value"; "placeholder": "placeholder"; "disabled": "disabled"; }, { "valueChange": "valueChange"; }, never, never>;
|
|
41
|
+
}
|
|
@@ -118,6 +118,8 @@ export declare class StepBuilderActionComponent implements OnInit, OnChanges, On
|
|
|
118
118
|
defaultTestDataEndIndex?: number;
|
|
119
119
|
/** Whether current step creation is happening inside FOR loop context */
|
|
120
120
|
isInsideForLoopStep: boolean;
|
|
121
|
+
/** True when the parent test case has a test data profile configured (testCase.testDataId is set). */
|
|
122
|
+
hasTestDataProfile: boolean;
|
|
121
123
|
/** True while parent is creating the step (API in progress); show loader on Create/Update Step button */
|
|
122
124
|
isCreatingStep: boolean;
|
|
123
125
|
elementScreenPrefill?: ElementScreenPrefill | null;
|
|
@@ -230,6 +232,6 @@ export declare class StepBuilderActionComponent implements OnInit, OnChanges, On
|
|
|
230
232
|
*/
|
|
231
233
|
get environmentVariableAvailable(): boolean;
|
|
232
234
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepBuilderActionComponent, never>;
|
|
233
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderActionComponent, "cqa-step-builder-action", never, { "showHeader": "showHeader"; "changeTemplateSignal": "changeTemplateSignal"; "cancelChangeTemplateSignal": "cancelChangeTemplateSignal"; "templates": "templates"; "initialTemplate": "initialTemplate"; "initialDescription": "initialDescription"; "initialMetadata": "initialMetadata"; "isDebug": "isDebug"; "editMode": "editMode"; "searchPlaceholder": "searchPlaceholder"; "setTemplateVariables": "setTemplateVariables"; "setAdvancedSettingsVariables": "setAdvancedSettingsVariables"; "computeHtmlGrammarFn": "computeHtmlGrammarFn"; "preventSelectTemplate": "preventSelectTemplate"; "elementOptions": "elementOptions"; "hasMoreElements": "hasMoreElements"; "isLoadingElements": "isLoadingElements"; "screenNameOptions": "screenNameOptions"; "hasMoreScreenNames": "hasMoreScreenNames"; "isLoadingScreenNames": "isLoadingScreenNames"; "parameterOptions": "parameterOptions"; "hasMoreParameters": "hasMoreParameters"; "isLoadingParameters": "isLoadingParameters"; "uploadOptions": "uploadOptions"; "hasMoreUploads": "hasMoreUploads"; "isLoadingUploads": "isLoadingUploads"; "environmentOptions": "environmentOptions"; "hasMoreEnvironments": "hasMoreEnvironments"; "isLoadingEnvironments": "isLoadingEnvironments"; "defaultTestDataProfileId": "defaultTestDataProfileId"; "defaultTestDataStartIndex": "defaultTestDataStartIndex"; "defaultTestDataEndIndex": "defaultTestDataEndIndex"; "isInsideForLoopStep": "isInsideForLoopStep"; "isCreatingStep": "isCreatingStep"; "elementScreenPrefill": "elementScreenPrefill"; }, { "templateChanged": "templateChanged"; "loadMoreElements": "loadMoreElements"; "searchElements": "searchElements"; "searchElementsByScreenName": "searchElementsByScreenName"; "createElement": "createElement"; "searchScreenName": "searchScreenName"; "loadMoreScreenNames": "loadMoreScreenNames"; "createScreenNameRequest": "createScreenNameRequest"; "searchParameters": "searchParameters"; "loadMoreParameters": "loadMoreParameters"; "searchUploads": "searchUploads"; "loadMoreUploads": "loadMoreUploads"; "searchEnvironments": "searchEnvironments"; "loadMoreEnvironments": "loadMoreEnvironments"; "createStep": "createStep"; "cancelled": "cancelled"; "redirectToParameter": "redirectToParameter"; "redirectToEnvironment": "redirectToEnvironment"; }, never, never>;
|
|
235
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderActionComponent, "cqa-step-builder-action", never, { "showHeader": "showHeader"; "changeTemplateSignal": "changeTemplateSignal"; "cancelChangeTemplateSignal": "cancelChangeTemplateSignal"; "templates": "templates"; "initialTemplate": "initialTemplate"; "initialDescription": "initialDescription"; "initialMetadata": "initialMetadata"; "isDebug": "isDebug"; "editMode": "editMode"; "searchPlaceholder": "searchPlaceholder"; "setTemplateVariables": "setTemplateVariables"; "setAdvancedSettingsVariables": "setAdvancedSettingsVariables"; "computeHtmlGrammarFn": "computeHtmlGrammarFn"; "preventSelectTemplate": "preventSelectTemplate"; "elementOptions": "elementOptions"; "hasMoreElements": "hasMoreElements"; "isLoadingElements": "isLoadingElements"; "screenNameOptions": "screenNameOptions"; "hasMoreScreenNames": "hasMoreScreenNames"; "isLoadingScreenNames": "isLoadingScreenNames"; "parameterOptions": "parameterOptions"; "hasMoreParameters": "hasMoreParameters"; "isLoadingParameters": "isLoadingParameters"; "uploadOptions": "uploadOptions"; "hasMoreUploads": "hasMoreUploads"; "isLoadingUploads": "isLoadingUploads"; "environmentOptions": "environmentOptions"; "hasMoreEnvironments": "hasMoreEnvironments"; "isLoadingEnvironments": "isLoadingEnvironments"; "defaultTestDataProfileId": "defaultTestDataProfileId"; "defaultTestDataStartIndex": "defaultTestDataStartIndex"; "defaultTestDataEndIndex": "defaultTestDataEndIndex"; "isInsideForLoopStep": "isInsideForLoopStep"; "hasTestDataProfile": "hasTestDataProfile"; "isCreatingStep": "isCreatingStep"; "elementScreenPrefill": "elementScreenPrefill"; }, { "templateChanged": "templateChanged"; "loadMoreElements": "loadMoreElements"; "searchElements": "searchElements"; "searchElementsByScreenName": "searchElementsByScreenName"; "createElement": "createElement"; "searchScreenName": "searchScreenName"; "loadMoreScreenNames": "loadMoreScreenNames"; "createScreenNameRequest": "createScreenNameRequest"; "searchParameters": "searchParameters"; "loadMoreParameters": "loadMoreParameters"; "searchUploads": "searchUploads"; "loadMoreUploads": "loadMoreUploads"; "searchEnvironments": "searchEnvironments"; "loadMoreEnvironments": "loadMoreEnvironments"; "createStep": "createStep"; "cancelled": "cancelled"; "redirectToParameter": "redirectToParameter"; "redirectToEnvironment": "redirectToEnvironment"; }, never, never>;
|
|
234
236
|
}
|
|
235
237
|
export {};
|
|
@@ -66,6 +66,7 @@ export declare class StepBuilderConditionComponent implements OnInit, OnChanges
|
|
|
66
66
|
defaultTestDataStartIndex?: number;
|
|
67
67
|
defaultTestDataEndIndex?: number;
|
|
68
68
|
isInsideForLoopStep: boolean;
|
|
69
|
+
hasTestDataProfile: boolean;
|
|
69
70
|
/** True while parent is creating the step (API in progress); show loader on Create Step button */
|
|
70
71
|
isCreatingStep: boolean;
|
|
71
72
|
/** Emit when step is created */
|
|
@@ -156,6 +157,6 @@ export declare class StepBuilderConditionComponent implements OnInit, OnChanges
|
|
|
156
157
|
isFormValid(): boolean;
|
|
157
158
|
onCreateStep(): void;
|
|
158
159
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepBuilderConditionComponent, never>;
|
|
159
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderConditionComponent, "cqa-step-builder-condition", never, { "operatorOptions": "operatorOptions"; "conditionTemplates": "conditionTemplates"; "setConditionTemplateVariables": "setConditionTemplateVariables"; "setAdvancedSettingsVariables": "setAdvancedSettingsVariables"; "computeHtmlGrammarFn": "computeHtmlGrammarFn"; "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"; "defaultTestDataEndIndex": "defaultTestDataEndIndex"; "isInsideForLoopStep": "isInsideForLoopStep"; "isCreatingStep": "isCreatingStep"; }, { "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>;
|
|
160
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderConditionComponent, "cqa-step-builder-condition", never, { "operatorOptions": "operatorOptions"; "conditionTemplates": "conditionTemplates"; "setConditionTemplateVariables": "setConditionTemplateVariables"; "setAdvancedSettingsVariables": "setAdvancedSettingsVariables"; "computeHtmlGrammarFn": "computeHtmlGrammarFn"; "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"; "defaultTestDataEndIndex": "defaultTestDataEndIndex"; "isInsideForLoopStep": "isInsideForLoopStep"; "hasTestDataProfile": "hasTestDataProfile"; "isCreatingStep": "isCreatingStep"; }, { "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>;
|
|
160
161
|
}
|
|
161
162
|
export {};
|
|
@@ -85,6 +85,7 @@ export declare class StepBuilderLoopComponent implements OnInit, OnChanges {
|
|
|
85
85
|
defaultTestDataStartIndex?: number;
|
|
86
86
|
defaultTestDataEndIndex?: number;
|
|
87
87
|
isInsideForLoopStep: boolean;
|
|
88
|
+
hasTestDataProfile: boolean;
|
|
88
89
|
/** When true, header and button show edit/update wording (same as action step builder in debug). */
|
|
89
90
|
isDebug: boolean;
|
|
90
91
|
/** Existing step when editing; used with isDebug to determine edit mode. */
|
|
@@ -151,6 +152,12 @@ export declare class StepBuilderLoopComponent implements OnInit, OnChanges {
|
|
|
151
152
|
private buildAdvancedVariablesForm;
|
|
152
153
|
private updateConfigs;
|
|
153
154
|
private convertDataProfileOptionsToSelectOptions;
|
|
155
|
+
/**
|
|
156
|
+
* When a default test data profile is provided (e.g., testCase.testDataId) and the user is
|
|
157
|
+
* creating a FOR loop at the root level, auto-select it and disable the dropdown.
|
|
158
|
+
*/
|
|
159
|
+
private applyDefaultDataProfile;
|
|
160
|
+
private setDataProfileDisabled;
|
|
154
161
|
/**
|
|
155
162
|
* Handle data profile selection and update loop start/end options
|
|
156
163
|
*/
|
|
@@ -216,5 +223,5 @@ export declare class StepBuilderLoopComponent implements OnInit, OnChanges {
|
|
|
216
223
|
filterWhileTemplates(query: string): void;
|
|
217
224
|
selectWhileTemplate(template: any): void;
|
|
218
225
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepBuilderLoopComponent, never>;
|
|
219
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderLoopComponent, "cqa-step-builder-loop", never, { "loopType": "loopType"; "selectOptions": "selectOptions"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "isCreatingStep": "isCreatingStep"; "setWhileTemplateVariables": "setWhileTemplateVariables"; "setAdvancedSettingsVariables": "setAdvancedSettingsVariables"; "computeHtmlGrammarFn": "computeHtmlGrammarFn"; "whileTemplates": "whileTemplates"; "whileSearchPlaceholder": "whileSearchPlaceholder"; "whileSearchValue": "whileSearchValue"; "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"; "defaultTestDataEndIndex": "defaultTestDataEndIndex"; "isInsideForLoopStep": "isInsideForLoopStep"; "isDebug": "isDebug"; "testStep": "testStep"; }, { "createStep": "createStep"; "cancelled": "cancelled"; "loopTypeChange": "loopTypeChange"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "loadMoreElements": "loadMoreElements"; "searchElements": "searchElements"; "searchElementsByScreenName": "searchElementsByScreenName"; "createElement": "createElement"; "searchScreenName": "searchScreenName"; "loadMoreScreenNames": "loadMoreScreenNames"; "createScreenNameRequest": "createScreenNameRequest"; "cancelElementForm": "cancelElementForm"; "searchParameters": "searchParameters"; "loadMoreParameters": "loadMoreParameters"; "searchEnvironments": "searchEnvironments"; "loadMoreEnvironments": "loadMoreEnvironments"; "redirectToParameter": "redirectToParameter"; "redirectToEnvironment": "redirectToEnvironment"; }, never, never>;
|
|
226
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderLoopComponent, "cqa-step-builder-loop", never, { "loopType": "loopType"; "selectOptions": "selectOptions"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "isCreatingStep": "isCreatingStep"; "setWhileTemplateVariables": "setWhileTemplateVariables"; "setAdvancedSettingsVariables": "setAdvancedSettingsVariables"; "computeHtmlGrammarFn": "computeHtmlGrammarFn"; "whileTemplates": "whileTemplates"; "whileSearchPlaceholder": "whileSearchPlaceholder"; "whileSearchValue": "whileSearchValue"; "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"; "defaultTestDataEndIndex": "defaultTestDataEndIndex"; "isInsideForLoopStep": "isInsideForLoopStep"; "hasTestDataProfile": "hasTestDataProfile"; "isDebug": "isDebug"; "testStep": "testStep"; }, { "createStep": "createStep"; "cancelled": "cancelled"; "loopTypeChange": "loopTypeChange"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "loadMoreElements": "loadMoreElements"; "searchElements": "searchElements"; "searchElementsByScreenName": "searchElementsByScreenName"; "createElement": "createElement"; "searchScreenName": "searchScreenName"; "loadMoreScreenNames": "loadMoreScreenNames"; "createScreenNameRequest": "createScreenNameRequest"; "cancelElementForm": "cancelElementForm"; "searchParameters": "searchParameters"; "loadMoreParameters": "loadMoreParameters"; "searchEnvironments": "searchEnvironments"; "loadMoreEnvironments": "loadMoreEnvironments"; "redirectToParameter": "redirectToParameter"; "redirectToEnvironment": "redirectToEnvironment"; }, never, never>;
|
|
220
227
|
}
|
|
@@ -83,6 +83,8 @@ export declare class TemplateVariablesFormComponent implements OnChanges {
|
|
|
83
83
|
defaultTestDataEndIndex?: number;
|
|
84
84
|
/** True when the edited step is inside a FOR loop. */
|
|
85
85
|
isInsideForLoopStep: boolean;
|
|
86
|
+
/** True when the parent test case has a test data profile configured (testCase.testDataId is set). */
|
|
87
|
+
hasTestDataProfile: boolean;
|
|
86
88
|
isEditInDepth: boolean;
|
|
87
89
|
isDebug: boolean;
|
|
88
90
|
variableValueChange: EventEmitter<{
|
|
@@ -301,6 +303,6 @@ export declare class TemplateVariablesFormComponent implements OnChanges {
|
|
|
301
303
|
*/
|
|
302
304
|
isRuntimeType(variable: TemplateVariable): boolean;
|
|
303
305
|
static ɵfac: i0.ɵɵFactoryDeclaration<TemplateVariablesFormComponent, never>;
|
|
304
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TemplateVariablesFormComponent, "cqa-template-variables-form", never, { "templateVariables": "templateVariables"; "variablesForm": "variablesForm"; "metadata": "metadata"; "description": "description"; "elementOptions": "elementOptions"; "hasMoreElements": "hasMoreElements"; "isLoadingElements": "isLoadingElements"; "screenNameOptions": "screenNameOptions"; "hasMoreScreenNames": "hasMoreScreenNames"; "isLoadingScreenNames": "isLoadingScreenNames"; "parameterOptions": "parameterOptions"; "hasMoreParameters": "hasMoreParameters"; "isLoadingParameters": "isLoadingParameters"; "uploadOptions": "uploadOptions"; "hasMoreUploads": "hasMoreUploads"; "isLoadingUploads": "isLoadingUploads"; "environmentOptions": "environmentOptions"; "hasMoreEnvironments": "hasMoreEnvironments"; "isLoadingEnvironments": "isLoadingEnvironments"; "defaultTestDataProfileId": "defaultTestDataProfileId"; "defaultTestDataStartIndex": "defaultTestDataStartIndex"; "defaultTestDataEndIndex": "defaultTestDataEndIndex"; "isInsideForLoopStep": "isInsideForLoopStep"; "isEditInDepth": "isEditInDepth"; "isDebug": "isDebug"; "createElementVisible": "createElementVisible"; }, { "variableValueChange": "variableValueChange"; "variableBooleanChange": "variableBooleanChange"; "metadataChange": "metadataChange"; "descriptionChange": "descriptionChange"; "loadMoreElements": "loadMoreElements"; "searchElements": "searchElements"; "searchElementsByScreenName": "searchElementsByScreenName"; "createElement": "createElement"; "searchScreenName": "searchScreenName"; "loadMoreScreenNames": "loadMoreScreenNames"; "createScreenNameRequest": "createScreenNameRequest"; "searchParameters": "searchParameters"; "loadMoreParameters": "loadMoreParameters"; "searchUploads": "searchUploads"; "loadMoreUploads": "loadMoreUploads"; "searchEnvironments": "searchEnvironments"; "loadMoreEnvironments": "loadMoreEnvironments"; "cancelElementForm": "cancelElementForm"; "elementFormVisibilityChange": "elementFormVisibilityChange"; }, never, never>;
|
|
306
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TemplateVariablesFormComponent, "cqa-template-variables-form", never, { "templateVariables": "templateVariables"; "variablesForm": "variablesForm"; "metadata": "metadata"; "description": "description"; "elementOptions": "elementOptions"; "hasMoreElements": "hasMoreElements"; "isLoadingElements": "isLoadingElements"; "screenNameOptions": "screenNameOptions"; "hasMoreScreenNames": "hasMoreScreenNames"; "isLoadingScreenNames": "isLoadingScreenNames"; "parameterOptions": "parameterOptions"; "hasMoreParameters": "hasMoreParameters"; "isLoadingParameters": "isLoadingParameters"; "uploadOptions": "uploadOptions"; "hasMoreUploads": "hasMoreUploads"; "isLoadingUploads": "isLoadingUploads"; "environmentOptions": "environmentOptions"; "hasMoreEnvironments": "hasMoreEnvironments"; "isLoadingEnvironments": "isLoadingEnvironments"; "defaultTestDataProfileId": "defaultTestDataProfileId"; "defaultTestDataStartIndex": "defaultTestDataStartIndex"; "defaultTestDataEndIndex": "defaultTestDataEndIndex"; "isInsideForLoopStep": "isInsideForLoopStep"; "hasTestDataProfile": "hasTestDataProfile"; "isEditInDepth": "isEditInDepth"; "isDebug": "isDebug"; "createElementVisible": "createElementVisible"; }, { "variableValueChange": "variableValueChange"; "variableBooleanChange": "variableBooleanChange"; "metadataChange": "metadataChange"; "descriptionChange": "descriptionChange"; "loadMoreElements": "loadMoreElements"; "searchElements": "searchElements"; "searchElementsByScreenName": "searchElementsByScreenName"; "createElement": "createElement"; "searchScreenName": "searchScreenName"; "loadMoreScreenNames": "loadMoreScreenNames"; "createScreenNameRequest": "createScreenNameRequest"; "searchParameters": "searchParameters"; "loadMoreParameters": "loadMoreParameters"; "searchUploads": "searchUploads"; "loadMoreUploads": "loadMoreUploads"; "searchEnvironments": "searchEnvironments"; "loadMoreEnvironments": "loadMoreEnvironments"; "cancelElementForm": "cancelElementForm"; "elementFormVisibilityChange": "elementFormVisibilityChange"; }, never, never>;
|
|
305
307
|
}
|
|
306
308
|
export {};
|
|
@@ -19,6 +19,8 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
|
|
|
19
19
|
expanded: boolean;
|
|
20
20
|
isNested: boolean;
|
|
21
21
|
isInsideLoop: boolean;
|
|
22
|
+
isInsideForLoop: boolean;
|
|
23
|
+
testCaseTestDataId?: number | string;
|
|
22
24
|
isInsideStepGroup: boolean;
|
|
23
25
|
isReorder: boolean;
|
|
24
26
|
editable: boolean;
|
|
@@ -352,5 +354,5 @@ export declare class TestCaseConditionStepComponent implements OnInit, OnChanges
|
|
|
352
354
|
/** Get select config for a template variable */
|
|
353
355
|
getSelectConfigForVariable(variable: any, branchIdOrIsElse?: string | boolean): DynamicSelectFieldConfig;
|
|
354
356
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseConditionStepComponent, never>;
|
|
355
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseConditionStepComponent, "cqa-test-case-condition-step", never, { "config": "config"; "id": "id"; "stepNumber": "stepNumber"; "index": "index"; "condition": "condition"; "branches": "branches"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isInsideStepGroup": "isInsideStepGroup"; "isReorder": "isReorder"; "editable": "editable"; "nestingLevel": "nestingLevel"; "selected": "selected"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "currentTestCaseId": "currentTestCaseId"; "setConditionTemplateVariables": "setConditionTemplateVariables"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; }, { "toggleExpanded": "toggleExpanded"; "conditionChange": "conditionChange"; "branchStepChange": "branchStepChange"; "addStep": "addStep"; "addStepForLoop": "addStepForLoop"; "deleteStep": "deleteStep"; "addBranch": "addBranch"; "addElse": "addElse"; "deleteBranch": "deleteBranch"; "duplicate": "duplicate"; "delete": "delete"; "edit": "edit"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "editInDepth": "editInDepth"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "clickAction": "clickAction"; "addStepBetweenClick": "addStepBetweenClick"; "selectionChange": "selectionChange"; "openExternal": "openExternal"; }, never, never>;
|
|
357
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseConditionStepComponent, "cqa-test-case-condition-step", never, { "config": "config"; "id": "id"; "stepNumber": "stepNumber"; "index": "index"; "condition": "condition"; "branches": "branches"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isInsideForLoop": "isInsideForLoop"; "testCaseTestDataId": "testCaseTestDataId"; "isInsideStepGroup": "isInsideStepGroup"; "isReorder": "isReorder"; "editable": "editable"; "nestingLevel": "nestingLevel"; "selected": "selected"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "currentTestCaseId": "currentTestCaseId"; "setConditionTemplateVariables": "setConditionTemplateVariables"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; }, { "toggleExpanded": "toggleExpanded"; "conditionChange": "conditionChange"; "branchStepChange": "branchStepChange"; "addStep": "addStep"; "addStepForLoop": "addStepForLoop"; "deleteStep": "deleteStep"; "addBranch": "addBranch"; "addElse": "addElse"; "deleteBranch": "deleteBranch"; "duplicate": "duplicate"; "delete": "delete"; "edit": "edit"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "editInDepth": "editInDepth"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "clickAction": "clickAction"; "addStepBetweenClick": "addStepBetweenClick"; "selectionChange": "selectionChange"; "openExternal": "openExternal"; }, never, never>;
|
|
356
358
|
}
|
|
@@ -25,6 +25,10 @@ export declare class TestCaseLoopStepComponent implements OnInit, OnChanges {
|
|
|
25
25
|
expanded: boolean;
|
|
26
26
|
isNested: boolean;
|
|
27
27
|
isInsideLoop: boolean;
|
|
28
|
+
/** True when this step is nested (at any depth) inside another FOR loop. Used to keep
|
|
29
|
+
* the test-data-profile dropdown enabled only for nested FOR loops; root-level FOR
|
|
30
|
+
* loops auto-inherit the test case's default profile and are disabled. */
|
|
31
|
+
isInsideForLoop: boolean;
|
|
28
32
|
isInsideStepGroup: boolean;
|
|
29
33
|
isReorder: boolean;
|
|
30
34
|
selected: boolean;
|
|
@@ -39,6 +43,10 @@ export declare class TestCaseLoopStepComponent implements OnInit, OnChanges {
|
|
|
39
43
|
naturalTextActionsOptions: SelectOption[];
|
|
40
44
|
/** Passed to nested renderers (e.g. reusable step group hint). */
|
|
41
45
|
currentTestCaseId?: number | string;
|
|
46
|
+
/** The default test data profile ID configured on the test case (testCase.testDataId). When the
|
|
47
|
+
* FOR loop is at root level (not nested inside another FOR loop), the dropdown will be auto-set
|
|
48
|
+
* to this id and disabled. */
|
|
49
|
+
testCaseTestDataId?: number | string;
|
|
42
50
|
/** Function to process template variables for while condition (same as condition-step) */
|
|
43
51
|
setConditionTemplateVariables: (template: any) => any[];
|
|
44
52
|
/** Show "Add Step Between" button above nested steps */
|
|
@@ -314,5 +322,5 @@ export declare class TestCaseLoopStepComponent implements OnInit, OnChanges {
|
|
|
314
322
|
onMoreOptions(): void;
|
|
315
323
|
onViewDetails(event?: MouseEvent): void;
|
|
316
324
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseLoopStepComponent, never>;
|
|
317
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseLoopStepComponent, "cqa-test-case-loop-step", never, { "config": "config"; "id": "id"; "loopType": "loopType"; "stepNumber": "stepNumber"; "index": "index"; "condition": "condition"; "maxIterations": "maxIterations"; "testDataProfile": "testDataProfile"; "startStep": "startStep"; "endStep": "endStep"; "nestedSteps": "nestedSteps"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isInsideStepGroup": "isInsideStepGroup"; "isReorder": "isReorder"; "selected": "selected"; "isDuplicating": "isDuplicating"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "currentTestCaseId": "currentTestCaseId"; "setConditionTemplateVariables": "setConditionTemplateVariables"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; "editable": "editable"; "nestingLevel": "nestingLevel"; }, { "toggleExpanded": "toggleExpanded"; "testDataProfileChange": "testDataProfileChange"; "startStepChange": "startStepChange"; "endStepChange": "endStepChange"; "conditionChange": "conditionChange"; "maxIterationsChange": "maxIterationsChange"; "nestedStepChange": "nestedStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "editInDepth": "editInDepth"; "edit": "edit"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "clickAction": "clickAction"; "addStepBetweenClick": "addStepBetweenClick"; "selectionChange": "selectionChange"; "deleteBranch": "deleteBranch"; "addStepForBranch": "addStepForBranch"; "deleteStepWithBranch": "deleteStepWithBranch"; "openExternal": "openExternal"; }, never, never>;
|
|
325
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseLoopStepComponent, "cqa-test-case-loop-step", never, { "config": "config"; "id": "id"; "loopType": "loopType"; "stepNumber": "stepNumber"; "index": "index"; "condition": "condition"; "maxIterations": "maxIterations"; "testDataProfile": "testDataProfile"; "startStep": "startStep"; "endStep": "endStep"; "nestedSteps": "nestedSteps"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isInsideForLoop": "isInsideForLoop"; "isInsideStepGroup": "isInsideStepGroup"; "isReorder": "isReorder"; "selected": "selected"; "isDuplicating": "isDuplicating"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "currentTestCaseId": "currentTestCaseId"; "testCaseTestDataId": "testCaseTestDataId"; "setConditionTemplateVariables": "setConditionTemplateVariables"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; "editable": "editable"; "nestingLevel": "nestingLevel"; }, { "toggleExpanded": "toggleExpanded"; "testDataProfileChange": "testDataProfileChange"; "startStepChange": "startStepChange"; "endStepChange": "endStepChange"; "conditionChange": "conditionChange"; "maxIterationsChange": "maxIterationsChange"; "nestedStepChange": "nestedStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "editInDepth": "editInDepth"; "edit": "edit"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "clickAction": "clickAction"; "addStepBetweenClick": "addStepBetweenClick"; "selectionChange": "selectionChange"; "deleteBranch": "deleteBranch"; "addStepForBranch": "addStepForBranch"; "deleteStepWithBranch": "deleteStepWithBranch"; "openExternal": "openExternal"; }, never, never>;
|
|
318
326
|
}
|
|
@@ -17,6 +17,8 @@ export declare class TestCaseStepGroupComponent implements OnInit, OnChanges, Do
|
|
|
17
17
|
expanded: boolean;
|
|
18
18
|
isNested: boolean;
|
|
19
19
|
isInsideLoop: boolean;
|
|
20
|
+
isInsideForLoop: boolean;
|
|
21
|
+
testCaseTestDataId?: number | string;
|
|
20
22
|
isInsideStepGroup: boolean;
|
|
21
23
|
isReorder: boolean;
|
|
22
24
|
editable: boolean;
|
|
@@ -157,5 +159,5 @@ export declare class TestCaseStepGroupComponent implements OnInit, OnChanges, Do
|
|
|
157
159
|
onNestedConditionAddBranch(nestedStep: ConditionStepConfig, index: number): void;
|
|
158
160
|
onNestedConditionDeleteBranch(nestedStep: ConditionStepConfig, branch: any, index: number): void;
|
|
159
161
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseStepGroupComponent, never>;
|
|
160
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseStepGroupComponent, "cqa-test-case-step-group", never, { "config": "config"; "id": "id"; "stepNumber": "stepNumber"; "index": "index"; "groupName": "groupName"; "description": "description"; "reusable": "reusable"; "nestedSteps": "nestedSteps"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isInsideStepGroup": "isInsideStepGroup"; "isReorder": "isReorder"; "editable": "editable"; "nestingLevel": "nestingLevel"; "selected": "selected"; "isDuplicating": "isDuplicating"; "loading": "loading"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "currentTestCaseId": "currentTestCaseId"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; }, { "toggleExpanded": "toggleExpanded"; "groupNameChange": "groupNameChange"; "descriptionChange": "descriptionChange"; "reusableChange": "reusableChange"; "nestedStepChange": "nestedStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "openExternal": "openExternal"; "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "viewDetails": "viewDetails"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "addStepBetweenClick": "addStepBetweenClick"; "addStepForLoop": "addStepForLoop"; "selectionChange": "selectionChange"; "deleteBranch": "deleteBranch"; }, never, never>;
|
|
162
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseStepGroupComponent, "cqa-test-case-step-group", never, { "config": "config"; "id": "id"; "stepNumber": "stepNumber"; "index": "index"; "groupName": "groupName"; "description": "description"; "reusable": "reusable"; "nestedSteps": "nestedSteps"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isInsideForLoop": "isInsideForLoop"; "testCaseTestDataId": "testCaseTestDataId"; "isInsideStepGroup": "isInsideStepGroup"; "isReorder": "isReorder"; "editable": "editable"; "nestingLevel": "nestingLevel"; "selected": "selected"; "isDuplicating": "isDuplicating"; "loading": "loading"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "currentTestCaseId": "currentTestCaseId"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; }, { "toggleExpanded": "toggleExpanded"; "groupNameChange": "groupNameChange"; "descriptionChange": "descriptionChange"; "reusableChange": "reusableChange"; "nestedStepChange": "nestedStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "openExternal": "openExternal"; "edit": "edit"; "editInDepth": "editInDepth"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "viewDetails": "viewDetails"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "addStepBetweenClick": "addStepBetweenClick"; "addStepForLoop": "addStepForLoop"; "selectionChange": "selectionChange"; "deleteBranch": "deleteBranch"; }, never, never>;
|
|
161
163
|
}
|
package/lib/test-case-details/test-case-details-renderer/test-case-details-renderer.component.d.ts
CHANGED
|
@@ -10,6 +10,8 @@ export declare class TestCaseDetailsRendererComponent implements OnChanges, Afte
|
|
|
10
10
|
index: number;
|
|
11
11
|
isNested: boolean;
|
|
12
12
|
isInsideLoop: boolean;
|
|
13
|
+
/** True when this step is nested (at any depth) inside a FOR loop specifically. */
|
|
14
|
+
isInsideForLoop: boolean;
|
|
13
15
|
/** When true, step is rendered inside a step-group; row actions (Edit/Duplicate/Delete) are hidden. */
|
|
14
16
|
isInsideStepGroup: boolean;
|
|
15
17
|
/** Visual indentation level for nested structures (loops/step-groups/conditions). */
|
|
@@ -32,6 +34,8 @@ export declare class TestCaseDetailsRendererComponent implements OnChanges, Afte
|
|
|
32
34
|
editable: boolean;
|
|
33
35
|
/** Current test case id (portal). Used so reusable step groups can hide the "edit in source test case" hint when already viewing that step group's test case. */
|
|
34
36
|
currentTestCaseId?: number | string;
|
|
37
|
+
/** Test case's default test data profile id (testCase.testDataId). Forwarded to nested loop steps. */
|
|
38
|
+
testCaseTestDataId?: number | string;
|
|
35
39
|
nestedStepChange: EventEmitter<{
|
|
36
40
|
step: TestCaseStepConfig;
|
|
37
41
|
index: number;
|
|
@@ -137,5 +141,5 @@ export declare class TestCaseDetailsRendererComponent implements OnChanges, Afte
|
|
|
137
141
|
private wireOutputs;
|
|
138
142
|
ngOnDestroy(): void;
|
|
139
143
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseDetailsRendererComponent, never>;
|
|
140
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseDetailsRendererComponent, "cqa-test-case-details-renderer", never, { "step": "step"; "index": "index"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isInsideStepGroup": "isInsideStepGroup"; "nestingLevel": "nestingLevel"; "branch": "branch"; "isReorder": "isReorder"; "selected": "selected"; "isDuplicating": "isDuplicating"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; "editable": "editable"; "currentTestCaseId": "currentTestCaseId"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "setConditionTemplateVariables": "setConditionTemplateVariables"; }, { "nestedStepChange": "nestedStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "toggleExpanded": "toggleExpanded"; "groupNameChange": "groupNameChange"; "descriptionChange": "descriptionChange"; "reusableChange": "reusableChange"; "openExternal": "openExternal"; "edit": "edit"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; "conditionChange": "conditionChange"; "branchStepChange": "branchStepChange"; "addStepForBranch": "addStepForBranch"; "addStepForLoop": "addStepForLoop"; "deleteStepWithBranch": "deleteStepWithBranch"; "addBranch": "addBranch"; "addElse": "addElse"; "deleteBranch": "deleteBranch"; "testDataProfileChange": "testDataProfileChange"; "startStepChange": "startStepChange"; "endStepChange": "endStepChange"; "maxIterationsChange": "maxIterationsChange"; "eventTypeChange": "eventTypeChange"; "parameterChange": "parameterChange"; "clickAction": "clickAction"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "addStepBetweenClick": "addStepBetweenClick"; "editInDepth": "editInDepth"; }, never, never>;
|
|
144
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseDetailsRendererComponent, "cqa-test-case-details-renderer", never, { "step": "step"; "index": "index"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isInsideForLoop": "isInsideForLoop"; "isInsideStepGroup": "isInsideStepGroup"; "nestingLevel": "nestingLevel"; "branch": "branch"; "isReorder": "isReorder"; "selected": "selected"; "isDuplicating": "isDuplicating"; "addStepBetweenAbove": "addStepBetweenAbove"; "addStepBetweenBelow": "addStepBetweenBelow"; "addStepBetween": "addStepBetween"; "editable": "editable"; "currentTestCaseId": "currentTestCaseId"; "testCaseTestDataId": "testCaseTestDataId"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "naturalTextActionsOptions": "naturalTextActionsOptions"; "setConditionTemplateVariables": "setConditionTemplateVariables"; }, { "nestedStepChange": "nestedStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "toggleExpanded": "toggleExpanded"; "groupNameChange": "groupNameChange"; "descriptionChange": "descriptionChange"; "reusableChange": "reusableChange"; "openExternal": "openExternal"; "edit": "edit"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; "conditionChange": "conditionChange"; "branchStepChange": "branchStepChange"; "addStepForBranch": "addStepForBranch"; "addStepForLoop": "addStepForLoop"; "deleteStepWithBranch": "deleteStepWithBranch"; "addBranch": "addBranch"; "addElse": "addElse"; "deleteBranch": "deleteBranch"; "testDataProfileChange": "testDataProfileChange"; "startStepChange": "startStepChange"; "endStepChange": "endStepChange"; "maxIterationsChange": "maxIterationsChange"; "eventTypeChange": "eventTypeChange"; "parameterChange": "parameterChange"; "clickAction": "clickAction"; "dndDropInZone": "dndDropInZone"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "stepUpdate": "stepUpdate"; "addStepBetweenClick": "addStepBetweenClick"; "editInDepth": "editInDepth"; }, never, never>;
|
|
141
145
|
}
|
package/lib/ui-kit.module.d.ts
CHANGED
|
@@ -74,103 +74,104 @@ import * as i71 from "./compare-runs/compare-runs.component";
|
|
|
74
74
|
import * as i72 from "./iterations-loop/iterations-loop.component";
|
|
75
75
|
import * as i73 from "./failed-step-card/failed-step-card.component";
|
|
76
76
|
import * as i74 from "./custom-input/custom-input.component";
|
|
77
|
-
import * as i75 from "./
|
|
78
|
-
import * as i76 from "./
|
|
79
|
-
import * as i77 from "./
|
|
80
|
-
import * as i78 from "./
|
|
81
|
-
import * as i79 from "./
|
|
82
|
-
import * as i80 from "./
|
|
83
|
-
import * as i81 from "./execution-
|
|
84
|
-
import * as i82 from "./
|
|
85
|
-
import * as i83 from "./
|
|
86
|
-
import * as i84 from "./
|
|
87
|
-
import * as i85 from "./
|
|
88
|
-
import * as i86 from "./
|
|
89
|
-
import * as i87 from "./step-
|
|
90
|
-
import * as i88 from "./
|
|
91
|
-
import * as i89 from "./execution-screen/db-
|
|
92
|
-
import * as i90 from "./
|
|
93
|
-
import * as i91 from "./test-case-details/
|
|
94
|
-
import * as i92 from "./test-case-details/
|
|
95
|
-
import * as i93 from "./test-case-details/step-
|
|
96
|
-
import * as i94 from "./test-case-details/
|
|
97
|
-
import * as i95 from "./test-case-details/
|
|
98
|
-
import * as i96 from "./test-case-details/
|
|
99
|
-
import * as i97 from "./test-case-details/
|
|
100
|
-
import * as i98 from "./test-case-details/ai-
|
|
101
|
-
import * as i99 from "./test-case-details/
|
|
102
|
-
import * as i100 from "./test-case-details/
|
|
103
|
-
import * as i101 from "./test-case-details/
|
|
104
|
-
import * as i102 from "./test-case-details/
|
|
105
|
-
import * as i103 from "./test-case-details/
|
|
106
|
-
import * as i104 from "./test-case-details/
|
|
107
|
-
import * as i105 from "./test-case-details/custom-
|
|
108
|
-
import * as i106 from "./
|
|
109
|
-
import * as i107 from "./
|
|
110
|
-
import * as i108 from "./test-case-details/
|
|
111
|
-
import * as i109 from "./test-case-details/
|
|
112
|
-
import * as i110 from "./test-case-details/
|
|
113
|
-
import * as i111 from "./test-case-details/
|
|
114
|
-
import * as i112 from "./
|
|
115
|
-
import * as i113 from "./
|
|
116
|
-
import * as i114 from "./step-builder/step-builder-
|
|
117
|
-
import * as i115 from "./
|
|
118
|
-
import * as i116 from "./test-case-details/element-popup/element-
|
|
119
|
-
import * as i117 from "./
|
|
120
|
-
import * as i118 from "./step-builder/step-builder-
|
|
121
|
-
import * as i119 from "./step-builder/step-builder-
|
|
122
|
-
import * as i120 from "./step-builder/step-builder-
|
|
123
|
-
import * as i121 from "./step-builder/step-builder-
|
|
124
|
-
import * as i122 from "./step-builder/step-builder-
|
|
125
|
-
import * as i123 from "./
|
|
126
|
-
import * as i124 from "./
|
|
127
|
-
import * as i125 from "./
|
|
128
|
-
import * as i126 from "./detail-
|
|
129
|
-
import * as i127 from "./detail-drawer/detail-drawer
|
|
130
|
-
import * as i128 from "./detail-drawer/detail-drawer-tab-
|
|
131
|
-
import * as i129 from "./
|
|
132
|
-
import * as i130 from "./test-case-details/test-case-details
|
|
133
|
-
import * as i131 from "./
|
|
134
|
-
import * as i132 from "./
|
|
135
|
-
import * as i133 from "./
|
|
136
|
-
import * as i134 from "./step-builder/
|
|
137
|
-
import * as i135 from "./
|
|
138
|
-
import * as i136 from "./
|
|
139
|
-
import * as i137 from "./
|
|
140
|
-
import * as i138 from "./
|
|
141
|
-
import * as i139 from "./
|
|
142
|
-
import * as i140 from "./
|
|
143
|
-
import * as i141 from "./version-history/version-history-
|
|
144
|
-
import * as i142 from "./version-history/version-history-
|
|
145
|
-
import * as i143 from "./version-history/version-history-
|
|
146
|
-
import * as i144 from "./version-history/
|
|
147
|
-
import * as i145 from "
|
|
148
|
-
import * as i146 from "@angular/
|
|
149
|
-
import * as i147 from "@angular/
|
|
150
|
-
import * as i148 from "@angular/
|
|
151
|
-
import * as i149 from "@angular/material/
|
|
152
|
-
import * as i150 from "@angular/material/
|
|
153
|
-
import * as i151 from "@angular/material/
|
|
154
|
-
import * as i152 from "@angular/material/
|
|
155
|
-
import * as i153 from "@angular/material/
|
|
156
|
-
import * as i154 from "@angular/material/
|
|
157
|
-
import * as i155 from "@angular/material/
|
|
158
|
-
import * as i156 from "@angular/material/
|
|
159
|
-
import * as i157 from "@angular/material/
|
|
160
|
-
import * as i158 from "@angular/material/
|
|
161
|
-
import * as i159 from "@angular/material/
|
|
162
|
-
import * as i160 from "@angular/material/
|
|
163
|
-
import * as i161 from "@angular/material/
|
|
164
|
-
import * as i162 from "@angular/material/
|
|
165
|
-
import * as i163 from "@angular/
|
|
166
|
-
import * as i164 from "@angular/cdk/
|
|
167
|
-
import * as i165 from "@angular/cdk/
|
|
168
|
-
import * as i166 from "
|
|
169
|
-
import * as i167 from "ngx-
|
|
170
|
-
import * as i168 from "ngx-
|
|
77
|
+
import * as i75 from "./mixed-variable-input/mixed-variable-input.component";
|
|
78
|
+
import * as i76 from "./custom-textarea/custom-textarea.component";
|
|
79
|
+
import * as i77 from "./code-editor/code-editor.component";
|
|
80
|
+
import * as i78 from "./custom-toggle/custom-toggle.component";
|
|
81
|
+
import * as i79 from "./file-upload/file-upload.component";
|
|
82
|
+
import * as i80 from "./ai-reasoning/ai-reasoning.component";
|
|
83
|
+
import * as i81 from "./execution-result-modal/execution-result-modal.component";
|
|
84
|
+
import * as i82 from "./execution-screen/session-changes-modal/session-changes-modal.component";
|
|
85
|
+
import * as i83 from "./error-modal/error-modal.component";
|
|
86
|
+
import * as i84 from "./session-restoration-dialog/session-restoration-dialog.component";
|
|
87
|
+
import * as i85 from "./export-code-modal/export-code-modal.component";
|
|
88
|
+
import * as i86 from "./progress-indicator/progress-indicator.component";
|
|
89
|
+
import * as i87 from "./step-progress-card/step-progress-card.component";
|
|
90
|
+
import * as i88 from "./step-status-card/step-status-card.component";
|
|
91
|
+
import * as i89 from "./execution-screen/db-verification-step/db-verification-step.component";
|
|
92
|
+
import * as i90 from "./execution-screen/db-query-execution-item/db-query-execution-item.component";
|
|
93
|
+
import * as i91 from "./test-case-details/normal-step/normal-step.component";
|
|
94
|
+
import * as i92 from "./test-case-details/loop-step/loop-step.component";
|
|
95
|
+
import * as i93 from "./test-case-details/condition-step/condition-step.component";
|
|
96
|
+
import * as i94 from "./test-case-details/step-group/step-group.component";
|
|
97
|
+
import * as i95 from "./test-case-details/test-case-details-renderer/test-case-details-renderer.component";
|
|
98
|
+
import * as i96 from "./test-case-details/api-step/api-step.component";
|
|
99
|
+
import * as i97 from "./test-case-details/database-step/database-step.component";
|
|
100
|
+
import * as i98 from "./test-case-details/ai-agent-step/ai-agent-step.component";
|
|
101
|
+
import * as i99 from "./test-case-details/ai-verify-step/ai-verify-step.component";
|
|
102
|
+
import * as i100 from "./test-case-details/upload-step/upload-step.component";
|
|
103
|
+
import * as i101 from "./test-case-details/screenshot-step/screenshot-step.component";
|
|
104
|
+
import * as i102 from "./test-case-details/scroll-step/scroll-step.component";
|
|
105
|
+
import * as i103 from "./test-case-details/verify-url-step/verify-url-step.component";
|
|
106
|
+
import * as i104 from "./test-case-details/restore-session-step/restore-session-step.component";
|
|
107
|
+
import * as i105 from "./test-case-details/custom-code-step/custom-code-step.component";
|
|
108
|
+
import * as i106 from "./test-case-details/custom-edit-step/custom-edit-step.component";
|
|
109
|
+
import * as i107 from "./item-list/item-list.component";
|
|
110
|
+
import * as i108 from "./test-case-details/test-data-modal/test-data-modal.component";
|
|
111
|
+
import * as i109 from "./test-case-details/create-step-group/create-step-group.component";
|
|
112
|
+
import * as i110 from "./test-case-details/delete-steps/delete-steps.component";
|
|
113
|
+
import * as i111 from "./test-case-details/run-execution-alert/run-execution-alert.component";
|
|
114
|
+
import * as i112 from "./test-case-details/api-edit-step/api-edit-step.component";
|
|
115
|
+
import * as i113 from "./live-conversation/live-conversation.component";
|
|
116
|
+
import * as i114 from "./step-builder/step-builder-action/step-builder-action.component";
|
|
117
|
+
import * as i115 from "./step-builder/step-builder-loop/step-builder-loop.component";
|
|
118
|
+
import * as i116 from "./test-case-details/element-popup/element-popup.component";
|
|
119
|
+
import * as i117 from "./test-case-details/element-popup/element-form/element-form.component";
|
|
120
|
+
import * as i118 from "./step-builder/step-builder-condition/step-builder-condition.component";
|
|
121
|
+
import * as i119 from "./step-builder/step-builder-database/step-builder-database.component";
|
|
122
|
+
import * as i120 from "./step-builder/step-builder-ai-agent/step-builder-ai-agent.component";
|
|
123
|
+
import * as i121 from "./step-builder/step-builder-custom-code/step-builder-custom-code.component";
|
|
124
|
+
import * as i122 from "./step-builder/step-builder-record-step/step-builder-record-step.component";
|
|
125
|
+
import * as i123 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
|
|
126
|
+
import * as i124 from "./test-case-details/element-list/element-list.component";
|
|
127
|
+
import * as i125 from "./step-builder/step-builder-document/step-builder-document.component";
|
|
128
|
+
import * as i126 from "./detail-side-panel/detail-side-panel.component";
|
|
129
|
+
import * as i127 from "./detail-drawer/detail-drawer.component";
|
|
130
|
+
import * as i128 from "./detail-drawer/detail-drawer-tab/detail-drawer-tab.component";
|
|
131
|
+
import * as i129 from "./detail-drawer/detail-drawer-tab-content.directive";
|
|
132
|
+
import * as i130 from "./test-case-details/test-case-details.component";
|
|
133
|
+
import * as i131 from "./test-case-details/test-case-details-edit/test-case-details-edit.component";
|
|
134
|
+
import * as i132 from "./step-builder/step-builder-group/step-builder-group.component";
|
|
135
|
+
import * as i133 from "./test-case-details/step-details-drawer/step-details-drawer.component";
|
|
136
|
+
import * as i134 from "./step-builder/template-variables-form/template-variables-form.component";
|
|
137
|
+
import * as i135 from "./step-builder/advanced-variables-form/advanced-variables-form.component";
|
|
138
|
+
import * as i136 from "./test-case-details/step-details-modal/step-details-modal.component";
|
|
139
|
+
import * as i137 from "./pipes/safe-html.pipe";
|
|
140
|
+
import * as i138 from "./questionnaire-list/questionnaire-list.component";
|
|
141
|
+
import * as i139 from "./change-history/change-history.component";
|
|
142
|
+
import * as i140 from "./pipes/camel-to-title.pipe";
|
|
143
|
+
import * as i141 from "./version-history/version-history-list/version-history-list.component";
|
|
144
|
+
import * as i142 from "./version-history/version-history-compare/version-history-compare.component";
|
|
145
|
+
import * as i143 from "./version-history/version-history-detail/version-history-detail.component";
|
|
146
|
+
import * as i144 from "./version-history/version-history-restore-confirm/version-history-restore-confirm.component";
|
|
147
|
+
import * as i145 from "./version-history/new-version-history-detail/new-version-history-detail.component";
|
|
148
|
+
import * as i146 from "@angular/common";
|
|
149
|
+
import * as i147 from "@angular/forms";
|
|
150
|
+
import * as i148 from "@angular/platform-browser/animations";
|
|
151
|
+
import * as i149 from "@angular/material/icon";
|
|
152
|
+
import * as i150 from "@angular/material/menu";
|
|
153
|
+
import * as i151 from "@angular/material/button";
|
|
154
|
+
import * as i152 from "@angular/material/form-field";
|
|
155
|
+
import * as i153 from "@angular/material/select";
|
|
156
|
+
import * as i154 from "@angular/material/core";
|
|
157
|
+
import * as i155 from "@angular/material/checkbox";
|
|
158
|
+
import * as i156 from "@angular/material/radio";
|
|
159
|
+
import * as i157 from "@angular/material/slide-toggle";
|
|
160
|
+
import * as i158 from "@angular/material/datepicker";
|
|
161
|
+
import * as i159 from "@angular/material/progress-spinner";
|
|
162
|
+
import * as i160 from "@angular/material/tooltip";
|
|
163
|
+
import * as i161 from "@angular/material/dialog";
|
|
164
|
+
import * as i162 from "@angular/material/table";
|
|
165
|
+
import * as i163 from "@angular/material/input";
|
|
166
|
+
import * as i164 from "@angular/cdk/overlay";
|
|
167
|
+
import * as i165 from "@angular/cdk/portal";
|
|
168
|
+
import * as i166 from "@angular/cdk/scrolling";
|
|
169
|
+
import * as i167 from "ngx-typed-js";
|
|
170
|
+
import * as i168 from "ngx-drag-drop";
|
|
171
|
+
import * as i169 from "ngx-monaco-editor";
|
|
171
172
|
export declare class UiKitModule {
|
|
172
173
|
constructor(iconRegistry: MatIconRegistry);
|
|
173
174
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
|
|
174
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.DialogComponent, typeof i8.DynamicTableComponent, typeof i9.DynamicCellTemplateDirective, typeof i9.DynamicHeaderTemplateDirective, typeof i10.DynamicCellContainerDirective, typeof i11.PaginationComponent, typeof i12.ActionMenuButtonComponent, typeof i13.OtherButtonComponent, typeof i14.DynamicFilterComponent, typeof i15.DaterangepickerDirective, typeof i16.DaterangepickerComponent, typeof i17.ColumnVisibilityComponent, typeof i18.TableActionToolbarComponent, typeof i19.MetricsCardComponent, typeof i20.MetricsBlockComponent, typeof i21.ChartCardComponent, typeof i22.ProgressTextCardComponent, typeof i23.DashboardHeaderComponent, typeof i24.WorkspaceSelectorComponent, typeof i25.CoverageModuleCardComponent, typeof i26.TestDistributionCardComponent, typeof i27.FailedTestCasesCardComponent, typeof i28.DynamicSelectFieldComponent, typeof i29.AddPrerequisiteCasesSectionComponent, typeof i30.SelectedFiltersComponent, typeof i31.InsightCardComponent, typeof i32.BadgeComponent, typeof i33.DropdownButtonComponent, typeof i34.HeatErrorMapCellComponent, typeof i35.EmptyStateComponent, typeof i36.TableTemplateComponent, typeof i37.FullTableLoaderComponent, typeof i38.TableDataLoaderComponent, typeof i39.BasicStepComponent, typeof i40.StepRendererComponent, typeof i41.StepGroupComponent, typeof i42.LoopStepComponent, typeof i43.ConditionStepComponent, typeof i44.ConditionDebugStepComponent, typeof i45.ConditionBranchEditorComponent, typeof i46.FailedStepComponent, typeof i47.UpdatedFailedStepComponent, typeof i48.ViewMoreFailedStepButtonComponent, typeof i49.SelfHealAnalysisComponent, typeof i50.AIAgentStepComponent, typeof i51.AIActionStepComponent, typeof i52.ApiStepComponent, typeof i53.FileDownloadStepComponent, typeof i54.DocumentVerificationStepComponent, typeof i55.LiveExecutionStepComponent, typeof i56.AiLogsWithReasoningComponent, typeof i57.JumpToStepModalComponent, typeof i58.BreakpointsModalComponent, typeof i59.RecordingBannerComponent, typeof i60.ReviewRecordedStepsModalComponent, typeof i61.MainStepCollapseComponent, typeof i62.VisualComparisonComponent, typeof i63.SimulatorComponent, typeof i64.ConsoleAlertComponent, typeof i65.AiDebugAlertComponent, typeof i66.NetworkRequestComponent, typeof i67.RunHistoryCardComponent, typeof i68.AiPromptCardComponent, typeof i69.VisualDifferenceModalComponent, typeof i70.ConfigurationCardComponent, typeof i71.CompareRunsComponent, typeof i72.IterationsLoopComponent, typeof i73.FailedStepCardComponent, typeof i74.CustomInputComponent, typeof i75.CustomTextareaComponent, typeof i76.CodeEditorComponent, typeof i77.CustomToggleComponent, typeof i78.FileUploadComponent, typeof i79.AiReasoningComponent, typeof i80.ExecutionResultModalComponent, typeof i81.SessionChangesModalComponent, typeof i82.ErrorModalComponent, typeof i83.SessionRestorationDialogComponent, typeof i84.ExportCodeModalComponent, typeof i85.ProgressIndicatorComponent, typeof i86.StepProgressCardComponent, typeof i87.StepStatusCardComponent, typeof i88.DbVerificationStepComponent, typeof i89.DbQueryExecutionItemComponent, typeof i90.TestCaseNormalStepComponent, typeof i91.TestCaseLoopStepComponent, typeof i92.TestCaseConditionStepComponent, typeof i93.TestCaseStepGroupComponent, typeof i94.TestCaseDetailsRendererComponent, typeof i95.TestCaseApiStepComponent, typeof i96.TestCaseDatabaseStepComponent, typeof i97.TestCaseAiAgentStepComponent, typeof i98.TestCaseAiVerifyStepComponent, typeof i99.TestCaseUploadStepComponent, typeof i100.TestCaseScreenshotStepComponent, typeof i101.TestCaseScrollStepComponent, typeof i102.TestCaseVerifyUrlStepComponent, typeof i103.TestCaseRestoreSessionStepComponent, typeof i104.TestCaseCustomCodeStepComponent, typeof i105.CustomEditStepComponent, typeof i106.ItemListComponent, typeof i107.TestDataModalComponent, typeof i108.CreateStepGroupComponent, typeof i109.DeleteStepsComponent, typeof i110.RunExecutionAlertComponent, typeof i111.ApiEditStepComponent, typeof i112.LiveConversationComponent, typeof i113.StepBuilderActionComponent, typeof i114.StepBuilderLoopComponent, typeof i115.ElementPopupComponent, typeof i116.ElementFormComponent, typeof i117.StepBuilderConditionComponent, typeof i118.StepBuilderDatabaseComponent, typeof i119.StepBuilderAiAgentComponent, typeof i76.CodeEditorComponent, typeof i120.StepBuilderCustomCodeComponent, typeof i121.StepBuilderRecordStepComponent, typeof i122.StepBuilderDocumentGenerationTemplateStepComponent, typeof i123.ElementListComponent, typeof i124.StepBuilderDocumentComponent, typeof i125.DetailSidePanelComponent, typeof i126.DetailDrawerComponent, typeof i127.DetailDrawerTabComponent, typeof i128.DetailDrawerTabContentDirective, typeof i129.TestCaseDetailsComponent, typeof i130.TestCaseDetailsEditComponent, typeof i131.StepBuilderGroupComponent, typeof i132.StepDetailsDrawerComponent, typeof i133.TemplateVariablesFormComponent, typeof i134.AdvancedVariablesFormComponent, typeof i135.StepDetailsModalComponent, typeof i136.SafeHtmlPipe, typeof i137.QuestionnaireListComponent, typeof i138.ChangeHistoryComponent, typeof i139.CamelToTitlePipe, typeof i140.VersionHistoryListComponent, typeof i141.VersionHistoryCompareComponent, typeof i142.VersionHistoryDetailComponent, typeof i143.VersionHistoryRestoreConfirmComponent, typeof i144.NewVersionHistoryDetailComponent], [typeof i145.CommonModule, typeof i146.FormsModule, typeof i146.ReactiveFormsModule, typeof i147.NoopAnimationsModule, typeof i148.MatIconModule, typeof i149.MatMenuModule, typeof i150.MatButtonModule, typeof i151.MatFormFieldModule, typeof i152.MatSelectModule, typeof i153.MatOptionModule, typeof i154.MatCheckboxModule, typeof i155.MatRadioModule, typeof i156.MatSlideToggleModule, typeof i157.MatDatepickerModule, typeof i153.MatNativeDateModule, typeof i158.MatProgressSpinnerModule, typeof i159.MatTooltipModule, typeof i160.MatDialogModule, typeof i161.MatTableModule, typeof i162.MatInputModule, typeof i163.OverlayModule, typeof i164.PortalModule, typeof i165.ScrollingModule, typeof i166.NgxTypedJsModule, typeof i167.DndModule, typeof i168.MonacoEditorModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.DialogComponent, typeof i8.DynamicTableComponent, typeof i9.DynamicCellTemplateDirective, typeof i9.DynamicHeaderTemplateDirective, typeof i10.DynamicCellContainerDirective, typeof i11.PaginationComponent, typeof i12.ActionMenuButtonComponent, typeof i13.OtherButtonComponent, typeof i14.DynamicFilterComponent, typeof i15.DaterangepickerDirective, typeof i16.DaterangepickerComponent, typeof i17.ColumnVisibilityComponent, typeof i18.TableActionToolbarComponent, typeof i19.MetricsCardComponent, typeof i21.ChartCardComponent, typeof i22.ProgressTextCardComponent, typeof i23.DashboardHeaderComponent, typeof i24.WorkspaceSelectorComponent, typeof i25.CoverageModuleCardComponent, typeof i26.TestDistributionCardComponent, typeof i27.FailedTestCasesCardComponent, typeof i28.DynamicSelectFieldComponent, typeof i29.AddPrerequisiteCasesSectionComponent, typeof i30.SelectedFiltersComponent, typeof i31.InsightCardComponent, typeof i32.BadgeComponent, typeof i33.DropdownButtonComponent, typeof i34.HeatErrorMapCellComponent, typeof i35.EmptyStateComponent, typeof i36.TableTemplateComponent, typeof i37.FullTableLoaderComponent, typeof i38.TableDataLoaderComponent, typeof i39.BasicStepComponent, typeof i40.StepRendererComponent, typeof i41.StepGroupComponent, typeof i42.LoopStepComponent, typeof i43.ConditionStepComponent, typeof i44.ConditionDebugStepComponent, typeof i45.ConditionBranchEditorComponent, typeof i46.FailedStepComponent, typeof i44.ConditionDebugStepComponent, typeof i47.UpdatedFailedStepComponent, typeof i48.ViewMoreFailedStepButtonComponent, typeof i49.SelfHealAnalysisComponent, typeof i50.AIAgentStepComponent, typeof i51.AIActionStepComponent, typeof i52.ApiStepComponent, typeof i53.FileDownloadStepComponent, typeof i54.DocumentVerificationStepComponent, typeof i55.LiveExecutionStepComponent, typeof i56.AiLogsWithReasoningComponent, typeof i57.JumpToStepModalComponent, typeof i58.BreakpointsModalComponent, typeof i59.RecordingBannerComponent, typeof i60.ReviewRecordedStepsModalComponent, typeof i61.MainStepCollapseComponent, typeof i62.VisualComparisonComponent, typeof i63.SimulatorComponent, typeof i64.ConsoleAlertComponent, typeof i65.AiDebugAlertComponent, typeof i66.NetworkRequestComponent, typeof i67.RunHistoryCardComponent, typeof i68.AiPromptCardComponent, typeof i69.VisualDifferenceModalComponent, typeof i70.ConfigurationCardComponent, typeof i71.CompareRunsComponent, typeof i72.IterationsLoopComponent, typeof i73.FailedStepCardComponent, typeof i74.CustomInputComponent, typeof i75.CustomTextareaComponent, typeof i76.CodeEditorComponent, typeof i77.CustomToggleComponent, typeof i78.FileUploadComponent, typeof i79.AiReasoningComponent, typeof i80.ExecutionResultModalComponent, typeof i81.SessionChangesModalComponent, typeof i82.ErrorModalComponent, typeof i83.SessionRestorationDialogComponent, typeof i84.ExportCodeModalComponent, typeof i85.ProgressIndicatorComponent, typeof i86.StepProgressCardComponent, typeof i87.StepStatusCardComponent, typeof i88.DbVerificationStepComponent, typeof i89.DbQueryExecutionItemComponent, typeof i90.TestCaseNormalStepComponent, typeof i91.TestCaseLoopStepComponent, typeof i92.TestCaseConditionStepComponent, typeof i93.TestCaseStepGroupComponent, typeof i94.TestCaseDetailsRendererComponent, typeof i95.TestCaseApiStepComponent, typeof i96.TestCaseDatabaseStepComponent, typeof i97.TestCaseAiAgentStepComponent, typeof i99.TestCaseUploadStepComponent, typeof i100.TestCaseScreenshotStepComponent, typeof i101.TestCaseScrollStepComponent, typeof i102.TestCaseVerifyUrlStepComponent, typeof i103.TestCaseRestoreSessionStepComponent, typeof i104.TestCaseCustomCodeStepComponent, typeof i105.CustomEditStepComponent, typeof i106.ItemListComponent, typeof i107.TestDataModalComponent, typeof i108.CreateStepGroupComponent, typeof i109.DeleteStepsComponent, typeof i110.RunExecutionAlertComponent, typeof i111.ApiEditStepComponent, typeof i112.LiveConversationComponent, typeof i113.StepBuilderActionComponent, typeof i114.StepBuilderLoopComponent, typeof i115.ElementPopupComponent, typeof i116.ElementFormComponent, typeof i117.StepBuilderConditionComponent, typeof i118.StepBuilderDatabaseComponent, typeof i119.StepBuilderAiAgentComponent, typeof i76.CodeEditorComponent, typeof i120.StepBuilderCustomCodeComponent, typeof i121.StepBuilderRecordStepComponent, typeof i122.StepBuilderDocumentGenerationTemplateStepComponent, typeof i123.ElementListComponent, typeof i124.StepBuilderDocumentComponent, typeof i125.DetailSidePanelComponent, typeof i126.DetailDrawerComponent, typeof i127.DetailDrawerTabComponent, typeof i128.DetailDrawerTabContentDirective, typeof i129.TestCaseDetailsComponent, typeof i130.TestCaseDetailsEditComponent, typeof i131.StepBuilderGroupComponent, typeof i132.StepDetailsDrawerComponent, typeof i133.TemplateVariablesFormComponent, typeof i134.AdvancedVariablesFormComponent, typeof i137.QuestionnaireListComponent, typeof i138.ChangeHistoryComponent, typeof i140.VersionHistoryListComponent, typeof i141.VersionHistoryCompareComponent, typeof i142.VersionHistoryDetailComponent, typeof i143.VersionHistoryRestoreConfirmComponent, typeof i144.NewVersionHistoryDetailComponent]>;
|
|
175
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.DialogComponent, typeof i8.DynamicTableComponent, typeof i9.DynamicCellTemplateDirective, typeof i9.DynamicHeaderTemplateDirective, typeof i10.DynamicCellContainerDirective, typeof i11.PaginationComponent, typeof i12.ActionMenuButtonComponent, typeof i13.OtherButtonComponent, typeof i14.DynamicFilterComponent, typeof i15.DaterangepickerDirective, typeof i16.DaterangepickerComponent, typeof i17.ColumnVisibilityComponent, typeof i18.TableActionToolbarComponent, typeof i19.MetricsCardComponent, typeof i20.MetricsBlockComponent, typeof i21.ChartCardComponent, typeof i22.ProgressTextCardComponent, typeof i23.DashboardHeaderComponent, typeof i24.WorkspaceSelectorComponent, typeof i25.CoverageModuleCardComponent, typeof i26.TestDistributionCardComponent, typeof i27.FailedTestCasesCardComponent, typeof i28.DynamicSelectFieldComponent, typeof i29.AddPrerequisiteCasesSectionComponent, typeof i30.SelectedFiltersComponent, typeof i31.InsightCardComponent, typeof i32.BadgeComponent, typeof i33.DropdownButtonComponent, typeof i34.HeatErrorMapCellComponent, typeof i35.EmptyStateComponent, typeof i36.TableTemplateComponent, typeof i37.FullTableLoaderComponent, typeof i38.TableDataLoaderComponent, typeof i39.BasicStepComponent, typeof i40.StepRendererComponent, typeof i41.StepGroupComponent, typeof i42.LoopStepComponent, typeof i43.ConditionStepComponent, typeof i44.ConditionDebugStepComponent, typeof i45.ConditionBranchEditorComponent, typeof i46.FailedStepComponent, typeof i47.UpdatedFailedStepComponent, typeof i48.ViewMoreFailedStepButtonComponent, typeof i49.SelfHealAnalysisComponent, typeof i50.AIAgentStepComponent, typeof i51.AIActionStepComponent, typeof i52.ApiStepComponent, typeof i53.FileDownloadStepComponent, typeof i54.DocumentVerificationStepComponent, typeof i55.LiveExecutionStepComponent, typeof i56.AiLogsWithReasoningComponent, typeof i57.JumpToStepModalComponent, typeof i58.BreakpointsModalComponent, typeof i59.RecordingBannerComponent, typeof i60.ReviewRecordedStepsModalComponent, typeof i61.MainStepCollapseComponent, typeof i62.VisualComparisonComponent, typeof i63.SimulatorComponent, typeof i64.ConsoleAlertComponent, typeof i65.AiDebugAlertComponent, typeof i66.NetworkRequestComponent, typeof i67.RunHistoryCardComponent, typeof i68.AiPromptCardComponent, typeof i69.VisualDifferenceModalComponent, typeof i70.ConfigurationCardComponent, typeof i71.CompareRunsComponent, typeof i72.IterationsLoopComponent, typeof i73.FailedStepCardComponent, typeof i74.CustomInputComponent, typeof i75.MixedVariableInputComponent, typeof i76.CustomTextareaComponent, typeof i77.CodeEditorComponent, typeof i78.CustomToggleComponent, typeof i79.FileUploadComponent, typeof i80.AiReasoningComponent, typeof i81.ExecutionResultModalComponent, typeof i82.SessionChangesModalComponent, typeof i83.ErrorModalComponent, typeof i84.SessionRestorationDialogComponent, typeof i85.ExportCodeModalComponent, typeof i86.ProgressIndicatorComponent, typeof i87.StepProgressCardComponent, typeof i88.StepStatusCardComponent, typeof i89.DbVerificationStepComponent, typeof i90.DbQueryExecutionItemComponent, typeof i91.TestCaseNormalStepComponent, typeof i92.TestCaseLoopStepComponent, typeof i93.TestCaseConditionStepComponent, typeof i94.TestCaseStepGroupComponent, typeof i95.TestCaseDetailsRendererComponent, typeof i96.TestCaseApiStepComponent, typeof i97.TestCaseDatabaseStepComponent, typeof i98.TestCaseAiAgentStepComponent, typeof i99.TestCaseAiVerifyStepComponent, typeof i100.TestCaseUploadStepComponent, typeof i101.TestCaseScreenshotStepComponent, typeof i102.TestCaseScrollStepComponent, typeof i103.TestCaseVerifyUrlStepComponent, typeof i104.TestCaseRestoreSessionStepComponent, typeof i105.TestCaseCustomCodeStepComponent, typeof i106.CustomEditStepComponent, typeof i107.ItemListComponent, typeof i108.TestDataModalComponent, typeof i109.CreateStepGroupComponent, typeof i110.DeleteStepsComponent, typeof i111.RunExecutionAlertComponent, typeof i112.ApiEditStepComponent, typeof i113.LiveConversationComponent, typeof i114.StepBuilderActionComponent, typeof i115.StepBuilderLoopComponent, typeof i116.ElementPopupComponent, typeof i117.ElementFormComponent, typeof i118.StepBuilderConditionComponent, typeof i119.StepBuilderDatabaseComponent, typeof i120.StepBuilderAiAgentComponent, typeof i77.CodeEditorComponent, typeof i121.StepBuilderCustomCodeComponent, typeof i122.StepBuilderRecordStepComponent, typeof i123.StepBuilderDocumentGenerationTemplateStepComponent, typeof i124.ElementListComponent, typeof i125.StepBuilderDocumentComponent, typeof i126.DetailSidePanelComponent, typeof i127.DetailDrawerComponent, typeof i128.DetailDrawerTabComponent, typeof i129.DetailDrawerTabContentDirective, typeof i130.TestCaseDetailsComponent, typeof i131.TestCaseDetailsEditComponent, typeof i132.StepBuilderGroupComponent, typeof i133.StepDetailsDrawerComponent, typeof i134.TemplateVariablesFormComponent, typeof i135.AdvancedVariablesFormComponent, typeof i136.StepDetailsModalComponent, typeof i137.SafeHtmlPipe, typeof i138.QuestionnaireListComponent, typeof i139.ChangeHistoryComponent, typeof i140.CamelToTitlePipe, typeof i141.VersionHistoryListComponent, typeof i142.VersionHistoryCompareComponent, typeof i143.VersionHistoryDetailComponent, typeof i144.VersionHistoryRestoreConfirmComponent, typeof i145.NewVersionHistoryDetailComponent], [typeof i146.CommonModule, typeof i147.FormsModule, typeof i147.ReactiveFormsModule, typeof i148.NoopAnimationsModule, typeof i149.MatIconModule, typeof i150.MatMenuModule, typeof i151.MatButtonModule, typeof i152.MatFormFieldModule, typeof i153.MatSelectModule, typeof i154.MatOptionModule, typeof i155.MatCheckboxModule, typeof i156.MatRadioModule, typeof i157.MatSlideToggleModule, typeof i158.MatDatepickerModule, typeof i154.MatNativeDateModule, typeof i159.MatProgressSpinnerModule, typeof i160.MatTooltipModule, typeof i161.MatDialogModule, typeof i162.MatTableModule, typeof i163.MatInputModule, typeof i164.OverlayModule, typeof i165.PortalModule, typeof i166.ScrollingModule, typeof i167.NgxTypedJsModule, typeof i168.DndModule, typeof i169.MonacoEditorModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.DialogComponent, typeof i8.DynamicTableComponent, typeof i9.DynamicCellTemplateDirective, typeof i9.DynamicHeaderTemplateDirective, typeof i10.DynamicCellContainerDirective, typeof i11.PaginationComponent, typeof i12.ActionMenuButtonComponent, typeof i13.OtherButtonComponent, typeof i14.DynamicFilterComponent, typeof i15.DaterangepickerDirective, typeof i16.DaterangepickerComponent, typeof i17.ColumnVisibilityComponent, typeof i18.TableActionToolbarComponent, typeof i19.MetricsCardComponent, typeof i21.ChartCardComponent, typeof i22.ProgressTextCardComponent, typeof i23.DashboardHeaderComponent, typeof i24.WorkspaceSelectorComponent, typeof i25.CoverageModuleCardComponent, typeof i26.TestDistributionCardComponent, typeof i27.FailedTestCasesCardComponent, typeof i28.DynamicSelectFieldComponent, typeof i29.AddPrerequisiteCasesSectionComponent, typeof i30.SelectedFiltersComponent, typeof i31.InsightCardComponent, typeof i32.BadgeComponent, typeof i33.DropdownButtonComponent, typeof i34.HeatErrorMapCellComponent, typeof i35.EmptyStateComponent, typeof i36.TableTemplateComponent, typeof i37.FullTableLoaderComponent, typeof i38.TableDataLoaderComponent, typeof i39.BasicStepComponent, typeof i40.StepRendererComponent, typeof i41.StepGroupComponent, typeof i42.LoopStepComponent, typeof i43.ConditionStepComponent, typeof i44.ConditionDebugStepComponent, typeof i45.ConditionBranchEditorComponent, typeof i46.FailedStepComponent, typeof i44.ConditionDebugStepComponent, typeof i47.UpdatedFailedStepComponent, typeof i48.ViewMoreFailedStepButtonComponent, typeof i49.SelfHealAnalysisComponent, typeof i50.AIAgentStepComponent, typeof i51.AIActionStepComponent, typeof i52.ApiStepComponent, typeof i53.FileDownloadStepComponent, typeof i54.DocumentVerificationStepComponent, typeof i55.LiveExecutionStepComponent, typeof i56.AiLogsWithReasoningComponent, typeof i57.JumpToStepModalComponent, typeof i58.BreakpointsModalComponent, typeof i59.RecordingBannerComponent, typeof i60.ReviewRecordedStepsModalComponent, typeof i61.MainStepCollapseComponent, typeof i62.VisualComparisonComponent, typeof i63.SimulatorComponent, typeof i64.ConsoleAlertComponent, typeof i65.AiDebugAlertComponent, typeof i66.NetworkRequestComponent, typeof i67.RunHistoryCardComponent, typeof i68.AiPromptCardComponent, typeof i69.VisualDifferenceModalComponent, typeof i70.ConfigurationCardComponent, typeof i71.CompareRunsComponent, typeof i72.IterationsLoopComponent, typeof i73.FailedStepCardComponent, typeof i74.CustomInputComponent, typeof i75.MixedVariableInputComponent, typeof i76.CustomTextareaComponent, typeof i77.CodeEditorComponent, typeof i78.CustomToggleComponent, typeof i79.FileUploadComponent, typeof i80.AiReasoningComponent, typeof i81.ExecutionResultModalComponent, typeof i82.SessionChangesModalComponent, typeof i83.ErrorModalComponent, typeof i84.SessionRestorationDialogComponent, typeof i85.ExportCodeModalComponent, typeof i86.ProgressIndicatorComponent, typeof i87.StepProgressCardComponent, typeof i88.StepStatusCardComponent, typeof i89.DbVerificationStepComponent, typeof i90.DbQueryExecutionItemComponent, typeof i91.TestCaseNormalStepComponent, typeof i92.TestCaseLoopStepComponent, typeof i93.TestCaseConditionStepComponent, typeof i94.TestCaseStepGroupComponent, typeof i95.TestCaseDetailsRendererComponent, typeof i96.TestCaseApiStepComponent, typeof i97.TestCaseDatabaseStepComponent, typeof i98.TestCaseAiAgentStepComponent, typeof i100.TestCaseUploadStepComponent, typeof i101.TestCaseScreenshotStepComponent, typeof i102.TestCaseScrollStepComponent, typeof i103.TestCaseVerifyUrlStepComponent, typeof i104.TestCaseRestoreSessionStepComponent, typeof i105.TestCaseCustomCodeStepComponent, typeof i106.CustomEditStepComponent, typeof i107.ItemListComponent, typeof i108.TestDataModalComponent, typeof i109.CreateStepGroupComponent, typeof i110.DeleteStepsComponent, typeof i111.RunExecutionAlertComponent, typeof i112.ApiEditStepComponent, typeof i113.LiveConversationComponent, typeof i114.StepBuilderActionComponent, typeof i115.StepBuilderLoopComponent, typeof i116.ElementPopupComponent, typeof i117.ElementFormComponent, typeof i118.StepBuilderConditionComponent, typeof i119.StepBuilderDatabaseComponent, typeof i120.StepBuilderAiAgentComponent, typeof i77.CodeEditorComponent, typeof i121.StepBuilderCustomCodeComponent, typeof i122.StepBuilderRecordStepComponent, typeof i123.StepBuilderDocumentGenerationTemplateStepComponent, typeof i124.ElementListComponent, typeof i125.StepBuilderDocumentComponent, typeof i126.DetailSidePanelComponent, typeof i127.DetailDrawerComponent, typeof i128.DetailDrawerTabComponent, typeof i129.DetailDrawerTabContentDirective, typeof i130.TestCaseDetailsComponent, typeof i131.TestCaseDetailsEditComponent, typeof i132.StepBuilderGroupComponent, typeof i133.StepDetailsDrawerComponent, typeof i134.TemplateVariablesFormComponent, typeof i135.AdvancedVariablesFormComponent, typeof i138.QuestionnaireListComponent, typeof i139.ChangeHistoryComponent, typeof i141.VersionHistoryListComponent, typeof i142.VersionHistoryCompareComponent, typeof i143.VersionHistoryDetailComponent, typeof i144.VersionHistoryRestoreConfirmComponent, typeof i145.NewVersionHistoryDetailComponent]>;
|
|
175
176
|
static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
|
|
176
177
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -59,6 +59,7 @@ export * from './lib/compare-runs/compare-runs.component';
|
|
|
59
59
|
export * from './lib/iterations-loop/iterations-loop.component';
|
|
60
60
|
export * from './lib/failed-step-card/failed-step-card.component';
|
|
61
61
|
export * from './lib/custom-input/custom-input.component';
|
|
62
|
+
export * from './lib/mixed-variable-input/mixed-variable-input.component';
|
|
62
63
|
export * from './lib/custom-textarea/custom-textarea.component';
|
|
63
64
|
export * from './lib/code-editor/code-editor.component';
|
|
64
65
|
export * from './lib/custom-toggle/custom-toggle.component';
|