@cqa-lib/cqa-ui 1.1.529 → 1.1.530

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,34 @@
1
+ import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
2
+ import { FormGroup } from '@angular/forms';
3
+ import { DynamicSelectFieldConfig } from '../dynamic-select/dynamic-select-field.component';
4
+ import { AuditDateRange, AuditEntry, AuditFilterOption, AuditLogFilterState } from './audit-log-drawer.models';
5
+ import * as i0 from "@angular/core";
6
+ export declare class AuditLogDrawerComponent implements OnInit, OnDestroy {
7
+ entries: AuditEntry[];
8
+ entityTypeOptions: AuditFilterOption[];
9
+ envOptions: AuditFilterOption[];
10
+ userOptions: AuditFilterOption[];
11
+ defaultRange: AuditDateRange;
12
+ isLoading: boolean;
13
+ filterChange: EventEmitter<AuditLogFilterState>;
14
+ close: EventEmitter<void>;
15
+ readonly ALL = "__all__";
16
+ readonly filtersForm: FormGroup;
17
+ entityConfig: DynamicSelectFieldConfig;
18
+ envConfig: DynamicSelectFieldConfig;
19
+ userConfig: DynamicSelectFieldConfig;
20
+ rangeConfig: DynamicSelectFieldConfig;
21
+ trackById: (_: number, e: AuditEntry) => string;
22
+ private readonly destroy$;
23
+ private readonly rangeMs;
24
+ ngOnInit(): void;
25
+ ngOnDestroy(): void;
26
+ get filteredEntries(): AuditEntry[];
27
+ onClose(): void;
28
+ private entryMatchesEnv;
29
+ private parseTs;
30
+ private currentFilterState;
31
+ private buildSelectConfig;
32
+ static ɵfac: i0.ɵɵFactoryDeclaration<AuditLogDrawerComponent, never>;
33
+ static ɵcmp: i0.ɵɵComponentDeclaration<AuditLogDrawerComponent, "cqa-audit-log-drawer", never, { "entries": "entries"; "entityTypeOptions": "entityTypeOptions"; "envOptions": "envOptions"; "userOptions": "userOptions"; "defaultRange": "defaultRange"; "isLoading": "isLoading"; }, { "filterChange": "filterChange"; "close": "close"; }, never, never>;
34
+ }
@@ -0,0 +1,43 @@
1
+ import { Observable, Subject } from 'rxjs';
2
+ export declare type AuditEntityType = 'Environment Variable' | 'Test Data Profile' | 'Global Data';
3
+ export declare type AuditDateRange = '24h' | '7d' | '30d' | 'all';
4
+ export interface AuditEntry {
5
+ id: string;
6
+ ts: string;
7
+ user: string;
8
+ entityType: AuditEntityType;
9
+ entityName: string;
10
+ change: string;
11
+ before?: string | null;
12
+ after?: string | null;
13
+ }
14
+ export interface AuditFilterOption {
15
+ value: string;
16
+ label: string;
17
+ }
18
+ export interface AuditLogDrawerInputs {
19
+ entries: AuditEntry[];
20
+ entityTypeOptions?: AuditFilterOption[];
21
+ envOptions?: AuditFilterOption[];
22
+ userOptions?: AuditFilterOption[];
23
+ defaultRange?: AuditDateRange;
24
+ isLoading?: boolean;
25
+ }
26
+ export interface AuditLogFilterState {
27
+ entityType: string;
28
+ env: string;
29
+ user: string;
30
+ range: AuditDateRange;
31
+ }
32
+ export interface AuditLogDrawerRef {
33
+ filterChange$: Observable<AuditLogFilterState>;
34
+ afterClosed$: Observable<void>;
35
+ close(): void;
36
+ updateEntries(entries: AuditEntry[]): void;
37
+ updateLoading(isLoading: boolean): void;
38
+ }
39
+ export declare const ALL_FILTER_VALUE = "__all__";
40
+ export interface AuditLogDrawerInternalRef extends AuditLogDrawerRef {
41
+ readonly filterChange: Subject<AuditLogFilterState>;
42
+ readonly afterClosed: Subject<void>;
43
+ }
@@ -0,0 +1,13 @@
1
+ import { Injector } from '@angular/core';
2
+ import { Overlay } from '@angular/cdk/overlay';
3
+ import { AuditLogDrawerInputs, AuditLogDrawerRef } from './audit-log-drawer.models';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AuditLogDrawerService {
6
+ private readonly overlay;
7
+ private readonly injector;
8
+ private currentOverlayRef;
9
+ constructor(overlay: Overlay, injector: Injector);
10
+ open(inputs: AuditLogDrawerInputs): AuditLogDrawerRef;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<AuditLogDrawerService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<AuditLogDrawerService>;
13
+ }
@@ -0,0 +1,10 @@
1
+ import { AuditEntry } from './audit-log-drawer.models';
2
+ import * as i0 from "@angular/core";
3
+ export declare class AuditLogEntryCardComponent {
4
+ entry: AuditEntry;
5
+ get userShortName(): string;
6
+ get etypeClass(): string;
7
+ get hasDiff(): boolean;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<AuditLogEntryCardComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<AuditLogEntryCardComponent, "cqa-audit-log-entry-card", never, { "entry": "entry"; }, {}, never, never>;
10
+ }
@@ -0,0 +1,32 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { DndDropEvent } from 'ngx-drag-drop';
3
+ import { ManageColumnsDialogValue } from './manage-columns-dialog.models';
4
+ import * as i0 from "@angular/core";
5
+ interface ManageColumnsItem {
6
+ uid: number;
7
+ originalName: string | null;
8
+ name: string;
9
+ }
10
+ export declare class ManageColumnsDialogComponent implements OnInit {
11
+ columns: string[];
12
+ lockedColumns: string[];
13
+ items: ManageColumnsItem[];
14
+ newColName: string;
15
+ columnsError: string | null;
16
+ trackByUid: (_: number, item: ManageColumnsItem) => number;
17
+ private nextUid;
18
+ ngOnInit(): void;
19
+ isLocked(item: ManageColumnsItem): boolean;
20
+ onDndDrop(event: DndDropEvent): void;
21
+ onMove(index: number, dir: -1 | 1): void;
22
+ onRename(index: number, value: string): void;
23
+ onRemove(index: number): void;
24
+ onNewColNameChange(value: string): void;
25
+ onAdd(): void;
26
+ get canAdd(): boolean;
27
+ getValue(): ManageColumnsDialogValue | null;
28
+ private itemsHasName;
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<ManageColumnsDialogComponent, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<ManageColumnsDialogComponent, "cqa-manage-columns-dialog", never, { "columns": "columns"; "lockedColumns": "lockedColumns"; }, {}, never, never>;
31
+ }
32
+ export {};
@@ -0,0 +1,11 @@
1
+ export interface ManageColumnsDialogColumn {
2
+ originalName: string | null;
3
+ name: string;
4
+ }
5
+ export interface ManageColumnsDialogValue {
6
+ columns: ManageColumnsDialogColumn[];
7
+ }
8
+ export interface ManageColumnsDialogInputs {
9
+ columns?: string[];
10
+ lockedColumns?: string[];
11
+ }
@@ -100,97 +100,100 @@ import * as i97 from "./new-global-variable-dialog/new-global-variable-dialog.co
100
100
  import * as i98 from "./new-environment-dialog/new-environment-dialog.component";
101
101
  import * as i99 from "./new-environment-variable-dialog/new-environment-variable-dialog.component";
102
102
  import * as i100 from "./new-test-data-profile-dialog/new-test-data-profile-dialog.component";
103
- import * as i101 from "./assign-environments-dialog/assign-environments-dialog.component";
104
- import * as i102 from "./permission-toggle/permission-toggle.component";
105
- import * as i103 from "./export-code-modal/export-code-modal.component";
106
- import * as i104 from "./progress-indicator/progress-indicator.component";
107
- import * as i105 from "./step-progress-card/step-progress-card.component";
108
- import * as i106 from "./step-status-card/step-status-card.component";
109
- import * as i107 from "./execution-screen/db-verification-step/db-verification-step.component";
110
- import * as i108 from "./execution-screen/db-query-execution-item/db-query-execution-item.component";
111
- import * as i109 from "./test-case-details/normal-step/normal-step.component";
112
- import * as i110 from "./test-case-details/loop-step/loop-step.component";
113
- import * as i111 from "./test-case-details/condition-step/condition-step.component";
114
- import * as i112 from "./test-case-details/step-group/step-group.component";
115
- import * as i113 from "./test-case-details/test-case-details-renderer/test-case-details-renderer.component";
116
- import * as i114 from "./test-case-details/api-step/api-step.component";
117
- import * as i115 from "./test-case-details/database-step/database-step.component";
118
- import * as i116 from "./test-case-details/ai-agent-step/ai-agent-step.component";
119
- import * as i117 from "./test-case-details/ai-verify-step/ai-verify-step.component";
120
- import * as i118 from "./test-case-details/upload-step/upload-step.component";
121
- import * as i119 from "./test-case-details/screenshot-step/screenshot-step.component";
122
- import * as i120 from "./test-case-details/scroll-step/scroll-step.component";
123
- import * as i121 from "./test-case-details/verify-url-step/verify-url-step.component";
124
- import * as i122 from "./test-case-details/restore-session-step/restore-session-step.component";
125
- import * as i123 from "./test-case-details/custom-code-step/custom-code-step.component";
126
- import * as i124 from "./test-case-details/custom-edit-step/custom-edit-step.component";
127
- import * as i125 from "./item-list/item-list.component";
128
- import * as i126 from "./test-case-details/test-data-modal/test-data-modal.component";
129
- import * as i127 from "./test-case-details/create-step-group/create-step-group.component";
130
- import * as i128 from "./test-case-details/delete-steps/delete-steps.component";
131
- import * as i129 from "./test-case-details/run-execution-alert/run-execution-alert.component";
132
- import * as i130 from "./test-case-details/api-edit-step/api-edit-step.component";
133
- import * as i131 from "./live-conversation/live-conversation.component";
134
- import * as i132 from "./step-builder/step-builder-action/step-builder-action.component";
135
- import * as i133 from "./step-builder/step-builder-loop/step-builder-loop.component";
136
- import * as i134 from "./test-case-details/element-popup/element-popup.component";
137
- import * as i135 from "./test-case-details/element-popup/element-form/element-form.component";
138
- import * as i136 from "./step-builder/step-builder-condition/step-builder-condition.component";
139
- import * as i137 from "./step-builder/step-builder-database/step-builder-database.component";
140
- import * as i138 from "./step-builder/step-builder-ai-agent/step-builder-ai-agent.component";
141
- import * as i139 from "./step-builder/step-builder-custom-code/step-builder-custom-code.component";
142
- import * as i140 from "./step-builder/step-builder-record-step/step-builder-record-step.component";
143
- import * as i141 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
144
- import * as i142 from "./test-case-details/element-list/element-list.component";
145
- import * as i143 from "./step-builder/step-builder-document/step-builder-document.component";
146
- import * as i144 from "./detail-side-panel/detail-side-panel.component";
147
- import * as i145 from "./detail-drawer/detail-drawer.component";
148
- import * as i146 from "./detail-drawer/detail-drawer-tab/detail-drawer-tab.component";
149
- import * as i147 from "./detail-drawer/detail-drawer-tab-content.directive";
150
- import * as i148 from "./test-case-details/test-case-details.component";
151
- import * as i149 from "./test-case-details/test-case-details-edit/test-case-details-edit.component";
152
- import * as i150 from "./test-case-details/api-mocking-card/api-mocking-card.component";
153
- import * as i151 from "./step-builder/step-builder-group/step-builder-group.component";
154
- import * as i152 from "./test-case-details/step-details-drawer/step-details-drawer.component";
155
- import * as i153 from "./step-builder/template-variables-form/template-variables-form.component";
156
- import * as i154 from "./step-builder/advanced-variables-form/advanced-variables-form.component";
157
- import * as i155 from "./test-case-details/step-details-modal/step-details-modal.component";
158
- import * as i156 from "./pipes/safe-html.pipe";
159
- import * as i157 from "./questionnaire-list/questionnaire-list.component";
160
- import * as i158 from "./change-history/change-history.component";
161
- import * as i159 from "./pipes/camel-to-title.pipe";
162
- import * as i160 from "./version-history/version-history-list/version-history-list.component";
163
- import * as i161 from "./version-history/version-history-compare/version-history-compare.component";
164
- import * as i162 from "./version-history/version-history-detail/version-history-detail.component";
165
- import * as i163 from "./version-history/version-history-restore-confirm/version-history-restore-confirm.component";
166
- import * as i164 from "./version-history/new-version-history-detail/new-version-history-detail.component";
167
- import * as i165 from "@angular/common";
168
- import * as i166 from "@angular/forms";
169
- import * as i167 from "@angular/platform-browser/animations";
170
- import * as i168 from "@angular/material/icon";
171
- import * as i169 from "@angular/material/menu";
172
- import * as i170 from "@angular/material/button";
173
- import * as i171 from "@angular/material/form-field";
174
- import * as i172 from "@angular/material/select";
175
- import * as i173 from "@angular/material/core";
176
- import * as i174 from "@angular/material/checkbox";
177
- import * as i175 from "@angular/material/radio";
178
- import * as i176 from "@angular/material/slide-toggle";
179
- import * as i177 from "@angular/material/datepicker";
180
- import * as i178 from "@angular/material/progress-spinner";
181
- import * as i179 from "@angular/material/tooltip";
182
- import * as i180 from "@angular/material/dialog";
183
- import * as i181 from "@angular/material/table";
184
- import * as i182 from "@angular/material/input";
185
- import * as i183 from "@angular/cdk/overlay";
186
- import * as i184 from "@angular/cdk/portal";
187
- import * as i185 from "@angular/cdk/scrolling";
188
- import * as i186 from "ngx-typed-js";
189
- import * as i187 from "ngx-drag-drop";
190
- import * as i188 from "ngx-monaco-editor";
103
+ import * as i101 from "./manage-columns-dialog/manage-columns-dialog.component";
104
+ import * as i102 from "./audit-log-drawer/audit-log-drawer.component";
105
+ import * as i103 from "./audit-log-drawer/audit-log-entry-card.component";
106
+ import * as i104 from "./assign-environments-dialog/assign-environments-dialog.component";
107
+ import * as i105 from "./permission-toggle/permission-toggle.component";
108
+ import * as i106 from "./export-code-modal/export-code-modal.component";
109
+ import * as i107 from "./progress-indicator/progress-indicator.component";
110
+ import * as i108 from "./step-progress-card/step-progress-card.component";
111
+ import * as i109 from "./step-status-card/step-status-card.component";
112
+ import * as i110 from "./execution-screen/db-verification-step/db-verification-step.component";
113
+ import * as i111 from "./execution-screen/db-query-execution-item/db-query-execution-item.component";
114
+ import * as i112 from "./test-case-details/normal-step/normal-step.component";
115
+ import * as i113 from "./test-case-details/loop-step/loop-step.component";
116
+ import * as i114 from "./test-case-details/condition-step/condition-step.component";
117
+ import * as i115 from "./test-case-details/step-group/step-group.component";
118
+ import * as i116 from "./test-case-details/test-case-details-renderer/test-case-details-renderer.component";
119
+ import * as i117 from "./test-case-details/api-step/api-step.component";
120
+ import * as i118 from "./test-case-details/database-step/database-step.component";
121
+ import * as i119 from "./test-case-details/ai-agent-step/ai-agent-step.component";
122
+ import * as i120 from "./test-case-details/ai-verify-step/ai-verify-step.component";
123
+ import * as i121 from "./test-case-details/upload-step/upload-step.component";
124
+ import * as i122 from "./test-case-details/screenshot-step/screenshot-step.component";
125
+ import * as i123 from "./test-case-details/scroll-step/scroll-step.component";
126
+ import * as i124 from "./test-case-details/verify-url-step/verify-url-step.component";
127
+ import * as i125 from "./test-case-details/restore-session-step/restore-session-step.component";
128
+ import * as i126 from "./test-case-details/custom-code-step/custom-code-step.component";
129
+ import * as i127 from "./test-case-details/custom-edit-step/custom-edit-step.component";
130
+ import * as i128 from "./item-list/item-list.component";
131
+ import * as i129 from "./test-case-details/test-data-modal/test-data-modal.component";
132
+ import * as i130 from "./test-case-details/create-step-group/create-step-group.component";
133
+ import * as i131 from "./test-case-details/delete-steps/delete-steps.component";
134
+ import * as i132 from "./test-case-details/run-execution-alert/run-execution-alert.component";
135
+ import * as i133 from "./test-case-details/api-edit-step/api-edit-step.component";
136
+ import * as i134 from "./live-conversation/live-conversation.component";
137
+ import * as i135 from "./step-builder/step-builder-action/step-builder-action.component";
138
+ import * as i136 from "./step-builder/step-builder-loop/step-builder-loop.component";
139
+ import * as i137 from "./test-case-details/element-popup/element-popup.component";
140
+ import * as i138 from "./test-case-details/element-popup/element-form/element-form.component";
141
+ import * as i139 from "./step-builder/step-builder-condition/step-builder-condition.component";
142
+ import * as i140 from "./step-builder/step-builder-database/step-builder-database.component";
143
+ import * as i141 from "./step-builder/step-builder-ai-agent/step-builder-ai-agent.component";
144
+ import * as i142 from "./step-builder/step-builder-custom-code/step-builder-custom-code.component";
145
+ import * as i143 from "./step-builder/step-builder-record-step/step-builder-record-step.component";
146
+ import * as i144 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
147
+ import * as i145 from "./test-case-details/element-list/element-list.component";
148
+ import * as i146 from "./step-builder/step-builder-document/step-builder-document.component";
149
+ import * as i147 from "./detail-side-panel/detail-side-panel.component";
150
+ import * as i148 from "./detail-drawer/detail-drawer.component";
151
+ import * as i149 from "./detail-drawer/detail-drawer-tab/detail-drawer-tab.component";
152
+ import * as i150 from "./detail-drawer/detail-drawer-tab-content.directive";
153
+ import * as i151 from "./test-case-details/test-case-details.component";
154
+ import * as i152 from "./test-case-details/test-case-details-edit/test-case-details-edit.component";
155
+ import * as i153 from "./test-case-details/api-mocking-card/api-mocking-card.component";
156
+ import * as i154 from "./step-builder/step-builder-group/step-builder-group.component";
157
+ import * as i155 from "./test-case-details/step-details-drawer/step-details-drawer.component";
158
+ import * as i156 from "./step-builder/template-variables-form/template-variables-form.component";
159
+ import * as i157 from "./step-builder/advanced-variables-form/advanced-variables-form.component";
160
+ import * as i158 from "./test-case-details/step-details-modal/step-details-modal.component";
161
+ import * as i159 from "./pipes/safe-html.pipe";
162
+ import * as i160 from "./questionnaire-list/questionnaire-list.component";
163
+ import * as i161 from "./change-history/change-history.component";
164
+ import * as i162 from "./pipes/camel-to-title.pipe";
165
+ import * as i163 from "./version-history/version-history-list/version-history-list.component";
166
+ import * as i164 from "./version-history/version-history-compare/version-history-compare.component";
167
+ import * as i165 from "./version-history/version-history-detail/version-history-detail.component";
168
+ import * as i166 from "./version-history/version-history-restore-confirm/version-history-restore-confirm.component";
169
+ import * as i167 from "./version-history/new-version-history-detail/new-version-history-detail.component";
170
+ import * as i168 from "@angular/common";
171
+ import * as i169 from "@angular/forms";
172
+ import * as i170 from "@angular/platform-browser/animations";
173
+ import * as i171 from "@angular/material/icon";
174
+ import * as i172 from "@angular/material/menu";
175
+ import * as i173 from "@angular/material/button";
176
+ import * as i174 from "@angular/material/form-field";
177
+ import * as i175 from "@angular/material/select";
178
+ import * as i176 from "@angular/material/core";
179
+ import * as i177 from "@angular/material/checkbox";
180
+ import * as i178 from "@angular/material/radio";
181
+ import * as i179 from "@angular/material/slide-toggle";
182
+ import * as i180 from "@angular/material/datepicker";
183
+ import * as i181 from "@angular/material/progress-spinner";
184
+ import * as i182 from "@angular/material/tooltip";
185
+ import * as i183 from "@angular/material/dialog";
186
+ import * as i184 from "@angular/material/table";
187
+ import * as i185 from "@angular/material/input";
188
+ import * as i186 from "@angular/cdk/overlay";
189
+ import * as i187 from "@angular/cdk/portal";
190
+ import * as i188 from "@angular/cdk/scrolling";
191
+ import * as i189 from "ngx-typed-js";
192
+ import * as i190 from "ngx-drag-drop";
193
+ import * as i191 from "ngx-monaco-editor";
191
194
  export declare class UiKitModule {
192
195
  constructor(iconRegistry: MatIconRegistry);
193
196
  static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
194
- static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.DialogComponent, typeof i8.DynamicTableComponent, typeof i9.DynamicCellTemplateDirective, typeof i9.DynamicHeaderTemplateDirective, typeof i10.DynamicCellContainerDirective, typeof i11.PaginationComponent, typeof i12.ActionMenuButtonComponent, typeof i13.OtherButtonComponent, typeof i14.DynamicFilterComponent, typeof i15.DaterangepickerDirective, typeof i16.DaterangepickerComponent, typeof i17.ColumnVisibilityComponent, typeof i18.TableActionToolbarComponent, typeof i19.MetricsCardComponent, typeof i20.MetricsBlockComponent, typeof i21.ChartCardComponent, typeof i22.ProgressTextCardComponent, typeof i23.DashboardHeaderComponent, typeof i24.WorkspaceSelectorComponent, typeof i25.CoverageModuleCardComponent, typeof i26.TestDistributionCardComponent, typeof i27.FailedTestCasesCardComponent, typeof i28.DynamicSelectFieldComponent, typeof i29.AddPrerequisiteCasesSectionComponent, typeof i30.SelectedFiltersComponent, typeof i31.InsightCardComponent, typeof i32.BadgeComponent, typeof i33.DropdownButtonComponent, typeof i34.HeatErrorMapCellComponent, typeof i35.EmptyStateComponent, typeof i36.TableTemplateComponent, typeof i37.ModularTableTemplateComponent, typeof i38.FolderSidebarComponent, typeof i39.MoveToFolderDialogComponent, typeof i40.NewFolderDialogComponent, typeof i41.DeleteFolderDialogComponent, typeof i42.RowDragDirective, typeof i43.FolderDropDirective, typeof i44.FolderDragDirective, typeof i45.FullTableLoaderComponent, typeof i46.TableDataLoaderComponent, typeof i47.BasicStepComponent, typeof i48.StepRendererComponent, typeof i49.StepGroupComponent, typeof i50.LoopStepComponent, typeof i51.ConditionStepComponent, typeof i52.ConditionDebugStepComponent, typeof i53.ConditionBranchEditorComponent, typeof i54.FailedStepComponent, typeof i55.UpdatedFailedStepComponent, typeof i56.ViewMoreFailedStepButtonComponent, typeof i57.SelfHealAnalysisComponent, typeof i58.AIAgentStepComponent, typeof i59.AIActionStepComponent, typeof i60.ApiStepComponent, typeof i61.FileDownloadStepComponent, typeof i62.DocumentVerificationStepComponent, typeof i63.LiveExecutionStepComponent, typeof i64.AiLogsWithReasoningComponent, typeof i65.JumpToStepModalComponent, typeof i66.BreakpointsModalComponent, typeof i67.RecordingBannerComponent, typeof i68.ReviewRecordedStepsModalComponent, typeof i69.MainStepCollapseComponent, typeof i70.VisualComparisonComponent, typeof i71.SimulatorComponent, typeof i72.ConsoleAlertComponent, typeof i73.AiDebugAlertComponent, typeof i74.NetworkRequestComponent, typeof i75.RunHistoryCardComponent, typeof i76.AiPromptCardComponent, typeof i77.VisualDifferenceModalComponent, typeof i78.ConfigurationCardComponent, typeof i79.CompareRunsComponent, typeof i80.ViewCompareButtonComponent, typeof i81.TestCaseLinkCellComponent, typeof i82.IterationsLoopComponent, typeof i83.FailedStepCardComponent, typeof i84.CustomInputComponent, typeof i85.MixedVariableInputComponent, typeof i86.CustomTextareaComponent, typeof i87.CodeEditorComponent, typeof i88.CustomToggleComponent, typeof i89.FileUploadComponent, typeof i90.AiReasoningComponent, typeof i91.ExecutionResultModalComponent, typeof i92.SessionChangesModalComponent, typeof i93.ErrorModalComponent, typeof i94.SessionRestorationDialogComponent, typeof i95.CaptureVideoDialogComponent, typeof i96.SubStepsConfirmationDialogComponent, typeof i97.NewGlobalVariableDialogComponent, typeof i98.NewEnvironmentDialogComponent, typeof i99.NewEnvironmentVariableDialogComponent, typeof i100.NewTestDataProfileDialogComponent, typeof i101.AssignEnvironmentsDialogComponent, typeof i102.PermissionToggleComponent, typeof i103.ExportCodeModalComponent, typeof i104.ProgressIndicatorComponent, typeof i105.StepProgressCardComponent, typeof i106.StepStatusCardComponent, typeof i107.DbVerificationStepComponent, typeof i108.DbQueryExecutionItemComponent, typeof i109.TestCaseNormalStepComponent, typeof i110.TestCaseLoopStepComponent, typeof i111.TestCaseConditionStepComponent, typeof i112.TestCaseStepGroupComponent, typeof i113.TestCaseDetailsRendererComponent, typeof i114.TestCaseApiStepComponent, typeof i115.TestCaseDatabaseStepComponent, typeof i116.TestCaseAiAgentStepComponent, typeof i117.TestCaseAiVerifyStepComponent, typeof i118.TestCaseUploadStepComponent, typeof i119.TestCaseScreenshotStepComponent, typeof i120.TestCaseScrollStepComponent, typeof i121.TestCaseVerifyUrlStepComponent, typeof i122.TestCaseRestoreSessionStepComponent, typeof i123.TestCaseCustomCodeStepComponent, typeof i124.CustomEditStepComponent, typeof i125.ItemListComponent, typeof i126.TestDataModalComponent, typeof i127.CreateStepGroupComponent, typeof i128.DeleteStepsComponent, typeof i129.RunExecutionAlertComponent, typeof i130.ApiEditStepComponent, typeof i131.LiveConversationComponent, typeof i132.StepBuilderActionComponent, typeof i133.StepBuilderLoopComponent, typeof i134.ElementPopupComponent, typeof i135.ElementFormComponent, typeof i136.StepBuilderConditionComponent, typeof i137.StepBuilderDatabaseComponent, typeof i138.StepBuilderAiAgentComponent, typeof i87.CodeEditorComponent, typeof i139.StepBuilderCustomCodeComponent, typeof i140.StepBuilderRecordStepComponent, typeof i141.StepBuilderDocumentGenerationTemplateStepComponent, typeof i142.ElementListComponent, typeof i143.StepBuilderDocumentComponent, typeof i144.DetailSidePanelComponent, typeof i145.DetailDrawerComponent, typeof i146.DetailDrawerTabComponent, typeof i147.DetailDrawerTabContentDirective, typeof i148.TestCaseDetailsComponent, typeof i149.TestCaseDetailsEditComponent, typeof i150.ApiMockingCardComponent, typeof i151.StepBuilderGroupComponent, typeof i152.StepDetailsDrawerComponent, typeof i153.TemplateVariablesFormComponent, typeof i154.AdvancedVariablesFormComponent, typeof i155.StepDetailsModalComponent, typeof i156.SafeHtmlPipe, typeof i157.QuestionnaireListComponent, typeof i158.ChangeHistoryComponent, typeof i159.CamelToTitlePipe, typeof i160.VersionHistoryListComponent, typeof i161.VersionHistoryCompareComponent, typeof i162.VersionHistoryDetailComponent, typeof i163.VersionHistoryRestoreConfirmComponent, typeof i164.NewVersionHistoryDetailComponent], [typeof i165.CommonModule, typeof i166.FormsModule, typeof i166.ReactiveFormsModule, typeof i167.NoopAnimationsModule, typeof i168.MatIconModule, typeof i169.MatMenuModule, typeof i170.MatButtonModule, typeof i171.MatFormFieldModule, typeof i172.MatSelectModule, typeof i173.MatOptionModule, typeof i174.MatCheckboxModule, typeof i175.MatRadioModule, typeof i176.MatSlideToggleModule, typeof i177.MatDatepickerModule, typeof i173.MatNativeDateModule, typeof i178.MatProgressSpinnerModule, typeof i179.MatTooltipModule, typeof i180.MatDialogModule, typeof i181.MatTableModule, typeof i182.MatInputModule, typeof i183.OverlayModule, typeof i184.PortalModule, typeof i185.ScrollingModule, typeof i186.NgxTypedJsModule, typeof i187.DndModule, typeof i188.MonacoEditorModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.DialogComponent, typeof i8.DynamicTableComponent, typeof i9.DynamicCellTemplateDirective, typeof i9.DynamicHeaderTemplateDirective, typeof i10.DynamicCellContainerDirective, typeof i11.PaginationComponent, typeof i12.ActionMenuButtonComponent, typeof i13.OtherButtonComponent, typeof i14.DynamicFilterComponent, typeof i15.DaterangepickerDirective, typeof i16.DaterangepickerComponent, typeof i17.ColumnVisibilityComponent, typeof i18.TableActionToolbarComponent, typeof i19.MetricsCardComponent, typeof i21.ChartCardComponent, typeof i22.ProgressTextCardComponent, typeof i23.DashboardHeaderComponent, typeof i24.WorkspaceSelectorComponent, typeof i25.CoverageModuleCardComponent, typeof i26.TestDistributionCardComponent, typeof i27.FailedTestCasesCardComponent, typeof i28.DynamicSelectFieldComponent, typeof i29.AddPrerequisiteCasesSectionComponent, typeof i30.SelectedFiltersComponent, typeof i31.InsightCardComponent, typeof i32.BadgeComponent, typeof i33.DropdownButtonComponent, typeof i34.HeatErrorMapCellComponent, typeof i35.EmptyStateComponent, typeof i36.TableTemplateComponent, typeof i37.ModularTableTemplateComponent, typeof i38.FolderSidebarComponent, typeof i40.NewFolderDialogComponent, typeof i41.DeleteFolderDialogComponent, typeof i39.MoveToFolderDialogComponent, typeof i42.RowDragDirective, typeof i43.FolderDropDirective, typeof i44.FolderDragDirective, typeof i45.FullTableLoaderComponent, typeof i46.TableDataLoaderComponent, typeof i47.BasicStepComponent, typeof i48.StepRendererComponent, typeof i49.StepGroupComponent, typeof i50.LoopStepComponent, typeof i51.ConditionStepComponent, typeof i52.ConditionDebugStepComponent, typeof i53.ConditionBranchEditorComponent, typeof i54.FailedStepComponent, typeof i52.ConditionDebugStepComponent, typeof i55.UpdatedFailedStepComponent, typeof i56.ViewMoreFailedStepButtonComponent, typeof i57.SelfHealAnalysisComponent, typeof i58.AIAgentStepComponent, typeof i59.AIActionStepComponent, typeof i60.ApiStepComponent, typeof i61.FileDownloadStepComponent, typeof i62.DocumentVerificationStepComponent, typeof i63.LiveExecutionStepComponent, typeof i64.AiLogsWithReasoningComponent, typeof i65.JumpToStepModalComponent, typeof i66.BreakpointsModalComponent, typeof i67.RecordingBannerComponent, typeof i68.ReviewRecordedStepsModalComponent, typeof i69.MainStepCollapseComponent, typeof i70.VisualComparisonComponent, typeof i71.SimulatorComponent, typeof i72.ConsoleAlertComponent, typeof i73.AiDebugAlertComponent, typeof i74.NetworkRequestComponent, typeof i75.RunHistoryCardComponent, typeof i76.AiPromptCardComponent, typeof i77.VisualDifferenceModalComponent, typeof i78.ConfigurationCardComponent, typeof i79.CompareRunsComponent, typeof i80.ViewCompareButtonComponent, typeof i81.TestCaseLinkCellComponent, typeof i82.IterationsLoopComponent, typeof i83.FailedStepCardComponent, typeof i84.CustomInputComponent, typeof i85.MixedVariableInputComponent, typeof i86.CustomTextareaComponent, typeof i87.CodeEditorComponent, typeof i88.CustomToggleComponent, typeof i89.FileUploadComponent, typeof i90.AiReasoningComponent, typeof i91.ExecutionResultModalComponent, typeof i92.SessionChangesModalComponent, typeof i93.ErrorModalComponent, typeof i94.SessionRestorationDialogComponent, typeof i95.CaptureVideoDialogComponent, typeof i96.SubStepsConfirmationDialogComponent, typeof i97.NewGlobalVariableDialogComponent, typeof i98.NewEnvironmentDialogComponent, typeof i99.NewEnvironmentVariableDialogComponent, typeof i100.NewTestDataProfileDialogComponent, typeof i101.AssignEnvironmentsDialogComponent, typeof i102.PermissionToggleComponent, typeof i103.ExportCodeModalComponent, typeof i104.ProgressIndicatorComponent, typeof i105.StepProgressCardComponent, typeof i106.StepStatusCardComponent, typeof i107.DbVerificationStepComponent, typeof i108.DbQueryExecutionItemComponent, typeof i109.TestCaseNormalStepComponent, typeof i110.TestCaseLoopStepComponent, typeof i111.TestCaseConditionStepComponent, typeof i112.TestCaseStepGroupComponent, typeof i113.TestCaseDetailsRendererComponent, typeof i114.TestCaseApiStepComponent, typeof i115.TestCaseDatabaseStepComponent, typeof i116.TestCaseAiAgentStepComponent, typeof i118.TestCaseUploadStepComponent, typeof i119.TestCaseScreenshotStepComponent, typeof i120.TestCaseScrollStepComponent, typeof i121.TestCaseVerifyUrlStepComponent, typeof i122.TestCaseRestoreSessionStepComponent, typeof i123.TestCaseCustomCodeStepComponent, typeof i124.CustomEditStepComponent, typeof i125.ItemListComponent, typeof i126.TestDataModalComponent, typeof i127.CreateStepGroupComponent, typeof i128.DeleteStepsComponent, typeof i129.RunExecutionAlertComponent, typeof i130.ApiEditStepComponent, typeof i131.LiveConversationComponent, typeof i132.StepBuilderActionComponent, typeof i133.StepBuilderLoopComponent, typeof i134.ElementPopupComponent, typeof i135.ElementFormComponent, typeof i136.StepBuilderConditionComponent, typeof i137.StepBuilderDatabaseComponent, typeof i138.StepBuilderAiAgentComponent, typeof i87.CodeEditorComponent, typeof i139.StepBuilderCustomCodeComponent, typeof i140.StepBuilderRecordStepComponent, typeof i141.StepBuilderDocumentGenerationTemplateStepComponent, typeof i142.ElementListComponent, typeof i143.StepBuilderDocumentComponent, typeof i144.DetailSidePanelComponent, typeof i145.DetailDrawerComponent, typeof i146.DetailDrawerTabComponent, typeof i147.DetailDrawerTabContentDirective, typeof i148.TestCaseDetailsComponent, typeof i149.TestCaseDetailsEditComponent, typeof i150.ApiMockingCardComponent, typeof i151.StepBuilderGroupComponent, typeof i152.StepDetailsDrawerComponent, typeof i153.TemplateVariablesFormComponent, typeof i154.AdvancedVariablesFormComponent, typeof i157.QuestionnaireListComponent, typeof i158.ChangeHistoryComponent, typeof i160.VersionHistoryListComponent, typeof i161.VersionHistoryCompareComponent, typeof i162.VersionHistoryDetailComponent, typeof i163.VersionHistoryRestoreConfirmComponent, typeof i164.NewVersionHistoryDetailComponent]>;
197
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.DialogComponent, typeof i8.DynamicTableComponent, typeof i9.DynamicCellTemplateDirective, typeof i9.DynamicHeaderTemplateDirective, typeof i10.DynamicCellContainerDirective, typeof i11.PaginationComponent, typeof i12.ActionMenuButtonComponent, typeof i13.OtherButtonComponent, typeof i14.DynamicFilterComponent, typeof i15.DaterangepickerDirective, typeof i16.DaterangepickerComponent, typeof i17.ColumnVisibilityComponent, typeof i18.TableActionToolbarComponent, typeof i19.MetricsCardComponent, typeof i20.MetricsBlockComponent, typeof i21.ChartCardComponent, typeof i22.ProgressTextCardComponent, typeof i23.DashboardHeaderComponent, typeof i24.WorkspaceSelectorComponent, typeof i25.CoverageModuleCardComponent, typeof i26.TestDistributionCardComponent, typeof i27.FailedTestCasesCardComponent, typeof i28.DynamicSelectFieldComponent, typeof i29.AddPrerequisiteCasesSectionComponent, typeof i30.SelectedFiltersComponent, typeof i31.InsightCardComponent, typeof i32.BadgeComponent, typeof i33.DropdownButtonComponent, typeof i34.HeatErrorMapCellComponent, typeof i35.EmptyStateComponent, typeof i36.TableTemplateComponent, typeof i37.ModularTableTemplateComponent, typeof i38.FolderSidebarComponent, typeof i39.MoveToFolderDialogComponent, typeof i40.NewFolderDialogComponent, typeof i41.DeleteFolderDialogComponent, typeof i42.RowDragDirective, typeof i43.FolderDropDirective, typeof i44.FolderDragDirective, typeof i45.FullTableLoaderComponent, typeof i46.TableDataLoaderComponent, typeof i47.BasicStepComponent, typeof i48.StepRendererComponent, typeof i49.StepGroupComponent, typeof i50.LoopStepComponent, typeof i51.ConditionStepComponent, typeof i52.ConditionDebugStepComponent, typeof i53.ConditionBranchEditorComponent, typeof i54.FailedStepComponent, typeof i55.UpdatedFailedStepComponent, typeof i56.ViewMoreFailedStepButtonComponent, typeof i57.SelfHealAnalysisComponent, typeof i58.AIAgentStepComponent, typeof i59.AIActionStepComponent, typeof i60.ApiStepComponent, typeof i61.FileDownloadStepComponent, typeof i62.DocumentVerificationStepComponent, typeof i63.LiveExecutionStepComponent, typeof i64.AiLogsWithReasoningComponent, typeof i65.JumpToStepModalComponent, typeof i66.BreakpointsModalComponent, typeof i67.RecordingBannerComponent, typeof i68.ReviewRecordedStepsModalComponent, typeof i69.MainStepCollapseComponent, typeof i70.VisualComparisonComponent, typeof i71.SimulatorComponent, typeof i72.ConsoleAlertComponent, typeof i73.AiDebugAlertComponent, typeof i74.NetworkRequestComponent, typeof i75.RunHistoryCardComponent, typeof i76.AiPromptCardComponent, typeof i77.VisualDifferenceModalComponent, typeof i78.ConfigurationCardComponent, typeof i79.CompareRunsComponent, typeof i80.ViewCompareButtonComponent, typeof i81.TestCaseLinkCellComponent, typeof i82.IterationsLoopComponent, typeof i83.FailedStepCardComponent, typeof i84.CustomInputComponent, typeof i85.MixedVariableInputComponent, typeof i86.CustomTextareaComponent, typeof i87.CodeEditorComponent, typeof i88.CustomToggleComponent, typeof i89.FileUploadComponent, typeof i90.AiReasoningComponent, typeof i91.ExecutionResultModalComponent, typeof i92.SessionChangesModalComponent, typeof i93.ErrorModalComponent, typeof i94.SessionRestorationDialogComponent, typeof i95.CaptureVideoDialogComponent, typeof i96.SubStepsConfirmationDialogComponent, typeof i97.NewGlobalVariableDialogComponent, typeof i98.NewEnvironmentDialogComponent, typeof i99.NewEnvironmentVariableDialogComponent, typeof i100.NewTestDataProfileDialogComponent, typeof i101.ManageColumnsDialogComponent, typeof i102.AuditLogDrawerComponent, typeof i103.AuditLogEntryCardComponent, typeof i104.AssignEnvironmentsDialogComponent, typeof i105.PermissionToggleComponent, typeof i106.ExportCodeModalComponent, typeof i107.ProgressIndicatorComponent, typeof i108.StepProgressCardComponent, typeof i109.StepStatusCardComponent, typeof i110.DbVerificationStepComponent, typeof i111.DbQueryExecutionItemComponent, typeof i112.TestCaseNormalStepComponent, typeof i113.TestCaseLoopStepComponent, typeof i114.TestCaseConditionStepComponent, typeof i115.TestCaseStepGroupComponent, typeof i116.TestCaseDetailsRendererComponent, typeof i117.TestCaseApiStepComponent, typeof i118.TestCaseDatabaseStepComponent, typeof i119.TestCaseAiAgentStepComponent, typeof i120.TestCaseAiVerifyStepComponent, typeof i121.TestCaseUploadStepComponent, typeof i122.TestCaseScreenshotStepComponent, typeof i123.TestCaseScrollStepComponent, typeof i124.TestCaseVerifyUrlStepComponent, typeof i125.TestCaseRestoreSessionStepComponent, typeof i126.TestCaseCustomCodeStepComponent, typeof i127.CustomEditStepComponent, typeof i128.ItemListComponent, typeof i129.TestDataModalComponent, typeof i130.CreateStepGroupComponent, typeof i131.DeleteStepsComponent, typeof i132.RunExecutionAlertComponent, typeof i133.ApiEditStepComponent, typeof i134.LiveConversationComponent, typeof i135.StepBuilderActionComponent, typeof i136.StepBuilderLoopComponent, typeof i137.ElementPopupComponent, typeof i138.ElementFormComponent, typeof i139.StepBuilderConditionComponent, typeof i140.StepBuilderDatabaseComponent, typeof i141.StepBuilderAiAgentComponent, typeof i87.CodeEditorComponent, typeof i142.StepBuilderCustomCodeComponent, typeof i143.StepBuilderRecordStepComponent, typeof i144.StepBuilderDocumentGenerationTemplateStepComponent, typeof i145.ElementListComponent, typeof i146.StepBuilderDocumentComponent, typeof i147.DetailSidePanelComponent, typeof i148.DetailDrawerComponent, typeof i149.DetailDrawerTabComponent, typeof i150.DetailDrawerTabContentDirective, typeof i151.TestCaseDetailsComponent, typeof i152.TestCaseDetailsEditComponent, typeof i153.ApiMockingCardComponent, typeof i154.StepBuilderGroupComponent, typeof i155.StepDetailsDrawerComponent, typeof i156.TemplateVariablesFormComponent, typeof i157.AdvancedVariablesFormComponent, typeof i158.StepDetailsModalComponent, typeof i159.SafeHtmlPipe, typeof i160.QuestionnaireListComponent, typeof i161.ChangeHistoryComponent, typeof i162.CamelToTitlePipe, typeof i163.VersionHistoryListComponent, typeof i164.VersionHistoryCompareComponent, typeof i165.VersionHistoryDetailComponent, typeof i166.VersionHistoryRestoreConfirmComponent, typeof i167.NewVersionHistoryDetailComponent], [typeof i168.CommonModule, typeof i169.FormsModule, typeof i169.ReactiveFormsModule, typeof i170.NoopAnimationsModule, typeof i171.MatIconModule, typeof i172.MatMenuModule, typeof i173.MatButtonModule, typeof i174.MatFormFieldModule, typeof i175.MatSelectModule, typeof i176.MatOptionModule, typeof i177.MatCheckboxModule, typeof i178.MatRadioModule, typeof i179.MatSlideToggleModule, typeof i180.MatDatepickerModule, typeof i176.MatNativeDateModule, typeof i181.MatProgressSpinnerModule, typeof i182.MatTooltipModule, typeof i183.MatDialogModule, typeof i184.MatTableModule, typeof i185.MatInputModule, typeof i186.OverlayModule, typeof i187.PortalModule, typeof i188.ScrollingModule, typeof i189.NgxTypedJsModule, typeof i190.DndModule, typeof i191.MonacoEditorModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.DialogComponent, typeof i8.DynamicTableComponent, typeof i9.DynamicCellTemplateDirective, typeof i9.DynamicHeaderTemplateDirective, typeof i10.DynamicCellContainerDirective, typeof i11.PaginationComponent, typeof i12.ActionMenuButtonComponent, typeof i13.OtherButtonComponent, typeof i14.DynamicFilterComponent, typeof i15.DaterangepickerDirective, typeof i16.DaterangepickerComponent, typeof i17.ColumnVisibilityComponent, typeof i18.TableActionToolbarComponent, typeof i19.MetricsCardComponent, typeof i21.ChartCardComponent, typeof i22.ProgressTextCardComponent, typeof i23.DashboardHeaderComponent, typeof i24.WorkspaceSelectorComponent, typeof i25.CoverageModuleCardComponent, typeof i26.TestDistributionCardComponent, typeof i27.FailedTestCasesCardComponent, typeof i28.DynamicSelectFieldComponent, typeof i29.AddPrerequisiteCasesSectionComponent, typeof i30.SelectedFiltersComponent, typeof i31.InsightCardComponent, typeof i32.BadgeComponent, typeof i33.DropdownButtonComponent, typeof i34.HeatErrorMapCellComponent, typeof i35.EmptyStateComponent, typeof i36.TableTemplateComponent, typeof i37.ModularTableTemplateComponent, typeof i38.FolderSidebarComponent, typeof i40.NewFolderDialogComponent, typeof i41.DeleteFolderDialogComponent, typeof i39.MoveToFolderDialogComponent, typeof i42.RowDragDirective, typeof i43.FolderDropDirective, typeof i44.FolderDragDirective, typeof i45.FullTableLoaderComponent, typeof i46.TableDataLoaderComponent, typeof i47.BasicStepComponent, typeof i48.StepRendererComponent, typeof i49.StepGroupComponent, typeof i50.LoopStepComponent, typeof i51.ConditionStepComponent, typeof i52.ConditionDebugStepComponent, typeof i53.ConditionBranchEditorComponent, typeof i54.FailedStepComponent, typeof i52.ConditionDebugStepComponent, typeof i55.UpdatedFailedStepComponent, typeof i56.ViewMoreFailedStepButtonComponent, typeof i57.SelfHealAnalysisComponent, typeof i58.AIAgentStepComponent, typeof i59.AIActionStepComponent, typeof i60.ApiStepComponent, typeof i61.FileDownloadStepComponent, typeof i62.DocumentVerificationStepComponent, typeof i63.LiveExecutionStepComponent, typeof i64.AiLogsWithReasoningComponent, typeof i65.JumpToStepModalComponent, typeof i66.BreakpointsModalComponent, typeof i67.RecordingBannerComponent, typeof i68.ReviewRecordedStepsModalComponent, typeof i69.MainStepCollapseComponent, typeof i70.VisualComparisonComponent, typeof i71.SimulatorComponent, typeof i72.ConsoleAlertComponent, typeof i73.AiDebugAlertComponent, typeof i74.NetworkRequestComponent, typeof i75.RunHistoryCardComponent, typeof i76.AiPromptCardComponent, typeof i77.VisualDifferenceModalComponent, typeof i78.ConfigurationCardComponent, typeof i79.CompareRunsComponent, typeof i80.ViewCompareButtonComponent, typeof i81.TestCaseLinkCellComponent, typeof i82.IterationsLoopComponent, typeof i83.FailedStepCardComponent, typeof i84.CustomInputComponent, typeof i85.MixedVariableInputComponent, typeof i86.CustomTextareaComponent, typeof i87.CodeEditorComponent, typeof i88.CustomToggleComponent, typeof i89.FileUploadComponent, typeof i90.AiReasoningComponent, typeof i91.ExecutionResultModalComponent, typeof i92.SessionChangesModalComponent, typeof i93.ErrorModalComponent, typeof i94.SessionRestorationDialogComponent, typeof i95.CaptureVideoDialogComponent, typeof i96.SubStepsConfirmationDialogComponent, typeof i97.NewGlobalVariableDialogComponent, typeof i98.NewEnvironmentDialogComponent, typeof i99.NewEnvironmentVariableDialogComponent, typeof i100.NewTestDataProfileDialogComponent, typeof i101.ManageColumnsDialogComponent, typeof i102.AuditLogDrawerComponent, typeof i103.AuditLogEntryCardComponent, typeof i104.AssignEnvironmentsDialogComponent, typeof i105.PermissionToggleComponent, typeof i106.ExportCodeModalComponent, typeof i107.ProgressIndicatorComponent, typeof i108.StepProgressCardComponent, typeof i109.StepStatusCardComponent, typeof i110.DbVerificationStepComponent, typeof i111.DbQueryExecutionItemComponent, typeof i112.TestCaseNormalStepComponent, typeof i113.TestCaseLoopStepComponent, typeof i114.TestCaseConditionStepComponent, typeof i115.TestCaseStepGroupComponent, typeof i116.TestCaseDetailsRendererComponent, typeof i117.TestCaseApiStepComponent, typeof i118.TestCaseDatabaseStepComponent, typeof i119.TestCaseAiAgentStepComponent, typeof i121.TestCaseUploadStepComponent, typeof i122.TestCaseScreenshotStepComponent, typeof i123.TestCaseScrollStepComponent, typeof i124.TestCaseVerifyUrlStepComponent, typeof i125.TestCaseRestoreSessionStepComponent, typeof i126.TestCaseCustomCodeStepComponent, typeof i127.CustomEditStepComponent, typeof i128.ItemListComponent, typeof i129.TestDataModalComponent, typeof i130.CreateStepGroupComponent, typeof i131.DeleteStepsComponent, typeof i132.RunExecutionAlertComponent, typeof i133.ApiEditStepComponent, typeof i134.LiveConversationComponent, typeof i135.StepBuilderActionComponent, typeof i136.StepBuilderLoopComponent, typeof i137.ElementPopupComponent, typeof i138.ElementFormComponent, typeof i139.StepBuilderConditionComponent, typeof i140.StepBuilderDatabaseComponent, typeof i141.StepBuilderAiAgentComponent, typeof i87.CodeEditorComponent, typeof i142.StepBuilderCustomCodeComponent, typeof i143.StepBuilderRecordStepComponent, typeof i144.StepBuilderDocumentGenerationTemplateStepComponent, typeof i145.ElementListComponent, typeof i146.StepBuilderDocumentComponent, typeof i147.DetailSidePanelComponent, typeof i148.DetailDrawerComponent, typeof i149.DetailDrawerTabComponent, typeof i150.DetailDrawerTabContentDirective, typeof i151.TestCaseDetailsComponent, typeof i152.TestCaseDetailsEditComponent, typeof i153.ApiMockingCardComponent, typeof i154.StepBuilderGroupComponent, typeof i155.StepDetailsDrawerComponent, typeof i156.TemplateVariablesFormComponent, typeof i157.AdvancedVariablesFormComponent, typeof i160.QuestionnaireListComponent, typeof i161.ChangeHistoryComponent, typeof i163.VersionHistoryListComponent, typeof i164.VersionHistoryCompareComponent, typeof i165.VersionHistoryDetailComponent, typeof i166.VersionHistoryRestoreConfirmComponent, typeof i167.NewVersionHistoryDetailComponent]>;
195
198
  static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
196
199
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cqa-lib/cqa-ui",
3
- "version": "1.1.529",
3
+ "version": "1.1.530",
4
4
  "description": "UI Kit library for Angular 13.4",
5
5
  "keywords": [
6
6
  "angular",
package/public-api.d.ts CHANGED
@@ -109,6 +109,12 @@ export * from './lib/new-environment-variable-dialog/new-environment-variable-di
109
109
  export * from './lib/new-environment-variable-dialog/new-environment-variable-dialog.models';
110
110
  export * from './lib/new-test-data-profile-dialog/new-test-data-profile-dialog.component';
111
111
  export * from './lib/new-test-data-profile-dialog/new-test-data-profile-dialog.models';
112
+ export * from './lib/manage-columns-dialog/manage-columns-dialog.component';
113
+ export * from './lib/manage-columns-dialog/manage-columns-dialog.models';
114
+ export * from './lib/audit-log-drawer/audit-log-drawer.component';
115
+ export * from './lib/audit-log-drawer/audit-log-entry-card.component';
116
+ export * from './lib/audit-log-drawer/audit-log-drawer.service';
117
+ export * from './lib/audit-log-drawer/audit-log-drawer.models';
112
118
  export * from './lib/assign-environments-dialog/assign-environments-dialog.component';
113
119
  export * from './lib/assign-environments-dialog/assign-environments-dialog.models';
114
120
  export * from './lib/permission-toggle/permission-toggle.component';