@cqa-lib/cqa-ui 1.1.270 → 1.1.271

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,6 +1,6 @@
1
1
  import { EventEmitter, SimpleChanges } from '@angular/core';
2
2
  import { FormGroup } from '@angular/forms';
3
- import { DynamicSelectFieldConfig } from '../../dynamic-select/dynamic-select-field.component';
3
+ import { WorkspaceSelectorConfig } from '../workspace-selector/workspace-selector.component';
4
4
  import * as i0 from "@angular/core";
5
5
  export interface HeaderSelectOption {
6
6
  id?: any;
@@ -25,16 +25,16 @@ export declare class DashboardHeaderComponent {
25
25
  workspacePlaceholder: string;
26
26
  workspaceDisabled: boolean;
27
27
  workspaceValue?: any;
28
- workspaceMultiple: boolean;
29
28
  workspaceSearchable: boolean;
30
29
  workspaceServerSearch: boolean;
31
30
  workspaceHasMore: boolean;
32
31
  workspaceIsLoading: boolean;
33
- workspaceOptionStyle: 'checkmark' | 'checkbox';
34
- workspaceShowSelectAll: boolean;
35
32
  workspaceCloseOnSelect: boolean;
36
33
  workspaceOnSearch?: (query: string) => void;
37
34
  workspaceOnLoadMore?: (query?: string) => void;
35
+ workspaceItemSize?: number;
36
+ workspaceValueBy?: string;
37
+ workspaceViewportHeight?: number;
38
38
  workspaceSearch: EventEmitter<string>;
39
39
  workspaceLoadMore: EventEmitter<string>;
40
40
  showWorkspaceSelector: boolean;
@@ -43,8 +43,22 @@ export declare class DashboardHeaderComponent {
43
43
  workspaceForm: FormGroup;
44
44
  ngOnInit(): void;
45
45
  ngOnChanges(_changes: SimpleChanges): void;
46
- get workspaceConfig(): DynamicSelectFieldConfig;
46
+ get workspaceConfig(): WorkspaceSelectorConfig;
47
47
  private syncFormFromInput;
48
+ onWorkspaceValueChange(value: any): void;
49
+ onWorkspaceSelectionChange(event: {
50
+ key: string;
51
+ value: any;
52
+ option?: any;
53
+ }): void;
54
+ onWorkspaceSearchChange(event: {
55
+ key: string;
56
+ query: string;
57
+ }): void;
58
+ onWorkspaceLoadMore(event: {
59
+ key: string;
60
+ query: string;
61
+ }): void;
48
62
  static ɵfac: i0.ɵɵFactoryDeclaration<DashboardHeaderComponent, never>;
49
- static ɵcmp: i0.ɵɵComponentDeclaration<DashboardHeaderComponent, "cqa-dashboard-header", never, { "title": "title"; "badgeText": "badgeText"; "badgeClass": "badgeClass"; "headerClass": "headerClass"; "showHeader": "showHeader"; "showLogo": "showLogo"; "logoUrl": "logoUrl"; "showHelpIcon": "showHelpIcon"; "helpIconTooltip": "helpIconTooltip"; "showPlusIcon": "showPlusIcon"; "workspaceOptions": "workspaceOptions"; "workspacePlaceholder": "workspacePlaceholder"; "workspaceDisabled": "workspaceDisabled"; "workspaceValue": "workspaceValue"; "workspaceMultiple": "workspaceMultiple"; "workspaceSearchable": "workspaceSearchable"; "workspaceServerSearch": "workspaceServerSearch"; "workspaceHasMore": "workspaceHasMore"; "workspaceIsLoading": "workspaceIsLoading"; "workspaceOptionStyle": "workspaceOptionStyle"; "workspaceShowSelectAll": "workspaceShowSelectAll"; "workspaceCloseOnSelect": "workspaceCloseOnSelect"; "workspaceOnSearch": "workspaceOnSearch"; "workspaceOnLoadMore": "workspaceOnLoadMore"; "showWorkspaceSelector": "showWorkspaceSelector"; }, { "helpIconClick": "helpIconClick"; "plusIconClick": "plusIconClick"; "workspaceSearch": "workspaceSearch"; "workspaceLoadMore": "workspaceLoadMore"; "workspaceValueChange": "workspaceValueChange"; "workspaceSelectClick": "workspaceSelectClick"; }, never, ["*"]>;
63
+ static ɵcmp: i0.ɵɵComponentDeclaration<DashboardHeaderComponent, "cqa-dashboard-header", never, { "title": "title"; "badgeText": "badgeText"; "badgeClass": "badgeClass"; "headerClass": "headerClass"; "showHeader": "showHeader"; "showLogo": "showLogo"; "logoUrl": "logoUrl"; "showHelpIcon": "showHelpIcon"; "helpIconTooltip": "helpIconTooltip"; "showPlusIcon": "showPlusIcon"; "workspaceOptions": "workspaceOptions"; "workspacePlaceholder": "workspacePlaceholder"; "workspaceDisabled": "workspaceDisabled"; "workspaceValue": "workspaceValue"; "workspaceSearchable": "workspaceSearchable"; "workspaceServerSearch": "workspaceServerSearch"; "workspaceHasMore": "workspaceHasMore"; "workspaceIsLoading": "workspaceIsLoading"; "workspaceCloseOnSelect": "workspaceCloseOnSelect"; "workspaceOnSearch": "workspaceOnSearch"; "workspaceOnLoadMore": "workspaceOnLoadMore"; "workspaceItemSize": "workspaceItemSize"; "workspaceValueBy": "workspaceValueBy"; "workspaceViewportHeight": "workspaceViewportHeight"; "showWorkspaceSelector": "showWorkspaceSelector"; }, { "helpIconClick": "helpIconClick"; "plusIconClick": "plusIconClick"; "workspaceSearch": "workspaceSearch"; "workspaceLoadMore": "workspaceLoadMore"; "workspaceValueChange": "workspaceValueChange"; "workspaceSelectClick": "workspaceSelectClick"; }, never, ["*"]>;
50
64
  }
@@ -0,0 +1,118 @@
1
+ import { OnInit, OnChanges, SimpleChanges, ElementRef, EventEmitter } from '@angular/core';
2
+ import { FormGroup, FormControl } from '@angular/forms';
3
+ import { SelectOption } from '../../dynamic-select/dynamic-select-field.component';
4
+ import * as i0 from "@angular/core";
5
+ export interface WorkspaceSelectorConfig {
6
+ key?: string;
7
+ label?: string;
8
+ placeholder?: string;
9
+ disabled?: boolean;
10
+ searchable?: boolean;
11
+ /** If true, close the panel when an option is selected. */
12
+ closeOnSelect?: boolean;
13
+ /** Provide a default selected value if the control has no value yet. */
14
+ selectedValue?: any;
15
+ /** Optional callback invoked whenever the selection changes. */
16
+ onChange?: (value: any) => void;
17
+ /** Enable server-side search mode; component will emit search instead of local filtering. */
18
+ serverSearch?: boolean;
19
+ /**
20
+ * When true, triggers an initial search emit on panel open (serverSearch mode only).
21
+ * Defaults to false so opening the dropdown does NOT call the API.
22
+ */
23
+ initialFetchOnOpen?: boolean;
24
+ /** Indicates more results are available for infinite scroll. */
25
+ hasMore?: boolean;
26
+ /** Optional loading flag controlled by consumer to show loading state. */
27
+ isLoading?: boolean;
28
+ /** Optional callback for server-side search when query changes. */
29
+ onSearch?: (query: string) => void;
30
+ /** Optional callback when more data is requested (infinite scroll). */
31
+ onLoadMore?: (query?: string) => void;
32
+ /** Optional regex pattern or function to highlight parts of option text. */
33
+ highlightPattern?: RegExp | string | ((text: string) => string);
34
+ options: SelectOption[];
35
+ valueBy?: string;
36
+ /** Item size for virtual scroll (default: 48) */
37
+ itemSize?: number;
38
+ /** Viewport height for virtual scroll in pixels (default: 300) */
39
+ viewportHeight?: number;
40
+ }
41
+ export declare class WorkspaceSelectorComponent implements OnInit, OnChanges {
42
+ form?: FormGroup;
43
+ config: WorkspaceSelectorConfig;
44
+ /** Direct value binding - selected workspace object. Use this instead of form control. */
45
+ value?: any;
46
+ /** Emits the selected workspace object when selection changes */
47
+ valueChange: EventEmitter<any>;
48
+ selectionChange: EventEmitter<{
49
+ key: string;
50
+ value: any;
51
+ option?: SelectOption;
52
+ }>;
53
+ selectClick: EventEmitter<void>;
54
+ /** Emits when user types in search box (useful for server search) */
55
+ searchChange: EventEmitter<{
56
+ key: string;
57
+ query: string;
58
+ }>;
59
+ /** Emits when the component requests more data for the current query */
60
+ loadMore: EventEmitter<{
61
+ key: string;
62
+ query: string;
63
+ }>;
64
+ hostEl?: ElementRef<HTMLElement>;
65
+ dropdownPanel?: ElementRef<HTMLElement>;
66
+ viewport?: any;
67
+ internalForm: FormGroup;
68
+ internalControl: FormControl;
69
+ searchText: string;
70
+ isOpen: boolean;
71
+ loadingMore: boolean;
72
+ private lastOptionsLength;
73
+ private hasScrolledSinceOpen;
74
+ private panelScrollEl?;
75
+ private onPanelScroll;
76
+ constructor();
77
+ ngOnInit(): void;
78
+ ngOnChanges(changes: SimpleChanges): void;
79
+ private syncValueFromInput;
80
+ get currentForm(): FormGroup;
81
+ get controlKey(): string;
82
+ get currentControl(): FormControl;
83
+ /** Get current value - from form control if form provided, otherwise from direct value binding */
84
+ get currentValue(): any;
85
+ /** Set current value - to form control if form provided, otherwise update direct value */
86
+ set currentValue(val: any);
87
+ get isDisabled(): boolean;
88
+ get displayPlaceholder(): string | undefined;
89
+ get displayValue(): string;
90
+ get itemSize(): number;
91
+ get viewportHeight(): number;
92
+ get displayedOptions(): SelectOption[];
93
+ private toBoolean;
94
+ getOptionValue(opt: SelectOption | null | undefined): any;
95
+ getOptionLabel(opt: SelectOption): string;
96
+ private syncDisabledState;
97
+ private syncControlValueForMultipleMode;
98
+ private applySelectedValueIfNeeded;
99
+ private hasExistingValue;
100
+ isOptionSelected(opt: SelectOption): boolean;
101
+ filteredOptions(): SelectOption[];
102
+ private getSelectedIds;
103
+ onOptionClick(opt: SelectOption): void;
104
+ onSelectionChange(newValue?: any, selectedOption?: SelectOption): void;
105
+ onSearchInput(value: string): void;
106
+ toggleDropdown(): void;
107
+ openDropdown(): void;
108
+ closeDropdown(): void;
109
+ private setupScrollListener;
110
+ onScrolledIndexChange(index: number): void;
111
+ trackByOption: (index: number, opt: SelectOption | null | undefined) => any;
112
+ highlightText(text: string): string;
113
+ private escapeHtml;
114
+ get hasHighlighting(): boolean;
115
+ handleDocumentClick(event: MouseEvent): void;
116
+ static ɵfac: i0.ɵɵFactoryDeclaration<WorkspaceSelectorComponent, never>;
117
+ static ɵcmp: i0.ɵɵComponentDeclaration<WorkspaceSelectorComponent, "cqa-workspace-selector", never, { "form": "form"; "config": "config"; "value": "value"; }, { "valueChange": "valueChange"; "selectionChange": "selectionChange"; "selectClick": "selectClick"; "searchChange": "searchChange"; "loadMore": "loadMore"; }, never, never>;
118
+ }
@@ -21,137 +21,138 @@ import * as i18 from "./dashboards/metrics-card/metrics-block.component";
21
21
  import * as i19 from "./dashboards/chart-card/chart-card.component";
22
22
  import * as i20 from "./dashboards/progress-text-card/progress-text-card.component";
23
23
  import * as i21 from "./dashboards/dashboard-header/dashboard-header.component";
24
- import * as i22 from "./dashboards/coverage-module-card/coverage-module-card.component";
25
- import * as i23 from "./dashboards/test-distribution-card/test-distribution-card.component";
26
- import * as i24 from "./dashboards/failed-test-cases-card/failed-test-cases-card.component";
27
- import * as i25 from "./dynamic-select/dynamic-select-field.component";
28
- import * as i26 from "./add-prerequisite-cases-section/add-prerequisite-cases-section.component";
29
- import * as i27 from "./selected-filters/selected-filters.component";
30
- import * as i28 from "./dashboards/insight-card/insight-card.component";
31
- import * as i29 from "./badge/badge.component";
32
- import * as i30 from "./dropdown-button/dropdown-button.component";
33
- import * as i31 from "./dashboards/heat-error-map-cell/heat-error-map-cell.component";
34
- import * as i32 from "./empty-state/empty-state.component";
35
- import * as i33 from "./templates/table-template.component";
36
- import * as i34 from "./full-table-loader/full-table-loader.component";
37
- import * as i35 from "./table-data-loader/table-data-loader.component";
38
- import * as i36 from "./execution-screen/basic-step/basic-step.component";
39
- import * as i37 from "./execution-screen/step-renderer/step-renderer.component";
40
- import * as i38 from "./execution-screen/step-group/step-group.component";
41
- import * as i39 from "./execution-screen/loop-step/loop-step.component";
42
- import * as i40 from "./execution-screen/condition-step/condition-step.component";
43
- import * as i41 from "./execution-screen/failed-step/failed-step.component";
44
- import * as i42 from "./execution-screen/updated-failed-step/updated-failed-step.component";
45
- import * as i43 from "./execution-screen/view-more-failed-step-button/view-more-failed-step-button.component";
46
- import * as i44 from "./execution-screen/self-heal-analysis/self-heal-analysis.component";
47
- import * as i45 from "./execution-screen/ai-agent-step/ai-agent-step.component";
48
- import * as i46 from "./execution-screen/ai-action-step/ai-action-step.component";
49
- import * as i47 from "./execution-screen/api-step/api-step.component";
50
- import * as i48 from "./execution-screen/file-download-step/file-download-step.component";
51
- import * as i49 from "./execution-screen/document-verification-step/document-verification-step.component";
52
- import * as i50 from "./execution-screen/live-execution-step/live-execution-step.component";
53
- import * as i51 from "./execution-screen/ai-logs-with-reasoning/ai-logs-with-reasoning.component";
54
- import * as i52 from "./execution-screen/jump-to-step-modal/jump-to-step-modal.component";
55
- import * as i53 from "./execution-screen/breakpoints-modal/breakpoints-modal.component";
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";
24
+ import * as i22 from "./dashboards/workspace-selector/workspace-selector.component";
25
+ import * as i23 from "./dashboards/coverage-module-card/coverage-module-card.component";
26
+ import * as i24 from "./dashboards/test-distribution-card/test-distribution-card.component";
27
+ import * as i25 from "./dashboards/failed-test-cases-card/failed-test-cases-card.component";
28
+ import * as i26 from "./dynamic-select/dynamic-select-field.component";
29
+ import * as i27 from "./add-prerequisite-cases-section/add-prerequisite-cases-section.component";
30
+ import * as i28 from "./selected-filters/selected-filters.component";
31
+ import * as i29 from "./dashboards/insight-card/insight-card.component";
32
+ import * as i30 from "./badge/badge.component";
33
+ import * as i31 from "./dropdown-button/dropdown-button.component";
34
+ import * as i32 from "./dashboards/heat-error-map-cell/heat-error-map-cell.component";
35
+ import * as i33 from "./empty-state/empty-state.component";
36
+ import * as i34 from "./templates/table-template.component";
37
+ import * as i35 from "./full-table-loader/full-table-loader.component";
38
+ import * as i36 from "./table-data-loader/table-data-loader.component";
39
+ import * as i37 from "./execution-screen/basic-step/basic-step.component";
40
+ import * as i38 from "./execution-screen/step-renderer/step-renderer.component";
41
+ import * as i39 from "./execution-screen/step-group/step-group.component";
42
+ import * as i40 from "./execution-screen/loop-step/loop-step.component";
43
+ import * as i41 from "./execution-screen/condition-step/condition-step.component";
44
+ import * as i42 from "./execution-screen/failed-step/failed-step.component";
45
+ import * as i43 from "./execution-screen/updated-failed-step/updated-failed-step.component";
46
+ import * as i44 from "./execution-screen/view-more-failed-step-button/view-more-failed-step-button.component";
47
+ import * as i45 from "./execution-screen/self-heal-analysis/self-heal-analysis.component";
48
+ import * as i46 from "./execution-screen/ai-agent-step/ai-agent-step.component";
49
+ import * as i47 from "./execution-screen/ai-action-step/ai-action-step.component";
50
+ import * as i48 from "./execution-screen/api-step/api-step.component";
51
+ import * as i49 from "./execution-screen/file-download-step/file-download-step.component";
52
+ import * as i50 from "./execution-screen/document-verification-step/document-verification-step.component";
53
+ import * as i51 from "./execution-screen/live-execution-step/live-execution-step.component";
54
+ import * as i52 from "./execution-screen/ai-logs-with-reasoning/ai-logs-with-reasoning.component";
55
+ import * as i53 from "./execution-screen/jump-to-step-modal/jump-to-step-modal.component";
56
+ import * as i54 from "./execution-screen/breakpoints-modal/breakpoints-modal.component";
57
+ import * as i55 from "./execution-screen/recording-banner/recording-banner.component";
58
+ import * as i56 from "./execution-screen/review-recorded-steps-modal/review-recorded-steps-modal.component";
59
+ import * as i57 from "./execution-screen/main-step-collapse/main-step-collapse.component";
60
+ import * as i58 from "./execution-screen/visual-comparison/visual-comparison.component";
61
+ import * as i59 from "./simulator/simulator.component";
62
+ import * as i60 from "./console-alert/console-alert.component";
63
+ import * as i61 from "./ai-debug-alert/ai-debug-alert.component";
64
+ import * as i62 from "./network-request/network-request.component";
65
+ import * as i63 from "./run-history-card/run-history-card.component";
66
+ import * as i64 from "./visual-difference-modal/visual-difference-modal.component";
67
+ import * as i65 from "./configuration-card/configuration-card.component";
68
+ import * as i66 from "./compare-runs/compare-runs.component";
69
+ import * as i67 from "./iterations-loop/iterations-loop.component";
70
+ import * as i68 from "./failed-step-card/failed-step-card.component";
71
+ import * as i69 from "./custom-input/custom-input.component";
72
+ import * as i70 from "./custom-textarea/custom-textarea.component";
73
+ import * as i71 from "./custom-toggle/custom-toggle.component";
74
+ import * as i72 from "./file-upload/file-upload.component";
75
+ import * as i73 from "./ai-reasoning/ai-reasoning.component";
76
+ import * as i74 from "./execution-result-modal/execution-result-modal.component";
77
+ import * as i75 from "./execution-screen/session-changes-modal/session-changes-modal.component";
78
+ import * as i76 from "./error-modal/error-modal.component";
79
+ import * as i77 from "./export-code-modal/export-code-modal.component";
80
+ import * as i78 from "./progress-indicator/progress-indicator.component";
81
+ import * as i79 from "./step-progress-card/step-progress-card.component";
82
+ import * as i80 from "./step-status-card/step-status-card.component";
83
+ import * as i81 from "./execution-screen/db-verification-step/db-verification-step.component";
84
+ import * as i82 from "./execution-screen/db-query-execution-item/db-query-execution-item.component";
85
+ import * as i83 from "./test-case-details/normal-step/normal-step.component";
86
+ import * as i84 from "./test-case-details/loop-step/loop-step.component";
87
+ import * as i85 from "./test-case-details/condition-step/condition-step.component";
88
+ import * as i86 from "./test-case-details/step-group/step-group.component";
89
+ import * as i87 from "./test-case-details/test-case-details-renderer/test-case-details-renderer.component";
90
+ import * as i88 from "./test-case-details/api-step/api-step.component";
91
+ import * as i89 from "./test-case-details/database-step/database-step.component";
92
+ import * as i90 from "./test-case-details/ai-agent-step/ai-agent-step.component";
93
+ import * as i91 from "./test-case-details/ai-verify-step/ai-verify-step.component";
94
+ import * as i92 from "./test-case-details/upload-step/upload-step.component";
95
+ import * as i93 from "./test-case-details/screenshot-step/screenshot-step.component";
96
+ import * as i94 from "./test-case-details/scroll-step/scroll-step.component";
97
+ import * as i95 from "./test-case-details/verify-url-step/verify-url-step.component";
98
+ import * as i96 from "./test-case-details/restore-session-step/restore-session-step.component";
99
+ import * as i97 from "./test-case-details/custom-code-step/custom-code-step.component";
100
+ import * as i98 from "./test-case-details/custom-edit-step/custom-edit-step.component";
101
+ import * as i99 from "./item-list/item-list.component";
102
+ import * as i100 from "./test-case-details/test-data-modal/test-data-modal.component";
103
+ import * as i101 from "./test-case-details/create-step-group/create-step-group.component";
104
+ import * as i102 from "./test-case-details/delete-steps/delete-steps.component";
105
+ import * as i103 from "./test-case-details/api-edit-step/api-edit-step.component";
106
+ import * as i104 from "./live-conversation/live-conversation.component";
107
+ import * as i105 from "./step-builder/step-builder-action/step-builder-action.component";
108
+ import * as i106 from "./step-builder/step-builder-loop/step-builder-loop.component";
109
+ import * as i107 from "./test-case-details/element-popup/element-popup.component";
110
+ import * as i108 from "./test-case-details/element-popup/element-form/element-form.component";
111
+ import * as i109 from "./step-builder/step-builder-condition/step-builder-condition.component";
112
+ import * as i110 from "./step-builder/step-builder-database/step-builder-database.component";
113
+ import * as i111 from "./step-builder/step-builder-ai-agent/step-builder-ai-agent.component";
114
+ import * as i112 from "./step-builder/step-builder-custom-code/step-builder-custom-code.component";
115
+ import * as i113 from "./step-builder/step-builder-record-step/step-builder-record-step.component";
116
+ import * as i114 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
117
+ import * as i115 from "./test-case-details/element-list/element-list.component";
118
+ import * as i116 from "./step-builder/step-builder-document/step-builder-document.component";
119
+ import * as i117 from "./detail-side-panel/detail-side-panel.component";
120
+ import * as i118 from "./detail-drawer/detail-drawer.component";
121
+ import * as i119 from "./detail-drawer/detail-drawer-tab/detail-drawer-tab.component";
122
+ import * as i120 from "./detail-drawer/detail-drawer-tab-content.directive";
123
+ import * as i121 from "./test-case-details/test-case-details.component";
124
+ import * as i122 from "./test-case-details/test-case-details-edit/test-case-details-edit.component";
125
+ import * as i123 from "./step-builder/step-builder-group/step-builder-group.component";
126
+ import * as i124 from "./test-case-details/step-details-drawer/step-details-drawer.component";
127
+ import * as i125 from "./step-builder/template-variables-form/template-variables-form.component";
128
+ import * as i126 from "./step-builder/advanced-variables-form/advanced-variables-form.component";
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";
152
153
  export declare class UiKitModule {
153
154
  constructor(iconRegistry: MatIconRegistry);
154
155
  static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
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]>;
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]>;
156
157
  static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
157
158
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cqa-lib/cqa-ui",
3
- "version": "1.1.270",
3
+ "version": "1.1.271",
4
4
  "description": "UI Kit library for Angular 13.4",
5
5
  "keywords": [
6
6
  "angular",
package/public-api.d.ts CHANGED
@@ -156,3 +156,4 @@ export * from './lib/execution-screen/jump-to-step-modal/jump-to-step-modal.comp
156
156
  export * from './lib/execution-screen/breakpoints-modal/breakpoints-modal.component';
157
157
  export * from './lib/execution-screen/recording-banner/recording-banner.component';
158
158
  export * from './lib/execution-screen/review-recorded-steps-modal/review-recorded-steps-modal.component';
159
+ export * from './lib/dashboards/workspace-selector/workspace-selector.component';