@cqa-lib/cqa-ui 1.1.514 → 1.1.515

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,35 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { ButtonVariant } from '../button/button.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare type CaptureVideoDialogState = 'starting' | 'capturing' | 'ready' | 'failed';
5
+ export interface CaptureVideoDialogButton {
6
+ label: string;
7
+ variant: ButtonVariant;
8
+ action: string;
9
+ icon?: string;
10
+ btnSize?: 'sm' | 'md' | 'lg';
11
+ fullWidth?: boolean;
12
+ disabled?: boolean;
13
+ }
14
+ export declare class CaptureVideoDialogComponent {
15
+ isOpen: boolean;
16
+ state: CaptureVideoDialogState | null;
17
+ title?: string;
18
+ message?: string;
19
+ errorMessage?: string;
20
+ buttons: CaptureVideoDialogButton[];
21
+ actionClick: EventEmitter<string>;
22
+ closeModal: EventEmitter<void>;
23
+ get isStarting(): boolean;
24
+ get isCapturing(): boolean;
25
+ get isReady(): boolean;
26
+ get isFailed(): boolean;
27
+ get isInProgress(): boolean;
28
+ get resolvedTitle(): string;
29
+ get resolvedMessage(): string;
30
+ get progressBadgeLabel(): string;
31
+ onBackdropClick(event: MouseEvent): void;
32
+ onButtonClick(button: CaptureVideoDialogButton): void;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<CaptureVideoDialogComponent, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<CaptureVideoDialogComponent, "cqa-capture-video-dialog", never, { "isOpen": "isOpen"; "state": "state"; "title": "title"; "message": "message"; "errorMessage": "errorMessage"; "buttons": "buttons"; }, { "actionClick": "actionClick"; "closeModal": "closeModal"; }, never, never>;
35
+ }
@@ -55,6 +55,7 @@ export declare class SimulatorComponent implements AfterViewInit, AfterViewCheck
55
55
  showVideoLibrary: boolean;
56
56
  showCaptureVideo: boolean;
57
57
  isCapturingVideo: boolean;
58
+ liveSessionView: 'live' | 'captured';
58
59
  get fastForwardProgressPercent(): number;
59
60
  videoTimeUpdate: EventEmitter<number>;
60
61
  videoPlay: EventEmitter<void>;
@@ -62,6 +63,7 @@ export declare class SimulatorComponent implements AfterViewInit, AfterViewCheck
62
63
  markerHit: EventEmitter<StepMarker>;
63
64
  isVideoPlayingChange: EventEmitter<boolean>;
64
65
  captureVideoRequested: EventEmitter<void>;
66
+ liveSessionViewChange: EventEmitter<"live" | "captured">;
65
67
  private _vplayer?;
66
68
  set vplayerRef(ref: ElementRef<HTMLVideoElement> | undefined);
67
69
  get vplayer(): ElementRef<HTMLVideoElement> | undefined;
@@ -116,6 +118,18 @@ export declare class SimulatorComponent implements AfterViewInit, AfterViewCheck
116
118
  };
117
119
  segments: SegmentOption[];
118
120
  speedSegments: SegmentOption[];
121
+ liveSessionSegments: SegmentOption[];
122
+ onLiveSessionViewChange(next: string): void;
123
+ /** Reset the video player to a clean slate whenever the Live/Captured view toggles
124
+ * during an active debug session. Pauses playback, exits Full Video mode, rewinds
125
+ * to clip 0, and clears drag/scroll/marker state.
126
+ *
127
+ * Applied synchronously (no operationQueue) because the toggle usually also
128
+ * unmounts/remounts the <video> element — any in-flight operation on the old
129
+ * element is already dead, and a fresh element naturally mounts with
130
+ * `src = videoUrls[0]` from `currentVideoUrl`. Enqueueing here would race with
131
+ * the element lifecycle and either get discarded or block the queue. */
132
+ private resetLiveSessionPlaybackState;
119
133
  private videoEventListenerCleanup;
120
134
  private lastSetDuration;
121
135
  private dragMouseMoveHandler;
@@ -196,7 +210,12 @@ export declare class SimulatorComponent implements AfterViewInit, AfterViewCheck
196
210
  get segmentBoundaries(): number[];
197
211
  /** Total duration across all segments in ms */
198
212
  get totalDuration(): number;
199
- /** Video durations in ms (detected or from single video element) */
213
+ /** Video durations in ms (detected or from single video element).
214
+ *
215
+ * Merges two independent probes: `detectedVideoDurations` (off-DOM temp videos)
216
+ * and `libraryVideoDurations` (the rendered library thumbnails). Either can
217
+ * resolve first depending on browser quirks with WebM/Infinity-duration clips;
218
+ * we take the first finite value per index. */
200
219
  private get videoDurations();
201
220
  get currentVideoMarkers(): StepMarker[];
202
221
  private adjustChildStepsDuration;
@@ -257,8 +276,16 @@ export declare class SimulatorComponent implements AfterViewInit, AfterViewCheck
257
276
  private maybePreloadNextSegment;
258
277
  private preloadNextSegment;
259
278
  /**
260
- * Detect actual video durations by loading video metadata
261
- * This creates temporary video elements to read duration without playing
279
+ * Detect actual video durations by loading video metadata.
280
+ *
281
+ * Browser-recorded WebM clips frequently report `duration === Infinity` on the first
282
+ * `loadedmetadata` firing; the real duration only resolves after seeking past the end
283
+ * (same trick `onLibraryClipMetadataLoaded` uses for the library thumbnails). We mirror
284
+ * that probe here so `detectedVideoDurations` ends up dense and `totalDuration` is
285
+ * correct in Full Video mode.
286
+ *
287
+ * Preserves previously-detected entries on re-invocation (append-only videoUrls
288
+ * changes shouldn't wipe finished detections from earlier clips).
262
289
  */
263
290
  private detectVideoDurations;
264
291
  /**
@@ -330,6 +357,6 @@ export declare class SimulatorComponent implements AfterViewInit, AfterViewCheck
330
357
  private switchToVideoAndSeek;
331
358
  private switchToVideoAndSeekInternal;
332
359
  static ɵfac: i0.ɵɵFactoryDeclaration<SimulatorComponent, never>;
333
- static ɵcmp: i0.ɵɵComponentDeclaration<SimulatorComponent, "cqa-simulator", never, { "videoUrl": "videoUrl"; "videoUrls": "videoUrls"; "videoCurrentDuration": "videoCurrentDuration"; "stepMarkers": "stepMarkers"; "screenShotUrl": "screenShotUrl"; "traceViewUrl": "traceViewUrl"; "platformName": "platformName"; "platformType": "platformType"; "platform": "platform"; "deviceName": "deviceName"; "isLive": "isLive"; "liveStatus": "liveStatus"; "liveLoadingLabel": "liveLoadingLabel"; "isContentVideoLoading": "isContentVideoLoading"; "failedStatusMessage": "failedStatusMessage"; "isVNCSessionIntruppted": "isVNCSessionIntruppted"; "vncSessionIntupptedMessage": "vncSessionIntupptedMessage"; "selectedView": "selectedView"; "hideVideoTab": "hideVideoTab"; "browserViewPort": "browserViewPort"; "browserDevice": "browserDevice"; "isFastForwarding": "isFastForwarding"; "fastForwardConfig": "fastForwardConfig"; "showVideoLibrary": "showVideoLibrary"; "showCaptureVideo": "showCaptureVideo"; "isCapturingVideo": "isCapturingVideo"; }, { "videoTimeUpdate": "videoTimeUpdate"; "videoPlay": "videoPlay"; "videoPause": "videoPause"; "markerHit": "markerHit"; "isVideoPlayingChange": "isVideoPlayingChange"; "captureVideoRequested": "captureVideoRequested"; }, never, ["*"]>;
360
+ static ɵcmp: i0.ɵɵComponentDeclaration<SimulatorComponent, "cqa-simulator", never, { "videoUrl": "videoUrl"; "videoUrls": "videoUrls"; "videoCurrentDuration": "videoCurrentDuration"; "stepMarkers": "stepMarkers"; "screenShotUrl": "screenShotUrl"; "traceViewUrl": "traceViewUrl"; "platformName": "platformName"; "platformType": "platformType"; "platform": "platform"; "deviceName": "deviceName"; "isLive": "isLive"; "liveStatus": "liveStatus"; "liveLoadingLabel": "liveLoadingLabel"; "isContentVideoLoading": "isContentVideoLoading"; "failedStatusMessage": "failedStatusMessage"; "isVNCSessionIntruppted": "isVNCSessionIntruppted"; "vncSessionIntupptedMessage": "vncSessionIntupptedMessage"; "selectedView": "selectedView"; "hideVideoTab": "hideVideoTab"; "browserViewPort": "browserViewPort"; "browserDevice": "browserDevice"; "isFastForwarding": "isFastForwarding"; "fastForwardConfig": "fastForwardConfig"; "showVideoLibrary": "showVideoLibrary"; "showCaptureVideo": "showCaptureVideo"; "isCapturingVideo": "isCapturingVideo"; "liveSessionView": "liveSessionView"; }, { "videoTimeUpdate": "videoTimeUpdate"; "videoPlay": "videoPlay"; "videoPause": "videoPause"; "markerHit": "markerHit"; "isVideoPlayingChange": "isVideoPlayingChange"; "captureVideoRequested": "captureVideoRequested"; "liveSessionViewChange": "liveSessionViewChange"; }, never, ["*"]>;
334
361
  }
335
362
  export {};
@@ -86,96 +86,97 @@ import * as i83 from "./execution-result-modal/execution-result-modal.component"
86
86
  import * as i84 from "./execution-screen/session-changes-modal/session-changes-modal.component";
87
87
  import * as i85 from "./error-modal/error-modal.component";
88
88
  import * as i86 from "./session-restoration-dialog/session-restoration-dialog.component";
89
- import * as i87 from "./sub-steps-confirmation-dialog/sub-steps-confirmation-dialog.component";
90
- import * as i88 from "./export-code-modal/export-code-modal.component";
91
- import * as i89 from "./progress-indicator/progress-indicator.component";
92
- import * as i90 from "./step-progress-card/step-progress-card.component";
93
- import * as i91 from "./step-status-card/step-status-card.component";
94
- import * as i92 from "./execution-screen/db-verification-step/db-verification-step.component";
95
- import * as i93 from "./execution-screen/db-query-execution-item/db-query-execution-item.component";
96
- import * as i94 from "./test-case-details/normal-step/normal-step.component";
97
- import * as i95 from "./test-case-details/loop-step/loop-step.component";
98
- import * as i96 from "./test-case-details/condition-step/condition-step.component";
99
- import * as i97 from "./test-case-details/step-group/step-group.component";
100
- import * as i98 from "./test-case-details/test-case-details-renderer/test-case-details-renderer.component";
101
- import * as i99 from "./test-case-details/api-step/api-step.component";
102
- import * as i100 from "./test-case-details/database-step/database-step.component";
103
- import * as i101 from "./test-case-details/ai-agent-step/ai-agent-step.component";
104
- import * as i102 from "./test-case-details/ai-verify-step/ai-verify-step.component";
105
- import * as i103 from "./test-case-details/upload-step/upload-step.component";
106
- import * as i104 from "./test-case-details/screenshot-step/screenshot-step.component";
107
- import * as i105 from "./test-case-details/scroll-step/scroll-step.component";
108
- import * as i106 from "./test-case-details/verify-url-step/verify-url-step.component";
109
- import * as i107 from "./test-case-details/restore-session-step/restore-session-step.component";
110
- import * as i108 from "./test-case-details/custom-code-step/custom-code-step.component";
111
- import * as i109 from "./test-case-details/custom-edit-step/custom-edit-step.component";
112
- import * as i110 from "./item-list/item-list.component";
113
- import * as i111 from "./test-case-details/test-data-modal/test-data-modal.component";
114
- import * as i112 from "./test-case-details/create-step-group/create-step-group.component";
115
- import * as i113 from "./test-case-details/delete-steps/delete-steps.component";
116
- import * as i114 from "./test-case-details/run-execution-alert/run-execution-alert.component";
117
- import * as i115 from "./test-case-details/api-edit-step/api-edit-step.component";
118
- import * as i116 from "./live-conversation/live-conversation.component";
119
- import * as i117 from "./step-builder/step-builder-action/step-builder-action.component";
120
- import * as i118 from "./step-builder/step-builder-loop/step-builder-loop.component";
121
- import * as i119 from "./test-case-details/element-popup/element-popup.component";
122
- import * as i120 from "./test-case-details/element-popup/element-form/element-form.component";
123
- import * as i121 from "./step-builder/step-builder-condition/step-builder-condition.component";
124
- import * as i122 from "./step-builder/step-builder-database/step-builder-database.component";
125
- import * as i123 from "./step-builder/step-builder-ai-agent/step-builder-ai-agent.component";
126
- import * as i124 from "./step-builder/step-builder-custom-code/step-builder-custom-code.component";
127
- import * as i125 from "./step-builder/step-builder-record-step/step-builder-record-step.component";
128
- import * as i126 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
129
- import * as i127 from "./test-case-details/element-list/element-list.component";
130
- import * as i128 from "./step-builder/step-builder-document/step-builder-document.component";
131
- import * as i129 from "./detail-side-panel/detail-side-panel.component";
132
- import * as i130 from "./detail-drawer/detail-drawer.component";
133
- import * as i131 from "./detail-drawer/detail-drawer-tab/detail-drawer-tab.component";
134
- import * as i132 from "./detail-drawer/detail-drawer-tab-content.directive";
135
- import * as i133 from "./test-case-details/test-case-details.component";
136
- import * as i134 from "./test-case-details/test-case-details-edit/test-case-details-edit.component";
137
- import * as i135 from "./test-case-details/api-mocking-card/api-mocking-card.component";
138
- import * as i136 from "./step-builder/step-builder-group/step-builder-group.component";
139
- import * as i137 from "./test-case-details/step-details-drawer/step-details-drawer.component";
140
- import * as i138 from "./step-builder/template-variables-form/template-variables-form.component";
141
- import * as i139 from "./step-builder/advanced-variables-form/advanced-variables-form.component";
142
- import * as i140 from "./test-case-details/step-details-modal/step-details-modal.component";
143
- import * as i141 from "./pipes/safe-html.pipe";
144
- import * as i142 from "./questionnaire-list/questionnaire-list.component";
145
- import * as i143 from "./change-history/change-history.component";
146
- import * as i144 from "./pipes/camel-to-title.pipe";
147
- import * as i145 from "./version-history/version-history-list/version-history-list.component";
148
- import * as i146 from "./version-history/version-history-compare/version-history-compare.component";
149
- import * as i147 from "./version-history/version-history-detail/version-history-detail.component";
150
- import * as i148 from "./version-history/version-history-restore-confirm/version-history-restore-confirm.component";
151
- import * as i149 from "./version-history/new-version-history-detail/new-version-history-detail.component";
152
- import * as i150 from "@angular/common";
153
- import * as i151 from "@angular/forms";
154
- import * as i152 from "@angular/platform-browser/animations";
155
- import * as i153 from "@angular/material/icon";
156
- import * as i154 from "@angular/material/menu";
157
- import * as i155 from "@angular/material/button";
158
- import * as i156 from "@angular/material/form-field";
159
- import * as i157 from "@angular/material/select";
160
- import * as i158 from "@angular/material/core";
161
- import * as i159 from "@angular/material/checkbox";
162
- import * as i160 from "@angular/material/radio";
163
- import * as i161 from "@angular/material/slide-toggle";
164
- import * as i162 from "@angular/material/datepicker";
165
- import * as i163 from "@angular/material/progress-spinner";
166
- import * as i164 from "@angular/material/tooltip";
167
- import * as i165 from "@angular/material/dialog";
168
- import * as i166 from "@angular/material/table";
169
- import * as i167 from "@angular/material/input";
170
- import * as i168 from "@angular/cdk/overlay";
171
- import * as i169 from "@angular/cdk/portal";
172
- import * as i170 from "@angular/cdk/scrolling";
173
- import * as i171 from "ngx-typed-js";
174
- import * as i172 from "ngx-drag-drop";
175
- import * as i173 from "ngx-monaco-editor";
89
+ import * as i87 from "./capture-video-dialog/capture-video-dialog.component";
90
+ import * as i88 from "./sub-steps-confirmation-dialog/sub-steps-confirmation-dialog.component";
91
+ import * as i89 from "./export-code-modal/export-code-modal.component";
92
+ import * as i90 from "./progress-indicator/progress-indicator.component";
93
+ import * as i91 from "./step-progress-card/step-progress-card.component";
94
+ import * as i92 from "./step-status-card/step-status-card.component";
95
+ import * as i93 from "./execution-screen/db-verification-step/db-verification-step.component";
96
+ import * as i94 from "./execution-screen/db-query-execution-item/db-query-execution-item.component";
97
+ import * as i95 from "./test-case-details/normal-step/normal-step.component";
98
+ import * as i96 from "./test-case-details/loop-step/loop-step.component";
99
+ import * as i97 from "./test-case-details/condition-step/condition-step.component";
100
+ import * as i98 from "./test-case-details/step-group/step-group.component";
101
+ import * as i99 from "./test-case-details/test-case-details-renderer/test-case-details-renderer.component";
102
+ import * as i100 from "./test-case-details/api-step/api-step.component";
103
+ import * as i101 from "./test-case-details/database-step/database-step.component";
104
+ import * as i102 from "./test-case-details/ai-agent-step/ai-agent-step.component";
105
+ import * as i103 from "./test-case-details/ai-verify-step/ai-verify-step.component";
106
+ import * as i104 from "./test-case-details/upload-step/upload-step.component";
107
+ import * as i105 from "./test-case-details/screenshot-step/screenshot-step.component";
108
+ import * as i106 from "./test-case-details/scroll-step/scroll-step.component";
109
+ import * as i107 from "./test-case-details/verify-url-step/verify-url-step.component";
110
+ import * as i108 from "./test-case-details/restore-session-step/restore-session-step.component";
111
+ import * as i109 from "./test-case-details/custom-code-step/custom-code-step.component";
112
+ import * as i110 from "./test-case-details/custom-edit-step/custom-edit-step.component";
113
+ import * as i111 from "./item-list/item-list.component";
114
+ import * as i112 from "./test-case-details/test-data-modal/test-data-modal.component";
115
+ import * as i113 from "./test-case-details/create-step-group/create-step-group.component";
116
+ import * as i114 from "./test-case-details/delete-steps/delete-steps.component";
117
+ import * as i115 from "./test-case-details/run-execution-alert/run-execution-alert.component";
118
+ import * as i116 from "./test-case-details/api-edit-step/api-edit-step.component";
119
+ import * as i117 from "./live-conversation/live-conversation.component";
120
+ import * as i118 from "./step-builder/step-builder-action/step-builder-action.component";
121
+ import * as i119 from "./step-builder/step-builder-loop/step-builder-loop.component";
122
+ import * as i120 from "./test-case-details/element-popup/element-popup.component";
123
+ import * as i121 from "./test-case-details/element-popup/element-form/element-form.component";
124
+ import * as i122 from "./step-builder/step-builder-condition/step-builder-condition.component";
125
+ import * as i123 from "./step-builder/step-builder-database/step-builder-database.component";
126
+ import * as i124 from "./step-builder/step-builder-ai-agent/step-builder-ai-agent.component";
127
+ import * as i125 from "./step-builder/step-builder-custom-code/step-builder-custom-code.component";
128
+ import * as i126 from "./step-builder/step-builder-record-step/step-builder-record-step.component";
129
+ import * as i127 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
130
+ import * as i128 from "./test-case-details/element-list/element-list.component";
131
+ import * as i129 from "./step-builder/step-builder-document/step-builder-document.component";
132
+ import * as i130 from "./detail-side-panel/detail-side-panel.component";
133
+ import * as i131 from "./detail-drawer/detail-drawer.component";
134
+ import * as i132 from "./detail-drawer/detail-drawer-tab/detail-drawer-tab.component";
135
+ import * as i133 from "./detail-drawer/detail-drawer-tab-content.directive";
136
+ import * as i134 from "./test-case-details/test-case-details.component";
137
+ import * as i135 from "./test-case-details/test-case-details-edit/test-case-details-edit.component";
138
+ import * as i136 from "./test-case-details/api-mocking-card/api-mocking-card.component";
139
+ import * as i137 from "./step-builder/step-builder-group/step-builder-group.component";
140
+ import * as i138 from "./test-case-details/step-details-drawer/step-details-drawer.component";
141
+ import * as i139 from "./step-builder/template-variables-form/template-variables-form.component";
142
+ import * as i140 from "./step-builder/advanced-variables-form/advanced-variables-form.component";
143
+ import * as i141 from "./test-case-details/step-details-modal/step-details-modal.component";
144
+ import * as i142 from "./pipes/safe-html.pipe";
145
+ import * as i143 from "./questionnaire-list/questionnaire-list.component";
146
+ import * as i144 from "./change-history/change-history.component";
147
+ import * as i145 from "./pipes/camel-to-title.pipe";
148
+ import * as i146 from "./version-history/version-history-list/version-history-list.component";
149
+ import * as i147 from "./version-history/version-history-compare/version-history-compare.component";
150
+ import * as i148 from "./version-history/version-history-detail/version-history-detail.component";
151
+ import * as i149 from "./version-history/version-history-restore-confirm/version-history-restore-confirm.component";
152
+ import * as i150 from "./version-history/new-version-history-detail/new-version-history-detail.component";
153
+ import * as i151 from "@angular/common";
154
+ import * as i152 from "@angular/forms";
155
+ import * as i153 from "@angular/platform-browser/animations";
156
+ import * as i154 from "@angular/material/icon";
157
+ import * as i155 from "@angular/material/menu";
158
+ import * as i156 from "@angular/material/button";
159
+ import * as i157 from "@angular/material/form-field";
160
+ import * as i158 from "@angular/material/select";
161
+ import * as i159 from "@angular/material/core";
162
+ import * as i160 from "@angular/material/checkbox";
163
+ import * as i161 from "@angular/material/radio";
164
+ import * as i162 from "@angular/material/slide-toggle";
165
+ import * as i163 from "@angular/material/datepicker";
166
+ import * as i164 from "@angular/material/progress-spinner";
167
+ import * as i165 from "@angular/material/tooltip";
168
+ import * as i166 from "@angular/material/dialog";
169
+ import * as i167 from "@angular/material/table";
170
+ import * as i168 from "@angular/material/input";
171
+ import * as i169 from "@angular/cdk/overlay";
172
+ import * as i170 from "@angular/cdk/portal";
173
+ import * as i171 from "@angular/cdk/scrolling";
174
+ import * as i172 from "ngx-typed-js";
175
+ import * as i173 from "ngx-drag-drop";
176
+ import * as i174 from "ngx-monaco-editor";
176
177
  export declare class UiKitModule {
177
178
  constructor(iconRegistry: MatIconRegistry);
178
179
  static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
179
- 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.FullTableLoaderComponent, typeof i38.TableDataLoaderComponent, typeof i39.BasicStepComponent, typeof i40.StepRendererComponent, typeof i41.StepGroupComponent, typeof i42.LoopStepComponent, typeof i43.ConditionStepComponent, typeof i44.ConditionDebugStepComponent, typeof i45.ConditionBranchEditorComponent, typeof i46.FailedStepComponent, typeof i47.UpdatedFailedStepComponent, typeof i48.ViewMoreFailedStepButtonComponent, typeof i49.SelfHealAnalysisComponent, typeof i50.AIAgentStepComponent, typeof i51.AIActionStepComponent, typeof i52.ApiStepComponent, typeof i53.FileDownloadStepComponent, typeof i54.DocumentVerificationStepComponent, typeof i55.LiveExecutionStepComponent, typeof i56.AiLogsWithReasoningComponent, typeof i57.JumpToStepModalComponent, typeof i58.BreakpointsModalComponent, typeof i59.RecordingBannerComponent, typeof i60.ReviewRecordedStepsModalComponent, typeof i61.MainStepCollapseComponent, typeof i62.VisualComparisonComponent, typeof i63.SimulatorComponent, typeof i64.ConsoleAlertComponent, typeof i65.AiDebugAlertComponent, typeof i66.NetworkRequestComponent, typeof i67.RunHistoryCardComponent, typeof i68.AiPromptCardComponent, typeof i69.VisualDifferenceModalComponent, typeof i70.ConfigurationCardComponent, typeof i71.CompareRunsComponent, typeof i72.ViewCompareButtonComponent, typeof i73.TestCaseLinkCellComponent, typeof i74.IterationsLoopComponent, typeof i75.FailedStepCardComponent, typeof i76.CustomInputComponent, typeof i77.MixedVariableInputComponent, typeof i78.CustomTextareaComponent, typeof i79.CodeEditorComponent, typeof i80.CustomToggleComponent, typeof i81.FileUploadComponent, typeof i82.AiReasoningComponent, typeof i83.ExecutionResultModalComponent, typeof i84.SessionChangesModalComponent, typeof i85.ErrorModalComponent, typeof i86.SessionRestorationDialogComponent, typeof i87.SubStepsConfirmationDialogComponent, typeof i88.ExportCodeModalComponent, typeof i89.ProgressIndicatorComponent, typeof i90.StepProgressCardComponent, typeof i91.StepStatusCardComponent, typeof i92.DbVerificationStepComponent, typeof i93.DbQueryExecutionItemComponent, typeof i94.TestCaseNormalStepComponent, typeof i95.TestCaseLoopStepComponent, typeof i96.TestCaseConditionStepComponent, typeof i97.TestCaseStepGroupComponent, typeof i98.TestCaseDetailsRendererComponent, typeof i99.TestCaseApiStepComponent, typeof i100.TestCaseDatabaseStepComponent, typeof i101.TestCaseAiAgentStepComponent, typeof i102.TestCaseAiVerifyStepComponent, typeof i103.TestCaseUploadStepComponent, typeof i104.TestCaseScreenshotStepComponent, typeof i105.TestCaseScrollStepComponent, typeof i106.TestCaseVerifyUrlStepComponent, typeof i107.TestCaseRestoreSessionStepComponent, typeof i108.TestCaseCustomCodeStepComponent, typeof i109.CustomEditStepComponent, typeof i110.ItemListComponent, typeof i111.TestDataModalComponent, typeof i112.CreateStepGroupComponent, typeof i113.DeleteStepsComponent, typeof i114.RunExecutionAlertComponent, typeof i115.ApiEditStepComponent, typeof i116.LiveConversationComponent, typeof i117.StepBuilderActionComponent, typeof i118.StepBuilderLoopComponent, typeof i119.ElementPopupComponent, typeof i120.ElementFormComponent, typeof i121.StepBuilderConditionComponent, typeof i122.StepBuilderDatabaseComponent, typeof i123.StepBuilderAiAgentComponent, typeof i79.CodeEditorComponent, typeof i124.StepBuilderCustomCodeComponent, typeof i125.StepBuilderRecordStepComponent, typeof i126.StepBuilderDocumentGenerationTemplateStepComponent, typeof i127.ElementListComponent, typeof i128.StepBuilderDocumentComponent, typeof i129.DetailSidePanelComponent, typeof i130.DetailDrawerComponent, typeof i131.DetailDrawerTabComponent, typeof i132.DetailDrawerTabContentDirective, typeof i133.TestCaseDetailsComponent, typeof i134.TestCaseDetailsEditComponent, typeof i135.ApiMockingCardComponent, typeof i136.StepBuilderGroupComponent, typeof i137.StepDetailsDrawerComponent, typeof i138.TemplateVariablesFormComponent, typeof i139.AdvancedVariablesFormComponent, typeof i140.StepDetailsModalComponent, typeof i141.SafeHtmlPipe, typeof i142.QuestionnaireListComponent, typeof i143.ChangeHistoryComponent, typeof i144.CamelToTitlePipe, typeof i145.VersionHistoryListComponent, typeof i146.VersionHistoryCompareComponent, typeof i147.VersionHistoryDetailComponent, typeof i148.VersionHistoryRestoreConfirmComponent, typeof i149.NewVersionHistoryDetailComponent], [typeof i150.CommonModule, typeof i151.FormsModule, typeof i151.ReactiveFormsModule, typeof i152.NoopAnimationsModule, typeof i153.MatIconModule, typeof i154.MatMenuModule, typeof i155.MatButtonModule, typeof i156.MatFormFieldModule, typeof i157.MatSelectModule, typeof i158.MatOptionModule, typeof i159.MatCheckboxModule, typeof i160.MatRadioModule, typeof i161.MatSlideToggleModule, typeof i162.MatDatepickerModule, typeof i158.MatNativeDateModule, typeof i163.MatProgressSpinnerModule, typeof i164.MatTooltipModule, typeof i165.MatDialogModule, typeof i166.MatTableModule, typeof i167.MatInputModule, typeof i168.OverlayModule, typeof i169.PortalModule, typeof i170.ScrollingModule, typeof i171.NgxTypedJsModule, typeof i172.DndModule, typeof i173.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.FullTableLoaderComponent, typeof i38.TableDataLoaderComponent, typeof i39.BasicStepComponent, typeof i40.StepRendererComponent, typeof i41.StepGroupComponent, typeof i42.LoopStepComponent, typeof i43.ConditionStepComponent, typeof i44.ConditionDebugStepComponent, typeof i45.ConditionBranchEditorComponent, typeof i46.FailedStepComponent, typeof i44.ConditionDebugStepComponent, typeof i47.UpdatedFailedStepComponent, typeof i48.ViewMoreFailedStepButtonComponent, typeof i49.SelfHealAnalysisComponent, typeof i50.AIAgentStepComponent, typeof i51.AIActionStepComponent, typeof i52.ApiStepComponent, typeof i53.FileDownloadStepComponent, typeof i54.DocumentVerificationStepComponent, typeof i55.LiveExecutionStepComponent, typeof i56.AiLogsWithReasoningComponent, typeof i57.JumpToStepModalComponent, typeof i58.BreakpointsModalComponent, typeof i59.RecordingBannerComponent, typeof i60.ReviewRecordedStepsModalComponent, typeof i61.MainStepCollapseComponent, typeof i62.VisualComparisonComponent, typeof i63.SimulatorComponent, typeof i64.ConsoleAlertComponent, typeof i65.AiDebugAlertComponent, typeof i66.NetworkRequestComponent, typeof i67.RunHistoryCardComponent, typeof i68.AiPromptCardComponent, typeof i69.VisualDifferenceModalComponent, typeof i70.ConfigurationCardComponent, typeof i71.CompareRunsComponent, typeof i72.ViewCompareButtonComponent, typeof i73.TestCaseLinkCellComponent, typeof i74.IterationsLoopComponent, typeof i75.FailedStepCardComponent, typeof i76.CustomInputComponent, typeof i77.MixedVariableInputComponent, typeof i78.CustomTextareaComponent, typeof i79.CodeEditorComponent, typeof i80.CustomToggleComponent, typeof i81.FileUploadComponent, typeof i82.AiReasoningComponent, typeof i83.ExecutionResultModalComponent, typeof i84.SessionChangesModalComponent, typeof i85.ErrorModalComponent, typeof i86.SessionRestorationDialogComponent, typeof i87.SubStepsConfirmationDialogComponent, typeof i88.ExportCodeModalComponent, typeof i89.ProgressIndicatorComponent, typeof i90.StepProgressCardComponent, typeof i91.StepStatusCardComponent, typeof i92.DbVerificationStepComponent, typeof i93.DbQueryExecutionItemComponent, typeof i94.TestCaseNormalStepComponent, typeof i95.TestCaseLoopStepComponent, typeof i96.TestCaseConditionStepComponent, typeof i97.TestCaseStepGroupComponent, typeof i98.TestCaseDetailsRendererComponent, typeof i99.TestCaseApiStepComponent, typeof i100.TestCaseDatabaseStepComponent, typeof i101.TestCaseAiAgentStepComponent, typeof i103.TestCaseUploadStepComponent, typeof i104.TestCaseScreenshotStepComponent, typeof i105.TestCaseScrollStepComponent, typeof i106.TestCaseVerifyUrlStepComponent, typeof i107.TestCaseRestoreSessionStepComponent, typeof i108.TestCaseCustomCodeStepComponent, typeof i109.CustomEditStepComponent, typeof i110.ItemListComponent, typeof i111.TestDataModalComponent, typeof i112.CreateStepGroupComponent, typeof i113.DeleteStepsComponent, typeof i114.RunExecutionAlertComponent, typeof i115.ApiEditStepComponent, typeof i116.LiveConversationComponent, typeof i117.StepBuilderActionComponent, typeof i118.StepBuilderLoopComponent, typeof i119.ElementPopupComponent, typeof i120.ElementFormComponent, typeof i121.StepBuilderConditionComponent, typeof i122.StepBuilderDatabaseComponent, typeof i123.StepBuilderAiAgentComponent, typeof i79.CodeEditorComponent, typeof i124.StepBuilderCustomCodeComponent, typeof i125.StepBuilderRecordStepComponent, typeof i126.StepBuilderDocumentGenerationTemplateStepComponent, typeof i127.ElementListComponent, typeof i128.StepBuilderDocumentComponent, typeof i129.DetailSidePanelComponent, typeof i130.DetailDrawerComponent, typeof i131.DetailDrawerTabComponent, typeof i132.DetailDrawerTabContentDirective, typeof i133.TestCaseDetailsComponent, typeof i134.TestCaseDetailsEditComponent, typeof i135.ApiMockingCardComponent, typeof i136.StepBuilderGroupComponent, typeof i137.StepDetailsDrawerComponent, typeof i138.TemplateVariablesFormComponent, typeof i139.AdvancedVariablesFormComponent, typeof i142.QuestionnaireListComponent, typeof i143.ChangeHistoryComponent, typeof i145.VersionHistoryListComponent, typeof i146.VersionHistoryCompareComponent, typeof i147.VersionHistoryDetailComponent, typeof i148.VersionHistoryRestoreConfirmComponent, typeof i149.NewVersionHistoryDetailComponent]>;
180
+ 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.FullTableLoaderComponent, typeof i38.TableDataLoaderComponent, typeof i39.BasicStepComponent, typeof i40.StepRendererComponent, typeof i41.StepGroupComponent, typeof i42.LoopStepComponent, typeof i43.ConditionStepComponent, typeof i44.ConditionDebugStepComponent, typeof i45.ConditionBranchEditorComponent, typeof i46.FailedStepComponent, typeof i47.UpdatedFailedStepComponent, typeof i48.ViewMoreFailedStepButtonComponent, typeof i49.SelfHealAnalysisComponent, typeof i50.AIAgentStepComponent, typeof i51.AIActionStepComponent, typeof i52.ApiStepComponent, typeof i53.FileDownloadStepComponent, typeof i54.DocumentVerificationStepComponent, typeof i55.LiveExecutionStepComponent, typeof i56.AiLogsWithReasoningComponent, typeof i57.JumpToStepModalComponent, typeof i58.BreakpointsModalComponent, typeof i59.RecordingBannerComponent, typeof i60.ReviewRecordedStepsModalComponent, typeof i61.MainStepCollapseComponent, typeof i62.VisualComparisonComponent, typeof i63.SimulatorComponent, typeof i64.ConsoleAlertComponent, typeof i65.AiDebugAlertComponent, typeof i66.NetworkRequestComponent, typeof i67.RunHistoryCardComponent, typeof i68.AiPromptCardComponent, typeof i69.VisualDifferenceModalComponent, typeof i70.ConfigurationCardComponent, typeof i71.CompareRunsComponent, typeof i72.ViewCompareButtonComponent, typeof i73.TestCaseLinkCellComponent, typeof i74.IterationsLoopComponent, typeof i75.FailedStepCardComponent, typeof i76.CustomInputComponent, typeof i77.MixedVariableInputComponent, typeof i78.CustomTextareaComponent, typeof i79.CodeEditorComponent, typeof i80.CustomToggleComponent, typeof i81.FileUploadComponent, typeof i82.AiReasoningComponent, typeof i83.ExecutionResultModalComponent, typeof i84.SessionChangesModalComponent, typeof i85.ErrorModalComponent, typeof i86.SessionRestorationDialogComponent, typeof i87.CaptureVideoDialogComponent, typeof i88.SubStepsConfirmationDialogComponent, typeof i89.ExportCodeModalComponent, typeof i90.ProgressIndicatorComponent, typeof i91.StepProgressCardComponent, typeof i92.StepStatusCardComponent, typeof i93.DbVerificationStepComponent, typeof i94.DbQueryExecutionItemComponent, typeof i95.TestCaseNormalStepComponent, typeof i96.TestCaseLoopStepComponent, typeof i97.TestCaseConditionStepComponent, typeof i98.TestCaseStepGroupComponent, typeof i99.TestCaseDetailsRendererComponent, typeof i100.TestCaseApiStepComponent, typeof i101.TestCaseDatabaseStepComponent, typeof i102.TestCaseAiAgentStepComponent, typeof i103.TestCaseAiVerifyStepComponent, typeof i104.TestCaseUploadStepComponent, typeof i105.TestCaseScreenshotStepComponent, typeof i106.TestCaseScrollStepComponent, typeof i107.TestCaseVerifyUrlStepComponent, typeof i108.TestCaseRestoreSessionStepComponent, typeof i109.TestCaseCustomCodeStepComponent, typeof i110.CustomEditStepComponent, typeof i111.ItemListComponent, typeof i112.TestDataModalComponent, typeof i113.CreateStepGroupComponent, typeof i114.DeleteStepsComponent, typeof i115.RunExecutionAlertComponent, typeof i116.ApiEditStepComponent, typeof i117.LiveConversationComponent, typeof i118.StepBuilderActionComponent, typeof i119.StepBuilderLoopComponent, typeof i120.ElementPopupComponent, typeof i121.ElementFormComponent, typeof i122.StepBuilderConditionComponent, typeof i123.StepBuilderDatabaseComponent, typeof i124.StepBuilderAiAgentComponent, typeof i79.CodeEditorComponent, typeof i125.StepBuilderCustomCodeComponent, typeof i126.StepBuilderRecordStepComponent, typeof i127.StepBuilderDocumentGenerationTemplateStepComponent, typeof i128.ElementListComponent, typeof i129.StepBuilderDocumentComponent, typeof i130.DetailSidePanelComponent, typeof i131.DetailDrawerComponent, typeof i132.DetailDrawerTabComponent, typeof i133.DetailDrawerTabContentDirective, typeof i134.TestCaseDetailsComponent, typeof i135.TestCaseDetailsEditComponent, typeof i136.ApiMockingCardComponent, typeof i137.StepBuilderGroupComponent, typeof i138.StepDetailsDrawerComponent, typeof i139.TemplateVariablesFormComponent, typeof i140.AdvancedVariablesFormComponent, typeof i141.StepDetailsModalComponent, typeof i142.SafeHtmlPipe, typeof i143.QuestionnaireListComponent, typeof i144.ChangeHistoryComponent, typeof i145.CamelToTitlePipe, typeof i146.VersionHistoryListComponent, typeof i147.VersionHistoryCompareComponent, typeof i148.VersionHistoryDetailComponent, typeof i149.VersionHistoryRestoreConfirmComponent, typeof i150.NewVersionHistoryDetailComponent], [typeof i151.CommonModule, typeof i152.FormsModule, typeof i152.ReactiveFormsModule, typeof i153.NoopAnimationsModule, typeof i154.MatIconModule, typeof i155.MatMenuModule, typeof i156.MatButtonModule, typeof i157.MatFormFieldModule, typeof i158.MatSelectModule, typeof i159.MatOptionModule, typeof i160.MatCheckboxModule, typeof i161.MatRadioModule, typeof i162.MatSlideToggleModule, typeof i163.MatDatepickerModule, typeof i159.MatNativeDateModule, typeof i164.MatProgressSpinnerModule, typeof i165.MatTooltipModule, typeof i166.MatDialogModule, typeof i167.MatTableModule, typeof i168.MatInputModule, typeof i169.OverlayModule, typeof i170.PortalModule, typeof i171.ScrollingModule, typeof i172.NgxTypedJsModule, typeof i173.DndModule, typeof i174.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.FullTableLoaderComponent, typeof i38.TableDataLoaderComponent, typeof i39.BasicStepComponent, typeof i40.StepRendererComponent, typeof i41.StepGroupComponent, typeof i42.LoopStepComponent, typeof i43.ConditionStepComponent, typeof i44.ConditionDebugStepComponent, typeof i45.ConditionBranchEditorComponent, typeof i46.FailedStepComponent, typeof i44.ConditionDebugStepComponent, typeof i47.UpdatedFailedStepComponent, typeof i48.ViewMoreFailedStepButtonComponent, typeof i49.SelfHealAnalysisComponent, typeof i50.AIAgentStepComponent, typeof i51.AIActionStepComponent, typeof i52.ApiStepComponent, typeof i53.FileDownloadStepComponent, typeof i54.DocumentVerificationStepComponent, typeof i55.LiveExecutionStepComponent, typeof i56.AiLogsWithReasoningComponent, typeof i57.JumpToStepModalComponent, typeof i58.BreakpointsModalComponent, typeof i59.RecordingBannerComponent, typeof i60.ReviewRecordedStepsModalComponent, typeof i61.MainStepCollapseComponent, typeof i62.VisualComparisonComponent, typeof i63.SimulatorComponent, typeof i64.ConsoleAlertComponent, typeof i65.AiDebugAlertComponent, typeof i66.NetworkRequestComponent, typeof i67.RunHistoryCardComponent, typeof i68.AiPromptCardComponent, typeof i69.VisualDifferenceModalComponent, typeof i70.ConfigurationCardComponent, typeof i71.CompareRunsComponent, typeof i72.ViewCompareButtonComponent, typeof i73.TestCaseLinkCellComponent, typeof i74.IterationsLoopComponent, typeof i75.FailedStepCardComponent, typeof i76.CustomInputComponent, typeof i77.MixedVariableInputComponent, typeof i78.CustomTextareaComponent, typeof i79.CodeEditorComponent, typeof i80.CustomToggleComponent, typeof i81.FileUploadComponent, typeof i82.AiReasoningComponent, typeof i83.ExecutionResultModalComponent, typeof i84.SessionChangesModalComponent, typeof i85.ErrorModalComponent, typeof i86.SessionRestorationDialogComponent, typeof i87.CaptureVideoDialogComponent, typeof i88.SubStepsConfirmationDialogComponent, typeof i89.ExportCodeModalComponent, typeof i90.ProgressIndicatorComponent, typeof i91.StepProgressCardComponent, typeof i92.StepStatusCardComponent, typeof i93.DbVerificationStepComponent, typeof i94.DbQueryExecutionItemComponent, typeof i95.TestCaseNormalStepComponent, typeof i96.TestCaseLoopStepComponent, typeof i97.TestCaseConditionStepComponent, typeof i98.TestCaseStepGroupComponent, typeof i99.TestCaseDetailsRendererComponent, typeof i100.TestCaseApiStepComponent, typeof i101.TestCaseDatabaseStepComponent, typeof i102.TestCaseAiAgentStepComponent, typeof i104.TestCaseUploadStepComponent, typeof i105.TestCaseScreenshotStepComponent, typeof i106.TestCaseScrollStepComponent, typeof i107.TestCaseVerifyUrlStepComponent, typeof i108.TestCaseRestoreSessionStepComponent, typeof i109.TestCaseCustomCodeStepComponent, typeof i110.CustomEditStepComponent, typeof i111.ItemListComponent, typeof i112.TestDataModalComponent, typeof i113.CreateStepGroupComponent, typeof i114.DeleteStepsComponent, typeof i115.RunExecutionAlertComponent, typeof i116.ApiEditStepComponent, typeof i117.LiveConversationComponent, typeof i118.StepBuilderActionComponent, typeof i119.StepBuilderLoopComponent, typeof i120.ElementPopupComponent, typeof i121.ElementFormComponent, typeof i122.StepBuilderConditionComponent, typeof i123.StepBuilderDatabaseComponent, typeof i124.StepBuilderAiAgentComponent, typeof i79.CodeEditorComponent, typeof i125.StepBuilderCustomCodeComponent, typeof i126.StepBuilderRecordStepComponent, typeof i127.StepBuilderDocumentGenerationTemplateStepComponent, typeof i128.ElementListComponent, typeof i129.StepBuilderDocumentComponent, typeof i130.DetailSidePanelComponent, typeof i131.DetailDrawerComponent, typeof i132.DetailDrawerTabComponent, typeof i133.DetailDrawerTabContentDirective, typeof i134.TestCaseDetailsComponent, typeof i135.TestCaseDetailsEditComponent, typeof i136.ApiMockingCardComponent, typeof i137.StepBuilderGroupComponent, typeof i138.StepDetailsDrawerComponent, typeof i139.TemplateVariablesFormComponent, typeof i140.AdvancedVariablesFormComponent, typeof i143.QuestionnaireListComponent, typeof i144.ChangeHistoryComponent, typeof i146.VersionHistoryListComponent, typeof i147.VersionHistoryCompareComponent, typeof i148.VersionHistoryDetailComponent, typeof i149.VersionHistoryRestoreConfirmComponent, typeof i150.NewVersionHistoryDetailComponent]>;
180
181
  static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
181
182
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cqa-lib/cqa-ui",
3
- "version": "1.1.514",
3
+ "version": "1.1.515",
4
4
  "description": "UI Kit library for Angular 13.4",
5
5
  "keywords": [
6
6
  "angular",
package/public-api.d.ts CHANGED
@@ -90,6 +90,7 @@ export * from './lib/execution-result-modal/execution-result-modal.component';
90
90
  export * from './lib/execution-screen/session-changes-modal/session-changes-modal.component';
91
91
  export * from './lib/error-modal/error-modal.component';
92
92
  export * from './lib/session-restoration-dialog/session-restoration-dialog.component';
93
+ export * from './lib/capture-video-dialog/capture-video-dialog.component';
93
94
  export * from './lib/sub-steps-confirmation-dialog/sub-steps-confirmation-dialog.component';
94
95
  export * from './lib/export-code-modal/export-code-modal.component';
95
96
  export * from './lib/progress-indicator/progress-indicator.component';