@cqa-lib/cqa-ui 1.1.201 → 1.1.202

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.
@@ -1,4 +1,4 @@
1
- import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core';
1
+ import { EventEmitter, OnInit, OnChanges, SimpleChanges, OnDestroy } from '@angular/core';
2
2
  import { FormBuilder, FormGroup } from '@angular/forms';
3
3
  import { DynamicSelectFieldConfig } from '../../dynamic-select/dynamic-select-field.component';
4
4
  import * as i0 from "@angular/core";
@@ -26,7 +26,7 @@ export interface ElementField {
26
26
  value: string;
27
27
  type: 'element' | 'test-data' | 'attribute';
28
28
  }
29
- export declare class StepBuilderActionComponent implements OnInit, OnChanges {
29
+ export declare class StepBuilderActionComponent implements OnInit, OnChanges, OnDestroy {
30
30
  private fb;
31
31
  showHeader: boolean;
32
32
  /** List of action templates to display */
@@ -49,6 +49,11 @@ export declare class StepBuilderActionComponent implements OnInit, OnChanges {
49
49
  advancedExpanded: boolean;
50
50
  templateVariables: any[];
51
51
  variablesForm: FormGroup;
52
+ private selectConfigCache;
53
+ private formValidCache;
54
+ private lastFormValidationTime;
55
+ private readonly FORM_VALIDATION_CACHE_MS;
56
+ private formValueChangesSubscription?;
52
57
  constructor(fb: FormBuilder);
53
58
  ngOnInit(): void;
54
59
  ngOnChanges(changes: SimpleChanges): void;
@@ -58,12 +63,15 @@ export declare class StepBuilderActionComponent implements OnInit, OnChanges {
58
63
  applyFilter(): void;
59
64
  selectTemplate(template: ActionTemplate): void;
60
65
  private buildVariablesForm;
66
+ ngOnDestroy(): void;
61
67
  getSelectConfig(variable: any): DynamicSelectFieldConfig;
62
68
  onVariableValueChange(variableName: string, value: any): void;
63
69
  onVariableBooleanChange(variableName: string, value: boolean): void;
64
70
  onBack(): void;
65
71
  onCancel(): void;
66
72
  isFormValid(): boolean;
73
+ trackByTemplate(index: number, template: ActionTemplate): any;
74
+ trackByVariable(index: number, variable: any): any;
67
75
  onCreateStep(): void;
68
76
  toggleAdvanced(): void;
69
77
  onElementClick(elementKey: string): void;
@@ -0,0 +1,48 @@
1
+ import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core';
2
+ import { FormBuilder, FormGroup } from '@angular/forms';
3
+ import { DynamicSelectFieldConfig } from '../../dynamic-select/dynamic-select-field.component';
4
+ import * as i0 from "@angular/core";
5
+ export interface StepGroupFormData {
6
+ stepGroupId: number;
7
+ stepGroup?: any;
8
+ }
9
+ export interface StepGroupOption {
10
+ id: number;
11
+ name: string;
12
+ description?: string;
13
+ }
14
+ export declare class StepBuilderGroupComponent implements OnInit, OnChanges {
15
+ private fb;
16
+ /** Options for step group dropdown */
17
+ stepGroupOptions: StepGroupOption[];
18
+ /** Indicates if more step groups are available for loading */
19
+ hasMoreStepGroups: boolean;
20
+ /** Loading state for step groups */
21
+ isLoadingStepGroups: boolean;
22
+ /** Initial step group ID for edit mode */
23
+ initialStepGroupId?: number;
24
+ /** Whether in edit mode */
25
+ editMode: boolean;
26
+ /** Emit when step is created */
27
+ createStep: EventEmitter<StepGroupFormData>;
28
+ /** Emit when cancelled */
29
+ cancelled: EventEmitter<void>;
30
+ /** Emit when more step groups need to be loaded */
31
+ loadMoreStepGroups: EventEmitter<string>;
32
+ /** Emit when step group search query changes */
33
+ searchStepGroups: EventEmitter<string>;
34
+ stepGroupForm: FormGroup;
35
+ stepGroupConfig: DynamicSelectFieldConfig;
36
+ selectedStepGroup: StepGroupOption | null;
37
+ constructor(fb: FormBuilder);
38
+ ngOnInit(): void;
39
+ ngOnChanges(changes: SimpleChanges): void;
40
+ private updateStepGroupConfig;
41
+ onStepGroupChange(stepGroupId: number): void;
42
+ getStepGroupDescription(): string;
43
+ onCreateStep(): void;
44
+ onCancel(): void;
45
+ isFormValid(): boolean;
46
+ static ɵfac: i0.ɵɵFactoryDeclaration<StepBuilderGroupComponent, never>;
47
+ static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderGroupComponent, "cqa-step-builder-group", never, { "stepGroupOptions": "stepGroupOptions"; "hasMoreStepGroups": "hasMoreStepGroups"; "isLoadingStepGroups": "isLoadingStepGroups"; "initialStepGroupId": "initialStepGroupId"; "editMode": "editMode"; }, { "createStep": "createStep"; "cancelled": "cancelled"; "loadMoreStepGroups": "loadMoreStepGroups"; "searchStepGroups": "searchStepGroups"; }, never, never>;
48
+ }
@@ -107,7 +107,7 @@ import * as i104 from "./step-builder/step-builder-record-step/step-builder-reco
107
107
  import * as i105 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
108
108
  import * as i106 from "./test-case-details/element-list/element-list.component";
109
109
  import * as i107 from "./step-builder/step-builder-document/step-builder-document.component";
110
- import * as i108 from "./step-builder/step-builder-api/step-builder-api.component";
110
+ import * as i108 from "./step-builder/step-builder-group/step-builder-group.component";
111
111
  import * as i109 from "./test-case-details/step-details-drawer/step-details-drawer.component";
112
112
  import * as i110 from "@angular/common";
113
113
  import * as i111 from "@angular/forms";
@@ -133,6 +133,6 @@ import * as i130 from "ngx-drag-drop";
133
133
  export declare class UiKitModule {
134
134
  constructor(iconRegistry: MatIconRegistry);
135
135
  static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
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]>;
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.StepBuilderGroupComponent, 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 i106.ElementListComponent, typeof i107.StepBuilderDocumentComponent, typeof i108.StepBuilderGroupComponent, typeof i109.StepDetailsDrawerComponent]>;
137
137
  static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
138
138
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cqa-lib/cqa-ui",
3
- "version": "1.1.201",
3
+ "version": "1.1.202",
4
4
  "description": "UI Kit library for Angular 13.4",
5
5
  "keywords": [
6
6
  "angular",
package/public-api.d.ts CHANGED
@@ -133,4 +133,4 @@ export * from './lib/step-builder/step-builder-custom-code/step-builder-custom-c
133
133
  export * from './lib/step-builder/step-builder-record-step/step-builder-record-step.component';
134
134
  export * from './lib/step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component';
135
135
  export * from './lib/file-upload/file-upload.component';
136
- export * from './lib/step-builder/step-builder-api/step-builder-api.component';
136
+ export * from './lib/step-builder/step-builder-group/step-builder-group.component';