@cqa-lib/cqa-ui 1.1.554 → 1.1.555

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,106 @@
1
+ import { ChangeDetectorRef, EventEmitter } from '@angular/core';
2
+ import { FolderNode, ModularLabels } from '../../templates/modular-table-template/modular-table-template.models';
3
+ import { TestSuiteLabels } from '../test-suite.models';
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * Body of the "Move Test Suite" dialog.
7
+ *
8
+ * Reuses `<cqa-move-to-folder-dialog>` as the tree picker (same embedding pattern
9
+ * as `NewFolderDialogComponent`) so consumers get the same folder-tree UX, while
10
+ * adding two read-only rows above it: the suite's **current folder** (source)
11
+ * and the **destination folder** the user has picked (live-updates).
12
+ *
13
+ * Two integration paths:
14
+ *
15
+ * 1. **From within this library** via `DialogService.open(...)`. The outer
16
+ * `cqa-dialog` supplies title/description/Cancel/Move buttons; the Move
17
+ * button reads `pickedFolderId` via `dialogRef.getComponentInstance()` and
18
+ * checks `isValid` before closing.
19
+ *
20
+ * 2. **Host-driven** — host renders `<cqa-move-test-suite-dialog>` inside its
21
+ * own modal and listens to `(submitted)` / `(cancelled)` / `(pickedFolderIdChange)`.
22
+ */
23
+ export declare class MoveTestSuiteDialogComponent {
24
+ private cdr;
25
+ private _folders;
26
+ set folders(value: FolderNode[]);
27
+ get folders(): FolderNode[];
28
+ private _labels;
29
+ set labels(value: ModularLabels);
30
+ get labels(): ModularLabels;
31
+ /** Test-suite-section labels (title, description, button text, field labels,
32
+ * placeholder). Kept separate from `labels` (ModularLabels) so the embedded
33
+ * picker can keep its modular-table-template label model. Same setter
34
+ * pattern as `labels` for DialogService property-assignment compatibility. */
35
+ private _testSuiteLabels;
36
+ set testSuiteLabels(value: TestSuiteLabels);
37
+ get testSuiteLabels(): TestSuiteLabels;
38
+ /** Folder the suite currently lives in. Used both to gray out the row in the
39
+ * embedded picker and to render the "Current folder" readout. */
40
+ currentFolderId: number | null;
41
+ /** Optional override for the current-folder display name. When not provided,
42
+ * the component resolves the name from `folders` by walking to `currentFolderId`,
43
+ * falling back to `labels.moveDialogRoot` ("Unorganized") when null. */
44
+ currentFolderName: string | null;
45
+ /** Name of the test suite being moved. Rendered as a disabled input at the
46
+ * top of the dialog body so the user can confirm which suite the move
47
+ * applies to. Defaults to empty string. */
48
+ suiteName: string;
49
+ /** Destination folder id picked by the user. Two-way-bind friendly. */
50
+ pickedFolderId: number | null;
51
+ /** Height of the embedded picker. Defaults to 240px (matches the parent-folder
52
+ * picker height in `NewFolderDialogComponent`) so the modal stays compact. */
53
+ pickerHeight: string;
54
+ /** When true (default), both the Current folder and Destination folder inputs
55
+ * render as disabled (read-only via the cqa-custom-input `[disabled]` flag).
56
+ * Set to false if a host needs to re-enable interaction on those fields. */
57
+ fieldsDisabled: boolean;
58
+ pickedFolderIdChange: EventEmitter<number>;
59
+ submitted: EventEmitter<{
60
+ targetFolderId: number | null;
61
+ }>;
62
+ cancelled: EventEmitter<void>;
63
+ /** Bubble cqa-custom-input focus/blur events up to hosts. Useful when
64
+ * `fieldsDisabled = false` and the host wants to react to interaction. */
65
+ currentFieldFocus: EventEmitter<FocusEvent>;
66
+ currentFieldBlur: EventEmitter<FocusEvent>;
67
+ destinationFieldFocus: EventEmitter<FocusEvent>;
68
+ destinationFieldBlur: EventEmitter<FocusEvent>;
69
+ /** Set to true the first time the user picks anything. Lets `isValid` treat
70
+ * the initial pre-touch state as "nothing selected" — important when the
71
+ * suite starts in Unorganized (`currentFolderId = null`) so a fresh dialog
72
+ * doesn't appear valid just because `pickedFolderId` also defaults to null. */
73
+ private pickedTouched;
74
+ constructor(cdr: ChangeDetectorRef);
75
+ onParentPicked(id: number | null): void;
76
+ /** True once the user has picked a destination via the embedded tree. Drives
77
+ * the destination-readout styling (indigo when picked, muted when not). */
78
+ get hasPick(): boolean;
79
+ get resolvedCurrentName(): string;
80
+ /** Value shown inside the Destination input. Empty until the user picks; once
81
+ * picked, the resolved folder name (or `labels.moveDialogRoot` for Unorganized).
82
+ * Empty state lets the input's `[placeholder]` show through. */
83
+ get destinationFieldValue(): string;
84
+ /** Placeholder shown in the Destination input before the user picks. */
85
+ get destinationFieldPlaceholder(): string;
86
+ /** Move is valid when the user has picked a destination different from the
87
+ * current folder. Picking the same folder as the source is a no-op, and we
88
+ * also require an explicit interaction (`pickedTouched`). */
89
+ get isValid(): boolean;
90
+ submit(): void;
91
+ cancel(): void;
92
+ /** Hooks for the Current folder cqa-custom-input. Field is disabled by
93
+ * default, so these mostly no-op; they're wired so the component still
94
+ * behaves correctly when `fieldsDisabled = false`. */
95
+ onCurrentFieldValueChange(_value: string): void;
96
+ onCurrentFieldFocused(event: FocusEvent): void;
97
+ onCurrentFieldBlurred(event: FocusEvent): void;
98
+ /** Hooks for the Destination folder cqa-custom-input. Value is driven by the
99
+ * tree picker below, so the input itself is informational. */
100
+ onDestinationFieldValueChange(_value: string): void;
101
+ onDestinationFieldFocused(event: FocusEvent): void;
102
+ onDestinationFieldBlurred(event: FocusEvent): void;
103
+ private findFolderName;
104
+ static ɵfac: i0.ɵɵFactoryDeclaration<MoveTestSuiteDialogComponent, never>;
105
+ static ɵcmp: i0.ɵɵComponentDeclaration<MoveTestSuiteDialogComponent, "cqa-move-test-suite-dialog", never, { "folders": "folders"; "labels": "labels"; "testSuiteLabels": "testSuiteLabels"; "currentFolderId": "currentFolderId"; "currentFolderName": "currentFolderName"; "suiteName": "suiteName"; "pickedFolderId": "pickedFolderId"; "pickerHeight": "pickerHeight"; "fieldsDisabled": "fieldsDisabled"; }, { "pickedFolderIdChange": "pickedFolderIdChange"; "submitted": "submitted"; "cancelled": "cancelled"; "currentFieldFocus": "currentFieldFocus"; "currentFieldBlur": "currentFieldBlur"; "destinationFieldFocus": "destinationFieldFocus"; "destinationFieldBlur": "destinationFieldBlur"; }, never, never>;
106
+ }
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Labels for the Test Suite section's dialogs. Kept separate from
3
+ * `ModularLabels` because these are test-suite-specific copy — the modular
4
+ * table template doesn't (and shouldn't) need them.
5
+ *
6
+ * Currently consumed by `MoveTestSuiteDialogComponent` for its own field
7
+ * labels and by the outer dialog shell (title / description / Cancel / Move).
8
+ */
9
+ export interface TestSuiteLabels {
10
+ moveTestSuiteDialogTitle: string;
11
+ moveTestSuiteDialogDescription: string;
12
+ moveTestSuiteDialogSuiteNameLabel: string;
13
+ moveTestSuiteDialogCurrentLabel: string;
14
+ moveTestSuiteDialogDestinationLabel: string;
15
+ moveTestSuiteDialogDestinationPlaceholder: string;
16
+ moveTestSuiteDialogCancel: string;
17
+ moveTestSuiteDialogConfirm: string;
18
+ }
19
+ export declare const DEFAULT_TEST_SUITE_LABELS: TestSuiteLabels;
@@ -40,163 +40,164 @@ import * as i37 from "./templates/table-template.component";
40
40
  import * as i38 from "./templates/modular-table-template/modular-table-template.component";
41
41
  import * as i39 from "./templates/modular-table-template/folder-sidebar/folder-sidebar.component";
42
42
  import * as i40 from "./templates/modular-table-template/dialogs/move-to-folder-dialog.component";
43
- import * as i41 from "./templates/modular-table-template/dialogs/new-folder-dialog.component";
44
- import * as i42 from "./templates/modular-table-template/dialogs/delete-folder-dialog.component";
45
- import * as i43 from "./templates/modular-table-template/directives/row-drag.directive";
46
- import * as i44 from "./templates/modular-table-template/directives/folder-drop.directive";
47
- import * as i45 from "./templates/modular-table-template/directives/folder-drag.directive";
48
- import * as i46 from "./dialogs/name-prompt-modal.component";
49
- import * as i47 from "./full-table-loader/full-table-loader.component";
50
- import * as i48 from "./table-data-loader/table-data-loader.component";
51
- import * as i49 from "./execution-screen/basic-step/basic-step.component";
52
- import * as i50 from "./execution-screen/step-renderer/step-renderer.component";
53
- import * as i51 from "./execution-screen/step-group/step-group.component";
54
- import * as i52 from "./execution-screen/loop-step/loop-step.component";
55
- import * as i53 from "./execution-screen/condition-step/condition-step.component";
56
- import * as i54 from "./execution-screen/condition-debug-step/condition-debug-step.component";
57
- import * as i55 from "./execution-screen/condition-debug-step/condition-branch-editor.component";
58
- import * as i56 from "./execution-screen/failed-step/failed-step.component";
59
- import * as i57 from "./execution-screen/updated-failed-step/updated-failed-step.component";
60
- import * as i58 from "./execution-screen/view-more-failed-step-button/view-more-failed-step-button.component";
61
- import * as i59 from "./execution-screen/self-heal-analysis/self-heal-analysis.component";
62
- import * as i60 from "./execution-screen/ai-agent-step/ai-agent-step.component";
63
- import * as i61 from "./execution-screen/ai-action-step/ai-action-step.component";
64
- import * as i62 from "./execution-screen/api-step/api-step.component";
65
- import * as i63 from "./execution-screen/file-download-step/file-download-step.component";
66
- import * as i64 from "./execution-screen/document-verification-step/document-verification-step.component";
67
- import * as i65 from "./execution-screen/live-execution-step/live-execution-step.component";
68
- import * as i66 from "./execution-screen/ai-logs-with-reasoning/ai-logs-with-reasoning.component";
69
- import * as i67 from "./execution-screen/jump-to-step-modal/jump-to-step-modal.component";
70
- import * as i68 from "./execution-screen/breakpoints-modal/breakpoints-modal.component";
71
- import * as i69 from "./execution-screen/recording-banner/recording-banner.component";
72
- import * as i70 from "./execution-screen/review-recorded-steps-modal/review-recorded-steps-modal.component";
73
- import * as i71 from "./execution-screen/main-step-collapse/main-step-collapse.component";
74
- import * as i72 from "./execution-screen/visual-comparison/visual-comparison.component";
75
- import * as i73 from "./simulator/simulator.component";
76
- import * as i74 from "./console-alert/console-alert.component";
77
- import * as i75 from "./ai-debug-alert/ai-debug-alert.component";
78
- import * as i76 from "./network-request/network-request.component";
79
- import * as i77 from "./run-history-card/run-history-card.component";
80
- import * as i78 from "./ai-prompt-card/ai-prompt-card.component";
81
- import * as i79 from "./visual-difference-modal/visual-difference-modal.component";
82
- import * as i80 from "./configuration-card/configuration-card.component";
83
- import * as i81 from "./compare-runs/compare-runs.component";
84
- import * as i82 from "./compare-runs/view-compare-button.component";
85
- import * as i83 from "./compare-runs/test-case-link-cell.component";
86
- import * as i84 from "./iterations-loop/iterations-loop.component";
87
- import * as i85 from "./failed-step-card/failed-step-card.component";
88
- import * as i86 from "./custom-input/custom-input.component";
89
- import * as i87 from "./mixed-variable-input/mixed-variable-input.component";
90
- import * as i88 from "./custom-textarea/custom-textarea.component";
91
- import * as i89 from "./code-editor/code-editor.component";
92
- import * as i90 from "./custom-toggle/custom-toggle.component";
93
- import * as i91 from "./file-upload/file-upload.component";
94
- import * as i92 from "./ai-reasoning/ai-reasoning.component";
95
- import * as i93 from "./execution-result-modal/execution-result-modal.component";
96
- import * as i94 from "./execution-screen/session-changes-modal/session-changes-modal.component";
97
- import * as i95 from "./error-modal/error-modal.component";
98
- import * as i96 from "./session-restoration-dialog/session-restoration-dialog.component";
99
- import * as i97 from "./capture-video-dialog/capture-video-dialog.component";
100
- import * as i98 from "./sub-steps-confirmation-dialog/sub-steps-confirmation-dialog.component";
101
- import * as i99 from "./new-global-variable-dialog/new-global-variable-dialog.component";
102
- import * as i100 from "./new-environment-dialog/new-environment-dialog.component";
103
- import * as i101 from "./new-environment-variable-dialog/new-environment-variable-dialog.component";
104
- import * as i102 from "./new-db-config-dialog/new-db-config-dialog.component";
105
- import * as i103 from "./new-test-data-profile-dialog/new-test-data-profile-dialog.component";
106
- import * as i104 from "./manage-columns-dialog/manage-columns-dialog.component";
107
- import * as i105 from "./audit-log-drawer/audit-log-drawer.component";
108
- import * as i106 from "./audit-log-drawer/audit-log-entry-card.component";
109
- import * as i107 from "./assign-environments-dialog/assign-environments-dialog.component";
110
- import * as i108 from "./permission-toggle/permission-toggle.component";
111
- import * as i109 from "./export-code-modal/export-code-modal.component";
112
- import * as i110 from "./progress-indicator/progress-indicator.component";
113
- import * as i111 from "./step-progress-card/step-progress-card.component";
114
- import * as i112 from "./step-status-card/step-status-card.component";
115
- import * as i113 from "./execution-screen/db-verification-step/db-verification-step.component";
116
- import * as i114 from "./execution-screen/db-query-execution-item/db-query-execution-item.component";
117
- import * as i115 from "./test-case-details/normal-step/normal-step.component";
118
- import * as i116 from "./test-case-details/loop-step/loop-step.component";
119
- import * as i117 from "./test-case-details/condition-step/condition-step.component";
120
- import * as i118 from "./test-case-details/step-group/step-group.component";
121
- import * as i119 from "./test-case-details/test-case-details-renderer/test-case-details-renderer.component";
122
- import * as i120 from "./test-case-details/api-step/api-step.component";
123
- import * as i121 from "./test-case-details/database-step/database-step.component";
124
- import * as i122 from "./test-case-details/ai-agent-step/ai-agent-step.component";
125
- import * as i123 from "./test-case-details/ai-verify-step/ai-verify-step.component";
126
- import * as i124 from "./test-case-details/upload-step/upload-step.component";
127
- import * as i125 from "./test-case-details/screenshot-step/screenshot-step.component";
128
- import * as i126 from "./test-case-details/scroll-step/scroll-step.component";
129
- import * as i127 from "./test-case-details/verify-url-step/verify-url-step.component";
130
- import * as i128 from "./test-case-details/restore-session-step/restore-session-step.component";
131
- import * as i129 from "./test-case-details/custom-code-step/custom-code-step.component";
132
- import * as i130 from "./test-case-details/custom-edit-step/custom-edit-step.component";
133
- import * as i131 from "./item-list/item-list.component";
134
- import * as i132 from "./test-case-details/test-data-modal/test-data-modal.component";
135
- import * as i133 from "./test-case-details/create-step-group/create-step-group.component";
136
- import * as i134 from "./test-case-details/delete-steps/delete-steps.component";
137
- import * as i135 from "./test-case-details/run-execution-alert/run-execution-alert.component";
138
- import * as i136 from "./test-case-details/api-edit-step/api-edit-step.component";
139
- import * as i137 from "./live-conversation/live-conversation.component";
140
- import * as i138 from "./step-builder/step-builder-action/step-builder-action.component";
141
- import * as i139 from "./step-builder/step-builder-loop/step-builder-loop.component";
142
- import * as i140 from "./test-case-details/element-popup/element-popup.component";
143
- import * as i141 from "./test-case-details/element-popup/element-form/element-form.component";
144
- import * as i142 from "./step-builder/step-builder-condition/step-builder-condition.component";
145
- import * as i143 from "./step-builder/step-builder-database/step-builder-database.component";
146
- import * as i144 from "./step-builder/step-builder-ai-agent/step-builder-ai-agent.component";
147
- import * as i145 from "./step-builder/step-builder-custom-code/step-builder-custom-code.component";
148
- import * as i146 from "./step-builder/step-builder-record-step/step-builder-record-step.component";
149
- import * as i147 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
150
- import * as i148 from "./test-case-details/element-list/element-list.component";
151
- import * as i149 from "./step-builder/step-builder-document/step-builder-document.component";
152
- import * as i150 from "./detail-side-panel/detail-side-panel.component";
153
- import * as i151 from "./detail-drawer/detail-drawer.component";
154
- import * as i152 from "./detail-drawer/detail-drawer-tab/detail-drawer-tab.component";
155
- import * as i153 from "./detail-drawer/detail-drawer-tab-content.directive";
156
- import * as i154 from "./test-case-details/test-case-details.component";
157
- import * as i155 from "./test-case-details/test-case-details-edit/test-case-details-edit.component";
158
- import * as i156 from "./test-case-details/api-mocking-card/api-mocking-card.component";
159
- import * as i157 from "./step-builder/step-builder-group/step-builder-group.component";
160
- import * as i158 from "./test-case-details/step-details-drawer/step-details-drawer.component";
161
- import * as i159 from "./step-builder/template-variables-form/template-variables-form.component";
162
- import * as i160 from "./step-builder/advanced-variables-form/advanced-variables-form.component";
163
- import * as i161 from "./test-case-details/step-details-modal/step-details-modal.component";
164
- import * as i162 from "./pipes/safe-html.pipe";
165
- import * as i163 from "./questionnaire-list/questionnaire-list.component";
166
- import * as i164 from "./change-history/change-history.component";
167
- import * as i165 from "./pipes/camel-to-title.pipe";
168
- import * as i166 from "./version-history/version-history-list/version-history-list.component";
169
- import * as i167 from "./version-history/version-history-compare/version-history-compare.component";
170
- import * as i168 from "./version-history/version-history-detail/version-history-detail.component";
171
- import * as i169 from "./version-history/version-history-restore-confirm/version-history-restore-confirm.component";
172
- import * as i170 from "./version-history/new-version-history-detail/new-version-history-detail.component";
173
- import * as i171 from "@angular/common";
174
- import * as i172 from "@angular/forms";
175
- import * as i173 from "@angular/platform-browser/animations";
176
- import * as i174 from "@angular/material/icon";
177
- import * as i175 from "@angular/material/menu";
178
- import * as i176 from "@angular/material/button";
179
- import * as i177 from "@angular/material/form-field";
180
- import * as i178 from "@angular/material/select";
181
- import * as i179 from "@angular/material/core";
182
- import * as i180 from "@angular/material/checkbox";
183
- import * as i181 from "@angular/material/radio";
184
- import * as i182 from "@angular/material/slide-toggle";
185
- import * as i183 from "@angular/material/datepicker";
186
- import * as i184 from "@angular/material/progress-spinner";
187
- import * as i185 from "@angular/material/tooltip";
188
- import * as i186 from "@angular/material/dialog";
189
- import * as i187 from "@angular/material/table";
190
- import * as i188 from "@angular/material/input";
191
- import * as i189 from "@angular/cdk/overlay";
192
- import * as i190 from "@angular/cdk/portal";
193
- import * as i191 from "@angular/cdk/scrolling";
194
- import * as i192 from "ngx-typed-js";
195
- import * as i193 from "ngx-drag-drop";
196
- import * as i194 from "ngx-monaco-editor";
43
+ import * as i41 from "./test-suite/move-test-suite-dialog/move-test-suite-dialog.component";
44
+ import * as i42 from "./templates/modular-table-template/dialogs/new-folder-dialog.component";
45
+ import * as i43 from "./templates/modular-table-template/dialogs/delete-folder-dialog.component";
46
+ import * as i44 from "./templates/modular-table-template/directives/row-drag.directive";
47
+ import * as i45 from "./templates/modular-table-template/directives/folder-drop.directive";
48
+ import * as i46 from "./templates/modular-table-template/directives/folder-drag.directive";
49
+ import * as i47 from "./dialogs/name-prompt-modal.component";
50
+ import * as i48 from "./full-table-loader/full-table-loader.component";
51
+ import * as i49 from "./table-data-loader/table-data-loader.component";
52
+ import * as i50 from "./execution-screen/basic-step/basic-step.component";
53
+ import * as i51 from "./execution-screen/step-renderer/step-renderer.component";
54
+ import * as i52 from "./execution-screen/step-group/step-group.component";
55
+ import * as i53 from "./execution-screen/loop-step/loop-step.component";
56
+ import * as i54 from "./execution-screen/condition-step/condition-step.component";
57
+ import * as i55 from "./execution-screen/condition-debug-step/condition-debug-step.component";
58
+ import * as i56 from "./execution-screen/condition-debug-step/condition-branch-editor.component";
59
+ import * as i57 from "./execution-screen/failed-step/failed-step.component";
60
+ import * as i58 from "./execution-screen/updated-failed-step/updated-failed-step.component";
61
+ import * as i59 from "./execution-screen/view-more-failed-step-button/view-more-failed-step-button.component";
62
+ import * as i60 from "./execution-screen/self-heal-analysis/self-heal-analysis.component";
63
+ import * as i61 from "./execution-screen/ai-agent-step/ai-agent-step.component";
64
+ import * as i62 from "./execution-screen/ai-action-step/ai-action-step.component";
65
+ import * as i63 from "./execution-screen/api-step/api-step.component";
66
+ import * as i64 from "./execution-screen/file-download-step/file-download-step.component";
67
+ import * as i65 from "./execution-screen/document-verification-step/document-verification-step.component";
68
+ import * as i66 from "./execution-screen/live-execution-step/live-execution-step.component";
69
+ import * as i67 from "./execution-screen/ai-logs-with-reasoning/ai-logs-with-reasoning.component";
70
+ import * as i68 from "./execution-screen/jump-to-step-modal/jump-to-step-modal.component";
71
+ import * as i69 from "./execution-screen/breakpoints-modal/breakpoints-modal.component";
72
+ import * as i70 from "./execution-screen/recording-banner/recording-banner.component";
73
+ import * as i71 from "./execution-screen/review-recorded-steps-modal/review-recorded-steps-modal.component";
74
+ import * as i72 from "./execution-screen/main-step-collapse/main-step-collapse.component";
75
+ import * as i73 from "./execution-screen/visual-comparison/visual-comparison.component";
76
+ import * as i74 from "./simulator/simulator.component";
77
+ import * as i75 from "./console-alert/console-alert.component";
78
+ import * as i76 from "./ai-debug-alert/ai-debug-alert.component";
79
+ import * as i77 from "./network-request/network-request.component";
80
+ import * as i78 from "./run-history-card/run-history-card.component";
81
+ import * as i79 from "./ai-prompt-card/ai-prompt-card.component";
82
+ import * as i80 from "./visual-difference-modal/visual-difference-modal.component";
83
+ import * as i81 from "./configuration-card/configuration-card.component";
84
+ import * as i82 from "./compare-runs/compare-runs.component";
85
+ import * as i83 from "./compare-runs/view-compare-button.component";
86
+ import * as i84 from "./compare-runs/test-case-link-cell.component";
87
+ import * as i85 from "./iterations-loop/iterations-loop.component";
88
+ import * as i86 from "./failed-step-card/failed-step-card.component";
89
+ import * as i87 from "./custom-input/custom-input.component";
90
+ import * as i88 from "./mixed-variable-input/mixed-variable-input.component";
91
+ import * as i89 from "./custom-textarea/custom-textarea.component";
92
+ import * as i90 from "./code-editor/code-editor.component";
93
+ import * as i91 from "./custom-toggle/custom-toggle.component";
94
+ import * as i92 from "./file-upload/file-upload.component";
95
+ import * as i93 from "./ai-reasoning/ai-reasoning.component";
96
+ import * as i94 from "./execution-result-modal/execution-result-modal.component";
97
+ import * as i95 from "./execution-screen/session-changes-modal/session-changes-modal.component";
98
+ import * as i96 from "./error-modal/error-modal.component";
99
+ import * as i97 from "./session-restoration-dialog/session-restoration-dialog.component";
100
+ import * as i98 from "./capture-video-dialog/capture-video-dialog.component";
101
+ import * as i99 from "./sub-steps-confirmation-dialog/sub-steps-confirmation-dialog.component";
102
+ import * as i100 from "./new-global-variable-dialog/new-global-variable-dialog.component";
103
+ import * as i101 from "./new-environment-dialog/new-environment-dialog.component";
104
+ import * as i102 from "./new-environment-variable-dialog/new-environment-variable-dialog.component";
105
+ import * as i103 from "./new-db-config-dialog/new-db-config-dialog.component";
106
+ import * as i104 from "./new-test-data-profile-dialog/new-test-data-profile-dialog.component";
107
+ import * as i105 from "./manage-columns-dialog/manage-columns-dialog.component";
108
+ import * as i106 from "./audit-log-drawer/audit-log-drawer.component";
109
+ import * as i107 from "./audit-log-drawer/audit-log-entry-card.component";
110
+ import * as i108 from "./assign-environments-dialog/assign-environments-dialog.component";
111
+ import * as i109 from "./permission-toggle/permission-toggle.component";
112
+ import * as i110 from "./export-code-modal/export-code-modal.component";
113
+ import * as i111 from "./progress-indicator/progress-indicator.component";
114
+ import * as i112 from "./step-progress-card/step-progress-card.component";
115
+ import * as i113 from "./step-status-card/step-status-card.component";
116
+ import * as i114 from "./execution-screen/db-verification-step/db-verification-step.component";
117
+ import * as i115 from "./execution-screen/db-query-execution-item/db-query-execution-item.component";
118
+ import * as i116 from "./test-case-details/normal-step/normal-step.component";
119
+ import * as i117 from "./test-case-details/loop-step/loop-step.component";
120
+ import * as i118 from "./test-case-details/condition-step/condition-step.component";
121
+ import * as i119 from "./test-case-details/step-group/step-group.component";
122
+ import * as i120 from "./test-case-details/test-case-details-renderer/test-case-details-renderer.component";
123
+ import * as i121 from "./test-case-details/api-step/api-step.component";
124
+ import * as i122 from "./test-case-details/database-step/database-step.component";
125
+ import * as i123 from "./test-case-details/ai-agent-step/ai-agent-step.component";
126
+ import * as i124 from "./test-case-details/ai-verify-step/ai-verify-step.component";
127
+ import * as i125 from "./test-case-details/upload-step/upload-step.component";
128
+ import * as i126 from "./test-case-details/screenshot-step/screenshot-step.component";
129
+ import * as i127 from "./test-case-details/scroll-step/scroll-step.component";
130
+ import * as i128 from "./test-case-details/verify-url-step/verify-url-step.component";
131
+ import * as i129 from "./test-case-details/restore-session-step/restore-session-step.component";
132
+ import * as i130 from "./test-case-details/custom-code-step/custom-code-step.component";
133
+ import * as i131 from "./test-case-details/custom-edit-step/custom-edit-step.component";
134
+ import * as i132 from "./item-list/item-list.component";
135
+ import * as i133 from "./test-case-details/test-data-modal/test-data-modal.component";
136
+ import * as i134 from "./test-case-details/create-step-group/create-step-group.component";
137
+ import * as i135 from "./test-case-details/delete-steps/delete-steps.component";
138
+ import * as i136 from "./test-case-details/run-execution-alert/run-execution-alert.component";
139
+ import * as i137 from "./test-case-details/api-edit-step/api-edit-step.component";
140
+ import * as i138 from "./live-conversation/live-conversation.component";
141
+ import * as i139 from "./step-builder/step-builder-action/step-builder-action.component";
142
+ import * as i140 from "./step-builder/step-builder-loop/step-builder-loop.component";
143
+ import * as i141 from "./test-case-details/element-popup/element-popup.component";
144
+ import * as i142 from "./test-case-details/element-popup/element-form/element-form.component";
145
+ import * as i143 from "./step-builder/step-builder-condition/step-builder-condition.component";
146
+ import * as i144 from "./step-builder/step-builder-database/step-builder-database.component";
147
+ import * as i145 from "./step-builder/step-builder-ai-agent/step-builder-ai-agent.component";
148
+ import * as i146 from "./step-builder/step-builder-custom-code/step-builder-custom-code.component";
149
+ import * as i147 from "./step-builder/step-builder-record-step/step-builder-record-step.component";
150
+ import * as i148 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
151
+ import * as i149 from "./test-case-details/element-list/element-list.component";
152
+ import * as i150 from "./step-builder/step-builder-document/step-builder-document.component";
153
+ import * as i151 from "./detail-side-panel/detail-side-panel.component";
154
+ import * as i152 from "./detail-drawer/detail-drawer.component";
155
+ import * as i153 from "./detail-drawer/detail-drawer-tab/detail-drawer-tab.component";
156
+ import * as i154 from "./detail-drawer/detail-drawer-tab-content.directive";
157
+ import * as i155 from "./test-case-details/test-case-details.component";
158
+ import * as i156 from "./test-case-details/test-case-details-edit/test-case-details-edit.component";
159
+ import * as i157 from "./test-case-details/api-mocking-card/api-mocking-card.component";
160
+ import * as i158 from "./step-builder/step-builder-group/step-builder-group.component";
161
+ import * as i159 from "./test-case-details/step-details-drawer/step-details-drawer.component";
162
+ import * as i160 from "./step-builder/template-variables-form/template-variables-form.component";
163
+ import * as i161 from "./step-builder/advanced-variables-form/advanced-variables-form.component";
164
+ import * as i162 from "./test-case-details/step-details-modal/step-details-modal.component";
165
+ import * as i163 from "./pipes/safe-html.pipe";
166
+ import * as i164 from "./questionnaire-list/questionnaire-list.component";
167
+ import * as i165 from "./change-history/change-history.component";
168
+ import * as i166 from "./pipes/camel-to-title.pipe";
169
+ import * as i167 from "./version-history/version-history-list/version-history-list.component";
170
+ import * as i168 from "./version-history/version-history-compare/version-history-compare.component";
171
+ import * as i169 from "./version-history/version-history-detail/version-history-detail.component";
172
+ import * as i170 from "./version-history/version-history-restore-confirm/version-history-restore-confirm.component";
173
+ import * as i171 from "./version-history/new-version-history-detail/new-version-history-detail.component";
174
+ import * as i172 from "@angular/common";
175
+ import * as i173 from "@angular/forms";
176
+ import * as i174 from "@angular/platform-browser/animations";
177
+ import * as i175 from "@angular/material/icon";
178
+ import * as i176 from "@angular/material/menu";
179
+ import * as i177 from "@angular/material/button";
180
+ import * as i178 from "@angular/material/form-field";
181
+ import * as i179 from "@angular/material/select";
182
+ import * as i180 from "@angular/material/core";
183
+ import * as i181 from "@angular/material/checkbox";
184
+ import * as i182 from "@angular/material/radio";
185
+ import * as i183 from "@angular/material/slide-toggle";
186
+ import * as i184 from "@angular/material/datepicker";
187
+ import * as i185 from "@angular/material/progress-spinner";
188
+ import * as i186 from "@angular/material/tooltip";
189
+ import * as i187 from "@angular/material/dialog";
190
+ import * as i188 from "@angular/material/table";
191
+ import * as i189 from "@angular/material/input";
192
+ import * as i190 from "@angular/cdk/overlay";
193
+ import * as i191 from "@angular/cdk/portal";
194
+ import * as i192 from "@angular/cdk/scrolling";
195
+ import * as i193 from "ngx-typed-js";
196
+ import * as i194 from "ngx-drag-drop";
197
+ import * as i195 from "ngx-monaco-editor";
197
198
  export declare class UiKitModule {
198
199
  constructor(iconRegistry: MatIconRegistry);
199
200
  static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
200
- 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.ViewportSelectorComponent, typeof i8.DialogComponent, typeof i9.DynamicTableComponent, typeof i10.DynamicCellTemplateDirective, typeof i10.DynamicHeaderTemplateDirective, typeof i11.DynamicCellContainerDirective, typeof i12.PaginationComponent, typeof i13.ActionMenuButtonComponent, typeof i14.OtherButtonComponent, typeof i15.DynamicFilterComponent, typeof i16.DaterangepickerDirective, typeof i17.DaterangepickerComponent, typeof i18.ColumnVisibilityComponent, typeof i19.TableActionToolbarComponent, typeof i20.MetricsCardComponent, typeof i21.MetricsBlockComponent, typeof i22.ChartCardComponent, typeof i23.ProgressTextCardComponent, typeof i24.DashboardHeaderComponent, typeof i25.WorkspaceSelectorComponent, typeof i26.CoverageModuleCardComponent, typeof i27.TestDistributionCardComponent, typeof i28.FailedTestCasesCardComponent, typeof i29.DynamicSelectFieldComponent, typeof i30.AddPrerequisiteCasesSectionComponent, typeof i31.SelectedFiltersComponent, typeof i32.InsightCardComponent, typeof i33.BadgeComponent, typeof i34.DropdownButtonComponent, typeof i35.HeatErrorMapCellComponent, typeof i36.EmptyStateComponent, typeof i37.TableTemplateComponent, typeof i38.ModularTableTemplateComponent, typeof i39.FolderSidebarComponent, typeof i40.MoveToFolderDialogComponent, typeof i41.NewFolderDialogComponent, typeof i42.DeleteFolderDialogComponent, typeof i43.RowDragDirective, typeof i44.FolderDropDirective, typeof i45.FolderDragDirective, typeof i46.NamePromptModalComponent, typeof i47.FullTableLoaderComponent, typeof i48.TableDataLoaderComponent, typeof i49.BasicStepComponent, typeof i50.StepRendererComponent, typeof i51.StepGroupComponent, typeof i52.LoopStepComponent, typeof i53.ConditionStepComponent, typeof i54.ConditionDebugStepComponent, typeof i55.ConditionBranchEditorComponent, typeof i56.FailedStepComponent, typeof i57.UpdatedFailedStepComponent, typeof i58.ViewMoreFailedStepButtonComponent, typeof i59.SelfHealAnalysisComponent, typeof i60.AIAgentStepComponent, typeof i61.AIActionStepComponent, typeof i62.ApiStepComponent, typeof i63.FileDownloadStepComponent, typeof i64.DocumentVerificationStepComponent, typeof i65.LiveExecutionStepComponent, typeof i66.AiLogsWithReasoningComponent, typeof i67.JumpToStepModalComponent, typeof i68.BreakpointsModalComponent, typeof i69.RecordingBannerComponent, typeof i70.ReviewRecordedStepsModalComponent, typeof i71.MainStepCollapseComponent, typeof i72.VisualComparisonComponent, typeof i73.SimulatorComponent, typeof i74.ConsoleAlertComponent, typeof i75.AiDebugAlertComponent, typeof i76.NetworkRequestComponent, typeof i77.RunHistoryCardComponent, typeof i78.AiPromptCardComponent, typeof i79.VisualDifferenceModalComponent, typeof i80.ConfigurationCardComponent, typeof i81.CompareRunsComponent, typeof i82.ViewCompareButtonComponent, typeof i83.TestCaseLinkCellComponent, typeof i84.IterationsLoopComponent, typeof i85.FailedStepCardComponent, typeof i86.CustomInputComponent, typeof i87.MixedVariableInputComponent, typeof i88.CustomTextareaComponent, typeof i89.CodeEditorComponent, typeof i90.CustomToggleComponent, typeof i91.FileUploadComponent, typeof i92.AiReasoningComponent, typeof i93.ExecutionResultModalComponent, typeof i94.SessionChangesModalComponent, typeof i95.ErrorModalComponent, typeof i96.SessionRestorationDialogComponent, typeof i97.CaptureVideoDialogComponent, typeof i98.SubStepsConfirmationDialogComponent, typeof i99.NewGlobalVariableDialogComponent, typeof i100.NewEnvironmentDialogComponent, typeof i101.NewEnvironmentVariableDialogComponent, typeof i102.NewDbConfigDialogComponent, typeof i103.NewTestDataProfileDialogComponent, typeof i104.ManageColumnsDialogComponent, typeof i105.AuditLogDrawerComponent, typeof i106.AuditLogEntryCardComponent, typeof i107.AssignEnvironmentsDialogComponent, typeof i108.PermissionToggleComponent, typeof i109.ExportCodeModalComponent, typeof i110.ProgressIndicatorComponent, typeof i111.StepProgressCardComponent, typeof i112.StepStatusCardComponent, typeof i113.DbVerificationStepComponent, typeof i114.DbQueryExecutionItemComponent, typeof i115.TestCaseNormalStepComponent, typeof i116.TestCaseLoopStepComponent, typeof i117.TestCaseConditionStepComponent, typeof i118.TestCaseStepGroupComponent, typeof i119.TestCaseDetailsRendererComponent, typeof i120.TestCaseApiStepComponent, typeof i121.TestCaseDatabaseStepComponent, typeof i122.TestCaseAiAgentStepComponent, typeof i123.TestCaseAiVerifyStepComponent, typeof i124.TestCaseUploadStepComponent, typeof i125.TestCaseScreenshotStepComponent, typeof i126.TestCaseScrollStepComponent, typeof i127.TestCaseVerifyUrlStepComponent, typeof i128.TestCaseRestoreSessionStepComponent, typeof i129.TestCaseCustomCodeStepComponent, typeof i130.CustomEditStepComponent, typeof i131.ItemListComponent, typeof i132.TestDataModalComponent, typeof i133.CreateStepGroupComponent, typeof i134.DeleteStepsComponent, typeof i135.RunExecutionAlertComponent, typeof i136.ApiEditStepComponent, typeof i137.LiveConversationComponent, typeof i138.StepBuilderActionComponent, typeof i139.StepBuilderLoopComponent, typeof i140.ElementPopupComponent, typeof i141.ElementFormComponent, typeof i142.StepBuilderConditionComponent, typeof i143.StepBuilderDatabaseComponent, typeof i144.StepBuilderAiAgentComponent, typeof i89.CodeEditorComponent, typeof i145.StepBuilderCustomCodeComponent, typeof i146.StepBuilderRecordStepComponent, typeof i147.StepBuilderDocumentGenerationTemplateStepComponent, typeof i148.ElementListComponent, typeof i149.StepBuilderDocumentComponent, typeof i150.DetailSidePanelComponent, typeof i151.DetailDrawerComponent, typeof i152.DetailDrawerTabComponent, typeof i153.DetailDrawerTabContentDirective, typeof i154.TestCaseDetailsComponent, typeof i155.TestCaseDetailsEditComponent, typeof i156.ApiMockingCardComponent, typeof i157.StepBuilderGroupComponent, typeof i158.StepDetailsDrawerComponent, typeof i159.TemplateVariablesFormComponent, typeof i160.AdvancedVariablesFormComponent, typeof i161.StepDetailsModalComponent, typeof i162.SafeHtmlPipe, typeof i163.QuestionnaireListComponent, typeof i164.ChangeHistoryComponent, typeof i165.CamelToTitlePipe, typeof i166.VersionHistoryListComponent, typeof i167.VersionHistoryCompareComponent, typeof i168.VersionHistoryDetailComponent, typeof i169.VersionHistoryRestoreConfirmComponent, typeof i170.NewVersionHistoryDetailComponent], [typeof i171.CommonModule, typeof i172.FormsModule, typeof i172.ReactiveFormsModule, typeof i173.NoopAnimationsModule, typeof i174.MatIconModule, typeof i175.MatMenuModule, typeof i176.MatButtonModule, typeof i177.MatFormFieldModule, typeof i178.MatSelectModule, typeof i179.MatOptionModule, typeof i180.MatCheckboxModule, typeof i181.MatRadioModule, typeof i182.MatSlideToggleModule, typeof i183.MatDatepickerModule, typeof i179.MatNativeDateModule, typeof i184.MatProgressSpinnerModule, typeof i185.MatTooltipModule, typeof i186.MatDialogModule, typeof i187.MatTableModule, typeof i188.MatInputModule, typeof i189.OverlayModule, typeof i190.PortalModule, typeof i191.ScrollingModule, typeof i192.NgxTypedJsModule, typeof i193.DndModule, typeof i194.MonacoEditorModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.ViewportSelectorComponent, typeof i8.DialogComponent, typeof i9.DynamicTableComponent, typeof i10.DynamicCellTemplateDirective, typeof i10.DynamicHeaderTemplateDirective, typeof i11.DynamicCellContainerDirective, typeof i12.PaginationComponent, typeof i13.ActionMenuButtonComponent, typeof i14.OtherButtonComponent, typeof i15.DynamicFilterComponent, typeof i16.DaterangepickerDirective, typeof i17.DaterangepickerComponent, typeof i18.ColumnVisibilityComponent, typeof i19.TableActionToolbarComponent, typeof i20.MetricsCardComponent, typeof i22.ChartCardComponent, typeof i23.ProgressTextCardComponent, typeof i24.DashboardHeaderComponent, typeof i25.WorkspaceSelectorComponent, typeof i26.CoverageModuleCardComponent, typeof i27.TestDistributionCardComponent, typeof i28.FailedTestCasesCardComponent, typeof i29.DynamicSelectFieldComponent, typeof i30.AddPrerequisiteCasesSectionComponent, typeof i31.SelectedFiltersComponent, typeof i32.InsightCardComponent, typeof i33.BadgeComponent, typeof i34.DropdownButtonComponent, typeof i35.HeatErrorMapCellComponent, typeof i36.EmptyStateComponent, typeof i37.TableTemplateComponent, typeof i38.ModularTableTemplateComponent, typeof i39.FolderSidebarComponent, typeof i41.NewFolderDialogComponent, typeof i42.DeleteFolderDialogComponent, typeof i40.MoveToFolderDialogComponent, typeof i43.RowDragDirective, typeof i44.FolderDropDirective, typeof i45.FolderDragDirective, typeof i46.NamePromptModalComponent, typeof i47.FullTableLoaderComponent, typeof i48.TableDataLoaderComponent, typeof i49.BasicStepComponent, typeof i50.StepRendererComponent, typeof i51.StepGroupComponent, typeof i52.LoopStepComponent, typeof i53.ConditionStepComponent, typeof i54.ConditionDebugStepComponent, typeof i55.ConditionBranchEditorComponent, typeof i56.FailedStepComponent, typeof i54.ConditionDebugStepComponent, typeof i57.UpdatedFailedStepComponent, typeof i58.ViewMoreFailedStepButtonComponent, typeof i59.SelfHealAnalysisComponent, typeof i60.AIAgentStepComponent, typeof i61.AIActionStepComponent, typeof i62.ApiStepComponent, typeof i63.FileDownloadStepComponent, typeof i64.DocumentVerificationStepComponent, typeof i65.LiveExecutionStepComponent, typeof i66.AiLogsWithReasoningComponent, typeof i67.JumpToStepModalComponent, typeof i68.BreakpointsModalComponent, typeof i69.RecordingBannerComponent, typeof i70.ReviewRecordedStepsModalComponent, typeof i71.MainStepCollapseComponent, typeof i72.VisualComparisonComponent, typeof i73.SimulatorComponent, typeof i74.ConsoleAlertComponent, typeof i75.AiDebugAlertComponent, typeof i76.NetworkRequestComponent, typeof i77.RunHistoryCardComponent, typeof i78.AiPromptCardComponent, typeof i79.VisualDifferenceModalComponent, typeof i80.ConfigurationCardComponent, typeof i81.CompareRunsComponent, typeof i82.ViewCompareButtonComponent, typeof i83.TestCaseLinkCellComponent, typeof i84.IterationsLoopComponent, typeof i85.FailedStepCardComponent, typeof i86.CustomInputComponent, typeof i87.MixedVariableInputComponent, typeof i88.CustomTextareaComponent, typeof i89.CodeEditorComponent, typeof i90.CustomToggleComponent, typeof i91.FileUploadComponent, typeof i92.AiReasoningComponent, typeof i93.ExecutionResultModalComponent, typeof i94.SessionChangesModalComponent, typeof i95.ErrorModalComponent, typeof i96.SessionRestorationDialogComponent, typeof i97.CaptureVideoDialogComponent, typeof i98.SubStepsConfirmationDialogComponent, typeof i99.NewGlobalVariableDialogComponent, typeof i100.NewEnvironmentDialogComponent, typeof i101.NewEnvironmentVariableDialogComponent, typeof i102.NewDbConfigDialogComponent, typeof i103.NewTestDataProfileDialogComponent, typeof i104.ManageColumnsDialogComponent, typeof i105.AuditLogDrawerComponent, typeof i106.AuditLogEntryCardComponent, typeof i107.AssignEnvironmentsDialogComponent, typeof i108.PermissionToggleComponent, typeof i109.ExportCodeModalComponent, typeof i110.ProgressIndicatorComponent, typeof i111.StepProgressCardComponent, typeof i112.StepStatusCardComponent, typeof i113.DbVerificationStepComponent, typeof i114.DbQueryExecutionItemComponent, typeof i115.TestCaseNormalStepComponent, typeof i116.TestCaseLoopStepComponent, typeof i117.TestCaseConditionStepComponent, typeof i118.TestCaseStepGroupComponent, typeof i119.TestCaseDetailsRendererComponent, typeof i120.TestCaseApiStepComponent, typeof i121.TestCaseDatabaseStepComponent, typeof i122.TestCaseAiAgentStepComponent, typeof i124.TestCaseUploadStepComponent, typeof i125.TestCaseScreenshotStepComponent, typeof i126.TestCaseScrollStepComponent, typeof i127.TestCaseVerifyUrlStepComponent, typeof i128.TestCaseRestoreSessionStepComponent, typeof i129.TestCaseCustomCodeStepComponent, typeof i130.CustomEditStepComponent, typeof i131.ItemListComponent, typeof i132.TestDataModalComponent, typeof i133.CreateStepGroupComponent, typeof i134.DeleteStepsComponent, typeof i135.RunExecutionAlertComponent, typeof i136.ApiEditStepComponent, typeof i137.LiveConversationComponent, typeof i138.StepBuilderActionComponent, typeof i139.StepBuilderLoopComponent, typeof i140.ElementPopupComponent, typeof i141.ElementFormComponent, typeof i142.StepBuilderConditionComponent, typeof i143.StepBuilderDatabaseComponent, typeof i144.StepBuilderAiAgentComponent, typeof i89.CodeEditorComponent, typeof i145.StepBuilderCustomCodeComponent, typeof i146.StepBuilderRecordStepComponent, typeof i147.StepBuilderDocumentGenerationTemplateStepComponent, typeof i148.ElementListComponent, typeof i149.StepBuilderDocumentComponent, typeof i150.DetailSidePanelComponent, typeof i151.DetailDrawerComponent, typeof i152.DetailDrawerTabComponent, typeof i153.DetailDrawerTabContentDirective, typeof i154.TestCaseDetailsComponent, typeof i155.TestCaseDetailsEditComponent, typeof i156.ApiMockingCardComponent, typeof i157.StepBuilderGroupComponent, typeof i158.StepDetailsDrawerComponent, typeof i159.TemplateVariablesFormComponent, typeof i160.AdvancedVariablesFormComponent, typeof i163.QuestionnaireListComponent, typeof i164.ChangeHistoryComponent, typeof i166.VersionHistoryListComponent, typeof i167.VersionHistoryCompareComponent, typeof i168.VersionHistoryDetailComponent, typeof i169.VersionHistoryRestoreConfirmComponent, typeof i170.NewVersionHistoryDetailComponent]>;
201
+ 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.ViewportSelectorComponent, typeof i8.DialogComponent, typeof i9.DynamicTableComponent, typeof i10.DynamicCellTemplateDirective, typeof i10.DynamicHeaderTemplateDirective, typeof i11.DynamicCellContainerDirective, typeof i12.PaginationComponent, typeof i13.ActionMenuButtonComponent, typeof i14.OtherButtonComponent, typeof i15.DynamicFilterComponent, typeof i16.DaterangepickerDirective, typeof i17.DaterangepickerComponent, typeof i18.ColumnVisibilityComponent, typeof i19.TableActionToolbarComponent, typeof i20.MetricsCardComponent, typeof i21.MetricsBlockComponent, typeof i22.ChartCardComponent, typeof i23.ProgressTextCardComponent, typeof i24.DashboardHeaderComponent, typeof i25.WorkspaceSelectorComponent, typeof i26.CoverageModuleCardComponent, typeof i27.TestDistributionCardComponent, typeof i28.FailedTestCasesCardComponent, typeof i29.DynamicSelectFieldComponent, typeof i30.AddPrerequisiteCasesSectionComponent, typeof i31.SelectedFiltersComponent, typeof i32.InsightCardComponent, typeof i33.BadgeComponent, typeof i34.DropdownButtonComponent, typeof i35.HeatErrorMapCellComponent, typeof i36.EmptyStateComponent, typeof i37.TableTemplateComponent, typeof i38.ModularTableTemplateComponent, typeof i39.FolderSidebarComponent, typeof i40.MoveToFolderDialogComponent, typeof i41.MoveTestSuiteDialogComponent, typeof i42.NewFolderDialogComponent, typeof i43.DeleteFolderDialogComponent, typeof i44.RowDragDirective, typeof i45.FolderDropDirective, typeof i46.FolderDragDirective, typeof i47.NamePromptModalComponent, typeof i48.FullTableLoaderComponent, typeof i49.TableDataLoaderComponent, typeof i50.BasicStepComponent, typeof i51.StepRendererComponent, typeof i52.StepGroupComponent, typeof i53.LoopStepComponent, typeof i54.ConditionStepComponent, typeof i55.ConditionDebugStepComponent, typeof i56.ConditionBranchEditorComponent, typeof i57.FailedStepComponent, typeof i58.UpdatedFailedStepComponent, typeof i59.ViewMoreFailedStepButtonComponent, typeof i60.SelfHealAnalysisComponent, typeof i61.AIAgentStepComponent, typeof i62.AIActionStepComponent, typeof i63.ApiStepComponent, typeof i64.FileDownloadStepComponent, typeof i65.DocumentVerificationStepComponent, typeof i66.LiveExecutionStepComponent, typeof i67.AiLogsWithReasoningComponent, typeof i68.JumpToStepModalComponent, typeof i69.BreakpointsModalComponent, typeof i70.RecordingBannerComponent, typeof i71.ReviewRecordedStepsModalComponent, typeof i72.MainStepCollapseComponent, typeof i73.VisualComparisonComponent, typeof i74.SimulatorComponent, typeof i75.ConsoleAlertComponent, typeof i76.AiDebugAlertComponent, typeof i77.NetworkRequestComponent, typeof i78.RunHistoryCardComponent, typeof i79.AiPromptCardComponent, typeof i80.VisualDifferenceModalComponent, typeof i81.ConfigurationCardComponent, typeof i82.CompareRunsComponent, typeof i83.ViewCompareButtonComponent, typeof i84.TestCaseLinkCellComponent, typeof i85.IterationsLoopComponent, typeof i86.FailedStepCardComponent, typeof i87.CustomInputComponent, typeof i88.MixedVariableInputComponent, typeof i89.CustomTextareaComponent, typeof i90.CodeEditorComponent, typeof i91.CustomToggleComponent, typeof i92.FileUploadComponent, typeof i93.AiReasoningComponent, typeof i94.ExecutionResultModalComponent, typeof i95.SessionChangesModalComponent, typeof i96.ErrorModalComponent, typeof i97.SessionRestorationDialogComponent, typeof i98.CaptureVideoDialogComponent, typeof i99.SubStepsConfirmationDialogComponent, typeof i100.NewGlobalVariableDialogComponent, typeof i101.NewEnvironmentDialogComponent, typeof i102.NewEnvironmentVariableDialogComponent, typeof i103.NewDbConfigDialogComponent, typeof i104.NewTestDataProfileDialogComponent, typeof i105.ManageColumnsDialogComponent, typeof i106.AuditLogDrawerComponent, typeof i107.AuditLogEntryCardComponent, typeof i108.AssignEnvironmentsDialogComponent, typeof i109.PermissionToggleComponent, typeof i110.ExportCodeModalComponent, typeof i111.ProgressIndicatorComponent, typeof i112.StepProgressCardComponent, typeof i113.StepStatusCardComponent, typeof i114.DbVerificationStepComponent, typeof i115.DbQueryExecutionItemComponent, typeof i116.TestCaseNormalStepComponent, typeof i117.TestCaseLoopStepComponent, typeof i118.TestCaseConditionStepComponent, typeof i119.TestCaseStepGroupComponent, typeof i120.TestCaseDetailsRendererComponent, typeof i121.TestCaseApiStepComponent, typeof i122.TestCaseDatabaseStepComponent, typeof i123.TestCaseAiAgentStepComponent, typeof i124.TestCaseAiVerifyStepComponent, typeof i125.TestCaseUploadStepComponent, typeof i126.TestCaseScreenshotStepComponent, typeof i127.TestCaseScrollStepComponent, typeof i128.TestCaseVerifyUrlStepComponent, typeof i129.TestCaseRestoreSessionStepComponent, typeof i130.TestCaseCustomCodeStepComponent, typeof i131.CustomEditStepComponent, typeof i132.ItemListComponent, typeof i133.TestDataModalComponent, typeof i134.CreateStepGroupComponent, typeof i135.DeleteStepsComponent, typeof i136.RunExecutionAlertComponent, typeof i137.ApiEditStepComponent, typeof i138.LiveConversationComponent, typeof i139.StepBuilderActionComponent, typeof i140.StepBuilderLoopComponent, typeof i141.ElementPopupComponent, typeof i142.ElementFormComponent, typeof i143.StepBuilderConditionComponent, typeof i144.StepBuilderDatabaseComponent, typeof i145.StepBuilderAiAgentComponent, typeof i90.CodeEditorComponent, typeof i146.StepBuilderCustomCodeComponent, typeof i147.StepBuilderRecordStepComponent, typeof i148.StepBuilderDocumentGenerationTemplateStepComponent, typeof i149.ElementListComponent, typeof i150.StepBuilderDocumentComponent, typeof i151.DetailSidePanelComponent, typeof i152.DetailDrawerComponent, typeof i153.DetailDrawerTabComponent, typeof i154.DetailDrawerTabContentDirective, typeof i155.TestCaseDetailsComponent, typeof i156.TestCaseDetailsEditComponent, typeof i157.ApiMockingCardComponent, typeof i158.StepBuilderGroupComponent, typeof i159.StepDetailsDrawerComponent, typeof i160.TemplateVariablesFormComponent, typeof i161.AdvancedVariablesFormComponent, typeof i162.StepDetailsModalComponent, typeof i163.SafeHtmlPipe, typeof i164.QuestionnaireListComponent, typeof i165.ChangeHistoryComponent, typeof i166.CamelToTitlePipe, typeof i167.VersionHistoryListComponent, typeof i168.VersionHistoryCompareComponent, typeof i169.VersionHistoryDetailComponent, typeof i170.VersionHistoryRestoreConfirmComponent, typeof i171.NewVersionHistoryDetailComponent], [typeof i172.CommonModule, typeof i173.FormsModule, typeof i173.ReactiveFormsModule, typeof i174.NoopAnimationsModule, typeof i175.MatIconModule, typeof i176.MatMenuModule, typeof i177.MatButtonModule, typeof i178.MatFormFieldModule, typeof i179.MatSelectModule, typeof i180.MatOptionModule, typeof i181.MatCheckboxModule, typeof i182.MatRadioModule, typeof i183.MatSlideToggleModule, typeof i184.MatDatepickerModule, typeof i180.MatNativeDateModule, typeof i185.MatProgressSpinnerModule, typeof i186.MatTooltipModule, typeof i187.MatDialogModule, typeof i188.MatTableModule, typeof i189.MatInputModule, typeof i190.OverlayModule, typeof i191.PortalModule, typeof i192.ScrollingModule, typeof i193.NgxTypedJsModule, typeof i194.DndModule, typeof i195.MonacoEditorModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.ViewportSelectorComponent, typeof i8.DialogComponent, typeof i9.DynamicTableComponent, typeof i10.DynamicCellTemplateDirective, typeof i10.DynamicHeaderTemplateDirective, typeof i11.DynamicCellContainerDirective, typeof i12.PaginationComponent, typeof i13.ActionMenuButtonComponent, typeof i14.OtherButtonComponent, typeof i15.DynamicFilterComponent, typeof i16.DaterangepickerDirective, typeof i17.DaterangepickerComponent, typeof i18.ColumnVisibilityComponent, typeof i19.TableActionToolbarComponent, typeof i20.MetricsCardComponent, typeof i22.ChartCardComponent, typeof i23.ProgressTextCardComponent, typeof i24.DashboardHeaderComponent, typeof i25.WorkspaceSelectorComponent, typeof i26.CoverageModuleCardComponent, typeof i27.TestDistributionCardComponent, typeof i28.FailedTestCasesCardComponent, typeof i29.DynamicSelectFieldComponent, typeof i30.AddPrerequisiteCasesSectionComponent, typeof i31.SelectedFiltersComponent, typeof i32.InsightCardComponent, typeof i33.BadgeComponent, typeof i34.DropdownButtonComponent, typeof i35.HeatErrorMapCellComponent, typeof i36.EmptyStateComponent, typeof i37.TableTemplateComponent, typeof i38.ModularTableTemplateComponent, typeof i39.FolderSidebarComponent, typeof i42.NewFolderDialogComponent, typeof i43.DeleteFolderDialogComponent, typeof i40.MoveToFolderDialogComponent, typeof i41.MoveTestSuiteDialogComponent, typeof i44.RowDragDirective, typeof i45.FolderDropDirective, typeof i46.FolderDragDirective, typeof i47.NamePromptModalComponent, typeof i48.FullTableLoaderComponent, typeof i49.TableDataLoaderComponent, typeof i50.BasicStepComponent, typeof i51.StepRendererComponent, typeof i52.StepGroupComponent, typeof i53.LoopStepComponent, typeof i54.ConditionStepComponent, typeof i55.ConditionDebugStepComponent, typeof i56.ConditionBranchEditorComponent, typeof i57.FailedStepComponent, typeof i55.ConditionDebugStepComponent, typeof i58.UpdatedFailedStepComponent, typeof i59.ViewMoreFailedStepButtonComponent, typeof i60.SelfHealAnalysisComponent, typeof i61.AIAgentStepComponent, typeof i62.AIActionStepComponent, typeof i63.ApiStepComponent, typeof i64.FileDownloadStepComponent, typeof i65.DocumentVerificationStepComponent, typeof i66.LiveExecutionStepComponent, typeof i67.AiLogsWithReasoningComponent, typeof i68.JumpToStepModalComponent, typeof i69.BreakpointsModalComponent, typeof i70.RecordingBannerComponent, typeof i71.ReviewRecordedStepsModalComponent, typeof i72.MainStepCollapseComponent, typeof i73.VisualComparisonComponent, typeof i74.SimulatorComponent, typeof i75.ConsoleAlertComponent, typeof i76.AiDebugAlertComponent, typeof i77.NetworkRequestComponent, typeof i78.RunHistoryCardComponent, typeof i79.AiPromptCardComponent, typeof i80.VisualDifferenceModalComponent, typeof i81.ConfigurationCardComponent, typeof i82.CompareRunsComponent, typeof i83.ViewCompareButtonComponent, typeof i84.TestCaseLinkCellComponent, typeof i85.IterationsLoopComponent, typeof i86.FailedStepCardComponent, typeof i87.CustomInputComponent, typeof i88.MixedVariableInputComponent, typeof i89.CustomTextareaComponent, typeof i90.CodeEditorComponent, typeof i91.CustomToggleComponent, typeof i92.FileUploadComponent, typeof i93.AiReasoningComponent, typeof i94.ExecutionResultModalComponent, typeof i95.SessionChangesModalComponent, typeof i96.ErrorModalComponent, typeof i97.SessionRestorationDialogComponent, typeof i98.CaptureVideoDialogComponent, typeof i99.SubStepsConfirmationDialogComponent, typeof i100.NewGlobalVariableDialogComponent, typeof i101.NewEnvironmentDialogComponent, typeof i102.NewEnvironmentVariableDialogComponent, typeof i103.NewDbConfigDialogComponent, typeof i104.NewTestDataProfileDialogComponent, typeof i105.ManageColumnsDialogComponent, typeof i106.AuditLogDrawerComponent, typeof i107.AuditLogEntryCardComponent, typeof i108.AssignEnvironmentsDialogComponent, typeof i109.PermissionToggleComponent, typeof i110.ExportCodeModalComponent, typeof i111.ProgressIndicatorComponent, typeof i112.StepProgressCardComponent, typeof i113.StepStatusCardComponent, typeof i114.DbVerificationStepComponent, typeof i115.DbQueryExecutionItemComponent, typeof i116.TestCaseNormalStepComponent, typeof i117.TestCaseLoopStepComponent, typeof i118.TestCaseConditionStepComponent, typeof i119.TestCaseStepGroupComponent, typeof i120.TestCaseDetailsRendererComponent, typeof i121.TestCaseApiStepComponent, typeof i122.TestCaseDatabaseStepComponent, typeof i123.TestCaseAiAgentStepComponent, typeof i125.TestCaseUploadStepComponent, typeof i126.TestCaseScreenshotStepComponent, typeof i127.TestCaseScrollStepComponent, typeof i128.TestCaseVerifyUrlStepComponent, typeof i129.TestCaseRestoreSessionStepComponent, typeof i130.TestCaseCustomCodeStepComponent, typeof i131.CustomEditStepComponent, typeof i132.ItemListComponent, typeof i133.TestDataModalComponent, typeof i134.CreateStepGroupComponent, typeof i135.DeleteStepsComponent, typeof i136.RunExecutionAlertComponent, typeof i137.ApiEditStepComponent, typeof i138.LiveConversationComponent, typeof i139.StepBuilderActionComponent, typeof i140.StepBuilderLoopComponent, typeof i141.ElementPopupComponent, typeof i142.ElementFormComponent, typeof i143.StepBuilderConditionComponent, typeof i144.StepBuilderDatabaseComponent, typeof i145.StepBuilderAiAgentComponent, typeof i90.CodeEditorComponent, typeof i146.StepBuilderCustomCodeComponent, typeof i147.StepBuilderRecordStepComponent, typeof i148.StepBuilderDocumentGenerationTemplateStepComponent, typeof i149.ElementListComponent, typeof i150.StepBuilderDocumentComponent, typeof i151.DetailSidePanelComponent, typeof i152.DetailDrawerComponent, typeof i153.DetailDrawerTabComponent, typeof i154.DetailDrawerTabContentDirective, typeof i155.TestCaseDetailsComponent, typeof i156.TestCaseDetailsEditComponent, typeof i157.ApiMockingCardComponent, typeof i158.StepBuilderGroupComponent, typeof i159.StepDetailsDrawerComponent, typeof i160.TemplateVariablesFormComponent, typeof i161.AdvancedVariablesFormComponent, typeof i164.QuestionnaireListComponent, typeof i165.ChangeHistoryComponent, typeof i167.VersionHistoryListComponent, typeof i168.VersionHistoryCompareComponent, typeof i169.VersionHistoryDetailComponent, typeof i170.VersionHistoryRestoreConfirmComponent, typeof i171.NewVersionHistoryDetailComponent]>;
201
202
  static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
202
203
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cqa-lib/cqa-ui",
3
- "version": "1.1.554",
3
+ "version": "1.1.555",
4
4
  "description": "UI Kit library for Angular 13.4",
5
5
  "keywords": [
6
6
  "angular",
package/public-api.d.ts CHANGED
@@ -50,6 +50,8 @@ export * from './lib/templates/modular-table-template/dialogs/new-folder-dialog.
50
50
  export * from './lib/dialogs/name-prompt-modal.component';
51
51
  export * from './lib/templates/modular-table-template/dialogs/delete-folder-dialog.component';
52
52
  export * from './lib/templates/modular-table-template/dialogs/move-to-folder-dialog.component';
53
+ export * from './lib/test-suite/move-test-suite-dialog/move-test-suite-dialog.component';
54
+ export * from './lib/test-suite/test-suite.models';
53
55
  export * from './lib/templates/modular-table-template/directives/row-drag.directive';
54
56
  export * from './lib/templates/modular-table-template/directives/folder-drop.directive';
55
57
  export * from './lib/templates/modular-table-template/directives/folder-drag.directive';