@cqa-lib/cqa-ui 1.1.247 → 1.1.249
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 +31 -17
- package/esm2020/lib/execution-screen/recording-banner/recording-banner.component.mjs +30 -0
- package/esm2020/lib/execution-screen/review-recorded-steps-modal/review-recorded-steps-modal.component.mjs +112 -0
- package/esm2020/lib/step-builder/step-builder-action/step-builder-action.component.mjs +19 -6
- 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 +6 -3
- package/esm2020/lib/step-builder/template-variables-form/template-variables-form.component.mjs +493 -56
- package/esm2020/lib/test-case-details/condition-step/condition-step.component.mjs +3 -3
- package/esm2020/lib/test-case-details/delete-steps/delete-steps.component.mjs +2 -3
- package/esm2020/lib/test-case-details/loop-step/loop-step.component.mjs +3 -3
- package/esm2020/lib/ui-kit.module.mjs +11 -1
- package/esm2020/public-api.mjs +3 -1
- package/fesm2015/cqa-lib-cqa-ui.mjs +709 -92
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +695 -87
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/dynamic-select/dynamic-select-field.component.d.ts +8 -0
- package/lib/execution-screen/recording-banner/recording-banner.component.d.ts +13 -0
- package/lib/execution-screen/review-recorded-steps-modal/review-recorded-steps-modal.component.d.ts +37 -0
- package/lib/step-builder/step-builder-action/step-builder-action.component.d.ts +7 -3
- package/lib/step-builder/step-builder-condition/step-builder-condition.component.d.ts +5 -1
- package/lib/step-builder/step-builder-loop/step-builder-loop.component.d.ts +5 -1
- package/lib/step-builder/template-variables-form/template-variables-form.component.d.ts +29 -1
- package/lib/ui-kit.module.d.ts +97 -95
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/styles.css +1 -1
|
@@ -55,6 +55,7 @@ export interface DynamicSelectFieldConfig {
|
|
|
55
55
|
allowCustomValue?: boolean;
|
|
56
56
|
options: SelectOption[];
|
|
57
57
|
isCompareRuns?: boolean;
|
|
58
|
+
valueBy?: string;
|
|
58
59
|
}
|
|
59
60
|
export declare class DynamicSelectFieldComponent implements OnInit, OnChanges {
|
|
60
61
|
readonly SELECT_ALL_VALUE: string;
|
|
@@ -105,6 +106,13 @@ export declare class DynamicSelectFieldComponent implements OnInit, OnChanges {
|
|
|
105
106
|
get useCheckboxStyle(): boolean;
|
|
106
107
|
get allSelected(): boolean;
|
|
107
108
|
private toBoolean;
|
|
109
|
+
/**
|
|
110
|
+
* Get the value for an option based on the valueBy property.
|
|
111
|
+
* If valueBy is provided, use that property from the option.
|
|
112
|
+
* Otherwise, fall back to id ?? value (default behavior).
|
|
113
|
+
* Must be public for template access.
|
|
114
|
+
*/
|
|
115
|
+
getOptionValue(opt: SelectOption): any;
|
|
108
116
|
/**
|
|
109
117
|
* Sync the form control's disabled state from config.
|
|
110
118
|
* Use the FormControl API instead of [disabled] in the template to avoid Angular's
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class RecordingBannerComponent {
|
|
4
|
+
/** Whether the banner is visible (recording active) */
|
|
5
|
+
isVisible: boolean;
|
|
6
|
+
/** Number of steps captured so far */
|
|
7
|
+
stepsCaptured: number;
|
|
8
|
+
/** Emitted when the user clicks Stop */
|
|
9
|
+
stopRecording: EventEmitter<void>;
|
|
10
|
+
onStop(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RecordingBannerComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RecordingBannerComponent, "cqa-recording-banner", never, { "isVisible": "isVisible"; "stepsCaptured": "stepsCaptured"; }, { "stopRecording": "stopRecording"; }, never, never>;
|
|
13
|
+
}
|
package/lib/execution-screen/review-recorded-steps-modal/review-recorded-steps-modal.component.d.ts
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { DndDropEvent } from 'ngx-drag-drop';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export interface RecordedStepItem {
|
|
5
|
+
id: string;
|
|
6
|
+
label: string;
|
|
7
|
+
}
|
|
8
|
+
export declare type SaveOption = 'run_only' | 'test_case';
|
|
9
|
+
export declare class ReviewRecordedStepsModalComponent {
|
|
10
|
+
isOpen: boolean;
|
|
11
|
+
title: string;
|
|
12
|
+
steps: RecordedStepItem[];
|
|
13
|
+
saveOption: SaveOption;
|
|
14
|
+
saveButtonDisabled: boolean;
|
|
15
|
+
closeModal: EventEmitter<void>;
|
|
16
|
+
discard: EventEmitter<void>;
|
|
17
|
+
save: EventEmitter<void>;
|
|
18
|
+
saveOptionChange: EventEmitter<SaveOption>;
|
|
19
|
+
stepLabelChange: EventEmitter<{
|
|
20
|
+
id: string;
|
|
21
|
+
label: string;
|
|
22
|
+
}>;
|
|
23
|
+
removeStep: EventEmitter<string>;
|
|
24
|
+
reorderSteps: EventEmitter<RecordedStepItem[]>;
|
|
25
|
+
onBackdropClick(event: MouseEvent): void;
|
|
26
|
+
onClose(): void;
|
|
27
|
+
onDiscard(): void;
|
|
28
|
+
onSave(): void;
|
|
29
|
+
onSaveOptionChange(value: SaveOption): void;
|
|
30
|
+
onStepLabelChange(id: string, label: string): void;
|
|
31
|
+
onRemoveStep(id: string, event: Event): void;
|
|
32
|
+
onDndDrop(event: DndDropEvent): void;
|
|
33
|
+
onEscape(): void;
|
|
34
|
+
trackByStepId(_index: number, step: RecordedStepItem): string;
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReviewRecordedStepsModalComponent, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ReviewRecordedStepsModalComponent, "cqa-review-recorded-steps-modal", never, { "isOpen": "isOpen"; "title": "title"; "steps": "steps"; "saveOption": "saveOption"; "saveButtonDisabled": "saveButtonDisabled"; }, { "closeModal": "closeModal"; "discard": "discard"; "save": "save"; "saveOptionChange": "saveOptionChange"; "stepLabelChange": "stepLabelChange"; "removeStep": "removeStep"; "reorderSteps": "reorderSteps"; }, never, never>;
|
|
37
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EventEmitter, OnInit, OnChanges, SimpleChanges, OnDestroy } from '@angular/core';
|
|
2
2
|
import { FormBuilder, FormGroup, FormArray } from '@angular/forms';
|
|
3
3
|
import { DynamicSelectFieldConfig } from '../../dynamic-select/dynamic-select-field.component';
|
|
4
|
-
import { TemplateVariablesFormComponent } from '../template-variables-form/template-variables-form.component';
|
|
4
|
+
import { TemplateVariable, TemplateVariablesFormComponent } from '../template-variables-form/template-variables-form.component';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
interface Element {
|
|
7
7
|
id?: number;
|
|
@@ -85,6 +85,10 @@ export declare class StepBuilderActionComponent implements OnInit, OnChanges, On
|
|
|
85
85
|
templateChanged: EventEmitter<ActionTemplate>;
|
|
86
86
|
loadMoreElements: EventEmitter<void>;
|
|
87
87
|
searchElements: EventEmitter<string>;
|
|
88
|
+
searchElementsByScreenName: EventEmitter<{
|
|
89
|
+
screenNameId: number;
|
|
90
|
+
searchTerm?: string;
|
|
91
|
+
}>;
|
|
88
92
|
createElement: EventEmitter<any>;
|
|
89
93
|
searchScreenName: EventEmitter<string>;
|
|
90
94
|
loadMoreScreenNames: EventEmitter<string>;
|
|
@@ -105,7 +109,7 @@ export declare class StepBuilderActionComponent implements OnInit, OnChanges, On
|
|
|
105
109
|
metadata: string;
|
|
106
110
|
description: string;
|
|
107
111
|
advancedExpanded: boolean;
|
|
108
|
-
templateVariables:
|
|
112
|
+
templateVariables: TemplateVariable[];
|
|
109
113
|
variablesForm: FormArray;
|
|
110
114
|
updatedHtmlGrammar: string;
|
|
111
115
|
createElementVisible: boolean;
|
|
@@ -170,6 +174,6 @@ export declare class StepBuilderActionComponent implements OnInit, OnChanges, On
|
|
|
170
174
|
*/
|
|
171
175
|
get environmentVariableAvailable(): boolean;
|
|
172
176
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepBuilderActionComponent, never>;
|
|
173
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderActionComponent, "cqa-step-builder-action", never, { "showHeader": "showHeader"; "templates": "templates"; "searchPlaceholder": "searchPlaceholder"; "setTemplateVariables": "setTemplateVariables"; "preventSelectTemplate": "preventSelectTemplate"; "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"; }, { "templateChanged": "templateChanged"; "loadMoreElements": "loadMoreElements"; "searchElements": "searchElements"; "createElement": "createElement"; "searchScreenName": "searchScreenName"; "loadMoreScreenNames": "loadMoreScreenNames"; "createScreenNameRequest": "createScreenNameRequest"; "searchParameters": "searchParameters"; "loadMoreParameters": "loadMoreParameters"; "searchEnvironments": "searchEnvironments"; "loadMoreEnvironments": "loadMoreEnvironments"; "createStep": "createStep"; "cancelled": "cancelled"; "redirectToParameter": "redirectToParameter"; "redirectToEnvironment": "redirectToEnvironment"; }, never, never>;
|
|
177
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderActionComponent, "cqa-step-builder-action", never, { "showHeader": "showHeader"; "templates": "templates"; "searchPlaceholder": "searchPlaceholder"; "setTemplateVariables": "setTemplateVariables"; "preventSelectTemplate": "preventSelectTemplate"; "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"; }, { "templateChanged": "templateChanged"; "loadMoreElements": "loadMoreElements"; "searchElements": "searchElements"; "searchElementsByScreenName": "searchElementsByScreenName"; "createElement": "createElement"; "searchScreenName": "searchScreenName"; "loadMoreScreenNames": "loadMoreScreenNames"; "createScreenNameRequest": "createScreenNameRequest"; "searchParameters": "searchParameters"; "loadMoreParameters": "loadMoreParameters"; "searchEnvironments": "searchEnvironments"; "loadMoreEnvironments": "loadMoreEnvironments"; "createStep": "createStep"; "cancelled": "cancelled"; "redirectToParameter": "redirectToParameter"; "redirectToEnvironment": "redirectToEnvironment"; }, never, never>;
|
|
174
178
|
}
|
|
175
179
|
export {};
|
|
@@ -65,6 +65,10 @@ export declare class StepBuilderConditionComponent implements OnInit, OnChanges
|
|
|
65
65
|
cancelled: EventEmitter<void>;
|
|
66
66
|
loadMoreElements: EventEmitter<void>;
|
|
67
67
|
searchElements: EventEmitter<string>;
|
|
68
|
+
searchElementsByScreenName: EventEmitter<{
|
|
69
|
+
screenNameId: number;
|
|
70
|
+
searchTerm?: string;
|
|
71
|
+
}>;
|
|
68
72
|
createElement: EventEmitter<any>;
|
|
69
73
|
searchScreenName: EventEmitter<string>;
|
|
70
74
|
loadMoreScreenNames: EventEmitter<string>;
|
|
@@ -125,6 +129,6 @@ export declare class StepBuilderConditionComponent implements OnInit, OnChanges
|
|
|
125
129
|
onCancel(): void;
|
|
126
130
|
onCreateStep(): void;
|
|
127
131
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepBuilderConditionComponent, never>;
|
|
128
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderConditionComponent, "cqa-step-builder-condition", never, { "operatorOptions": "operatorOptions"; "conditionTemplates": "conditionTemplates"; "setConditionTemplateVariables": "setConditionTemplateVariables"; "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"; "createElement": "createElement"; "searchScreenName": "searchScreenName"; "loadMoreScreenNames": "loadMoreScreenNames"; "createScreenNameRequest": "createScreenNameRequest"; "searchParameters": "searchParameters"; "loadMoreParameters": "loadMoreParameters"; "searchEnvironments": "searchEnvironments"; "loadMoreEnvironments": "loadMoreEnvironments"; "redirectToParameter": "redirectToParameter"; "redirectToEnvironment": "redirectToEnvironment"; }, never, never>;
|
|
132
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderConditionComponent, "cqa-step-builder-condition", never, { "operatorOptions": "operatorOptions"; "conditionTemplates": "conditionTemplates"; "setConditionTemplateVariables": "setConditionTemplateVariables"; "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>;
|
|
129
133
|
}
|
|
130
134
|
export {};
|
|
@@ -77,6 +77,10 @@ export declare class StepBuilderLoopComponent implements OnInit, OnChanges {
|
|
|
77
77
|
defaultTestDataStartIndex?: number;
|
|
78
78
|
loadMoreElements: EventEmitter<void>;
|
|
79
79
|
searchElements: EventEmitter<string>;
|
|
80
|
+
searchElementsByScreenName: EventEmitter<{
|
|
81
|
+
screenNameId: number;
|
|
82
|
+
searchTerm?: string;
|
|
83
|
+
}>;
|
|
80
84
|
createElement: EventEmitter<any>;
|
|
81
85
|
searchScreenName: EventEmitter<string>;
|
|
82
86
|
loadMoreScreenNames: EventEmitter<string>;
|
|
@@ -146,5 +150,5 @@ export declare class StepBuilderLoopComponent implements OnInit, OnChanges {
|
|
|
146
150
|
filterWhileTemplates(query: string): void;
|
|
147
151
|
selectWhileTemplate(template: any): void;
|
|
148
152
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepBuilderLoopComponent, never>;
|
|
149
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderLoopComponent, "cqa-step-builder-loop", never, { "loopType": "loopType"; "selectOptions": "selectOptions"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "setWhileTemplateVariables": "setWhileTemplateVariables"; "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"; }, { "createStep": "createStep"; "cancelled": "cancelled"; "loopTypeChange": "loopTypeChange"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; "loadMoreElements": "loadMoreElements"; "searchElements": "searchElements"; "createElement": "createElement"; "searchScreenName": "searchScreenName"; "loadMoreScreenNames": "loadMoreScreenNames"; "createScreenNameRequest": "createScreenNameRequest"; "cancelElementForm": "cancelElementForm"; "searchParameters": "searchParameters"; "loadMoreParameters": "loadMoreParameters"; "searchEnvironments": "searchEnvironments"; "loadMoreEnvironments": "loadMoreEnvironments"; "redirectToParameter": "redirectToParameter"; "redirectToEnvironment": "redirectToEnvironment"; }, never, never>;
|
|
153
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderLoopComponent, "cqa-step-builder-loop", never, { "loopType": "loopType"; "selectOptions": "selectOptions"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "setWhileTemplateVariables": "setWhileTemplateVariables"; "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"; }, { "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>;
|
|
150
154
|
}
|
|
@@ -26,6 +26,11 @@ export interface TemplateVariable {
|
|
|
26
26
|
selectedTestDataProfile?: string;
|
|
27
27
|
selectedTestDataProfileId?: number;
|
|
28
28
|
selectedDataSet?: string;
|
|
29
|
+
selectedScreenName?: string;
|
|
30
|
+
screenNameId?: number;
|
|
31
|
+
elementId?: number;
|
|
32
|
+
elementLocator?: string;
|
|
33
|
+
elementName?: string;
|
|
29
34
|
}
|
|
30
35
|
export declare class TemplateVariablesFormComponent implements OnChanges {
|
|
31
36
|
private cdr;
|
|
@@ -76,6 +81,10 @@ export declare class TemplateVariablesFormComponent implements OnChanges {
|
|
|
76
81
|
descriptionChange: EventEmitter<string>;
|
|
77
82
|
loadMoreElements: EventEmitter<void>;
|
|
78
83
|
searchElements: EventEmitter<string>;
|
|
84
|
+
searchElementsByScreenName: EventEmitter<{
|
|
85
|
+
screenNameId: number;
|
|
86
|
+
searchTerm?: string;
|
|
87
|
+
}>;
|
|
79
88
|
createElement: EventEmitter<ElementCreatePayload>;
|
|
80
89
|
searchScreenName: EventEmitter<string>;
|
|
81
90
|
loadMoreScreenNames: EventEmitter<string>;
|
|
@@ -91,6 +100,8 @@ export declare class TemplateVariablesFormComponent implements OnChanges {
|
|
|
91
100
|
private parameterSelectConfigCache;
|
|
92
101
|
private environmentSelectConfigCache;
|
|
93
102
|
private environmentParameterSelectConfigCache;
|
|
103
|
+
private screenNameSelectConfigCache;
|
|
104
|
+
private elementSelectConfigCache;
|
|
94
105
|
private testDataProfileSelectConfigCache;
|
|
95
106
|
private dataSetSelectConfigCache;
|
|
96
107
|
private parameterForDataSetSelectConfigCache;
|
|
@@ -237,11 +248,28 @@ export declare class TemplateVariablesFormComponent implements OnChanges {
|
|
|
237
248
|
* Check if current data type is environment
|
|
238
249
|
*/
|
|
239
250
|
isEnvironmentType(variable: TemplateVariable): boolean;
|
|
251
|
+
/**
|
|
252
|
+
* Check if variable is element type (dataKey === 'element')
|
|
253
|
+
*/
|
|
254
|
+
isElementType(variable: TemplateVariable): boolean;
|
|
255
|
+
/**
|
|
256
|
+
* Check if screen name is selected for an element variable
|
|
257
|
+
*/
|
|
258
|
+
hasSelectedScreenName(variable: TemplateVariable): boolean;
|
|
259
|
+
/**
|
|
260
|
+
* Get select config for screen name dropdown (first dropdown for element variables)
|
|
261
|
+
*/
|
|
262
|
+
getScreenNameSelectConfig(variable: TemplateVariable, index: number): DynamicSelectFieldConfig;
|
|
263
|
+
/**
|
|
264
|
+
* Get select config for element dropdown (second dropdown - filtered by screen name)
|
|
265
|
+
* Optimized to return immediately from cache to avoid repeated calls during change detection
|
|
266
|
+
*/
|
|
267
|
+
getElementSelectConfig(variable: TemplateVariable, index: number): DynamicSelectFieldConfig;
|
|
240
268
|
/**
|
|
241
269
|
* Check if current data type is runtime
|
|
242
270
|
*/
|
|
243
271
|
isRuntimeType(variable: TemplateVariable): boolean;
|
|
244
272
|
static ɵfac: i0.ɵɵFactoryDeclaration<TemplateVariablesFormComponent, never>;
|
|
245
|
-
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"; "environmentOptions": "environmentOptions"; "hasMoreEnvironments": "hasMoreEnvironments"; "isLoadingEnvironments": "isLoadingEnvironments"; "defaultTestDataProfileId": "defaultTestDataProfileId"; "defaultTestDataStartIndex": "defaultTestDataStartIndex"; "isEditInDepth": "isEditInDepth"; "createElementVisible": "createElementVisible"; }, { "variableValueChange": "variableValueChange"; "variableBooleanChange": "variableBooleanChange"; "metadataChange": "metadataChange"; "descriptionChange": "descriptionChange"; "loadMoreElements": "loadMoreElements"; "searchElements": "searchElements"; "createElement": "createElement"; "searchScreenName": "searchScreenName"; "loadMoreScreenNames": "loadMoreScreenNames"; "createScreenNameRequest": "createScreenNameRequest"; "searchParameters": "searchParameters"; "loadMoreParameters": "loadMoreParameters"; "searchEnvironments": "searchEnvironments"; "loadMoreEnvironments": "loadMoreEnvironments"; "cancelElementForm": "cancelElementForm"; "elementFormVisibilityChange": "elementFormVisibilityChange"; }, never, never>;
|
|
273
|
+
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"; "environmentOptions": "environmentOptions"; "hasMoreEnvironments": "hasMoreEnvironments"; "isLoadingEnvironments": "isLoadingEnvironments"; "defaultTestDataProfileId": "defaultTestDataProfileId"; "defaultTestDataStartIndex": "defaultTestDataStartIndex"; "isEditInDepth": "isEditInDepth"; "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"; "searchEnvironments": "searchEnvironments"; "loadMoreEnvironments": "loadMoreEnvironments"; "cancelElementForm": "cancelElementForm"; "elementFormVisibilityChange": "elementFormVisibilityChange"; }, never, never>;
|
|
246
274
|
}
|
|
247
275
|
export {};
|
package/lib/ui-kit.module.d.ts
CHANGED
|
@@ -53,103 +53,105 @@ import * as i50 from "./execution-screen/live-execution-step/live-execution-step
|
|
|
53
53
|
import * as i51 from "./execution-screen/ai-logs-with-reasoning/ai-logs-with-reasoning.component";
|
|
54
54
|
import * as i52 from "./execution-screen/jump-to-step-modal/jump-to-step-modal.component";
|
|
55
55
|
import * as i53 from "./execution-screen/breakpoints-modal/breakpoints-modal.component";
|
|
56
|
-
import * as i54 from "./execution-screen/
|
|
57
|
-
import * as i55 from "./execution-screen/
|
|
58
|
-
import * as i56 from "./
|
|
59
|
-
import * as i57 from "./
|
|
60
|
-
import * as i58 from "./
|
|
61
|
-
import * as i59 from "./
|
|
62
|
-
import * as i60 from "./
|
|
63
|
-
import * as i61 from "./
|
|
64
|
-
import * as i62 from "./
|
|
65
|
-
import * as i63 from "./
|
|
66
|
-
import * as i64 from "./
|
|
67
|
-
import * as i65 from "./
|
|
68
|
-
import * as i66 from "./
|
|
69
|
-
import * as i67 from "./
|
|
70
|
-
import * as i68 from "./custom-
|
|
71
|
-
import * as i69 from "./
|
|
72
|
-
import * as i70 from "./
|
|
73
|
-
import * as i71 from "./
|
|
74
|
-
import * as i72 from "./
|
|
75
|
-
import * as i73 from "./
|
|
76
|
-
import * as i74 from "./
|
|
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 "./
|
|
84
|
-
import * as i82 from "./test-case-details/
|
|
85
|
-
import * as i83 from "./test-case-details/step-
|
|
86
|
-
import * as i84 from "./test-case-details/
|
|
87
|
-
import * as i85 from "./test-case-details/
|
|
88
|
-
import * as i86 from "./test-case-details/
|
|
89
|
-
import * as i87 from "./test-case-details/
|
|
90
|
-
import * as i88 from "./test-case-details/
|
|
91
|
-
import * as i89 from "./test-case-details/
|
|
92
|
-
import * as i90 from "./test-case-details/
|
|
93
|
-
import * as i91 from "./test-case-details/
|
|
94
|
-
import * as i92 from "./test-case-details/
|
|
95
|
-
import * as i93 from "./test-case-details/
|
|
96
|
-
import * as i94 from "./test-case-details/
|
|
97
|
-
import * as i95 from "./test-case-details/
|
|
98
|
-
import * as i96 from "./
|
|
99
|
-
import * as i97 from "./test-case-details/
|
|
100
|
-
import * as i98 from "./
|
|
101
|
-
import * as i99 from "./test-case-details/
|
|
102
|
-
import * as i100 from "./test-case-details/
|
|
103
|
-
import * as i101 from "./
|
|
104
|
-
import * as i102 from "./
|
|
105
|
-
import * as i103 from "./
|
|
106
|
-
import * as i104 from "./
|
|
107
|
-
import * as i105 from "./
|
|
108
|
-
import * as i106 from "./
|
|
109
|
-
import * as i107 from "./
|
|
110
|
-
import * as i108 from "./step-builder/step-builder-
|
|
111
|
-
import * as i109 from "./step-builder/step-builder-
|
|
112
|
-
import * as i110 from "./step-builder/step-builder-
|
|
113
|
-
import * as i111 from "./step-builder/step-builder-
|
|
114
|
-
import * as i112 from "./
|
|
115
|
-
import * as i113 from "./step-builder/step-builder-document/step-builder-document.component";
|
|
116
|
-
import * as i114 from "./
|
|
117
|
-
import * as i115 from "./
|
|
118
|
-
import * as i116 from "./detail-
|
|
119
|
-
import * as i117 from "./detail-drawer/detail-drawer
|
|
120
|
-
import * as i118 from "./
|
|
121
|
-
import * as i119 from "./
|
|
122
|
-
import * as i120 from "./
|
|
123
|
-
import * as i121 from "./test-case-details/
|
|
124
|
-
import * as i122 from "./step-builder/
|
|
125
|
-
import * as i123 from "./
|
|
126
|
-
import * as i124 from "./
|
|
127
|
-
import * as i125 from "
|
|
128
|
-
import * as i126 from "
|
|
129
|
-
import * as i127 from "@angular/
|
|
130
|
-
import * as i128 from "@angular/
|
|
131
|
-
import * as i129 from "@angular/
|
|
132
|
-
import * as i130 from "@angular/material/
|
|
133
|
-
import * as i131 from "@angular/material/
|
|
134
|
-
import * as i132 from "@angular/material/
|
|
135
|
-
import * as i133 from "@angular/material/
|
|
136
|
-
import * as i134 from "@angular/material/
|
|
137
|
-
import * as i135 from "@angular/material/
|
|
138
|
-
import * as i136 from "@angular/material/
|
|
139
|
-
import * as i137 from "@angular/material/
|
|
140
|
-
import * as i138 from "@angular/material/
|
|
141
|
-
import * as i139 from "@angular/material/
|
|
142
|
-
import * as i140 from "@angular/material/
|
|
143
|
-
import * as i141 from "@angular/material/
|
|
144
|
-
import * as i142 from "@angular/material/
|
|
145
|
-
import * as i143 from "@angular/
|
|
146
|
-
import * as i144 from "@angular/
|
|
147
|
-
import * as i145 from "@angular/cdk/
|
|
148
|
-
import * as i146 from "
|
|
149
|
-
import * as i147 from "
|
|
56
|
+
import * as i54 from "./execution-screen/recording-banner/recording-banner.component";
|
|
57
|
+
import * as i55 from "./execution-screen/review-recorded-steps-modal/review-recorded-steps-modal.component";
|
|
58
|
+
import * as i56 from "./execution-screen/main-step-collapse/main-step-collapse.component";
|
|
59
|
+
import * as i57 from "./execution-screen/visual-comparison/visual-comparison.component";
|
|
60
|
+
import * as i58 from "./simulator/simulator.component";
|
|
61
|
+
import * as i59 from "./console-alert/console-alert.component";
|
|
62
|
+
import * as i60 from "./ai-debug-alert/ai-debug-alert.component";
|
|
63
|
+
import * as i61 from "./network-request/network-request.component";
|
|
64
|
+
import * as i62 from "./run-history-card/run-history-card.component";
|
|
65
|
+
import * as i63 from "./visual-difference-modal/visual-difference-modal.component";
|
|
66
|
+
import * as i64 from "./configuration-card/configuration-card.component";
|
|
67
|
+
import * as i65 from "./compare-runs/compare-runs.component";
|
|
68
|
+
import * as i66 from "./iterations-loop/iterations-loop.component";
|
|
69
|
+
import * as i67 from "./failed-step-card/failed-step-card.component";
|
|
70
|
+
import * as i68 from "./custom-input/custom-input.component";
|
|
71
|
+
import * as i69 from "./custom-textarea/custom-textarea.component";
|
|
72
|
+
import * as i70 from "./custom-toggle/custom-toggle.component";
|
|
73
|
+
import * as i71 from "./file-upload/file-upload.component";
|
|
74
|
+
import * as i72 from "./ai-reasoning/ai-reasoning.component";
|
|
75
|
+
import * as i73 from "./execution-result-modal/execution-result-modal.component";
|
|
76
|
+
import * as i74 from "./execution-screen/session-changes-modal/session-changes-modal.component";
|
|
77
|
+
import * as i75 from "./error-modal/error-modal.component";
|
|
78
|
+
import * as i76 from "./export-code-modal/export-code-modal.component";
|
|
79
|
+
import * as i77 from "./progress-indicator/progress-indicator.component";
|
|
80
|
+
import * as i78 from "./step-progress-card/step-progress-card.component";
|
|
81
|
+
import * as i79 from "./step-status-card/step-status-card.component";
|
|
82
|
+
import * as i80 from "./execution-screen/db-verification-step/db-verification-step.component";
|
|
83
|
+
import * as i81 from "./execution-screen/db-query-execution-item/db-query-execution-item.component";
|
|
84
|
+
import * as i82 from "./test-case-details/normal-step/normal-step.component";
|
|
85
|
+
import * as i83 from "./test-case-details/loop-step/loop-step.component";
|
|
86
|
+
import * as i84 from "./test-case-details/condition-step/condition-step.component";
|
|
87
|
+
import * as i85 from "./test-case-details/step-group/step-group.component";
|
|
88
|
+
import * as i86 from "./test-case-details/test-case-details-renderer/test-case-details-renderer.component";
|
|
89
|
+
import * as i87 from "./test-case-details/api-step/api-step.component";
|
|
90
|
+
import * as i88 from "./test-case-details/database-step/database-step.component";
|
|
91
|
+
import * as i89 from "./test-case-details/ai-agent-step/ai-agent-step.component";
|
|
92
|
+
import * as i90 from "./test-case-details/ai-verify-step/ai-verify-step.component";
|
|
93
|
+
import * as i91 from "./test-case-details/upload-step/upload-step.component";
|
|
94
|
+
import * as i92 from "./test-case-details/screenshot-step/screenshot-step.component";
|
|
95
|
+
import * as i93 from "./test-case-details/scroll-step/scroll-step.component";
|
|
96
|
+
import * as i94 from "./test-case-details/verify-url-step/verify-url-step.component";
|
|
97
|
+
import * as i95 from "./test-case-details/restore-session-step/restore-session-step.component";
|
|
98
|
+
import * as i96 from "./test-case-details/custom-code-step/custom-code-step.component";
|
|
99
|
+
import * as i97 from "./test-case-details/custom-edit-step/custom-edit-step.component";
|
|
100
|
+
import * as i98 from "./item-list/item-list.component";
|
|
101
|
+
import * as i99 from "./test-case-details/test-data-modal/test-data-modal.component";
|
|
102
|
+
import * as i100 from "./test-case-details/create-step-group/create-step-group.component";
|
|
103
|
+
import * as i101 from "./test-case-details/delete-steps/delete-steps.component";
|
|
104
|
+
import * as i102 from "./test-case-details/api-edit-step/api-edit-step.component";
|
|
105
|
+
import * as i103 from "./live-conversation/live-conversation.component";
|
|
106
|
+
import * as i104 from "./step-builder/step-builder-action/step-builder-action.component";
|
|
107
|
+
import * as i105 from "./step-builder/step-builder-loop/step-builder-loop.component";
|
|
108
|
+
import * as i106 from "./test-case-details/element-popup/element-popup.component";
|
|
109
|
+
import * as i107 from "./test-case-details/element-popup/element-form/element-form.component";
|
|
110
|
+
import * as i108 from "./step-builder/step-builder-condition/step-builder-condition.component";
|
|
111
|
+
import * as i109 from "./step-builder/step-builder-database/step-builder-database.component";
|
|
112
|
+
import * as i110 from "./step-builder/step-builder-ai-agent/step-builder-ai-agent.component";
|
|
113
|
+
import * as i111 from "./step-builder/step-builder-custom-code/step-builder-custom-code.component";
|
|
114
|
+
import * as i112 from "./step-builder/step-builder-record-step/step-builder-record-step.component";
|
|
115
|
+
import * as i113 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
|
|
116
|
+
import * as i114 from "./test-case-details/element-list/element-list.component";
|
|
117
|
+
import * as i115 from "./step-builder/step-builder-document/step-builder-document.component";
|
|
118
|
+
import * as i116 from "./detail-side-panel/detail-side-panel.component";
|
|
119
|
+
import * as i117 from "./detail-drawer/detail-drawer.component";
|
|
120
|
+
import * as i118 from "./detail-drawer/detail-drawer-tab/detail-drawer-tab.component";
|
|
121
|
+
import * as i119 from "./detail-drawer/detail-drawer-tab-content.directive";
|
|
122
|
+
import * as i120 from "./test-case-details/test-case-details.component";
|
|
123
|
+
import * as i121 from "./test-case-details/test-case-details-edit/test-case-details-edit.component";
|
|
124
|
+
import * as i122 from "./step-builder/step-builder-group/step-builder-group.component";
|
|
125
|
+
import * as i123 from "./test-case-details/step-details-drawer/step-details-drawer.component";
|
|
126
|
+
import * as i124 from "./step-builder/template-variables-form/template-variables-form.component";
|
|
127
|
+
import * as i125 from "./step-builder/advanced-variables-form/advanced-variables-form.component";
|
|
128
|
+
import * as i126 from "./test-case-details/step-details-modal/step-details-modal.component";
|
|
129
|
+
import * as i127 from "@angular/common";
|
|
130
|
+
import * as i128 from "@angular/forms";
|
|
131
|
+
import * as i129 from "@angular/platform-browser/animations";
|
|
132
|
+
import * as i130 from "@angular/material/icon";
|
|
133
|
+
import * as i131 from "@angular/material/menu";
|
|
134
|
+
import * as i132 from "@angular/material/button";
|
|
135
|
+
import * as i133 from "@angular/material/form-field";
|
|
136
|
+
import * as i134 from "@angular/material/select";
|
|
137
|
+
import * as i135 from "@angular/material/core";
|
|
138
|
+
import * as i136 from "@angular/material/checkbox";
|
|
139
|
+
import * as i137 from "@angular/material/radio";
|
|
140
|
+
import * as i138 from "@angular/material/slide-toggle";
|
|
141
|
+
import * as i139 from "@angular/material/datepicker";
|
|
142
|
+
import * as i140 from "@angular/material/progress-spinner";
|
|
143
|
+
import * as i141 from "@angular/material/tooltip";
|
|
144
|
+
import * as i142 from "@angular/material/dialog";
|
|
145
|
+
import * as i143 from "@angular/material/table";
|
|
146
|
+
import * as i144 from "@angular/material/input";
|
|
147
|
+
import * as i145 from "@angular/cdk/overlay";
|
|
148
|
+
import * as i146 from "@angular/cdk/portal";
|
|
149
|
+
import * as i147 from "@angular/cdk/scrolling";
|
|
150
|
+
import * as i148 from "ngx-typed-js";
|
|
151
|
+
import * as i149 from "ngx-drag-drop";
|
|
150
152
|
export declare class UiKitModule {
|
|
151
153
|
constructor(iconRegistry: MatIconRegistry);
|
|
152
154
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
|
|
153
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.DialogComponent, typeof i6.DynamicTableComponent, typeof i7.DynamicCellTemplateDirective, typeof i7.DynamicHeaderTemplateDirective, typeof i8.DynamicCellContainerDirective, typeof i9.PaginationComponent, typeof i10.ActionMenuButtonComponent, typeof i11.OtherButtonComponent, typeof i12.DynamicFilterComponent, typeof i13.DaterangepickerDirective, typeof i14.DaterangepickerComponent, typeof i15.ColumnVisibilityComponent, typeof i16.TableActionToolbarComponent, typeof i17.MetricsCardComponent, typeof i18.MetricsBlockComponent, typeof i19.ChartCardComponent, typeof i20.ProgressTextCardComponent, typeof i21.DashboardHeaderComponent, typeof i22.CoverageModuleCardComponent, typeof i23.TestDistributionCardComponent, typeof i24.FailedTestCasesCardComponent, typeof i25.DynamicSelectFieldComponent, typeof i26.AddPrerequisiteCasesSectionComponent, typeof i27.SelectedFiltersComponent, typeof i28.InsightCardComponent, typeof i29.BadgeComponent, typeof i30.DropdownButtonComponent, typeof i31.HeatErrorMapCellComponent, typeof i32.EmptyStateComponent, typeof i33.TableTemplateComponent, typeof i34.FullTableLoaderComponent, typeof i35.TableDataLoaderComponent, typeof i36.BasicStepComponent, typeof i37.StepRendererComponent, typeof i38.StepGroupComponent, typeof i39.LoopStepComponent, typeof i40.ConditionStepComponent, typeof i41.FailedStepComponent, typeof i42.UpdatedFailedStepComponent, typeof i43.ViewMoreFailedStepButtonComponent, typeof i44.SelfHealAnalysisComponent, typeof i45.AIAgentStepComponent, typeof i46.AIActionStepComponent, typeof i47.ApiStepComponent, typeof i48.FileDownloadStepComponent, typeof i49.DocumentVerificationStepComponent, typeof i50.LiveExecutionStepComponent, typeof i51.AiLogsWithReasoningComponent, typeof i52.JumpToStepModalComponent, typeof i53.BreakpointsModalComponent, typeof i54.MainStepCollapseComponent, typeof i55.VisualComparisonComponent, typeof i56.SimulatorComponent, typeof i57.ConsoleAlertComponent, typeof i58.AiDebugAlertComponent, typeof i59.NetworkRequestComponent, typeof i60.RunHistoryCardComponent, typeof i61.VisualDifferenceModalComponent, typeof i62.ConfigurationCardComponent, typeof i63.CompareRunsComponent, typeof i64.IterationsLoopComponent, typeof i65.FailedStepCardComponent, typeof i66.CustomInputComponent, typeof i67.CustomTextareaComponent, typeof i68.CustomToggleComponent, typeof i69.FileUploadComponent, typeof i70.AiReasoningComponent, typeof i71.ExecutionResultModalComponent, typeof i72.SessionChangesModalComponent, typeof i73.ErrorModalComponent, typeof i74.ExportCodeModalComponent, typeof i75.ProgressIndicatorComponent, typeof i76.StepProgressCardComponent, typeof i77.StepStatusCardComponent, typeof i78.DbVerificationStepComponent, typeof i79.DbQueryExecutionItemComponent, typeof i80.TestCaseNormalStepComponent, typeof i81.TestCaseLoopStepComponent, typeof i82.TestCaseConditionStepComponent, typeof i83.TestCaseStepGroupComponent, typeof i84.TestCaseDetailsRendererComponent, typeof i85.TestCaseApiStepComponent, typeof i86.TestCaseDatabaseStepComponent, typeof i87.TestCaseAiAgentStepComponent, typeof i88.TestCaseAiVerifyStepComponent, typeof i89.TestCaseUploadStepComponent, typeof i90.TestCaseScreenshotStepComponent, typeof i91.TestCaseScrollStepComponent, typeof i92.TestCaseVerifyUrlStepComponent, typeof i93.TestCaseRestoreSessionStepComponent, typeof i94.TestCaseCustomCodeStepComponent, typeof i95.CustomEditStepComponent, typeof i96.ItemListComponent, typeof i97.TestDataModalComponent, typeof i98.CreateStepGroupComponent, typeof i99.DeleteStepsComponent, typeof i100.ApiEditStepComponent, typeof i101.LiveConversationComponent, typeof i102.StepBuilderActionComponent, typeof i103.StepBuilderLoopComponent, typeof i104.ElementPopupComponent, typeof i105.ElementFormComponent, typeof i106.StepBuilderConditionComponent, typeof i107.StepBuilderDatabaseComponent, typeof i108.StepBuilderAiAgentComponent, typeof i109.StepBuilderCustomCodeComponent, typeof i110.StepBuilderRecordStepComponent, typeof i111.StepBuilderDocumentGenerationTemplateStepComponent, typeof i112.ElementListComponent, typeof i113.StepBuilderDocumentComponent, typeof i114.DetailSidePanelComponent, typeof i115.DetailDrawerComponent, typeof i116.DetailDrawerTabComponent, typeof i117.DetailDrawerTabContentDirective, typeof i118.TestCaseDetailsComponent, typeof i119.TestCaseDetailsEditComponent, typeof i120.StepBuilderGroupComponent, typeof i121.StepDetailsDrawerComponent, typeof i122.TemplateVariablesFormComponent, typeof i123.AdvancedVariablesFormComponent, typeof i124.StepDetailsModalComponent], [typeof i125.CommonModule, typeof i126.FormsModule, typeof i126.ReactiveFormsModule, typeof i127.NoopAnimationsModule, typeof i128.MatIconModule, typeof i129.MatMenuModule, typeof i130.MatButtonModule, typeof i131.MatFormFieldModule, typeof i132.MatSelectModule, typeof i133.MatOptionModule, typeof i134.MatCheckboxModule, typeof i135.MatRadioModule, typeof i136.MatSlideToggleModule, typeof i137.MatDatepickerModule, typeof i133.MatNativeDateModule, typeof i138.MatProgressSpinnerModule, typeof i139.MatTooltipModule, typeof i140.MatDialogModule, typeof i141.MatTableModule, typeof i142.MatInputModule, typeof i143.OverlayModule, typeof i144.PortalModule, typeof i145.ScrollingModule, typeof i146.NgxTypedJsModule, typeof i147.DndModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.DialogComponent, typeof i6.DynamicTableComponent, typeof i7.DynamicCellTemplateDirective, typeof i7.DynamicHeaderTemplateDirective, typeof i8.DynamicCellContainerDirective, typeof i9.PaginationComponent, typeof i10.ActionMenuButtonComponent, typeof i11.OtherButtonComponent, typeof i12.DynamicFilterComponent, typeof i13.DaterangepickerDirective, typeof i14.DaterangepickerComponent, typeof i15.ColumnVisibilityComponent, typeof i16.TableActionToolbarComponent, typeof i17.MetricsCardComponent, typeof i19.ChartCardComponent, typeof i20.ProgressTextCardComponent, typeof i21.DashboardHeaderComponent, typeof i22.CoverageModuleCardComponent, typeof i23.TestDistributionCardComponent, typeof i24.FailedTestCasesCardComponent, typeof i25.DynamicSelectFieldComponent, typeof i26.AddPrerequisiteCasesSectionComponent, typeof i27.SelectedFiltersComponent, typeof i28.InsightCardComponent, typeof i29.BadgeComponent, typeof i30.DropdownButtonComponent, typeof i31.HeatErrorMapCellComponent, typeof i32.EmptyStateComponent, typeof i33.TableTemplateComponent, typeof i34.FullTableLoaderComponent, typeof i35.TableDataLoaderComponent, typeof i36.BasicStepComponent, typeof i37.StepRendererComponent, typeof i38.StepGroupComponent, typeof i39.LoopStepComponent, typeof i40.ConditionStepComponent, typeof i41.FailedStepComponent, typeof i42.UpdatedFailedStepComponent, typeof i43.ViewMoreFailedStepButtonComponent, typeof i44.SelfHealAnalysisComponent, typeof i45.AIAgentStepComponent, typeof i46.AIActionStepComponent, typeof i47.ApiStepComponent, typeof i48.FileDownloadStepComponent, typeof i49.DocumentVerificationStepComponent, typeof i50.LiveExecutionStepComponent, typeof i51.AiLogsWithReasoningComponent, typeof i52.JumpToStepModalComponent, typeof i53.BreakpointsModalComponent, typeof i54.MainStepCollapseComponent, typeof i55.VisualComparisonComponent, typeof i56.SimulatorComponent, typeof i57.ConsoleAlertComponent, typeof i58.AiDebugAlertComponent, typeof i59.NetworkRequestComponent, typeof i60.RunHistoryCardComponent, typeof i61.VisualDifferenceModalComponent, typeof i62.ConfigurationCardComponent, typeof i63.CompareRunsComponent, typeof i64.IterationsLoopComponent, typeof i65.FailedStepCardComponent, typeof i66.CustomInputComponent, typeof i67.CustomTextareaComponent, typeof i68.CustomToggleComponent, typeof i69.FileUploadComponent, typeof i70.AiReasoningComponent, typeof i71.ExecutionResultModalComponent, typeof i72.SessionChangesModalComponent, typeof i73.ErrorModalComponent, typeof i74.ExportCodeModalComponent, typeof i75.ProgressIndicatorComponent, typeof i76.StepProgressCardComponent, typeof i77.StepStatusCardComponent, typeof i78.DbVerificationStepComponent, typeof i79.DbQueryExecutionItemComponent, typeof i80.TestCaseNormalStepComponent, typeof i81.TestCaseLoopStepComponent, typeof i82.TestCaseConditionStepComponent, typeof i83.TestCaseStepGroupComponent, typeof i84.TestCaseDetailsRendererComponent, typeof i85.TestCaseApiStepComponent, typeof i86.TestCaseDatabaseStepComponent, typeof i87.TestCaseAiAgentStepComponent, typeof i89.TestCaseUploadStepComponent, typeof i90.TestCaseScreenshotStepComponent, typeof i91.TestCaseScrollStepComponent, typeof i92.TestCaseVerifyUrlStepComponent, typeof i93.TestCaseRestoreSessionStepComponent, typeof i94.TestCaseCustomCodeStepComponent, typeof i95.CustomEditStepComponent, typeof i96.ItemListComponent, typeof i97.TestDataModalComponent, typeof i98.CreateStepGroupComponent, typeof i99.DeleteStepsComponent, typeof i100.ApiEditStepComponent, typeof i101.LiveConversationComponent, typeof i102.StepBuilderActionComponent, typeof i103.StepBuilderLoopComponent, typeof i104.ElementPopupComponent, typeof i105.ElementFormComponent, typeof i106.StepBuilderConditionComponent, typeof i107.StepBuilderDatabaseComponent, typeof i108.StepBuilderAiAgentComponent, typeof i109.StepBuilderCustomCodeComponent, typeof i110.StepBuilderRecordStepComponent, typeof i111.StepBuilderDocumentGenerationTemplateStepComponent, typeof i112.ElementListComponent, typeof i113.StepBuilderDocumentComponent, typeof i114.DetailSidePanelComponent, typeof i115.DetailDrawerComponent, typeof i116.DetailDrawerTabComponent, typeof i117.DetailDrawerTabContentDirective, typeof i118.TestCaseDetailsComponent, typeof i119.TestCaseDetailsEditComponent, typeof i120.StepBuilderGroupComponent, typeof i121.StepDetailsDrawerComponent, typeof i122.TemplateVariablesFormComponent, typeof i123.AdvancedVariablesFormComponent]>;
|
|
155
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.DialogComponent, typeof i6.DynamicTableComponent, typeof i7.DynamicCellTemplateDirective, typeof i7.DynamicHeaderTemplateDirective, typeof i8.DynamicCellContainerDirective, typeof i9.PaginationComponent, typeof i10.ActionMenuButtonComponent, typeof i11.OtherButtonComponent, typeof i12.DynamicFilterComponent, typeof i13.DaterangepickerDirective, typeof i14.DaterangepickerComponent, typeof i15.ColumnVisibilityComponent, typeof i16.TableActionToolbarComponent, typeof i17.MetricsCardComponent, typeof i18.MetricsBlockComponent, typeof i19.ChartCardComponent, typeof i20.ProgressTextCardComponent, typeof i21.DashboardHeaderComponent, typeof i22.CoverageModuleCardComponent, typeof i23.TestDistributionCardComponent, typeof i24.FailedTestCasesCardComponent, typeof i25.DynamicSelectFieldComponent, typeof i26.AddPrerequisiteCasesSectionComponent, typeof i27.SelectedFiltersComponent, typeof i28.InsightCardComponent, typeof i29.BadgeComponent, typeof i30.DropdownButtonComponent, typeof i31.HeatErrorMapCellComponent, typeof i32.EmptyStateComponent, typeof i33.TableTemplateComponent, typeof i34.FullTableLoaderComponent, typeof i35.TableDataLoaderComponent, typeof i36.BasicStepComponent, typeof i37.StepRendererComponent, typeof i38.StepGroupComponent, typeof i39.LoopStepComponent, typeof i40.ConditionStepComponent, typeof i41.FailedStepComponent, typeof i42.UpdatedFailedStepComponent, typeof i43.ViewMoreFailedStepButtonComponent, typeof i44.SelfHealAnalysisComponent, typeof i45.AIAgentStepComponent, typeof i46.AIActionStepComponent, typeof i47.ApiStepComponent, typeof i48.FileDownloadStepComponent, typeof i49.DocumentVerificationStepComponent, typeof i50.LiveExecutionStepComponent, typeof i51.AiLogsWithReasoningComponent, typeof i52.JumpToStepModalComponent, typeof i53.BreakpointsModalComponent, typeof i54.RecordingBannerComponent, typeof i55.ReviewRecordedStepsModalComponent, typeof i56.MainStepCollapseComponent, typeof i57.VisualComparisonComponent, typeof i58.SimulatorComponent, typeof i59.ConsoleAlertComponent, typeof i60.AiDebugAlertComponent, typeof i61.NetworkRequestComponent, typeof i62.RunHistoryCardComponent, typeof i63.VisualDifferenceModalComponent, typeof i64.ConfigurationCardComponent, typeof i65.CompareRunsComponent, typeof i66.IterationsLoopComponent, typeof i67.FailedStepCardComponent, typeof i68.CustomInputComponent, typeof i69.CustomTextareaComponent, typeof i70.CustomToggleComponent, typeof i71.FileUploadComponent, typeof i72.AiReasoningComponent, typeof i73.ExecutionResultModalComponent, typeof i74.SessionChangesModalComponent, typeof i75.ErrorModalComponent, typeof i76.ExportCodeModalComponent, typeof i77.ProgressIndicatorComponent, typeof i78.StepProgressCardComponent, typeof i79.StepStatusCardComponent, typeof i80.DbVerificationStepComponent, typeof i81.DbQueryExecutionItemComponent, typeof i82.TestCaseNormalStepComponent, typeof i83.TestCaseLoopStepComponent, typeof i84.TestCaseConditionStepComponent, typeof i85.TestCaseStepGroupComponent, typeof i86.TestCaseDetailsRendererComponent, typeof i87.TestCaseApiStepComponent, typeof i88.TestCaseDatabaseStepComponent, typeof i89.TestCaseAiAgentStepComponent, typeof i90.TestCaseAiVerifyStepComponent, typeof i91.TestCaseUploadStepComponent, typeof i92.TestCaseScreenshotStepComponent, typeof i93.TestCaseScrollStepComponent, typeof i94.TestCaseVerifyUrlStepComponent, typeof i95.TestCaseRestoreSessionStepComponent, typeof i96.TestCaseCustomCodeStepComponent, typeof i97.CustomEditStepComponent, typeof i98.ItemListComponent, typeof i99.TestDataModalComponent, typeof i100.CreateStepGroupComponent, typeof i101.DeleteStepsComponent, typeof i102.ApiEditStepComponent, typeof i103.LiveConversationComponent, typeof i104.StepBuilderActionComponent, typeof i105.StepBuilderLoopComponent, typeof i106.ElementPopupComponent, typeof i107.ElementFormComponent, typeof i108.StepBuilderConditionComponent, typeof i109.StepBuilderDatabaseComponent, typeof i110.StepBuilderAiAgentComponent, typeof i111.StepBuilderCustomCodeComponent, typeof i112.StepBuilderRecordStepComponent, typeof i113.StepBuilderDocumentGenerationTemplateStepComponent, typeof i114.ElementListComponent, typeof i115.StepBuilderDocumentComponent, typeof i116.DetailSidePanelComponent, typeof i117.DetailDrawerComponent, typeof i118.DetailDrawerTabComponent, typeof i119.DetailDrawerTabContentDirective, typeof i120.TestCaseDetailsComponent, typeof i121.TestCaseDetailsEditComponent, typeof i122.StepBuilderGroupComponent, typeof i123.StepDetailsDrawerComponent, typeof i124.TemplateVariablesFormComponent, typeof i125.AdvancedVariablesFormComponent, typeof i126.StepDetailsModalComponent], [typeof i127.CommonModule, typeof i128.FormsModule, typeof i128.ReactiveFormsModule, typeof i129.NoopAnimationsModule, typeof i130.MatIconModule, typeof i131.MatMenuModule, typeof i132.MatButtonModule, typeof i133.MatFormFieldModule, typeof i134.MatSelectModule, typeof i135.MatOptionModule, typeof i136.MatCheckboxModule, typeof i137.MatRadioModule, typeof i138.MatSlideToggleModule, typeof i139.MatDatepickerModule, typeof i135.MatNativeDateModule, typeof i140.MatProgressSpinnerModule, typeof i141.MatTooltipModule, typeof i142.MatDialogModule, typeof i143.MatTableModule, typeof i144.MatInputModule, typeof i145.OverlayModule, typeof i146.PortalModule, typeof i147.ScrollingModule, typeof i148.NgxTypedJsModule, typeof i149.DndModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.DialogComponent, typeof i6.DynamicTableComponent, typeof i7.DynamicCellTemplateDirective, typeof i7.DynamicHeaderTemplateDirective, typeof i8.DynamicCellContainerDirective, typeof i9.PaginationComponent, typeof i10.ActionMenuButtonComponent, typeof i11.OtherButtonComponent, typeof i12.DynamicFilterComponent, typeof i13.DaterangepickerDirective, typeof i14.DaterangepickerComponent, typeof i15.ColumnVisibilityComponent, typeof i16.TableActionToolbarComponent, typeof i17.MetricsCardComponent, typeof i19.ChartCardComponent, typeof i20.ProgressTextCardComponent, typeof i21.DashboardHeaderComponent, typeof i22.CoverageModuleCardComponent, typeof i23.TestDistributionCardComponent, typeof i24.FailedTestCasesCardComponent, typeof i25.DynamicSelectFieldComponent, typeof i26.AddPrerequisiteCasesSectionComponent, typeof i27.SelectedFiltersComponent, typeof i28.InsightCardComponent, typeof i29.BadgeComponent, typeof i30.DropdownButtonComponent, typeof i31.HeatErrorMapCellComponent, typeof i32.EmptyStateComponent, typeof i33.TableTemplateComponent, typeof i34.FullTableLoaderComponent, typeof i35.TableDataLoaderComponent, typeof i36.BasicStepComponent, typeof i37.StepRendererComponent, typeof i38.StepGroupComponent, typeof i39.LoopStepComponent, typeof i40.ConditionStepComponent, typeof i41.FailedStepComponent, typeof i42.UpdatedFailedStepComponent, typeof i43.ViewMoreFailedStepButtonComponent, typeof i44.SelfHealAnalysisComponent, typeof i45.AIAgentStepComponent, typeof i46.AIActionStepComponent, typeof i47.ApiStepComponent, typeof i48.FileDownloadStepComponent, typeof i49.DocumentVerificationStepComponent, typeof i50.LiveExecutionStepComponent, typeof i51.AiLogsWithReasoningComponent, typeof i52.JumpToStepModalComponent, typeof i53.BreakpointsModalComponent, typeof i54.RecordingBannerComponent, typeof i55.ReviewRecordedStepsModalComponent, typeof i56.MainStepCollapseComponent, typeof i57.VisualComparisonComponent, typeof i58.SimulatorComponent, typeof i59.ConsoleAlertComponent, typeof i60.AiDebugAlertComponent, typeof i61.NetworkRequestComponent, typeof i62.RunHistoryCardComponent, typeof i63.VisualDifferenceModalComponent, typeof i64.ConfigurationCardComponent, typeof i65.CompareRunsComponent, typeof i66.IterationsLoopComponent, typeof i67.FailedStepCardComponent, typeof i68.CustomInputComponent, typeof i69.CustomTextareaComponent, typeof i70.CustomToggleComponent, typeof i71.FileUploadComponent, typeof i72.AiReasoningComponent, typeof i73.ExecutionResultModalComponent, typeof i74.SessionChangesModalComponent, typeof i75.ErrorModalComponent, typeof i76.ExportCodeModalComponent, typeof i77.ProgressIndicatorComponent, typeof i78.StepProgressCardComponent, typeof i79.StepStatusCardComponent, typeof i80.DbVerificationStepComponent, typeof i81.DbQueryExecutionItemComponent, typeof i82.TestCaseNormalStepComponent, typeof i83.TestCaseLoopStepComponent, typeof i84.TestCaseConditionStepComponent, typeof i85.TestCaseStepGroupComponent, typeof i86.TestCaseDetailsRendererComponent, typeof i87.TestCaseApiStepComponent, typeof i88.TestCaseDatabaseStepComponent, typeof i89.TestCaseAiAgentStepComponent, typeof i91.TestCaseUploadStepComponent, typeof i92.TestCaseScreenshotStepComponent, typeof i93.TestCaseScrollStepComponent, typeof i94.TestCaseVerifyUrlStepComponent, typeof i95.TestCaseRestoreSessionStepComponent, typeof i96.TestCaseCustomCodeStepComponent, typeof i97.CustomEditStepComponent, typeof i98.ItemListComponent, typeof i99.TestDataModalComponent, typeof i100.CreateStepGroupComponent, typeof i101.DeleteStepsComponent, typeof i102.ApiEditStepComponent, typeof i103.LiveConversationComponent, typeof i104.StepBuilderActionComponent, typeof i105.StepBuilderLoopComponent, typeof i106.ElementPopupComponent, typeof i107.ElementFormComponent, typeof i108.StepBuilderConditionComponent, typeof i109.StepBuilderDatabaseComponent, typeof i110.StepBuilderAiAgentComponent, typeof i111.StepBuilderCustomCodeComponent, typeof i112.StepBuilderRecordStepComponent, typeof i113.StepBuilderDocumentGenerationTemplateStepComponent, typeof i114.ElementListComponent, typeof i115.StepBuilderDocumentComponent, typeof i116.DetailSidePanelComponent, typeof i117.DetailDrawerComponent, typeof i118.DetailDrawerTabComponent, typeof i119.DetailDrawerTabContentDirective, typeof i120.TestCaseDetailsComponent, typeof i121.TestCaseDetailsEditComponent, typeof i122.StepBuilderGroupComponent, typeof i123.StepDetailsDrawerComponent, typeof i124.TemplateVariablesFormComponent, typeof i125.AdvancedVariablesFormComponent]>;
|
|
154
156
|
static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
|
|
155
157
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -154,3 +154,5 @@ export * from './lib/test-case-details/test-case-details-edit/test-case-details-
|
|
|
154
154
|
export * from './lib/step-builder/step-builder-group/step-builder-group.component';
|
|
155
155
|
export * from './lib/execution-screen/jump-to-step-modal/jump-to-step-modal.component';
|
|
156
156
|
export * from './lib/execution-screen/breakpoints-modal/breakpoints-modal.component';
|
|
157
|
+
export * from './lib/execution-screen/recording-banner/recording-banner.component';
|
|
158
|
+
export * from './lib/execution-screen/review-recorded-steps-modal/review-recorded-steps-modal.component';
|