@cqa-lib/cqa-ui 1.1.285 → 1.1.287

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.
@@ -0,0 +1,10 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SafeHtmlPipe implements PipeTransform {
5
+ private sanitizer;
6
+ constructor(sanitizer: DomSanitizer);
7
+ transform(value: string | null | undefined): SafeHtml;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<SafeHtmlPipe, never>;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<SafeHtmlPipe, "cqaSafeHtml">;
10
+ }
@@ -4,6 +4,8 @@ import { TestCaseStepConfig } from '../test-case-step.models';
4
4
  import * as i0 from "@angular/core";
5
5
  export interface CreateStepGroupFormData {
6
6
  groupName: string;
7
+ /** When true, replace selected steps with the new group (same as cases screen Create and replace). */
8
+ isReplace?: boolean;
7
9
  }
8
10
  /**
9
11
  * Create Step Group panel/modal for Test Case Details.
@@ -28,7 +30,7 @@ export declare class CreateStepGroupComponent {
28
30
  private stripHtml;
29
31
  private getNormalStepLabel;
30
32
  onCancel(): void;
31
- onCreateGroup(): void;
33
+ onCreateGroup(isReplace?: boolean): void;
32
34
  static ɵfac: i0.ɵɵFactoryDeclaration<CreateStepGroupComponent, never>;
33
35
  static ɵcmp: i0.ɵɵComponentDeclaration<CreateStepGroupComponent, "cqa-create-step-group", never, { "stepsToGroup": "stepsToGroup"; "stepLabels": "stepLabels"; }, { "createGroup": "createGroup"; "cancelled": "cancelled"; }, never, never>;
34
36
  }
@@ -10,8 +10,12 @@ export declare class ElementListComponent implements AfterViewInit, OnDestroy, O
10
10
  selectorKey: string;
11
11
  /** Key to access the labels array from each item (default: 'labels') */
12
12
  labelsKey: string;
13
+ /** Key on each item for the screen name object (e.g. 'screenNameObj'); its 'name' property is shown below the selector */
14
+ screenNameObjectKey: string;
13
15
  /** Maximum height for the scrollable container (default: '200px') */
14
16
  maxHeight: string;
17
+ /** Currently selected item to highlight in the list (same reference or matching id/title+selector) */
18
+ selectedItem: any;
15
19
  /** Whether more items can be loaded */
16
20
  hasMore: boolean;
17
21
  /** Emitted when an item is clicked */
@@ -25,14 +29,22 @@ export declare class ElementListComponent implements AfterViewInit, OnDestroy, O
25
29
  * Get the value from an item using the specified key
26
30
  */
27
31
  getItemValue(item: any, key: string): any;
32
+ /**
33
+ * Get screen name from item (screenNameObj.name or screenName string) for display below selector
34
+ */
35
+ getScreenName(item: any): string | null;
28
36
  /**
29
37
  * Handle item click
30
38
  */
31
39
  onItemClick(item: any): void;
40
+ /**
41
+ * Whether the given item is the selected one (for highlighting).
42
+ */
43
+ isSelected(item: any): boolean;
32
44
  ngAfterViewInit(): void;
33
45
  ngOnChanges(changes: SimpleChanges): void;
34
46
  ngOnDestroy(): void;
35
47
  private setupScrollObserver;
36
48
  static ɵfac: i0.ɵɵFactoryDeclaration<ElementListComponent, never>;
37
- static ɵcmp: i0.ɵɵComponentDeclaration<ElementListComponent, "cqa-element-list", never, { "items": "items"; "titleKey": "titleKey"; "selectorKey": "selectorKey"; "labelsKey": "labelsKey"; "maxHeight": "maxHeight"; "hasMore": "hasMore"; }, { "itemClick": "itemClick"; "loadMore": "loadMore"; }, never, never>;
49
+ static ɵcmp: i0.ɵɵComponentDeclaration<ElementListComponent, "cqa-element-list", never, { "items": "items"; "titleKey": "titleKey"; "selectorKey": "selectorKey"; "labelsKey": "labelsKey"; "screenNameObjectKey": "screenNameObjectKey"; "maxHeight": "maxHeight"; "selectedItem": "selectedItem"; "hasMore": "hasMore"; }, { "itemClick": "itemClick"; "loadMore": "loadMore"; }, never, never>;
38
50
  }
@@ -6,6 +6,14 @@ export interface ElementPopupData {
6
6
  description: string;
7
7
  helpUrl?: string;
8
8
  }
9
+ /** Screen name object from API (e.g. list elements response) */
10
+ export interface ElementPopupScreenNameObj {
11
+ id?: number;
12
+ workspaceVersionId?: number;
13
+ name: string;
14
+ url?: string;
15
+ elementCount?: number | null;
16
+ }
9
17
  export interface ElementPopupDataElements {
10
18
  labels: string[];
11
19
  title: string;
@@ -13,6 +21,8 @@ export interface ElementPopupDataElements {
13
21
  id?: number;
14
22
  screenName?: string;
15
23
  screenNameId?: number;
24
+ /** Screen name object from API; display name via screenNameObj.name */
25
+ screenNameObj?: ElementPopupScreenNameObj;
16
26
  }
17
27
  /** Sentinel returned from afterClosed() when user clicked "Edit in depth". */
18
28
  export declare const ELEMENT_POPUP_EDIT_IN_DEPTH: unique symbol;
@@ -169,6 +169,15 @@ export declare class TestCaseLoopStepComponent implements OnInit, OnChanges {
169
169
  private getSelectedProfileDataLength;
170
170
  /** Loop Start/End options: 1 to N based on selected data profile's data array length; falls back to 1..10 if no profile. */
171
171
  getLoopStepOptions(): number[];
172
+ /** Sentinel value for "Start" / "End" options (same as old UI). */
173
+ static readonly LOOP_INDEX_START = -1;
174
+ static readonly LOOP_INDEX_END = -1;
175
+ /** Loop Start/End select options: same indices as getLoopStepOptions(), with label "name (index)" when profile data has row names, else "Step (index)". */
176
+ private getLoopStepSelectOptions;
177
+ /** Loop Start dropdown options: "Start" (value -1) first, then data rows. Same values as old UI. */
178
+ private getLoopStartSelectOptions;
179
+ /** Loop End dropdown options: data rows first, then "End" (value -1) last. Same values as old UI. */
180
+ private getLoopEndSelectOptions;
172
181
  /** Handle data profile selection: update display, clamp start/end to new profile range, refresh start/end dropdowns. */
173
182
  private onDataProfileChange;
174
183
  /** Handle search for data profiles */
@@ -127,32 +127,33 @@ import * as i124 from "./test-case-details/step-details-drawer/step-details-draw
127
127
  import * as i125 from "./step-builder/template-variables-form/template-variables-form.component";
128
128
  import * as i126 from "./step-builder/advanced-variables-form/advanced-variables-form.component";
129
129
  import * as i127 from "./test-case-details/step-details-modal/step-details-modal.component";
130
- import * as i128 from "@angular/common";
131
- import * as i129 from "@angular/forms";
132
- import * as i130 from "@angular/platform-browser/animations";
133
- import * as i131 from "@angular/material/icon";
134
- import * as i132 from "@angular/material/menu";
135
- import * as i133 from "@angular/material/button";
136
- import * as i134 from "@angular/material/form-field";
137
- import * as i135 from "@angular/material/select";
138
- import * as i136 from "@angular/material/core";
139
- import * as i137 from "@angular/material/checkbox";
140
- import * as i138 from "@angular/material/radio";
141
- import * as i139 from "@angular/material/slide-toggle";
142
- import * as i140 from "@angular/material/datepicker";
143
- import * as i141 from "@angular/material/progress-spinner";
144
- import * as i142 from "@angular/material/tooltip";
145
- import * as i143 from "@angular/material/dialog";
146
- import * as i144 from "@angular/material/table";
147
- import * as i145 from "@angular/material/input";
148
- import * as i146 from "@angular/cdk/overlay";
149
- import * as i147 from "@angular/cdk/portal";
150
- import * as i148 from "@angular/cdk/scrolling";
151
- import * as i149 from "ngx-typed-js";
152
- import * as i150 from "ngx-drag-drop";
130
+ import * as i128 from "./pipes/safe-html.pipe";
131
+ import * as i129 from "@angular/common";
132
+ import * as i130 from "@angular/forms";
133
+ import * as i131 from "@angular/platform-browser/animations";
134
+ import * as i132 from "@angular/material/icon";
135
+ import * as i133 from "@angular/material/menu";
136
+ import * as i134 from "@angular/material/button";
137
+ import * as i135 from "@angular/material/form-field";
138
+ import * as i136 from "@angular/material/select";
139
+ import * as i137 from "@angular/material/core";
140
+ import * as i138 from "@angular/material/checkbox";
141
+ import * as i139 from "@angular/material/radio";
142
+ import * as i140 from "@angular/material/slide-toggle";
143
+ import * as i141 from "@angular/material/datepicker";
144
+ import * as i142 from "@angular/material/progress-spinner";
145
+ import * as i143 from "@angular/material/tooltip";
146
+ import * as i144 from "@angular/material/dialog";
147
+ import * as i145 from "@angular/material/table";
148
+ import * as i146 from "@angular/material/input";
149
+ import * as i147 from "@angular/cdk/overlay";
150
+ import * as i148 from "@angular/cdk/portal";
151
+ import * as i149 from "@angular/cdk/scrolling";
152
+ import * as i150 from "ngx-typed-js";
153
+ import * as i151 from "ngx-drag-drop";
153
154
  export declare class UiKitModule {
154
155
  constructor(iconRegistry: MatIconRegistry);
155
156
  static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
156
- 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.WorkspaceSelectorComponent, typeof i23.CoverageModuleCardComponent, typeof i24.TestDistributionCardComponent, typeof i25.FailedTestCasesCardComponent, typeof i26.DynamicSelectFieldComponent, typeof i27.AddPrerequisiteCasesSectionComponent, typeof i28.SelectedFiltersComponent, typeof i29.InsightCardComponent, typeof i30.BadgeComponent, typeof i31.DropdownButtonComponent, typeof i32.HeatErrorMapCellComponent, typeof i33.EmptyStateComponent, typeof i34.TableTemplateComponent, typeof i35.FullTableLoaderComponent, typeof i36.TableDataLoaderComponent, typeof i37.BasicStepComponent, typeof i38.StepRendererComponent, typeof i39.StepGroupComponent, typeof i40.LoopStepComponent, typeof i41.ConditionStepComponent, typeof i42.FailedStepComponent, typeof i43.UpdatedFailedStepComponent, typeof i44.ViewMoreFailedStepButtonComponent, typeof i45.SelfHealAnalysisComponent, typeof i46.AIAgentStepComponent, typeof i47.AIActionStepComponent, typeof i48.ApiStepComponent, typeof i49.FileDownloadStepComponent, typeof i50.DocumentVerificationStepComponent, typeof i51.LiveExecutionStepComponent, typeof i52.AiLogsWithReasoningComponent, typeof i53.JumpToStepModalComponent, typeof i54.BreakpointsModalComponent, typeof i55.RecordingBannerComponent, typeof i56.ReviewRecordedStepsModalComponent, typeof i57.MainStepCollapseComponent, typeof i58.VisualComparisonComponent, typeof i59.SimulatorComponent, typeof i60.ConsoleAlertComponent, typeof i61.AiDebugAlertComponent, typeof i62.NetworkRequestComponent, typeof i63.RunHistoryCardComponent, typeof i64.VisualDifferenceModalComponent, typeof i65.ConfigurationCardComponent, typeof i66.CompareRunsComponent, typeof i67.IterationsLoopComponent, typeof i68.FailedStepCardComponent, typeof i69.CustomInputComponent, typeof i70.CustomTextareaComponent, typeof i71.CustomToggleComponent, typeof i72.FileUploadComponent, typeof i73.AiReasoningComponent, typeof i74.ExecutionResultModalComponent, typeof i75.SessionChangesModalComponent, typeof i76.ErrorModalComponent, typeof i77.ExportCodeModalComponent, typeof i78.ProgressIndicatorComponent, typeof i79.StepProgressCardComponent, typeof i80.StepStatusCardComponent, typeof i81.DbVerificationStepComponent, typeof i82.DbQueryExecutionItemComponent, typeof i83.TestCaseNormalStepComponent, typeof i84.TestCaseLoopStepComponent, typeof i85.TestCaseConditionStepComponent, typeof i86.TestCaseStepGroupComponent, typeof i87.TestCaseDetailsRendererComponent, typeof i88.TestCaseApiStepComponent, typeof i89.TestCaseDatabaseStepComponent, typeof i90.TestCaseAiAgentStepComponent, typeof i91.TestCaseAiVerifyStepComponent, typeof i92.TestCaseUploadStepComponent, typeof i93.TestCaseScreenshotStepComponent, typeof i94.TestCaseScrollStepComponent, typeof i95.TestCaseVerifyUrlStepComponent, typeof i96.TestCaseRestoreSessionStepComponent, typeof i97.TestCaseCustomCodeStepComponent, typeof i98.CustomEditStepComponent, typeof i99.ItemListComponent, typeof i100.TestDataModalComponent, typeof i101.CreateStepGroupComponent, typeof i102.DeleteStepsComponent, typeof i103.ApiEditStepComponent, typeof i104.LiveConversationComponent, typeof i105.StepBuilderActionComponent, typeof i106.StepBuilderLoopComponent, typeof i107.ElementPopupComponent, typeof i108.ElementFormComponent, typeof i109.StepBuilderConditionComponent, typeof i110.StepBuilderDatabaseComponent, typeof i111.StepBuilderAiAgentComponent, typeof i112.StepBuilderCustomCodeComponent, typeof i113.StepBuilderRecordStepComponent, typeof i114.StepBuilderDocumentGenerationTemplateStepComponent, typeof i115.ElementListComponent, typeof i116.StepBuilderDocumentComponent, typeof i117.DetailSidePanelComponent, typeof i118.DetailDrawerComponent, typeof i119.DetailDrawerTabComponent, typeof i120.DetailDrawerTabContentDirective, typeof i121.TestCaseDetailsComponent, typeof i122.TestCaseDetailsEditComponent, typeof i123.StepBuilderGroupComponent, typeof i124.StepDetailsDrawerComponent, typeof i125.TemplateVariablesFormComponent, typeof i126.AdvancedVariablesFormComponent, typeof i127.StepDetailsModalComponent], [typeof i128.CommonModule, typeof i129.FormsModule, typeof i129.ReactiveFormsModule, typeof i130.NoopAnimationsModule, typeof i131.MatIconModule, typeof i132.MatMenuModule, typeof i133.MatButtonModule, typeof i134.MatFormFieldModule, typeof i135.MatSelectModule, typeof i136.MatOptionModule, typeof i137.MatCheckboxModule, typeof i138.MatRadioModule, typeof i139.MatSlideToggleModule, typeof i140.MatDatepickerModule, typeof i136.MatNativeDateModule, typeof i141.MatProgressSpinnerModule, typeof i142.MatTooltipModule, typeof i143.MatDialogModule, typeof i144.MatTableModule, typeof i145.MatInputModule, typeof i146.OverlayModule, typeof i147.PortalModule, typeof i148.ScrollingModule, typeof i149.NgxTypedJsModule, typeof i150.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.WorkspaceSelectorComponent, typeof i23.CoverageModuleCardComponent, typeof i24.TestDistributionCardComponent, typeof i25.FailedTestCasesCardComponent, typeof i26.DynamicSelectFieldComponent, typeof i27.AddPrerequisiteCasesSectionComponent, typeof i28.SelectedFiltersComponent, typeof i29.InsightCardComponent, typeof i30.BadgeComponent, typeof i31.DropdownButtonComponent, typeof i32.HeatErrorMapCellComponent, typeof i33.EmptyStateComponent, typeof i34.TableTemplateComponent, typeof i35.FullTableLoaderComponent, typeof i36.TableDataLoaderComponent, typeof i37.BasicStepComponent, typeof i38.StepRendererComponent, typeof i39.StepGroupComponent, typeof i40.LoopStepComponent, typeof i41.ConditionStepComponent, typeof i42.FailedStepComponent, typeof i43.UpdatedFailedStepComponent, typeof i44.ViewMoreFailedStepButtonComponent, typeof i45.SelfHealAnalysisComponent, typeof i46.AIAgentStepComponent, typeof i47.AIActionStepComponent, typeof i48.ApiStepComponent, typeof i49.FileDownloadStepComponent, typeof i50.DocumentVerificationStepComponent, typeof i51.LiveExecutionStepComponent, typeof i52.AiLogsWithReasoningComponent, typeof i53.JumpToStepModalComponent, typeof i54.BreakpointsModalComponent, typeof i55.RecordingBannerComponent, typeof i56.ReviewRecordedStepsModalComponent, typeof i57.MainStepCollapseComponent, typeof i58.VisualComparisonComponent, typeof i59.SimulatorComponent, typeof i60.ConsoleAlertComponent, typeof i61.AiDebugAlertComponent, typeof i62.NetworkRequestComponent, typeof i63.RunHistoryCardComponent, typeof i64.VisualDifferenceModalComponent, typeof i65.ConfigurationCardComponent, typeof i66.CompareRunsComponent, typeof i67.IterationsLoopComponent, typeof i68.FailedStepCardComponent, typeof i69.CustomInputComponent, typeof i70.CustomTextareaComponent, typeof i71.CustomToggleComponent, typeof i72.FileUploadComponent, typeof i73.AiReasoningComponent, typeof i74.ExecutionResultModalComponent, typeof i75.SessionChangesModalComponent, typeof i76.ErrorModalComponent, typeof i77.ExportCodeModalComponent, typeof i78.ProgressIndicatorComponent, typeof i79.StepProgressCardComponent, typeof i80.StepStatusCardComponent, typeof i81.DbVerificationStepComponent, typeof i82.DbQueryExecutionItemComponent, typeof i83.TestCaseNormalStepComponent, typeof i84.TestCaseLoopStepComponent, typeof i85.TestCaseConditionStepComponent, typeof i86.TestCaseStepGroupComponent, typeof i87.TestCaseDetailsRendererComponent, typeof i88.TestCaseApiStepComponent, typeof i89.TestCaseDatabaseStepComponent, typeof i90.TestCaseAiAgentStepComponent, typeof i92.TestCaseUploadStepComponent, typeof i93.TestCaseScreenshotStepComponent, typeof i94.TestCaseScrollStepComponent, typeof i95.TestCaseVerifyUrlStepComponent, typeof i96.TestCaseRestoreSessionStepComponent, typeof i97.TestCaseCustomCodeStepComponent, typeof i98.CustomEditStepComponent, typeof i99.ItemListComponent, typeof i100.TestDataModalComponent, typeof i101.CreateStepGroupComponent, typeof i102.DeleteStepsComponent, typeof i103.ApiEditStepComponent, typeof i104.LiveConversationComponent, typeof i105.StepBuilderActionComponent, typeof i106.StepBuilderLoopComponent, typeof i107.ElementPopupComponent, typeof i108.ElementFormComponent, typeof i109.StepBuilderConditionComponent, typeof i110.StepBuilderDatabaseComponent, typeof i111.StepBuilderAiAgentComponent, typeof i112.StepBuilderCustomCodeComponent, typeof i113.StepBuilderRecordStepComponent, typeof i114.StepBuilderDocumentGenerationTemplateStepComponent, typeof i115.ElementListComponent, typeof i116.StepBuilderDocumentComponent, typeof i117.DetailSidePanelComponent, typeof i118.DetailDrawerComponent, typeof i119.DetailDrawerTabComponent, typeof i120.DetailDrawerTabContentDirective, typeof i121.TestCaseDetailsComponent, typeof i122.TestCaseDetailsEditComponent, typeof i123.StepBuilderGroupComponent, typeof i124.StepDetailsDrawerComponent, typeof i125.TemplateVariablesFormComponent, typeof i126.AdvancedVariablesFormComponent]>;
157
+ 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.WorkspaceSelectorComponent, typeof i23.CoverageModuleCardComponent, typeof i24.TestDistributionCardComponent, typeof i25.FailedTestCasesCardComponent, typeof i26.DynamicSelectFieldComponent, typeof i27.AddPrerequisiteCasesSectionComponent, typeof i28.SelectedFiltersComponent, typeof i29.InsightCardComponent, typeof i30.BadgeComponent, typeof i31.DropdownButtonComponent, typeof i32.HeatErrorMapCellComponent, typeof i33.EmptyStateComponent, typeof i34.TableTemplateComponent, typeof i35.FullTableLoaderComponent, typeof i36.TableDataLoaderComponent, typeof i37.BasicStepComponent, typeof i38.StepRendererComponent, typeof i39.StepGroupComponent, typeof i40.LoopStepComponent, typeof i41.ConditionStepComponent, typeof i42.FailedStepComponent, typeof i43.UpdatedFailedStepComponent, typeof i44.ViewMoreFailedStepButtonComponent, typeof i45.SelfHealAnalysisComponent, typeof i46.AIAgentStepComponent, typeof i47.AIActionStepComponent, typeof i48.ApiStepComponent, typeof i49.FileDownloadStepComponent, typeof i50.DocumentVerificationStepComponent, typeof i51.LiveExecutionStepComponent, typeof i52.AiLogsWithReasoningComponent, typeof i53.JumpToStepModalComponent, typeof i54.BreakpointsModalComponent, typeof i55.RecordingBannerComponent, typeof i56.ReviewRecordedStepsModalComponent, typeof i57.MainStepCollapseComponent, typeof i58.VisualComparisonComponent, typeof i59.SimulatorComponent, typeof i60.ConsoleAlertComponent, typeof i61.AiDebugAlertComponent, typeof i62.NetworkRequestComponent, typeof i63.RunHistoryCardComponent, typeof i64.VisualDifferenceModalComponent, typeof i65.ConfigurationCardComponent, typeof i66.CompareRunsComponent, typeof i67.IterationsLoopComponent, typeof i68.FailedStepCardComponent, typeof i69.CustomInputComponent, typeof i70.CustomTextareaComponent, typeof i71.CustomToggleComponent, typeof i72.FileUploadComponent, typeof i73.AiReasoningComponent, typeof i74.ExecutionResultModalComponent, typeof i75.SessionChangesModalComponent, typeof i76.ErrorModalComponent, typeof i77.ExportCodeModalComponent, typeof i78.ProgressIndicatorComponent, typeof i79.StepProgressCardComponent, typeof i80.StepStatusCardComponent, typeof i81.DbVerificationStepComponent, typeof i82.DbQueryExecutionItemComponent, typeof i83.TestCaseNormalStepComponent, typeof i84.TestCaseLoopStepComponent, typeof i85.TestCaseConditionStepComponent, typeof i86.TestCaseStepGroupComponent, typeof i87.TestCaseDetailsRendererComponent, typeof i88.TestCaseApiStepComponent, typeof i89.TestCaseDatabaseStepComponent, typeof i90.TestCaseAiAgentStepComponent, typeof i91.TestCaseAiVerifyStepComponent, typeof i92.TestCaseUploadStepComponent, typeof i93.TestCaseScreenshotStepComponent, typeof i94.TestCaseScrollStepComponent, typeof i95.TestCaseVerifyUrlStepComponent, typeof i96.TestCaseRestoreSessionStepComponent, typeof i97.TestCaseCustomCodeStepComponent, typeof i98.CustomEditStepComponent, typeof i99.ItemListComponent, typeof i100.TestDataModalComponent, typeof i101.CreateStepGroupComponent, typeof i102.DeleteStepsComponent, typeof i103.ApiEditStepComponent, typeof i104.LiveConversationComponent, typeof i105.StepBuilderActionComponent, typeof i106.StepBuilderLoopComponent, typeof i107.ElementPopupComponent, typeof i108.ElementFormComponent, typeof i109.StepBuilderConditionComponent, typeof i110.StepBuilderDatabaseComponent, typeof i111.StepBuilderAiAgentComponent, typeof i112.StepBuilderCustomCodeComponent, typeof i113.StepBuilderRecordStepComponent, typeof i114.StepBuilderDocumentGenerationTemplateStepComponent, typeof i115.ElementListComponent, typeof i116.StepBuilderDocumentComponent, typeof i117.DetailSidePanelComponent, typeof i118.DetailDrawerComponent, typeof i119.DetailDrawerTabComponent, typeof i120.DetailDrawerTabContentDirective, typeof i121.TestCaseDetailsComponent, typeof i122.TestCaseDetailsEditComponent, typeof i123.StepBuilderGroupComponent, typeof i124.StepDetailsDrawerComponent, typeof i125.TemplateVariablesFormComponent, typeof i126.AdvancedVariablesFormComponent, typeof i127.StepDetailsModalComponent, typeof i128.SafeHtmlPipe], [typeof i129.CommonModule, typeof i130.FormsModule, typeof i130.ReactiveFormsModule, typeof i131.NoopAnimationsModule, typeof i132.MatIconModule, typeof i133.MatMenuModule, typeof i134.MatButtonModule, typeof i135.MatFormFieldModule, typeof i136.MatSelectModule, typeof i137.MatOptionModule, typeof i138.MatCheckboxModule, typeof i139.MatRadioModule, typeof i140.MatSlideToggleModule, typeof i141.MatDatepickerModule, typeof i137.MatNativeDateModule, typeof i142.MatProgressSpinnerModule, typeof i143.MatTooltipModule, typeof i144.MatDialogModule, typeof i145.MatTableModule, typeof i146.MatInputModule, typeof i147.OverlayModule, typeof i148.PortalModule, typeof i149.ScrollingModule, typeof i150.NgxTypedJsModule, typeof i151.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.WorkspaceSelectorComponent, typeof i23.CoverageModuleCardComponent, typeof i24.TestDistributionCardComponent, typeof i25.FailedTestCasesCardComponent, typeof i26.DynamicSelectFieldComponent, typeof i27.AddPrerequisiteCasesSectionComponent, typeof i28.SelectedFiltersComponent, typeof i29.InsightCardComponent, typeof i30.BadgeComponent, typeof i31.DropdownButtonComponent, typeof i32.HeatErrorMapCellComponent, typeof i33.EmptyStateComponent, typeof i34.TableTemplateComponent, typeof i35.FullTableLoaderComponent, typeof i36.TableDataLoaderComponent, typeof i37.BasicStepComponent, typeof i38.StepRendererComponent, typeof i39.StepGroupComponent, typeof i40.LoopStepComponent, typeof i41.ConditionStepComponent, typeof i42.FailedStepComponent, typeof i43.UpdatedFailedStepComponent, typeof i44.ViewMoreFailedStepButtonComponent, typeof i45.SelfHealAnalysisComponent, typeof i46.AIAgentStepComponent, typeof i47.AIActionStepComponent, typeof i48.ApiStepComponent, typeof i49.FileDownloadStepComponent, typeof i50.DocumentVerificationStepComponent, typeof i51.LiveExecutionStepComponent, typeof i52.AiLogsWithReasoningComponent, typeof i53.JumpToStepModalComponent, typeof i54.BreakpointsModalComponent, typeof i55.RecordingBannerComponent, typeof i56.ReviewRecordedStepsModalComponent, typeof i57.MainStepCollapseComponent, typeof i58.VisualComparisonComponent, typeof i59.SimulatorComponent, typeof i60.ConsoleAlertComponent, typeof i61.AiDebugAlertComponent, typeof i62.NetworkRequestComponent, typeof i63.RunHistoryCardComponent, typeof i64.VisualDifferenceModalComponent, typeof i65.ConfigurationCardComponent, typeof i66.CompareRunsComponent, typeof i67.IterationsLoopComponent, typeof i68.FailedStepCardComponent, typeof i69.CustomInputComponent, typeof i70.CustomTextareaComponent, typeof i71.CustomToggleComponent, typeof i72.FileUploadComponent, typeof i73.AiReasoningComponent, typeof i74.ExecutionResultModalComponent, typeof i75.SessionChangesModalComponent, typeof i76.ErrorModalComponent, typeof i77.ExportCodeModalComponent, typeof i78.ProgressIndicatorComponent, typeof i79.StepProgressCardComponent, typeof i80.StepStatusCardComponent, typeof i81.DbVerificationStepComponent, typeof i82.DbQueryExecutionItemComponent, typeof i83.TestCaseNormalStepComponent, typeof i84.TestCaseLoopStepComponent, typeof i85.TestCaseConditionStepComponent, typeof i86.TestCaseStepGroupComponent, typeof i87.TestCaseDetailsRendererComponent, typeof i88.TestCaseApiStepComponent, typeof i89.TestCaseDatabaseStepComponent, typeof i90.TestCaseAiAgentStepComponent, typeof i92.TestCaseUploadStepComponent, typeof i93.TestCaseScreenshotStepComponent, typeof i94.TestCaseScrollStepComponent, typeof i95.TestCaseVerifyUrlStepComponent, typeof i96.TestCaseRestoreSessionStepComponent, typeof i97.TestCaseCustomCodeStepComponent, typeof i98.CustomEditStepComponent, typeof i99.ItemListComponent, typeof i100.TestDataModalComponent, typeof i101.CreateStepGroupComponent, typeof i102.DeleteStepsComponent, typeof i103.ApiEditStepComponent, typeof i104.LiveConversationComponent, typeof i105.StepBuilderActionComponent, typeof i106.StepBuilderLoopComponent, typeof i107.ElementPopupComponent, typeof i108.ElementFormComponent, typeof i109.StepBuilderConditionComponent, typeof i110.StepBuilderDatabaseComponent, typeof i111.StepBuilderAiAgentComponent, typeof i112.StepBuilderCustomCodeComponent, typeof i113.StepBuilderRecordStepComponent, typeof i114.StepBuilderDocumentGenerationTemplateStepComponent, typeof i115.ElementListComponent, typeof i116.StepBuilderDocumentComponent, typeof i117.DetailSidePanelComponent, typeof i118.DetailDrawerComponent, typeof i119.DetailDrawerTabComponent, typeof i120.DetailDrawerTabContentDirective, typeof i121.TestCaseDetailsComponent, typeof i122.TestCaseDetailsEditComponent, typeof i123.StepBuilderGroupComponent, typeof i124.StepDetailsDrawerComponent, typeof i125.TemplateVariablesFormComponent, typeof i126.AdvancedVariablesFormComponent]>;
157
158
  static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
158
159
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cqa-lib/cqa-ui",
3
- "version": "1.1.285",
3
+ "version": "1.1.287",
4
4
  "description": "UI Kit library for Angular 13.4",
5
5
  "keywords": [
6
6
  "angular",