@cqa-lib/cqa-ui 1.1.248 → 1.1.250

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.
Files changed (33) hide show
  1. package/esm2020/lib/execution-screen/ai-action-step/ai-action-step.component.mjs +2 -2
  2. package/esm2020/lib/execution-screen/ai-agent-step/ai-agent-step.component.mjs +2 -2
  3. package/esm2020/lib/execution-screen/api-step/api-step.component.mjs +2 -2
  4. package/esm2020/lib/execution-screen/basic-step/basic-step.component.mjs +2 -2
  5. package/esm2020/lib/execution-screen/condition-step/condition-step.component.mjs +2 -2
  6. package/esm2020/lib/execution-screen/db-verification-step/db-verification-step.component.mjs +2 -2
  7. package/esm2020/lib/execution-screen/document-verification-step/document-verification-step.component.mjs +2 -2
  8. package/esm2020/lib/execution-screen/execution-step.models.mjs +1 -1
  9. package/esm2020/lib/execution-screen/failed-step/failed-step.component.mjs +2 -2
  10. package/esm2020/lib/execution-screen/file-download-step/file-download-step.component.mjs +2 -2
  11. package/esm2020/lib/execution-screen/live-execution-step/live-execution-step.component.mjs +2 -2
  12. package/esm2020/lib/execution-screen/loop-step/loop-step.component.mjs +6 -6
  13. package/esm2020/lib/execution-screen/recording-banner/recording-banner.component.mjs +30 -0
  14. package/esm2020/lib/execution-screen/review-recorded-steps-modal/review-recorded-steps-modal.component.mjs +112 -0
  15. package/esm2020/lib/execution-screen/step-group/step-group.component.mjs +7 -7
  16. package/esm2020/lib/execution-screen/step-renderer/step-renderer.component.mjs +23 -23
  17. package/esm2020/lib/execution-screen/updated-failed-step/updated-failed-step.component.mjs +2 -2
  18. package/esm2020/lib/test-case-details/condition-step/condition-step.component.mjs +3 -3
  19. package/esm2020/lib/test-case-details/delete-steps/delete-steps.component.mjs +2 -3
  20. package/esm2020/lib/test-case-details/loop-step/loop-step.component.mjs +3 -3
  21. package/esm2020/lib/ui-kit.module.mjs +11 -1
  22. package/esm2020/public-api.mjs +3 -1
  23. package/fesm2015/cqa-lib-cqa-ui.mjs +189 -52
  24. package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
  25. package/fesm2020/cqa-lib-cqa-ui.mjs +189 -51
  26. package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
  27. package/lib/execution-screen/execution-step.models.d.ts +12 -12
  28. package/lib/execution-screen/recording-banner/recording-banner.component.d.ts +13 -0
  29. package/lib/execution-screen/review-recorded-steps-modal/review-recorded-steps-modal.component.d.ts +37 -0
  30. package/lib/ui-kit.module.d.ts +97 -95
  31. package/package.json +1 -1
  32. package/public-api.d.ts +2 -0
  33. package/styles.css +1 -1
@@ -83,7 +83,7 @@ export interface SelfHealActionEvent {
83
83
  }
84
84
  export declare type SelfHealAction = 'accept' | 'reject' | 'modify-accept';
85
85
  export interface BasicStepConfig extends BaseStepConfig {
86
- type: 'basic';
86
+ displayType: 'basic';
87
87
  subSteps: SubStep[];
88
88
  selfHealAnalysis?: SelfHealAnalysisData;
89
89
  selfHealed?: boolean;
@@ -91,12 +91,12 @@ export interface BasicStepConfig extends BaseStepConfig {
91
91
  nestedSteps?: ExecutionStepConfig[];
92
92
  }
93
93
  export interface StepGroupConfig extends BaseStepConfig {
94
- type: 'step-group';
94
+ displayType: 'step-group';
95
95
  groupName: string;
96
96
  steps: ExecutionStepConfig[];
97
97
  }
98
98
  export interface LoopStepConfig extends BaseStepConfig {
99
- type: 'loop';
99
+ displayType: 'loop';
100
100
  loopType?: 'for' | 'while';
101
101
  iterations: LoopIteration[];
102
102
  selectedIterationId?: string;
@@ -107,13 +107,13 @@ export interface LoopStepConfig extends BaseStepConfig {
107
107
  iterationData?: any;
108
108
  }
109
109
  export interface ConditionStepConfig extends BaseStepConfig {
110
- type: 'condition';
110
+ displayType: 'condition';
111
111
  conditionText: string;
112
112
  branches: ConditionBranch[];
113
113
  nestedSteps?: ExecutionStepConfig[];
114
114
  }
115
115
  export interface FailedStepConfig extends BaseStepConfig {
116
- type: 'failed';
116
+ displayType: 'failed';
117
117
  subSteps: SubStep[];
118
118
  failureDetails: FailureDetails;
119
119
  reasoning?: string[];
@@ -129,7 +129,7 @@ export interface AIAgentAction {
129
129
  reasoning?: string;
130
130
  }
131
131
  export interface AIAgentStepConfig extends BaseStepConfig {
132
- type: 'ai-agent';
132
+ displayType: 'ai-agent';
133
133
  prompt: string;
134
134
  optimizedRun?: boolean;
135
135
  actionCount?: number;
@@ -137,7 +137,7 @@ export interface AIAgentStepConfig extends BaseStepConfig {
137
137
  selectedTab?: 'action-trace' | 'planner-timeline' | 'ai-reasoning';
138
138
  }
139
139
  export interface AIActionStepConfig extends BaseStepConfig {
140
- type: 'ai-action';
140
+ displayType: 'ai-action';
141
141
  actionCount?: number;
142
142
  actionName?: 'ai_text_verification' | 'ai_ask' | 'ai_document_ask' | 'ai_verify';
143
143
  actions: AIAgentAction[];
@@ -150,7 +150,7 @@ export interface ApiAssertion {
150
150
  actual: string;
151
151
  }
152
152
  export interface ApiStepConfig extends BaseStepConfig {
153
- type: 'api';
153
+ displayType: 'api';
154
154
  method: string;
155
155
  endpoint: string;
156
156
  statusCode: number;
@@ -163,7 +163,7 @@ export interface ApiStepConfig extends BaseStepConfig {
163
163
  initialActions?: SubStep[];
164
164
  }
165
165
  export interface FileDownloadStepConfig extends BaseStepConfig {
166
- type: 'file-download';
166
+ displayType: 'file-download';
167
167
  fileName: string;
168
168
  fileType: string;
169
169
  fileSize?: string;
@@ -183,7 +183,7 @@ export interface VerificationCheck {
183
183
  actual: string;
184
184
  }
185
185
  export interface DocumentVerificationStepConfig extends BaseStepConfig {
186
- type: 'document-verification';
186
+ displayType: 'document-verification';
187
187
  documentScreenshot?: string;
188
188
  extractedFields: ExtractedField[];
189
189
  verificationChecks: VerificationCheck[];
@@ -197,7 +197,7 @@ export interface LiveSubStep {
197
197
  remainingSeconds?: number | null;
198
198
  }
199
199
  export interface LiveExecutionStepConfig extends BaseStepConfig {
200
- type: 'live-execution';
200
+ displayType: 'live-execution';
201
201
  subSteps: LiveSubStep[];
202
202
  }
203
203
  export interface DbQueryResult {
@@ -225,7 +225,7 @@ export interface DbTestResult {
225
225
  allAssertionsPassed: boolean;
226
226
  }
227
227
  export interface DbVerificationStepConfig extends BaseStepConfig {
228
- type: 'db-verification';
228
+ displayType: 'db-verification';
229
229
  dbTestResult: DbTestResult;
230
230
  subSteps?: SubStep[];
231
231
  dbConfig?: {
@@ -0,0 +1,13 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class RecordingBannerComponent {
4
+ /** Whether the banner is visible (recording active) */
5
+ isVisible: boolean;
6
+ /** Number of steps captured so far */
7
+ stepsCaptured: number;
8
+ /** Emitted when the user clicks Stop */
9
+ stopRecording: EventEmitter<void>;
10
+ onStop(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<RecordingBannerComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<RecordingBannerComponent, "cqa-recording-banner", never, { "isVisible": "isVisible"; "stepsCaptured": "stepsCaptured"; }, { "stopRecording": "stopRecording"; }, never, never>;
13
+ }
@@ -0,0 +1,37 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { DndDropEvent } from 'ngx-drag-drop';
3
+ import * as i0 from "@angular/core";
4
+ export interface RecordedStepItem {
5
+ id: string;
6
+ label: string;
7
+ }
8
+ export declare type SaveOption = 'run_only' | 'test_case';
9
+ export declare class ReviewRecordedStepsModalComponent {
10
+ isOpen: boolean;
11
+ title: string;
12
+ steps: RecordedStepItem[];
13
+ saveOption: SaveOption;
14
+ saveButtonDisabled: boolean;
15
+ closeModal: EventEmitter<void>;
16
+ discard: EventEmitter<void>;
17
+ save: EventEmitter<void>;
18
+ saveOptionChange: EventEmitter<SaveOption>;
19
+ stepLabelChange: EventEmitter<{
20
+ id: string;
21
+ label: string;
22
+ }>;
23
+ removeStep: EventEmitter<string>;
24
+ reorderSteps: EventEmitter<RecordedStepItem[]>;
25
+ onBackdropClick(event: MouseEvent): void;
26
+ onClose(): void;
27
+ onDiscard(): void;
28
+ onSave(): void;
29
+ onSaveOptionChange(value: SaveOption): void;
30
+ onStepLabelChange(id: string, label: string): void;
31
+ onRemoveStep(id: string, event: Event): void;
32
+ onDndDrop(event: DndDropEvent): void;
33
+ onEscape(): void;
34
+ trackByStepId(_index: number, step: RecordedStepItem): string;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReviewRecordedStepsModalComponent, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<ReviewRecordedStepsModalComponent, "cqa-review-recorded-steps-modal", never, { "isOpen": "isOpen"; "title": "title"; "steps": "steps"; "saveOption": "saveOption"; "saveButtonDisabled": "saveButtonDisabled"; }, { "closeModal": "closeModal"; "discard": "discard"; "save": "save"; "saveOptionChange": "saveOptionChange"; "stepLabelChange": "stepLabelChange"; "removeStep": "removeStep"; "reorderSteps": "reorderSteps"; }, never, never>;
37
+ }
@@ -53,103 +53,105 @@ import * as i50 from "./execution-screen/live-execution-step/live-execution-step
53
53
  import * as i51 from "./execution-screen/ai-logs-with-reasoning/ai-logs-with-reasoning.component";
54
54
  import * as i52 from "./execution-screen/jump-to-step-modal/jump-to-step-modal.component";
55
55
  import * as i53 from "./execution-screen/breakpoints-modal/breakpoints-modal.component";
56
- import * as i54 from "./execution-screen/main-step-collapse/main-step-collapse.component";
57
- import * as i55 from "./execution-screen/visual-comparison/visual-comparison.component";
58
- import * as i56 from "./simulator/simulator.component";
59
- import * as i57 from "./console-alert/console-alert.component";
60
- import * as i58 from "./ai-debug-alert/ai-debug-alert.component";
61
- import * as i59 from "./network-request/network-request.component";
62
- import * as i60 from "./run-history-card/run-history-card.component";
63
- import * as i61 from "./visual-difference-modal/visual-difference-modal.component";
64
- import * as i62 from "./configuration-card/configuration-card.component";
65
- import * as i63 from "./compare-runs/compare-runs.component";
66
- import * as i64 from "./iterations-loop/iterations-loop.component";
67
- import * as i65 from "./failed-step-card/failed-step-card.component";
68
- import * as i66 from "./custom-input/custom-input.component";
69
- import * as i67 from "./custom-textarea/custom-textarea.component";
70
- import * as i68 from "./custom-toggle/custom-toggle.component";
71
- import * as i69 from "./file-upload/file-upload.component";
72
- import * as i70 from "./ai-reasoning/ai-reasoning.component";
73
- import * as i71 from "./execution-result-modal/execution-result-modal.component";
74
- import * as i72 from "./execution-screen/session-changes-modal/session-changes-modal.component";
75
- import * as i73 from "./error-modal/error-modal.component";
76
- import * as i74 from "./export-code-modal/export-code-modal.component";
77
- import * as i75 from "./progress-indicator/progress-indicator.component";
78
- import * as i76 from "./step-progress-card/step-progress-card.component";
79
- import * as i77 from "./step-status-card/step-status-card.component";
80
- import * as i78 from "./execution-screen/db-verification-step/db-verification-step.component";
81
- import * as i79 from "./execution-screen/db-query-execution-item/db-query-execution-item.component";
82
- import * as i80 from "./test-case-details/normal-step/normal-step.component";
83
- import * as i81 from "./test-case-details/loop-step/loop-step.component";
84
- import * as i82 from "./test-case-details/condition-step/condition-step.component";
85
- import * as i83 from "./test-case-details/step-group/step-group.component";
86
- import * as i84 from "./test-case-details/test-case-details-renderer/test-case-details-renderer.component";
87
- import * as i85 from "./test-case-details/api-step/api-step.component";
88
- import * as i86 from "./test-case-details/database-step/database-step.component";
89
- import * as i87 from "./test-case-details/ai-agent-step/ai-agent-step.component";
90
- import * as i88 from "./test-case-details/ai-verify-step/ai-verify-step.component";
91
- import * as i89 from "./test-case-details/upload-step/upload-step.component";
92
- import * as i90 from "./test-case-details/screenshot-step/screenshot-step.component";
93
- import * as i91 from "./test-case-details/scroll-step/scroll-step.component";
94
- import * as i92 from "./test-case-details/verify-url-step/verify-url-step.component";
95
- import * as i93 from "./test-case-details/restore-session-step/restore-session-step.component";
96
- import * as i94 from "./test-case-details/custom-code-step/custom-code-step.component";
97
- import * as i95 from "./test-case-details/custom-edit-step/custom-edit-step.component";
98
- import * as i96 from "./item-list/item-list.component";
99
- import * as i97 from "./test-case-details/test-data-modal/test-data-modal.component";
100
- import * as i98 from "./test-case-details/create-step-group/create-step-group.component";
101
- import * as i99 from "./test-case-details/delete-steps/delete-steps.component";
102
- import * as i100 from "./test-case-details/api-edit-step/api-edit-step.component";
103
- import * as i101 from "./live-conversation/live-conversation.component";
104
- import * as i102 from "./step-builder/step-builder-action/step-builder-action.component";
105
- import * as i103 from "./step-builder/step-builder-loop/step-builder-loop.component";
106
- import * as i104 from "./test-case-details/element-popup/element-popup.component";
107
- import * as i105 from "./test-case-details/element-popup/element-form/element-form.component";
108
- import * as i106 from "./step-builder/step-builder-condition/step-builder-condition.component";
109
- import * as i107 from "./step-builder/step-builder-database/step-builder-database.component";
110
- import * as i108 from "./step-builder/step-builder-ai-agent/step-builder-ai-agent.component";
111
- import * as i109 from "./step-builder/step-builder-custom-code/step-builder-custom-code.component";
112
- import * as i110 from "./step-builder/step-builder-record-step/step-builder-record-step.component";
113
- import * as i111 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
114
- import * as i112 from "./test-case-details/element-list/element-list.component";
115
- import * as i113 from "./step-builder/step-builder-document/step-builder-document.component";
116
- import * as i114 from "./detail-side-panel/detail-side-panel.component";
117
- import * as i115 from "./detail-drawer/detail-drawer.component";
118
- import * as i116 from "./detail-drawer/detail-drawer-tab/detail-drawer-tab.component";
119
- import * as i117 from "./detail-drawer/detail-drawer-tab-content.directive";
120
- import * as i118 from "./test-case-details/test-case-details.component";
121
- import * as i119 from "./test-case-details/test-case-details-edit/test-case-details-edit.component";
122
- import * as i120 from "./step-builder/step-builder-group/step-builder-group.component";
123
- import * as i121 from "./test-case-details/step-details-drawer/step-details-drawer.component";
124
- import * as i122 from "./step-builder/template-variables-form/template-variables-form.component";
125
- import * as i123 from "./step-builder/advanced-variables-form/advanced-variables-form.component";
126
- import * as i124 from "./test-case-details/step-details-modal/step-details-modal.component";
127
- import * as i125 from "@angular/common";
128
- import * as i126 from "@angular/forms";
129
- import * as i127 from "@angular/platform-browser/animations";
130
- import * as i128 from "@angular/material/icon";
131
- import * as i129 from "@angular/material/menu";
132
- import * as i130 from "@angular/material/button";
133
- import * as i131 from "@angular/material/form-field";
134
- import * as i132 from "@angular/material/select";
135
- import * as i133 from "@angular/material/core";
136
- import * as i134 from "@angular/material/checkbox";
137
- import * as i135 from "@angular/material/radio";
138
- import * as i136 from "@angular/material/slide-toggle";
139
- import * as i137 from "@angular/material/datepicker";
140
- import * as i138 from "@angular/material/progress-spinner";
141
- import * as i139 from "@angular/material/tooltip";
142
- import * as i140 from "@angular/material/dialog";
143
- import * as i141 from "@angular/material/table";
144
- import * as i142 from "@angular/material/input";
145
- import * as i143 from "@angular/cdk/overlay";
146
- import * as i144 from "@angular/cdk/portal";
147
- import * as i145 from "@angular/cdk/scrolling";
148
- import * as i146 from "ngx-typed-js";
149
- import * as i147 from "ngx-drag-drop";
56
+ import * as i54 from "./execution-screen/recording-banner/recording-banner.component";
57
+ import * as i55 from "./execution-screen/review-recorded-steps-modal/review-recorded-steps-modal.component";
58
+ import * as i56 from "./execution-screen/main-step-collapse/main-step-collapse.component";
59
+ import * as i57 from "./execution-screen/visual-comparison/visual-comparison.component";
60
+ import * as i58 from "./simulator/simulator.component";
61
+ import * as i59 from "./console-alert/console-alert.component";
62
+ import * as i60 from "./ai-debug-alert/ai-debug-alert.component";
63
+ import * as i61 from "./network-request/network-request.component";
64
+ import * as i62 from "./run-history-card/run-history-card.component";
65
+ import * as i63 from "./visual-difference-modal/visual-difference-modal.component";
66
+ import * as i64 from "./configuration-card/configuration-card.component";
67
+ import * as i65 from "./compare-runs/compare-runs.component";
68
+ import * as i66 from "./iterations-loop/iterations-loop.component";
69
+ import * as i67 from "./failed-step-card/failed-step-card.component";
70
+ import * as i68 from "./custom-input/custom-input.component";
71
+ import * as i69 from "./custom-textarea/custom-textarea.component";
72
+ import * as i70 from "./custom-toggle/custom-toggle.component";
73
+ import * as i71 from "./file-upload/file-upload.component";
74
+ import * as i72 from "./ai-reasoning/ai-reasoning.component";
75
+ import * as i73 from "./execution-result-modal/execution-result-modal.component";
76
+ import * as i74 from "./execution-screen/session-changes-modal/session-changes-modal.component";
77
+ import * as i75 from "./error-modal/error-modal.component";
78
+ import * as i76 from "./export-code-modal/export-code-modal.component";
79
+ import * as i77 from "./progress-indicator/progress-indicator.component";
80
+ import * as i78 from "./step-progress-card/step-progress-card.component";
81
+ import * as i79 from "./step-status-card/step-status-card.component";
82
+ import * as i80 from "./execution-screen/db-verification-step/db-verification-step.component";
83
+ import * as i81 from "./execution-screen/db-query-execution-item/db-query-execution-item.component";
84
+ import * as i82 from "./test-case-details/normal-step/normal-step.component";
85
+ import * as i83 from "./test-case-details/loop-step/loop-step.component";
86
+ import * as i84 from "./test-case-details/condition-step/condition-step.component";
87
+ import * as i85 from "./test-case-details/step-group/step-group.component";
88
+ import * as i86 from "./test-case-details/test-case-details-renderer/test-case-details-renderer.component";
89
+ import * as i87 from "./test-case-details/api-step/api-step.component";
90
+ import * as i88 from "./test-case-details/database-step/database-step.component";
91
+ import * as i89 from "./test-case-details/ai-agent-step/ai-agent-step.component";
92
+ import * as i90 from "./test-case-details/ai-verify-step/ai-verify-step.component";
93
+ import * as i91 from "./test-case-details/upload-step/upload-step.component";
94
+ import * as i92 from "./test-case-details/screenshot-step/screenshot-step.component";
95
+ import * as i93 from "./test-case-details/scroll-step/scroll-step.component";
96
+ import * as i94 from "./test-case-details/verify-url-step/verify-url-step.component";
97
+ import * as i95 from "./test-case-details/restore-session-step/restore-session-step.component";
98
+ import * as i96 from "./test-case-details/custom-code-step/custom-code-step.component";
99
+ import * as i97 from "./test-case-details/custom-edit-step/custom-edit-step.component";
100
+ import * as i98 from "./item-list/item-list.component";
101
+ import * as i99 from "./test-case-details/test-data-modal/test-data-modal.component";
102
+ import * as i100 from "./test-case-details/create-step-group/create-step-group.component";
103
+ import * as i101 from "./test-case-details/delete-steps/delete-steps.component";
104
+ import * as i102 from "./test-case-details/api-edit-step/api-edit-step.component";
105
+ import * as i103 from "./live-conversation/live-conversation.component";
106
+ import * as i104 from "./step-builder/step-builder-action/step-builder-action.component";
107
+ import * as i105 from "./step-builder/step-builder-loop/step-builder-loop.component";
108
+ import * as i106 from "./test-case-details/element-popup/element-popup.component";
109
+ import * as i107 from "./test-case-details/element-popup/element-form/element-form.component";
110
+ import * as i108 from "./step-builder/step-builder-condition/step-builder-condition.component";
111
+ import * as i109 from "./step-builder/step-builder-database/step-builder-database.component";
112
+ import * as i110 from "./step-builder/step-builder-ai-agent/step-builder-ai-agent.component";
113
+ import * as i111 from "./step-builder/step-builder-custom-code/step-builder-custom-code.component";
114
+ import * as i112 from "./step-builder/step-builder-record-step/step-builder-record-step.component";
115
+ import * as i113 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
116
+ import * as i114 from "./test-case-details/element-list/element-list.component";
117
+ import * as i115 from "./step-builder/step-builder-document/step-builder-document.component";
118
+ import * as i116 from "./detail-side-panel/detail-side-panel.component";
119
+ import * as i117 from "./detail-drawer/detail-drawer.component";
120
+ import * as i118 from "./detail-drawer/detail-drawer-tab/detail-drawer-tab.component";
121
+ import * as i119 from "./detail-drawer/detail-drawer-tab-content.directive";
122
+ import * as i120 from "./test-case-details/test-case-details.component";
123
+ import * as i121 from "./test-case-details/test-case-details-edit/test-case-details-edit.component";
124
+ import * as i122 from "./step-builder/step-builder-group/step-builder-group.component";
125
+ import * as i123 from "./test-case-details/step-details-drawer/step-details-drawer.component";
126
+ import * as i124 from "./step-builder/template-variables-form/template-variables-form.component";
127
+ import * as i125 from "./step-builder/advanced-variables-form/advanced-variables-form.component";
128
+ import * as i126 from "./test-case-details/step-details-modal/step-details-modal.component";
129
+ import * as i127 from "@angular/common";
130
+ import * as i128 from "@angular/forms";
131
+ import * as i129 from "@angular/platform-browser/animations";
132
+ import * as i130 from "@angular/material/icon";
133
+ import * as i131 from "@angular/material/menu";
134
+ import * as i132 from "@angular/material/button";
135
+ import * as i133 from "@angular/material/form-field";
136
+ import * as i134 from "@angular/material/select";
137
+ import * as i135 from "@angular/material/core";
138
+ import * as i136 from "@angular/material/checkbox";
139
+ import * as i137 from "@angular/material/radio";
140
+ import * as i138 from "@angular/material/slide-toggle";
141
+ import * as i139 from "@angular/material/datepicker";
142
+ import * as i140 from "@angular/material/progress-spinner";
143
+ import * as i141 from "@angular/material/tooltip";
144
+ import * as i142 from "@angular/material/dialog";
145
+ import * as i143 from "@angular/material/table";
146
+ import * as i144 from "@angular/material/input";
147
+ import * as i145 from "@angular/cdk/overlay";
148
+ import * as i146 from "@angular/cdk/portal";
149
+ import * as i147 from "@angular/cdk/scrolling";
150
+ import * as i148 from "ngx-typed-js";
151
+ import * as i149 from "ngx-drag-drop";
150
152
  export declare class UiKitModule {
151
153
  constructor(iconRegistry: MatIconRegistry);
152
154
  static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
153
- static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.DialogComponent, typeof i6.DynamicTableComponent, typeof i7.DynamicCellTemplateDirective, typeof i7.DynamicHeaderTemplateDirective, typeof i8.DynamicCellContainerDirective, typeof i9.PaginationComponent, typeof i10.ActionMenuButtonComponent, typeof i11.OtherButtonComponent, typeof i12.DynamicFilterComponent, typeof i13.DaterangepickerDirective, typeof i14.DaterangepickerComponent, typeof i15.ColumnVisibilityComponent, typeof i16.TableActionToolbarComponent, typeof i17.MetricsCardComponent, typeof i18.MetricsBlockComponent, typeof i19.ChartCardComponent, typeof i20.ProgressTextCardComponent, typeof i21.DashboardHeaderComponent, typeof i22.CoverageModuleCardComponent, typeof i23.TestDistributionCardComponent, typeof i24.FailedTestCasesCardComponent, typeof i25.DynamicSelectFieldComponent, typeof i26.AddPrerequisiteCasesSectionComponent, typeof i27.SelectedFiltersComponent, typeof i28.InsightCardComponent, typeof i29.BadgeComponent, typeof i30.DropdownButtonComponent, typeof i31.HeatErrorMapCellComponent, typeof i32.EmptyStateComponent, typeof i33.TableTemplateComponent, typeof i34.FullTableLoaderComponent, typeof i35.TableDataLoaderComponent, typeof i36.BasicStepComponent, typeof i37.StepRendererComponent, typeof i38.StepGroupComponent, typeof i39.LoopStepComponent, typeof i40.ConditionStepComponent, typeof i41.FailedStepComponent, typeof i42.UpdatedFailedStepComponent, typeof i43.ViewMoreFailedStepButtonComponent, typeof i44.SelfHealAnalysisComponent, typeof i45.AIAgentStepComponent, typeof i46.AIActionStepComponent, typeof i47.ApiStepComponent, typeof i48.FileDownloadStepComponent, typeof i49.DocumentVerificationStepComponent, typeof i50.LiveExecutionStepComponent, typeof i51.AiLogsWithReasoningComponent, typeof i52.JumpToStepModalComponent, typeof i53.BreakpointsModalComponent, typeof i54.MainStepCollapseComponent, typeof i55.VisualComparisonComponent, typeof i56.SimulatorComponent, typeof i57.ConsoleAlertComponent, typeof i58.AiDebugAlertComponent, typeof i59.NetworkRequestComponent, typeof i60.RunHistoryCardComponent, typeof i61.VisualDifferenceModalComponent, typeof i62.ConfigurationCardComponent, typeof i63.CompareRunsComponent, typeof i64.IterationsLoopComponent, typeof i65.FailedStepCardComponent, typeof i66.CustomInputComponent, typeof i67.CustomTextareaComponent, typeof i68.CustomToggleComponent, typeof i69.FileUploadComponent, typeof i70.AiReasoningComponent, typeof i71.ExecutionResultModalComponent, typeof i72.SessionChangesModalComponent, typeof i73.ErrorModalComponent, typeof i74.ExportCodeModalComponent, typeof i75.ProgressIndicatorComponent, typeof i76.StepProgressCardComponent, typeof i77.StepStatusCardComponent, typeof i78.DbVerificationStepComponent, typeof i79.DbQueryExecutionItemComponent, typeof i80.TestCaseNormalStepComponent, typeof i81.TestCaseLoopStepComponent, typeof i82.TestCaseConditionStepComponent, typeof i83.TestCaseStepGroupComponent, typeof i84.TestCaseDetailsRendererComponent, typeof i85.TestCaseApiStepComponent, typeof i86.TestCaseDatabaseStepComponent, typeof i87.TestCaseAiAgentStepComponent, typeof i88.TestCaseAiVerifyStepComponent, typeof i89.TestCaseUploadStepComponent, typeof i90.TestCaseScreenshotStepComponent, typeof i91.TestCaseScrollStepComponent, typeof i92.TestCaseVerifyUrlStepComponent, typeof i93.TestCaseRestoreSessionStepComponent, typeof i94.TestCaseCustomCodeStepComponent, typeof i95.CustomEditStepComponent, typeof i96.ItemListComponent, typeof i97.TestDataModalComponent, typeof i98.CreateStepGroupComponent, typeof i99.DeleteStepsComponent, typeof i100.ApiEditStepComponent, typeof i101.LiveConversationComponent, typeof i102.StepBuilderActionComponent, typeof i103.StepBuilderLoopComponent, typeof i104.ElementPopupComponent, typeof i105.ElementFormComponent, typeof i106.StepBuilderConditionComponent, typeof i107.StepBuilderDatabaseComponent, typeof i108.StepBuilderAiAgentComponent, typeof i109.StepBuilderCustomCodeComponent, typeof i110.StepBuilderRecordStepComponent, typeof i111.StepBuilderDocumentGenerationTemplateStepComponent, typeof i112.ElementListComponent, typeof i113.StepBuilderDocumentComponent, typeof i114.DetailSidePanelComponent, typeof i115.DetailDrawerComponent, typeof i116.DetailDrawerTabComponent, typeof i117.DetailDrawerTabContentDirective, typeof i118.TestCaseDetailsComponent, typeof i119.TestCaseDetailsEditComponent, typeof i120.StepBuilderGroupComponent, typeof i121.StepDetailsDrawerComponent, typeof i122.TemplateVariablesFormComponent, typeof i123.AdvancedVariablesFormComponent, typeof i124.StepDetailsModalComponent], [typeof i125.CommonModule, typeof i126.FormsModule, typeof i126.ReactiveFormsModule, typeof i127.NoopAnimationsModule, typeof i128.MatIconModule, typeof i129.MatMenuModule, typeof i130.MatButtonModule, typeof i131.MatFormFieldModule, typeof i132.MatSelectModule, typeof i133.MatOptionModule, typeof i134.MatCheckboxModule, typeof i135.MatRadioModule, typeof i136.MatSlideToggleModule, typeof i137.MatDatepickerModule, typeof i133.MatNativeDateModule, typeof i138.MatProgressSpinnerModule, typeof i139.MatTooltipModule, typeof i140.MatDialogModule, typeof i141.MatTableModule, typeof i142.MatInputModule, typeof i143.OverlayModule, typeof i144.PortalModule, typeof i145.ScrollingModule, typeof i146.NgxTypedJsModule, typeof i147.DndModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.DialogComponent, typeof i6.DynamicTableComponent, typeof i7.DynamicCellTemplateDirective, typeof i7.DynamicHeaderTemplateDirective, typeof i8.DynamicCellContainerDirective, typeof i9.PaginationComponent, typeof i10.ActionMenuButtonComponent, typeof i11.OtherButtonComponent, typeof i12.DynamicFilterComponent, typeof i13.DaterangepickerDirective, typeof i14.DaterangepickerComponent, typeof i15.ColumnVisibilityComponent, typeof i16.TableActionToolbarComponent, typeof i17.MetricsCardComponent, typeof i19.ChartCardComponent, typeof i20.ProgressTextCardComponent, typeof i21.DashboardHeaderComponent, typeof i22.CoverageModuleCardComponent, typeof i23.TestDistributionCardComponent, typeof i24.FailedTestCasesCardComponent, typeof i25.DynamicSelectFieldComponent, typeof i26.AddPrerequisiteCasesSectionComponent, typeof i27.SelectedFiltersComponent, typeof i28.InsightCardComponent, typeof i29.BadgeComponent, typeof i30.DropdownButtonComponent, typeof i31.HeatErrorMapCellComponent, typeof i32.EmptyStateComponent, typeof i33.TableTemplateComponent, typeof i34.FullTableLoaderComponent, typeof i35.TableDataLoaderComponent, typeof i36.BasicStepComponent, typeof i37.StepRendererComponent, typeof i38.StepGroupComponent, typeof i39.LoopStepComponent, typeof i40.ConditionStepComponent, typeof i41.FailedStepComponent, typeof i42.UpdatedFailedStepComponent, typeof i43.ViewMoreFailedStepButtonComponent, typeof i44.SelfHealAnalysisComponent, typeof i45.AIAgentStepComponent, typeof i46.AIActionStepComponent, typeof i47.ApiStepComponent, typeof i48.FileDownloadStepComponent, typeof i49.DocumentVerificationStepComponent, typeof i50.LiveExecutionStepComponent, typeof i51.AiLogsWithReasoningComponent, typeof i52.JumpToStepModalComponent, typeof i53.BreakpointsModalComponent, typeof i54.MainStepCollapseComponent, typeof i55.VisualComparisonComponent, typeof i56.SimulatorComponent, typeof i57.ConsoleAlertComponent, typeof i58.AiDebugAlertComponent, typeof i59.NetworkRequestComponent, typeof i60.RunHistoryCardComponent, typeof i61.VisualDifferenceModalComponent, typeof i62.ConfigurationCardComponent, typeof i63.CompareRunsComponent, typeof i64.IterationsLoopComponent, typeof i65.FailedStepCardComponent, typeof i66.CustomInputComponent, typeof i67.CustomTextareaComponent, typeof i68.CustomToggleComponent, typeof i69.FileUploadComponent, typeof i70.AiReasoningComponent, typeof i71.ExecutionResultModalComponent, typeof i72.SessionChangesModalComponent, typeof i73.ErrorModalComponent, typeof i74.ExportCodeModalComponent, typeof i75.ProgressIndicatorComponent, typeof i76.StepProgressCardComponent, typeof i77.StepStatusCardComponent, typeof i78.DbVerificationStepComponent, typeof i79.DbQueryExecutionItemComponent, typeof i80.TestCaseNormalStepComponent, typeof i81.TestCaseLoopStepComponent, typeof i82.TestCaseConditionStepComponent, typeof i83.TestCaseStepGroupComponent, typeof i84.TestCaseDetailsRendererComponent, typeof i85.TestCaseApiStepComponent, typeof i86.TestCaseDatabaseStepComponent, typeof i87.TestCaseAiAgentStepComponent, typeof i89.TestCaseUploadStepComponent, typeof i90.TestCaseScreenshotStepComponent, typeof i91.TestCaseScrollStepComponent, typeof i92.TestCaseVerifyUrlStepComponent, typeof i93.TestCaseRestoreSessionStepComponent, typeof i94.TestCaseCustomCodeStepComponent, typeof i95.CustomEditStepComponent, typeof i96.ItemListComponent, typeof i97.TestDataModalComponent, typeof i98.CreateStepGroupComponent, typeof i99.DeleteStepsComponent, typeof i100.ApiEditStepComponent, typeof i101.LiveConversationComponent, typeof i102.StepBuilderActionComponent, typeof i103.StepBuilderLoopComponent, typeof i104.ElementPopupComponent, typeof i105.ElementFormComponent, typeof i106.StepBuilderConditionComponent, typeof i107.StepBuilderDatabaseComponent, typeof i108.StepBuilderAiAgentComponent, typeof i109.StepBuilderCustomCodeComponent, typeof i110.StepBuilderRecordStepComponent, typeof i111.StepBuilderDocumentGenerationTemplateStepComponent, typeof i112.ElementListComponent, typeof i113.StepBuilderDocumentComponent, typeof i114.DetailSidePanelComponent, typeof i115.DetailDrawerComponent, typeof i116.DetailDrawerTabComponent, typeof i117.DetailDrawerTabContentDirective, typeof i118.TestCaseDetailsComponent, typeof i119.TestCaseDetailsEditComponent, typeof i120.StepBuilderGroupComponent, typeof i121.StepDetailsDrawerComponent, typeof i122.TemplateVariablesFormComponent, typeof i123.AdvancedVariablesFormComponent]>;
155
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.DialogComponent, typeof i6.DynamicTableComponent, typeof i7.DynamicCellTemplateDirective, typeof i7.DynamicHeaderTemplateDirective, typeof i8.DynamicCellContainerDirective, typeof i9.PaginationComponent, typeof i10.ActionMenuButtonComponent, typeof i11.OtherButtonComponent, typeof i12.DynamicFilterComponent, typeof i13.DaterangepickerDirective, typeof i14.DaterangepickerComponent, typeof i15.ColumnVisibilityComponent, typeof i16.TableActionToolbarComponent, typeof i17.MetricsCardComponent, typeof i18.MetricsBlockComponent, typeof i19.ChartCardComponent, typeof i20.ProgressTextCardComponent, typeof i21.DashboardHeaderComponent, typeof i22.CoverageModuleCardComponent, typeof i23.TestDistributionCardComponent, typeof i24.FailedTestCasesCardComponent, typeof i25.DynamicSelectFieldComponent, typeof i26.AddPrerequisiteCasesSectionComponent, typeof i27.SelectedFiltersComponent, typeof i28.InsightCardComponent, typeof i29.BadgeComponent, typeof i30.DropdownButtonComponent, typeof i31.HeatErrorMapCellComponent, typeof i32.EmptyStateComponent, typeof i33.TableTemplateComponent, typeof i34.FullTableLoaderComponent, typeof i35.TableDataLoaderComponent, typeof i36.BasicStepComponent, typeof i37.StepRendererComponent, typeof i38.StepGroupComponent, typeof i39.LoopStepComponent, typeof i40.ConditionStepComponent, typeof i41.FailedStepComponent, typeof i42.UpdatedFailedStepComponent, typeof i43.ViewMoreFailedStepButtonComponent, typeof i44.SelfHealAnalysisComponent, typeof i45.AIAgentStepComponent, typeof i46.AIActionStepComponent, typeof i47.ApiStepComponent, typeof i48.FileDownloadStepComponent, typeof i49.DocumentVerificationStepComponent, typeof i50.LiveExecutionStepComponent, typeof i51.AiLogsWithReasoningComponent, typeof i52.JumpToStepModalComponent, typeof i53.BreakpointsModalComponent, typeof i54.RecordingBannerComponent, typeof i55.ReviewRecordedStepsModalComponent, typeof i56.MainStepCollapseComponent, typeof i57.VisualComparisonComponent, typeof i58.SimulatorComponent, typeof i59.ConsoleAlertComponent, typeof i60.AiDebugAlertComponent, typeof i61.NetworkRequestComponent, typeof i62.RunHistoryCardComponent, typeof i63.VisualDifferenceModalComponent, typeof i64.ConfigurationCardComponent, typeof i65.CompareRunsComponent, typeof i66.IterationsLoopComponent, typeof i67.FailedStepCardComponent, typeof i68.CustomInputComponent, typeof i69.CustomTextareaComponent, typeof i70.CustomToggleComponent, typeof i71.FileUploadComponent, typeof i72.AiReasoningComponent, typeof i73.ExecutionResultModalComponent, typeof i74.SessionChangesModalComponent, typeof i75.ErrorModalComponent, typeof i76.ExportCodeModalComponent, typeof i77.ProgressIndicatorComponent, typeof i78.StepProgressCardComponent, typeof i79.StepStatusCardComponent, typeof i80.DbVerificationStepComponent, typeof i81.DbQueryExecutionItemComponent, typeof i82.TestCaseNormalStepComponent, typeof i83.TestCaseLoopStepComponent, typeof i84.TestCaseConditionStepComponent, typeof i85.TestCaseStepGroupComponent, typeof i86.TestCaseDetailsRendererComponent, typeof i87.TestCaseApiStepComponent, typeof i88.TestCaseDatabaseStepComponent, typeof i89.TestCaseAiAgentStepComponent, typeof i90.TestCaseAiVerifyStepComponent, typeof i91.TestCaseUploadStepComponent, typeof i92.TestCaseScreenshotStepComponent, typeof i93.TestCaseScrollStepComponent, typeof i94.TestCaseVerifyUrlStepComponent, typeof i95.TestCaseRestoreSessionStepComponent, typeof i96.TestCaseCustomCodeStepComponent, typeof i97.CustomEditStepComponent, typeof i98.ItemListComponent, typeof i99.TestDataModalComponent, typeof i100.CreateStepGroupComponent, typeof i101.DeleteStepsComponent, typeof i102.ApiEditStepComponent, typeof i103.LiveConversationComponent, typeof i104.StepBuilderActionComponent, typeof i105.StepBuilderLoopComponent, typeof i106.ElementPopupComponent, typeof i107.ElementFormComponent, typeof i108.StepBuilderConditionComponent, typeof i109.StepBuilderDatabaseComponent, typeof i110.StepBuilderAiAgentComponent, typeof i111.StepBuilderCustomCodeComponent, typeof i112.StepBuilderRecordStepComponent, typeof i113.StepBuilderDocumentGenerationTemplateStepComponent, typeof i114.ElementListComponent, typeof i115.StepBuilderDocumentComponent, typeof i116.DetailSidePanelComponent, typeof i117.DetailDrawerComponent, typeof i118.DetailDrawerTabComponent, typeof i119.DetailDrawerTabContentDirective, typeof i120.TestCaseDetailsComponent, typeof i121.TestCaseDetailsEditComponent, typeof i122.StepBuilderGroupComponent, typeof i123.StepDetailsDrawerComponent, typeof i124.TemplateVariablesFormComponent, typeof i125.AdvancedVariablesFormComponent, typeof i126.StepDetailsModalComponent], [typeof i127.CommonModule, typeof i128.FormsModule, typeof i128.ReactiveFormsModule, typeof i129.NoopAnimationsModule, typeof i130.MatIconModule, typeof i131.MatMenuModule, typeof i132.MatButtonModule, typeof i133.MatFormFieldModule, typeof i134.MatSelectModule, typeof i135.MatOptionModule, typeof i136.MatCheckboxModule, typeof i137.MatRadioModule, typeof i138.MatSlideToggleModule, typeof i139.MatDatepickerModule, typeof i135.MatNativeDateModule, typeof i140.MatProgressSpinnerModule, typeof i141.MatTooltipModule, typeof i142.MatDialogModule, typeof i143.MatTableModule, typeof i144.MatInputModule, typeof i145.OverlayModule, typeof i146.PortalModule, typeof i147.ScrollingModule, typeof i148.NgxTypedJsModule, typeof i149.DndModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.DialogComponent, typeof i6.DynamicTableComponent, typeof i7.DynamicCellTemplateDirective, typeof i7.DynamicHeaderTemplateDirective, typeof i8.DynamicCellContainerDirective, typeof i9.PaginationComponent, typeof i10.ActionMenuButtonComponent, typeof i11.OtherButtonComponent, typeof i12.DynamicFilterComponent, typeof i13.DaterangepickerDirective, typeof i14.DaterangepickerComponent, typeof i15.ColumnVisibilityComponent, typeof i16.TableActionToolbarComponent, typeof i17.MetricsCardComponent, typeof i19.ChartCardComponent, typeof i20.ProgressTextCardComponent, typeof i21.DashboardHeaderComponent, typeof i22.CoverageModuleCardComponent, typeof i23.TestDistributionCardComponent, typeof i24.FailedTestCasesCardComponent, typeof i25.DynamicSelectFieldComponent, typeof i26.AddPrerequisiteCasesSectionComponent, typeof i27.SelectedFiltersComponent, typeof i28.InsightCardComponent, typeof i29.BadgeComponent, typeof i30.DropdownButtonComponent, typeof i31.HeatErrorMapCellComponent, typeof i32.EmptyStateComponent, typeof i33.TableTemplateComponent, typeof i34.FullTableLoaderComponent, typeof i35.TableDataLoaderComponent, typeof i36.BasicStepComponent, typeof i37.StepRendererComponent, typeof i38.StepGroupComponent, typeof i39.LoopStepComponent, typeof i40.ConditionStepComponent, typeof i41.FailedStepComponent, typeof i42.UpdatedFailedStepComponent, typeof i43.ViewMoreFailedStepButtonComponent, typeof i44.SelfHealAnalysisComponent, typeof i45.AIAgentStepComponent, typeof i46.AIActionStepComponent, typeof i47.ApiStepComponent, typeof i48.FileDownloadStepComponent, typeof i49.DocumentVerificationStepComponent, typeof i50.LiveExecutionStepComponent, typeof i51.AiLogsWithReasoningComponent, typeof i52.JumpToStepModalComponent, typeof i53.BreakpointsModalComponent, typeof i54.RecordingBannerComponent, typeof i55.ReviewRecordedStepsModalComponent, typeof i56.MainStepCollapseComponent, typeof i57.VisualComparisonComponent, typeof i58.SimulatorComponent, typeof i59.ConsoleAlertComponent, typeof i60.AiDebugAlertComponent, typeof i61.NetworkRequestComponent, typeof i62.RunHistoryCardComponent, typeof i63.VisualDifferenceModalComponent, typeof i64.ConfigurationCardComponent, typeof i65.CompareRunsComponent, typeof i66.IterationsLoopComponent, typeof i67.FailedStepCardComponent, typeof i68.CustomInputComponent, typeof i69.CustomTextareaComponent, typeof i70.CustomToggleComponent, typeof i71.FileUploadComponent, typeof i72.AiReasoningComponent, typeof i73.ExecutionResultModalComponent, typeof i74.SessionChangesModalComponent, typeof i75.ErrorModalComponent, typeof i76.ExportCodeModalComponent, typeof i77.ProgressIndicatorComponent, typeof i78.StepProgressCardComponent, typeof i79.StepStatusCardComponent, typeof i80.DbVerificationStepComponent, typeof i81.DbQueryExecutionItemComponent, typeof i82.TestCaseNormalStepComponent, typeof i83.TestCaseLoopStepComponent, typeof i84.TestCaseConditionStepComponent, typeof i85.TestCaseStepGroupComponent, typeof i86.TestCaseDetailsRendererComponent, typeof i87.TestCaseApiStepComponent, typeof i88.TestCaseDatabaseStepComponent, typeof i89.TestCaseAiAgentStepComponent, typeof i91.TestCaseUploadStepComponent, typeof i92.TestCaseScreenshotStepComponent, typeof i93.TestCaseScrollStepComponent, typeof i94.TestCaseVerifyUrlStepComponent, typeof i95.TestCaseRestoreSessionStepComponent, typeof i96.TestCaseCustomCodeStepComponent, typeof i97.CustomEditStepComponent, typeof i98.ItemListComponent, typeof i99.TestDataModalComponent, typeof i100.CreateStepGroupComponent, typeof i101.DeleteStepsComponent, typeof i102.ApiEditStepComponent, typeof i103.LiveConversationComponent, typeof i104.StepBuilderActionComponent, typeof i105.StepBuilderLoopComponent, typeof i106.ElementPopupComponent, typeof i107.ElementFormComponent, typeof i108.StepBuilderConditionComponent, typeof i109.StepBuilderDatabaseComponent, typeof i110.StepBuilderAiAgentComponent, typeof i111.StepBuilderCustomCodeComponent, typeof i112.StepBuilderRecordStepComponent, typeof i113.StepBuilderDocumentGenerationTemplateStepComponent, typeof i114.ElementListComponent, typeof i115.StepBuilderDocumentComponent, typeof i116.DetailSidePanelComponent, typeof i117.DetailDrawerComponent, typeof i118.DetailDrawerTabComponent, typeof i119.DetailDrawerTabContentDirective, typeof i120.TestCaseDetailsComponent, typeof i121.TestCaseDetailsEditComponent, typeof i122.StepBuilderGroupComponent, typeof i123.StepDetailsDrawerComponent, typeof i124.TemplateVariablesFormComponent, typeof i125.AdvancedVariablesFormComponent]>;
154
156
  static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
155
157
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cqa-lib/cqa-ui",
3
- "version": "1.1.248",
3
+ "version": "1.1.250",
4
4
  "description": "UI Kit library for Angular 13.4",
5
5
  "keywords": [
6
6
  "angular",
package/public-api.d.ts CHANGED
@@ -154,3 +154,5 @@ export * from './lib/test-case-details/test-case-details-edit/test-case-details-
154
154
  export * from './lib/step-builder/step-builder-group/step-builder-group.component';
155
155
  export * from './lib/execution-screen/jump-to-step-modal/jump-to-step-modal.component';
156
156
  export * from './lib/execution-screen/breakpoints-modal/breakpoints-modal.component';
157
+ export * from './lib/execution-screen/recording-banner/recording-banner.component';
158
+ export * from './lib/execution-screen/review-recorded-steps-modal/review-recorded-steps-modal.component';