@cqa-lib/cqa-ui 1.1.194 → 1.1.196
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/step-builder/step-builder-ai-agent/step-builder-ai-agent.component.mjs +87 -4
- package/esm2020/lib/step-builder/step-builder-database/step-builder-database.component.mjs +531 -13
- package/esm2020/lib/ui-kit.module.mjs +9 -1
- package/fesm2015/cqa-lib-cqa-ui.mjs +640 -35
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +638 -35
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/step-builder/step-builder-ai-agent/step-builder-ai-agent.component.d.ts +19 -3
- package/lib/step-builder/step-builder-database/step-builder-database.component.d.ts +105 -5
- package/lib/ui-kit.module.d.ts +7 -5
- package/package.json +1 -1
- package/styles.css +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
3
|
import { DynamicSelectFieldConfig, SelectOption } from '../../dynamic-select/dynamic-select-field.component';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
@@ -14,7 +14,7 @@ export interface AiAgentFormData {
|
|
|
14
14
|
iframeLocator?: string;
|
|
15
15
|
otherLocators?: string;
|
|
16
16
|
}
|
|
17
|
-
export declare class StepBuilderAiAgentComponent implements OnInit {
|
|
17
|
+
export declare class StepBuilderAiAgentComponent implements OnInit, OnChanges {
|
|
18
18
|
private fb;
|
|
19
19
|
/** Options for type dropdown */
|
|
20
20
|
typeOptions: SelectOption[];
|
|
@@ -26,14 +26,30 @@ export declare class StepBuilderAiAgentComponent implements OnInit {
|
|
|
26
26
|
iframeLocatorOptions: SelectOption[];
|
|
27
27
|
/** Options for other locators dropdown */
|
|
28
28
|
otherLocatorsOptions: SelectOption[];
|
|
29
|
+
/** Initial values for edit mode */
|
|
30
|
+
initialQuery?: string;
|
|
31
|
+
initialType?: string;
|
|
32
|
+
initialDescription?: string;
|
|
33
|
+
initialEnvironments?: string;
|
|
34
|
+
initialMetadata?: string;
|
|
35
|
+
initialDisabled?: boolean;
|
|
36
|
+
initialContinueOnError?: boolean;
|
|
37
|
+
initialRetryCount?: number;
|
|
38
|
+
initialIframeLocator?: string;
|
|
39
|
+
initialOtherLocators?: string;
|
|
40
|
+
editMode: boolean;
|
|
29
41
|
/** Emit when step is created */
|
|
30
42
|
createStep: EventEmitter<AiAgentFormData>;
|
|
31
43
|
/** Emit when cancelled */
|
|
32
44
|
cancelled: EventEmitter<void>;
|
|
33
45
|
aiAgentForm: FormGroup;
|
|
34
46
|
showAdvanced: boolean;
|
|
47
|
+
private hasLoadedInitialData;
|
|
35
48
|
constructor(fb: FormBuilder);
|
|
36
49
|
ngOnInit(): void;
|
|
50
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
51
|
+
private hasInitialData;
|
|
52
|
+
private loadInitialData;
|
|
37
53
|
getTypeConfig(): DynamicSelectFieldConfig;
|
|
38
54
|
getEnvironmentConfig(): DynamicSelectFieldConfig;
|
|
39
55
|
getRetryCountConfig(): DynamicSelectFieldConfig;
|
|
@@ -43,5 +59,5 @@ export declare class StepBuilderAiAgentComponent implements OnInit {
|
|
|
43
59
|
onCancel(): void;
|
|
44
60
|
onCreateStep(): void;
|
|
45
61
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepBuilderAiAgentComponent, never>;
|
|
46
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderAiAgentComponent, "cqa-step-builder-ai-agent", never, { "typeOptions": "typeOptions"; "environmentOptions": "environmentOptions"; "retryCountOptions": "retryCountOptions"; "iframeLocatorOptions": "iframeLocatorOptions"; "otherLocatorsOptions": "otherLocatorsOptions"; }, { "createStep": "createStep"; "cancelled": "cancelled"; }, never, never>;
|
|
62
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderAiAgentComponent, "cqa-step-builder-ai-agent", never, { "typeOptions": "typeOptions"; "environmentOptions": "environmentOptions"; "retryCountOptions": "retryCountOptions"; "iframeLocatorOptions": "iframeLocatorOptions"; "otherLocatorsOptions": "otherLocatorsOptions"; "initialQuery": "initialQuery"; "initialType": "initialType"; "initialDescription": "initialDescription"; "initialEnvironments": "initialEnvironments"; "initialMetadata": "initialMetadata"; "initialDisabled": "initialDisabled"; "initialContinueOnError": "initialContinueOnError"; "initialRetryCount": "initialRetryCount"; "initialIframeLocator": "initialIframeLocator"; "initialOtherLocators": "initialOtherLocators"; "editMode": "editMode"; }, { "createStep": "createStep"; "cancelled": "cancelled"; }, never, never>;
|
|
47
63
|
}
|
|
@@ -1,19 +1,22 @@
|
|
|
1
|
-
import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { FormBuilder, FormGroup, FormArray } from '@angular/forms';
|
|
1
|
+
import { EventEmitter, OnInit, OnChanges, SimpleChanges, ChangeDetectorRef, OnDestroy } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup, FormArray, AbstractControl } from '@angular/forms';
|
|
3
3
|
import { DynamicSelectFieldConfig, SelectOption } from '../../dynamic-select/dynamic-select-field.component';
|
|
4
|
+
import { MatTable } from '@angular/material/table';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export interface DatabaseQuery {
|
|
6
7
|
id: string;
|
|
7
8
|
query: string;
|
|
8
9
|
variable: string;
|
|
9
10
|
status?: 'passed' | 'failed' | 'pending';
|
|
11
|
+
assertionData?: any[];
|
|
10
12
|
}
|
|
11
13
|
export interface DatabaseFormData {
|
|
12
14
|
dbEnvironment: string;
|
|
13
15
|
queries: DatabaseQuery[];
|
|
14
16
|
}
|
|
15
|
-
export declare class StepBuilderDatabaseComponent implements OnInit, OnChanges {
|
|
17
|
+
export declare class StepBuilderDatabaseComponent implements OnInit, OnChanges, OnDestroy {
|
|
16
18
|
private fb;
|
|
19
|
+
private cdr;
|
|
17
20
|
/** Options for DB environment dropdown */
|
|
18
21
|
dbEnvironmentOptions: SelectOption[];
|
|
19
22
|
/** Initial queries list */
|
|
@@ -40,10 +43,24 @@ export declare class StepBuilderDatabaseComponent implements OnInit, OnChanges {
|
|
|
40
43
|
addQuery: EventEmitter<void>;
|
|
41
44
|
/** Emit when query is deleted */
|
|
42
45
|
deleteQuery: EventEmitter<string>;
|
|
46
|
+
/** Emit when assertion data changes for a query */
|
|
47
|
+
assertionDataChange: EventEmitter<{
|
|
48
|
+
queryIndex: number;
|
|
49
|
+
assertionData: any[];
|
|
50
|
+
}>;
|
|
51
|
+
/** Emit when selected query index changes */
|
|
52
|
+
selectedQueryIndexChange: EventEmitter<number>;
|
|
53
|
+
/** Emit when active tab changes */
|
|
54
|
+
activeTabChange: EventEmitter<"output" | "verification">;
|
|
43
55
|
databaseForm: FormGroup;
|
|
44
56
|
selectedTab: 'output' | 'verification';
|
|
45
57
|
selectedQueryIndex: number;
|
|
46
|
-
|
|
58
|
+
assertionsForms: Map<number, FormGroup>;
|
|
59
|
+
displayedColumns: string[];
|
|
60
|
+
defaultExpectedType: string;
|
|
61
|
+
private formSubscriptions;
|
|
62
|
+
assertionsTable?: MatTable<any>;
|
|
63
|
+
constructor(fb: FormBuilder, cdr: ChangeDetectorRef);
|
|
47
64
|
ngOnInit(): void;
|
|
48
65
|
ngOnChanges(changes: SimpleChanges): void;
|
|
49
66
|
private initializeFormWithInitialValues;
|
|
@@ -56,11 +73,94 @@ export declare class StepBuilderDatabaseComponent implements OnInit, OnChanges {
|
|
|
56
73
|
getCurrentQueryFormGroup(): FormGroup | null;
|
|
57
74
|
onRunQuery(): void;
|
|
58
75
|
onSelectQuery(index: number): void;
|
|
76
|
+
/**
|
|
77
|
+
* Get the currently selected query index
|
|
78
|
+
*/
|
|
79
|
+
getSelectedQueryIndex(): number;
|
|
80
|
+
/**
|
|
81
|
+
* Get the currently active tab
|
|
82
|
+
*/
|
|
83
|
+
getActiveTab(): 'output' | 'verification';
|
|
59
84
|
onTabChange(tab: 'output' | 'verification'): void;
|
|
60
85
|
onCopyResults(): void;
|
|
61
86
|
onCancel(): void;
|
|
62
87
|
onCreateStep(): void;
|
|
63
88
|
getTableColumns(): string[];
|
|
89
|
+
/**
|
|
90
|
+
* Get assertion data for a specific query
|
|
91
|
+
*/
|
|
92
|
+
getAssertionDataForQuery(queryIndex: number): any[];
|
|
93
|
+
/**
|
|
94
|
+
* Handle assertion data change from external component
|
|
95
|
+
*/
|
|
96
|
+
onAssertionDataChange(assertionData: any[], queryIndex: number): void;
|
|
97
|
+
/**
|
|
98
|
+
* Initialize assertion data for a query if it doesn't exist
|
|
99
|
+
*/
|
|
100
|
+
private ensureAssertionDataInitialized;
|
|
101
|
+
/**
|
|
102
|
+
* Initialize assertions form for a specific query
|
|
103
|
+
*/
|
|
104
|
+
private initializeAssertionsForm;
|
|
105
|
+
/**
|
|
106
|
+
* Get assertions form for current query
|
|
107
|
+
*/
|
|
108
|
+
getCurrentAssertionsForm(): FormGroup | null;
|
|
109
|
+
/**
|
|
110
|
+
* Get assertions form array for current query
|
|
111
|
+
*/
|
|
112
|
+
getAssertionsFormArray(): FormArray;
|
|
113
|
+
/**
|
|
114
|
+
* Load assertions into form for a specific query
|
|
115
|
+
*/
|
|
116
|
+
private loadAssertionsForQuery;
|
|
117
|
+
/**
|
|
118
|
+
* Subscribe to assertions form changes
|
|
119
|
+
*/
|
|
120
|
+
private subscribeToAssertionsFormChanges;
|
|
121
|
+
/**
|
|
122
|
+
* Emit assertion data for a specific query
|
|
123
|
+
*/
|
|
124
|
+
private emitAssertionDataForQuery;
|
|
125
|
+
/**
|
|
126
|
+
* Add a new assertion
|
|
127
|
+
*/
|
|
128
|
+
addAssertion(): void;
|
|
129
|
+
/**
|
|
130
|
+
* Remove an assertion
|
|
131
|
+
*/
|
|
132
|
+
removeAssertion(index: number): void;
|
|
133
|
+
/**
|
|
134
|
+
* Get form control at specific index
|
|
135
|
+
*/
|
|
136
|
+
getFormControlAt(index: number, controlName: string): AbstractControl | null;
|
|
137
|
+
/**
|
|
138
|
+
* Get expected type for an assertion
|
|
139
|
+
*/
|
|
140
|
+
getExpectedType(index: number): string;
|
|
141
|
+
/**
|
|
142
|
+
* Get expected value placeholder
|
|
143
|
+
*/
|
|
144
|
+
getExpectedValuePlaceholder(index: number): string;
|
|
145
|
+
/**
|
|
146
|
+
* Handle expected type change
|
|
147
|
+
*/
|
|
148
|
+
onExpectedTypeChange(index: number, value: string): void;
|
|
149
|
+
/**
|
|
150
|
+
* Expected value validator
|
|
151
|
+
*/
|
|
152
|
+
expectedValueValidator: (control: AbstractControl) => {
|
|
153
|
+
[key: string]: any;
|
|
154
|
+
};
|
|
155
|
+
/**
|
|
156
|
+
* Get assertions data source for table
|
|
157
|
+
*/
|
|
158
|
+
get assertionsDataSource(): AbstractControl[];
|
|
159
|
+
/**
|
|
160
|
+
* Track by function for table rows
|
|
161
|
+
*/
|
|
162
|
+
trackByIndex(index: number): any;
|
|
163
|
+
ngOnDestroy(): void;
|
|
64
164
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepBuilderDatabaseComponent, never>;
|
|
65
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderDatabaseComponent, "cqa-step-builder-database", never, { "dbEnvironmentOptions": "dbEnvironmentOptions"; "queries": "queries"; "queryResults": "queryResults"; "isLoading": "isLoading"; "initialDbEnvironment": "initialDbEnvironment"; "editMode": "editMode"; }, { "createStep": "createStep"; "cancelled": "cancelled"; "runQuery": "runQuery"; "addQuery": "addQuery"; "deleteQuery": "deleteQuery"; }, never, never>;
|
|
165
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderDatabaseComponent, "cqa-step-builder-database", never, { "dbEnvironmentOptions": "dbEnvironmentOptions"; "queries": "queries"; "queryResults": "queryResults"; "isLoading": "isLoading"; "initialDbEnvironment": "initialDbEnvironment"; "editMode": "editMode"; }, { "createStep": "createStep"; "cancelled": "cancelled"; "runQuery": "runQuery"; "addQuery": "addQuery"; "deleteQuery": "deleteQuery"; "assertionDataChange": "assertionDataChange"; "selectedQueryIndexChange": "selectedQueryIndexChange"; "activeTabChange": "activeTabChange"; }, never, never>;
|
|
66
166
|
}
|
package/lib/ui-kit.module.d.ts
CHANGED
|
@@ -124,13 +124,15 @@ import * as i121 from "@angular/material/datepicker";
|
|
|
124
124
|
import * as i122 from "@angular/material/progress-spinner";
|
|
125
125
|
import * as i123 from "@angular/material/tooltip";
|
|
126
126
|
import * as i124 from "@angular/material/dialog";
|
|
127
|
-
import * as i125 from "@angular/
|
|
128
|
-
import * as i126 from "@angular/
|
|
129
|
-
import * as i127 from "
|
|
130
|
-
import * as i128 from "
|
|
127
|
+
import * as i125 from "@angular/material/table";
|
|
128
|
+
import * as i126 from "@angular/material/input";
|
|
129
|
+
import * as i127 from "@angular/cdk/overlay";
|
|
130
|
+
import * as i128 from "@angular/cdk/portal";
|
|
131
|
+
import * as i129 from "ngx-typed-js";
|
|
132
|
+
import * as i130 from "ngx-drag-drop";
|
|
131
133
|
export declare class UiKitModule {
|
|
132
134
|
constructor(iconRegistry: MatIconRegistry);
|
|
133
135
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
|
|
134
|
-
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.MainStepCollapseComponent, typeof i52.VisualComparisonComponent, typeof i53.SimulatorComponent, typeof i54.ConsoleAlertComponent, typeof i55.AiDebugAlertComponent, typeof i56.NetworkRequestComponent, typeof i57.RunHistoryCardComponent, typeof i58.VisualDifferenceModalComponent, typeof i59.ConfigurationCardComponent, typeof i60.CompareRunsComponent, typeof i61.IterationsLoopComponent, typeof i62.FailedStepCardComponent, typeof i63.CustomInputComponent, typeof i64.CustomTextareaComponent, typeof i65.CustomToggleComponent, typeof i66.FileUploadComponent, typeof i67.AiReasoningComponent, typeof i68.ExecutionResultModalComponent, typeof i69.ErrorModalComponent, typeof i70.ProgressIndicatorComponent, typeof i71.StepProgressCardComponent, typeof i72.StepStatusCardComponent, typeof i73.DbVerificationStepComponent, typeof i74.DbQueryExecutionItemComponent, typeof i75.TestCaseNormalStepComponent, typeof i76.TestCaseLoopStepComponent, typeof i77.TestCaseConditionStepComponent, typeof i78.TestCaseStepGroupComponent, typeof i79.TestCaseDetailsRendererComponent, typeof i80.TestCaseApiStepComponent, typeof i81.TestCaseDatabaseStepComponent, typeof i82.TestCaseAiAgentStepComponent, typeof i83.TestCaseAiVerifyStepComponent, typeof i84.TestCaseUploadStepComponent, typeof i85.TestCaseScreenshotStepComponent, typeof i86.TestCaseScrollStepComponent, typeof i87.TestCaseVerifyUrlStepComponent, typeof i88.TestCaseRestoreSessionStepComponent, typeof i89.TestCaseCustomCodeStepComponent, typeof i90.CustomEditStepComponent, typeof i91.ItemListComponent, typeof i92.TestDataModalComponent, typeof i93.CreateStepGroupComponent, typeof i94.DeleteStepsComponent, typeof i95.ApiEditStepComponent, typeof i96.LiveConversationComponent, typeof i97.StepBuilderActionComponent, typeof i98.StepBuilderLoopComponent, typeof i99.ElementPopupComponent, typeof i100.StepBuilderConditionComponent, typeof i101.StepBuilderDatabaseComponent, typeof i102.StepBuilderAiAgentComponent, typeof i103.StepBuilderCustomCodeComponent, typeof i104.StepBuilderRecordStepComponent, typeof i105.StepBuilderDocumentGenerationTemplateStepComponent, typeof i106.ElementListComponent, typeof i107.StepBuilderDocumentComponent, typeof i108.StepBuilderApiComponent, typeof i109.StepDetailsDrawerComponent], [typeof i110.CommonModule, typeof i111.FormsModule, typeof i111.ReactiveFormsModule, typeof i112.MatIconModule, typeof i113.MatMenuModule, typeof i114.MatButtonModule, typeof i115.MatFormFieldModule, typeof i116.MatSelectModule, typeof i117.MatOptionModule, typeof i118.MatCheckboxModule, typeof i119.MatRadioModule, typeof i120.MatSlideToggleModule, typeof i121.MatDatepickerModule, typeof i117.MatNativeDateModule, typeof i122.MatProgressSpinnerModule, typeof i123.MatTooltipModule, typeof i124.MatDialogModule, typeof i125.
|
|
136
|
+
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.MainStepCollapseComponent, typeof i52.VisualComparisonComponent, typeof i53.SimulatorComponent, typeof i54.ConsoleAlertComponent, typeof i55.AiDebugAlertComponent, typeof i56.NetworkRequestComponent, typeof i57.RunHistoryCardComponent, typeof i58.VisualDifferenceModalComponent, typeof i59.ConfigurationCardComponent, typeof i60.CompareRunsComponent, typeof i61.IterationsLoopComponent, typeof i62.FailedStepCardComponent, typeof i63.CustomInputComponent, typeof i64.CustomTextareaComponent, typeof i65.CustomToggleComponent, typeof i66.FileUploadComponent, typeof i67.AiReasoningComponent, typeof i68.ExecutionResultModalComponent, typeof i69.ErrorModalComponent, typeof i70.ProgressIndicatorComponent, typeof i71.StepProgressCardComponent, typeof i72.StepStatusCardComponent, typeof i73.DbVerificationStepComponent, typeof i74.DbQueryExecutionItemComponent, typeof i75.TestCaseNormalStepComponent, typeof i76.TestCaseLoopStepComponent, typeof i77.TestCaseConditionStepComponent, typeof i78.TestCaseStepGroupComponent, typeof i79.TestCaseDetailsRendererComponent, typeof i80.TestCaseApiStepComponent, typeof i81.TestCaseDatabaseStepComponent, typeof i82.TestCaseAiAgentStepComponent, typeof i83.TestCaseAiVerifyStepComponent, typeof i84.TestCaseUploadStepComponent, typeof i85.TestCaseScreenshotStepComponent, typeof i86.TestCaseScrollStepComponent, typeof i87.TestCaseVerifyUrlStepComponent, typeof i88.TestCaseRestoreSessionStepComponent, typeof i89.TestCaseCustomCodeStepComponent, typeof i90.CustomEditStepComponent, typeof i91.ItemListComponent, typeof i92.TestDataModalComponent, typeof i93.CreateStepGroupComponent, typeof i94.DeleteStepsComponent, typeof i95.ApiEditStepComponent, typeof i96.LiveConversationComponent, typeof i97.StepBuilderActionComponent, typeof i98.StepBuilderLoopComponent, typeof i99.ElementPopupComponent, typeof i100.StepBuilderConditionComponent, typeof i101.StepBuilderDatabaseComponent, typeof i102.StepBuilderAiAgentComponent, typeof i103.StepBuilderCustomCodeComponent, typeof i104.StepBuilderRecordStepComponent, typeof i105.StepBuilderDocumentGenerationTemplateStepComponent, typeof i106.ElementListComponent, typeof i107.StepBuilderDocumentComponent, typeof i108.StepBuilderApiComponent, typeof i109.StepDetailsDrawerComponent], [typeof i110.CommonModule, typeof i111.FormsModule, typeof i111.ReactiveFormsModule, typeof i112.MatIconModule, typeof i113.MatMenuModule, typeof i114.MatButtonModule, typeof i115.MatFormFieldModule, typeof i116.MatSelectModule, typeof i117.MatOptionModule, typeof i118.MatCheckboxModule, typeof i119.MatRadioModule, typeof i120.MatSlideToggleModule, typeof i121.MatDatepickerModule, typeof i117.MatNativeDateModule, typeof i122.MatProgressSpinnerModule, typeof i123.MatTooltipModule, typeof i124.MatDialogModule, typeof i125.MatTableModule, typeof i126.MatInputModule, typeof i127.OverlayModule, typeof i128.PortalModule, typeof i129.NgxTypedJsModule, typeof i130.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.MainStepCollapseComponent, typeof i52.VisualComparisonComponent, typeof i53.SimulatorComponent, typeof i54.ConsoleAlertComponent, typeof i55.AiDebugAlertComponent, typeof i56.NetworkRequestComponent, typeof i57.RunHistoryCardComponent, typeof i58.VisualDifferenceModalComponent, typeof i59.ConfigurationCardComponent, typeof i60.CompareRunsComponent, typeof i61.IterationsLoopComponent, typeof i62.FailedStepCardComponent, typeof i63.CustomInputComponent, typeof i64.CustomTextareaComponent, typeof i65.CustomToggleComponent, typeof i66.FileUploadComponent, typeof i67.AiReasoningComponent, typeof i68.ExecutionResultModalComponent, typeof i69.ErrorModalComponent, typeof i70.ProgressIndicatorComponent, typeof i71.StepProgressCardComponent, typeof i72.StepStatusCardComponent, typeof i73.DbVerificationStepComponent, typeof i74.DbQueryExecutionItemComponent, typeof i75.TestCaseNormalStepComponent, typeof i76.TestCaseLoopStepComponent, typeof i77.TestCaseConditionStepComponent, typeof i78.TestCaseStepGroupComponent, typeof i79.TestCaseDetailsRendererComponent, typeof i80.TestCaseApiStepComponent, typeof i81.TestCaseDatabaseStepComponent, typeof i82.TestCaseAiAgentStepComponent, typeof i84.TestCaseUploadStepComponent, typeof i85.TestCaseScreenshotStepComponent, typeof i86.TestCaseScrollStepComponent, typeof i87.TestCaseVerifyUrlStepComponent, typeof i88.TestCaseRestoreSessionStepComponent, typeof i89.TestCaseCustomCodeStepComponent, typeof i90.CustomEditStepComponent, typeof i91.ItemListComponent, typeof i92.TestDataModalComponent, typeof i93.CreateStepGroupComponent, typeof i94.DeleteStepsComponent, typeof i95.ApiEditStepComponent, typeof i96.LiveConversationComponent, typeof i97.StepBuilderActionComponent, typeof i98.StepBuilderLoopComponent, typeof i99.ElementPopupComponent, typeof i100.StepBuilderConditionComponent, typeof i101.StepBuilderDatabaseComponent, typeof i102.StepBuilderAiAgentComponent, typeof i103.StepBuilderCustomCodeComponent, typeof i104.StepBuilderRecordStepComponent, typeof i105.StepBuilderDocumentGenerationTemplateStepComponent, typeof i108.StepBuilderApiComponent, typeof i106.ElementListComponent, typeof i107.StepBuilderDocumentComponent, typeof i109.StepDetailsDrawerComponent]>;
|
|
135
137
|
static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
|
|
136
138
|
}
|