@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.
@@ -11567,6 +11567,320 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
11567
11567
  type: Input
11568
11568
  }] } });
11569
11569
 
11570
+ const DEFAULT_TEST_SUITE_LABELS = {
11571
+ moveTestSuiteDialogTitle: 'Move test suite',
11572
+ moveTestSuiteDialogDescription: 'Pick a destination folder for this test suite.',
11573
+ moveTestSuiteDialogSuiteNameLabel: 'Test suite',
11574
+ moveTestSuiteDialogCurrentLabel: 'Current folder',
11575
+ moveTestSuiteDialogDestinationLabel: 'Destination folder',
11576
+ moveTestSuiteDialogDestinationPlaceholder: 'Select a folder below',
11577
+ moveTestSuiteDialogCancel: 'Cancel',
11578
+ moveTestSuiteDialogConfirm: 'Move',
11579
+ };
11580
+
11581
+ /**
11582
+ * Body of the "Move Test Suite" dialog.
11583
+ *
11584
+ * Reuses `<cqa-move-to-folder-dialog>` as the tree picker (same embedding pattern
11585
+ * as `NewFolderDialogComponent`) so consumers get the same folder-tree UX, while
11586
+ * adding two read-only rows above it: the suite's **current folder** (source)
11587
+ * and the **destination folder** the user has picked (live-updates).
11588
+ *
11589
+ * Two integration paths:
11590
+ *
11591
+ * 1. **From within this library** via `DialogService.open(...)`. The outer
11592
+ * `cqa-dialog` supplies title/description/Cancel/Move buttons; the Move
11593
+ * button reads `pickedFolderId` via `dialogRef.getComponentInstance()` and
11594
+ * checks `isValid` before closing.
11595
+ *
11596
+ * 2. **Host-driven** — host renders `<cqa-move-test-suite-dialog>` inside its
11597
+ * own modal and listens to `(submitted)` / `(cancelled)` / `(pickedFolderIdChange)`.
11598
+ */
11599
+ class MoveTestSuiteDialogComponent {
11600
+ constructor(cdr) {
11601
+ this.cdr = cdr;
11602
+ // NOTE: `folders` and `labels` are declared as setters (instead of plain @Input fields)
11603
+ // because `DialogService.open(...)` assigns the `inputs` map via direct property
11604
+ // assignment *after* `attachComponent` has already run the component's lifecycle
11605
+ // hooks — direct assignment bypasses `ngOnChanges`, so setters keep derived state
11606
+ // in sync no matter the assignment order. Same pattern as `NewFolderDialogComponent`.
11607
+ this._folders = [];
11608
+ this._labels = Object.assign({}, DEFAULT_MODULAR_LABELS);
11609
+ /** Test-suite-section labels (title, description, button text, field labels,
11610
+ * placeholder). Kept separate from `labels` (ModularLabels) so the embedded
11611
+ * picker can keep its modular-table-template label model. Same setter
11612
+ * pattern as `labels` for DialogService property-assignment compatibility. */
11613
+ this._testSuiteLabels = Object.assign({}, DEFAULT_TEST_SUITE_LABELS);
11614
+ /** Folder the suite currently lives in. Used both to gray out the row in the
11615
+ * embedded picker and to render the "Current folder" readout. */
11616
+ this.currentFolderId = null;
11617
+ /** Optional override for the current-folder display name. When not provided,
11618
+ * the component resolves the name from `folders` by walking to `currentFolderId`,
11619
+ * falling back to `labels.moveDialogRoot` ("Unorganized") when null. */
11620
+ this.currentFolderName = null;
11621
+ /** Name of the test suite being moved. Rendered as a disabled input at the
11622
+ * top of the dialog body so the user can confirm which suite the move
11623
+ * applies to. Defaults to empty string. */
11624
+ this.suiteName = '';
11625
+ /** Destination folder id picked by the user. Two-way-bind friendly. */
11626
+ this.pickedFolderId = null;
11627
+ /** Height of the embedded picker. Defaults to 240px (matches the parent-folder
11628
+ * picker height in `NewFolderDialogComponent`) so the modal stays compact. */
11629
+ this.pickerHeight = '240px';
11630
+ /** When true (default), both the Current folder and Destination folder inputs
11631
+ * render as disabled (read-only via the cqa-custom-input `[disabled]` flag).
11632
+ * Set to false if a host needs to re-enable interaction on those fields. */
11633
+ this.fieldsDisabled = true;
11634
+ this.pickedFolderIdChange = new EventEmitter();
11635
+ this.submitted = new EventEmitter();
11636
+ this.cancelled = new EventEmitter();
11637
+ /** Bubble cqa-custom-input focus/blur events up to hosts. Useful when
11638
+ * `fieldsDisabled = false` and the host wants to react to interaction. */
11639
+ this.currentFieldFocus = new EventEmitter();
11640
+ this.currentFieldBlur = new EventEmitter();
11641
+ this.destinationFieldFocus = new EventEmitter();
11642
+ this.destinationFieldBlur = new EventEmitter();
11643
+ /** Set to true the first time the user picks anything. Lets `isValid` treat
11644
+ * the initial pre-touch state as "nothing selected" — important when the
11645
+ * suite starts in Unorganized (`currentFolderId = null`) so a fresh dialog
11646
+ * doesn't appear valid just because `pickedFolderId` also defaults to null. */
11647
+ this.pickedTouched = false;
11648
+ }
11649
+ set folders(value) {
11650
+ this._folders = value || [];
11651
+ this.cdr.markForCheck();
11652
+ }
11653
+ get folders() { return this._folders; }
11654
+ set labels(value) {
11655
+ this._labels = value || Object.assign({}, DEFAULT_MODULAR_LABELS);
11656
+ this.cdr.markForCheck();
11657
+ }
11658
+ get labels() { return this._labels; }
11659
+ set testSuiteLabels(value) {
11660
+ this._testSuiteLabels = value || Object.assign({}, DEFAULT_TEST_SUITE_LABELS);
11661
+ this.cdr.markForCheck();
11662
+ }
11663
+ get testSuiteLabels() { return this._testSuiteLabels; }
11664
+ onParentPicked(id) {
11665
+ let next = null;
11666
+ if (id != null) {
11667
+ const coerced = typeof id === 'number' ? id : Number(id);
11668
+ if (Number.isFinite(coerced))
11669
+ next = coerced;
11670
+ }
11671
+ this.pickedFolderId = next;
11672
+ this.pickedTouched = true;
11673
+ this.pickedFolderIdChange.emit(next);
11674
+ this.cdr.markForCheck();
11675
+ }
11676
+ /** True once the user has picked a destination via the embedded tree. Drives
11677
+ * the destination-readout styling (indigo when picked, muted when not). */
11678
+ get hasPick() {
11679
+ return this.pickedTouched;
11680
+ }
11681
+ get resolvedCurrentName() {
11682
+ if (this.currentFolderName && this.currentFolderName.trim().length) {
11683
+ return this.currentFolderName;
11684
+ }
11685
+ if (this.currentFolderId == null) {
11686
+ return this.labels.moveDialogRoot;
11687
+ }
11688
+ const name = this.findFolderName(this._folders, this.currentFolderId);
11689
+ return name !== null && name !== void 0 ? name : this.labels.moveDialogRoot;
11690
+ }
11691
+ /** Value shown inside the Destination input. Empty until the user picks; once
11692
+ * picked, the resolved folder name (or `labels.moveDialogRoot` for Unorganized).
11693
+ * Empty state lets the input's `[placeholder]` show through. */
11694
+ get destinationFieldValue() {
11695
+ var _a;
11696
+ if (!this.pickedTouched)
11697
+ return '';
11698
+ if (this.pickedFolderId == null)
11699
+ return this.labels.moveDialogRoot;
11700
+ return (_a = this.findFolderName(this._folders, this.pickedFolderId)) !== null && _a !== void 0 ? _a : this.labels.moveDialogRoot;
11701
+ }
11702
+ /** Placeholder shown in the Destination input before the user picks. */
11703
+ get destinationFieldPlaceholder() {
11704
+ return this._testSuiteLabels.moveTestSuiteDialogDestinationPlaceholder;
11705
+ }
11706
+ /** Move is valid when the user has picked a destination different from the
11707
+ * current folder. Picking the same folder as the source is a no-op, and we
11708
+ * also require an explicit interaction (`pickedTouched`). */
11709
+ get isValid() {
11710
+ if (!this.pickedTouched)
11711
+ return false;
11712
+ return this.pickedFolderId !== this.currentFolderId;
11713
+ }
11714
+ submit() {
11715
+ if (!this.isValid)
11716
+ return;
11717
+ this.submitted.emit({ targetFolderId: this.pickedFolderId });
11718
+ }
11719
+ cancel() {
11720
+ this.cancelled.emit();
11721
+ }
11722
+ /** Hooks for the Current folder cqa-custom-input. Field is disabled by
11723
+ * default, so these mostly no-op; they're wired so the component still
11724
+ * behaves correctly when `fieldsDisabled = false`. */
11725
+ onCurrentFieldValueChange(_value) {
11726
+ // Read-only field — ignore programmatic changes.
11727
+ }
11728
+ onCurrentFieldFocused(event) {
11729
+ this.currentFieldFocus.emit(event);
11730
+ }
11731
+ onCurrentFieldBlurred(event) {
11732
+ this.currentFieldBlur.emit(event);
11733
+ }
11734
+ /** Hooks for the Destination folder cqa-custom-input. Value is driven by the
11735
+ * tree picker below, so the input itself is informational. */
11736
+ onDestinationFieldValueChange(_value) {
11737
+ // Destination is driven by the tree picker, not the input itself.
11738
+ }
11739
+ onDestinationFieldFocused(event) {
11740
+ this.destinationFieldFocus.emit(event);
11741
+ }
11742
+ onDestinationFieldBlurred(event) {
11743
+ this.destinationFieldBlur.emit(event);
11744
+ }
11745
+ findFolderName(nodes, id) {
11746
+ var _a;
11747
+ for (const n of nodes || []) {
11748
+ if (n.id === id)
11749
+ return n.name;
11750
+ if ((_a = n.children) === null || _a === void 0 ? void 0 : _a.length) {
11751
+ const hit = this.findFolderName(n.children, id);
11752
+ if (hit != null)
11753
+ return hit;
11754
+ }
11755
+ }
11756
+ return null;
11757
+ }
11758
+ }
11759
+ MoveTestSuiteDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: MoveTestSuiteDialogComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
11760
+ MoveTestSuiteDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: MoveTestSuiteDialogComponent, selector: "cqa-move-test-suite-dialog", inputs: { folders: "folders", labels: "labels", testSuiteLabels: "testSuiteLabels", currentFolderId: "currentFolderId", currentFolderName: "currentFolderName", suiteName: "suiteName", pickedFolderId: "pickedFolderId", pickerHeight: "pickerHeight", fieldsDisabled: "fieldsDisabled" }, outputs: { pickedFolderIdChange: "pickedFolderIdChange", submitted: "submitted", cancelled: "cancelled", currentFieldFocus: "currentFieldFocus", currentFieldBlur: "currentFieldBlur", destinationFieldFocus: "destinationFieldFocus", destinationFieldBlur: "destinationFieldBlur" }, host: { classAttribute: "cqa-ui-root" }, ngImport: i0, template: `
11761
+ <div class="cqa-flex cqa-flex-col cqa-gap-2 cqa-w-full">
11762
+ <!-- Test suite name (read-only display; surfaces which suite is being moved) -->
11763
+ <cqa-custom-input
11764
+ [label]="testSuiteLabels.moveTestSuiteDialogSuiteNameLabel"
11765
+ [value]="suiteName"
11766
+ [disabled]="fieldsDisabled"
11767
+ [fullWidth]="true"
11768
+ ></cqa-custom-input>
11769
+
11770
+ <!-- Current folder (rendered as a disabled input) -->
11771
+ <cqa-custom-input
11772
+ [label]="testSuiteLabels.moveTestSuiteDialogCurrentLabel"
11773
+ [value]="resolvedCurrentName"
11774
+ [disabled]="fieldsDisabled"
11775
+ [fullWidth]="true"
11776
+ (valueChange)="onCurrentFieldValueChange($event)"
11777
+ (focused)="onCurrentFieldFocused($event)"
11778
+ (blurred)="onCurrentFieldBlurred($event)"
11779
+ ></cqa-custom-input>
11780
+
11781
+ <!-- Destination folder (rendered as a disabled input; value driven by the tree picker below) -->
11782
+ <cqa-custom-input
11783
+ [label]="testSuiteLabels.moveTestSuiteDialogDestinationLabel"
11784
+ [value]="destinationFieldValue"
11785
+ [placeholder]="destinationFieldPlaceholder"
11786
+ [disabled]="fieldsDisabled"
11787
+ [fullWidth]="true"
11788
+ (valueChange)="onDestinationFieldValueChange($event)"
11789
+ (focused)="onDestinationFieldFocused($event)"
11790
+ (blurred)="onDestinationFieldBlurred($event)"
11791
+ ></cqa-custom-input>
11792
+
11793
+ <!-- Folder tree picker -->
11794
+ <cqa-move-to-folder-dialog
11795
+ [folders]="folders"
11796
+ [labels]="labels"
11797
+ [currentFolderId]="currentFolderId"
11798
+ [pickedFolderId]="pickedFolderId"
11799
+ [pickerHeight]="pickerHeight"
11800
+ (pickedFolderIdChange)="onParentPicked($event)"
11801
+ ></cqa-move-to-folder-dialog>
11802
+ </div>
11803
+ `, isInline: true, components: [{ type: CustomInputComponent, selector: "cqa-custom-input", inputs: ["inputId", "label", "type", "placeholder", "value", "disabled", "errors", "required", "ariaLabel", "size", "fullWidth", "maxLength", "showCharCount", "inputInlineStyle", "labelInlineStyle"], outputs: ["valueChange", "blurred", "focused", "enterPressed"] }, { type: MoveToFolderDialogComponent, selector: "cqa-move-to-folder-dialog", inputs: ["folders", "labels", "currentFolderId", "pickedFolderId", "initialExpandedIds", "rootDisabled", "pickerHeight"], outputs: ["folderPicked", "pickedFolderIdChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
11804
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: MoveTestSuiteDialogComponent, decorators: [{
11805
+ type: Component,
11806
+ args: [{ selector: 'cqa-move-test-suite-dialog', template: `
11807
+ <div class="cqa-flex cqa-flex-col cqa-gap-2 cqa-w-full">
11808
+ <!-- Test suite name (read-only display; surfaces which suite is being moved) -->
11809
+ <cqa-custom-input
11810
+ [label]="testSuiteLabels.moveTestSuiteDialogSuiteNameLabel"
11811
+ [value]="suiteName"
11812
+ [disabled]="fieldsDisabled"
11813
+ [fullWidth]="true"
11814
+ ></cqa-custom-input>
11815
+
11816
+ <!-- Current folder (rendered as a disabled input) -->
11817
+ <cqa-custom-input
11818
+ [label]="testSuiteLabels.moveTestSuiteDialogCurrentLabel"
11819
+ [value]="resolvedCurrentName"
11820
+ [disabled]="fieldsDisabled"
11821
+ [fullWidth]="true"
11822
+ (valueChange)="onCurrentFieldValueChange($event)"
11823
+ (focused)="onCurrentFieldFocused($event)"
11824
+ (blurred)="onCurrentFieldBlurred($event)"
11825
+ ></cqa-custom-input>
11826
+
11827
+ <!-- Destination folder (rendered as a disabled input; value driven by the tree picker below) -->
11828
+ <cqa-custom-input
11829
+ [label]="testSuiteLabels.moveTestSuiteDialogDestinationLabel"
11830
+ [value]="destinationFieldValue"
11831
+ [placeholder]="destinationFieldPlaceholder"
11832
+ [disabled]="fieldsDisabled"
11833
+ [fullWidth]="true"
11834
+ (valueChange)="onDestinationFieldValueChange($event)"
11835
+ (focused)="onDestinationFieldFocused($event)"
11836
+ (blurred)="onDestinationFieldBlurred($event)"
11837
+ ></cqa-custom-input>
11838
+
11839
+ <!-- Folder tree picker -->
11840
+ <cqa-move-to-folder-dialog
11841
+ [folders]="folders"
11842
+ [labels]="labels"
11843
+ [currentFolderId]="currentFolderId"
11844
+ [pickedFolderId]="pickedFolderId"
11845
+ [pickerHeight]="pickerHeight"
11846
+ (pickedFolderIdChange)="onParentPicked($event)"
11847
+ ></cqa-move-to-folder-dialog>
11848
+ </div>
11849
+ `, host: { class: 'cqa-ui-root' }, changeDetection: ChangeDetectionStrategy.OnPush, styles: [] }]
11850
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { folders: [{
11851
+ type: Input
11852
+ }], labels: [{
11853
+ type: Input
11854
+ }], testSuiteLabels: [{
11855
+ type: Input
11856
+ }], currentFolderId: [{
11857
+ type: Input
11858
+ }], currentFolderName: [{
11859
+ type: Input
11860
+ }], suiteName: [{
11861
+ type: Input
11862
+ }], pickedFolderId: [{
11863
+ type: Input
11864
+ }], pickerHeight: [{
11865
+ type: Input
11866
+ }], fieldsDisabled: [{
11867
+ type: Input
11868
+ }], pickedFolderIdChange: [{
11869
+ type: Output
11870
+ }], submitted: [{
11871
+ type: Output
11872
+ }], cancelled: [{
11873
+ type: Output
11874
+ }], currentFieldFocus: [{
11875
+ type: Output
11876
+ }], currentFieldBlur: [{
11877
+ type: Output
11878
+ }], destinationFieldFocus: [{
11879
+ type: Output
11880
+ }], destinationFieldBlur: [{
11881
+ type: Output
11882
+ }] } });
11883
+
11570
11884
  /**
11571
11885
  * Generic single-input prompt modal. Used wherever a flow needs to ask the
11572
11886
  * user for a single name (or short text) and confirm with a primary button.
@@ -53180,6 +53494,7 @@ UiKitModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "1
53180
53494
  ModularTableTemplateComponent,
53181
53495
  FolderSidebarComponent,
53182
53496
  MoveToFolderDialogComponent,
53497
+ MoveTestSuiteDialogComponent,
53183
53498
  NewFolderDialogComponent,
53184
53499
  DeleteFolderDialogComponent,
53185
53500
  RowDragDirective,
@@ -53377,6 +53692,7 @@ UiKitModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "1
53377
53692
  NewFolderDialogComponent,
53378
53693
  DeleteFolderDialogComponent,
53379
53694
  MoveToFolderDialogComponent,
53695
+ MoveTestSuiteDialogComponent,
53380
53696
  RowDragDirective,
53381
53697
  FolderDropDirective,
53382
53698
  FolderDragDirective,
@@ -53617,6 +53933,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
53617
53933
  ModularTableTemplateComponent,
53618
53934
  FolderSidebarComponent,
53619
53935
  MoveToFolderDialogComponent,
53936
+ MoveTestSuiteDialogComponent,
53620
53937
  NewFolderDialogComponent,
53621
53938
  DeleteFolderDialogComponent,
53622
53939
  RowDragDirective,
@@ -53820,6 +54137,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
53820
54137
  NewFolderDialogComponent,
53821
54138
  DeleteFolderDialogComponent,
53822
54139
  MoveToFolderDialogComponent,
54140
+ MoveTestSuiteDialogComponent,
53823
54141
  RowDragDirective,
53824
54142
  FolderDropDirective,
53825
54143
  FolderDragDirective,
@@ -54667,5 +54985,5 @@ function buildTestCaseDetailsFromApi(data, options) {
54667
54985
  * Generated bundle index. Do not edit.
54668
54986
  */
54669
54987
 
54670
- export { ADVANCED_SUBFIELDS_BY_TYPE, ADVANCED_TOGGLE_KEYS, AIActionStepComponent, AIAgentStepComponent, ALL_FILTER_VALUE, API_EDIT_STEP_LABELS, ActionMenuButtonComponent, AddPrerequisiteCasesSectionComponent, AdvancedVariablesFormComponent, AiDebugAlertComponent, AiLogsWithReasoningComponent, AiPromptCardComponent, AiReasoningComponent, ApiEditStepComponent, ApiMockingCardComponent, ApiStepComponent, AssignEnvironmentsDialogComponent, AuditLogDrawerComponent, AuditLogDrawerService, AuditLogEntryCardComponent, AutocompleteComponent, BadgeComponent, BasicStepComponent, BreakpointsModalComponent, ButtonComponent, CUSTOM_EDIT_STEP_DATA, CUSTOM_EDIT_STEP_EDIT_IN_DEPTH, CUSTOM_EDIT_STEP_REF, CUSTOM_ELEMENT_POPUP_REF, CaptureVideoDialogComponent, ChangeHistoryComponent, ChartCardComponent, CodeEditorComponent, ColumnVisibilityComponent, CompareRunsComponent, ConditionBranchEditorComponent, ConditionDebugStepComponent, ConditionStepComponent, ConfigurationCardComponent, ConsoleAlertComponent, CoverageModuleCardComponent, CreateStepGroupComponent, CustomEditStepComponent, CustomEditStepRef, CustomEditStepService, CustomInputComponent, CustomTextareaComponent, CustomToggleComponent, DEFAULT_FOLDER_COLOR, DEFAULT_METADATA_COLOR, DEFAULT_MODULAR_CONFIG, DEFAULT_MODULAR_LABELS, DEFAULT_PRIORITY_COLOR_CONFIG, DEFAULT_REORDER_LABELS, DEFAULT_STATUS_COLOR_CONFIG, DIALOG_DATA, DIALOG_REF, DashboardHeaderComponent, DaterangepickerComponent, DaterangepickerDirective, DbQueryExecutionItemComponent, DbVerificationStepComponent, DeleteFolderDialogComponent, DeleteStepsComponent, DetailDrawerComponent, DetailDrawerTabComponent, DetailDrawerTabContentDirective, DetailSidePanelComponent, DialogComponent, DialogRef, DialogService, DocumentVerificationStepComponent, DropdownButtonComponent, DynamicCellContainerDirective, DynamicCellTemplateDirective, DynamicFilterComponent, DynamicHeaderTemplateDirective, DynamicSelectFieldComponent, DynamicTableComponent, ELEMENT_POPUP_DATA, ELEMENT_POPUP_EDIT_IN_DEPTH, EMPTY_STATE_IMAGES, EMPTY_STATE_PRESETS, ENVIRONMENT_ACCENT_COLORS, ElementFormComponent, ElementListComponent, ElementPopupComponent, ElementPopupRef, ElementPopupService, EmptyStateComponent, ErrorModalComponent, ExecutionResultModalComponent, ExportCodeModalComponent, FOLDER_COLUMN_FIELD_ID, FOLDER_DRAG_MIME, FOLDER_NAME_MAX_LENGTH, FailedStepCardComponent, FailedStepComponent, FailedTestCasesCardComponent, FileDownloadStepComponent, FileUploadComponent, FolderDragDirective, FolderDropDirective, FolderSidebarComponent, FullTableLoaderComponent, HeatErrorMapCellComponent, InsightCardComponent, ItemListComponent, IterationsLoopComponent, JumpToStepModalComponent, LiveConversationComponent, LiveExecutionStepComponent, LoopStepComponent, MONACO_LANGUAGE_MAP, MainStepCollapseComponent, ManageColumnsDialogComponent, MetricsCardComponent, MixedVariableInputComponent, ModularTableTemplateComponent, MoveToFolderDialogComponent, NamePromptModalComponent, NetworkRequestComponent, NewDbConfigDialogComponent, NewEnvironmentDialogComponent, NewEnvironmentVariableDialogComponent, NewFolderDialogComponent, NewGlobalVariableDialogComponent, NewTestDataProfileDialogComponent, NewVersionHistoryDetailComponent, OtherButtonComponent, PRIORITY_COLORS, PaginationComponent, PermissionToggleComponent, ProgressIndicatorComponent, ProgressTextCardComponent, QuestionnaireListComponent, RESULT_COLORS, ROW_DRAG_MIME, RadioCardGroupComponent, RecordingBannerComponent, ReviewRecordedStepsModalComponent, RowDragDirective, RunExecutionAlertComponent, RunHistoryCardComponent, STATUS_COLORS, STEP_DETAILS_DRAWER_DATA, STEP_DETAILS_DRAWER_REF, STEP_DETAILS_FIELDS_BY_TYPE, STEP_DETAILS_FIELD_META, STEP_DETAILS_MODAL_DATA, STEP_DETAILS_MODAL_REF, SearchBarComponent, SegmentControlComponent, SelectedFiltersComponent, SelfHealAnalysisComponent, SessionChangesModalComponent, SessionRestorationDialogComponent, SimulatorComponent, StepBuilderActionComponent, StepBuilderAiAgentComponent, StepBuilderConditionComponent, StepBuilderCustomCodeComponent, StepBuilderDatabaseComponent, StepBuilderDocumentComponent, StepBuilderDocumentGenerationTemplateStepComponent, StepBuilderGroupComponent, StepBuilderLoopComponent, StepBuilderRecordStepComponent, StepDetailsDrawerComponent, StepDetailsDrawerRef, StepDetailsDrawerService, StepDetailsModalComponent, StepDetailsModalRef, StepDetailsModalService, StepGroupComponent, StepProgressCardComponent, StepRendererComponent, StepStatusCardComponent, StepTypes, StepperComponent, SubStepsConfirmationDialogComponent, TEST_CASE_DETAILS_FIELD_MAP, TEST_CASE_DETAILS_SELECT_KEYS, TEST_DATA_MODAL_DATA, TEST_DATA_MODAL_EDIT_IN_DEPTH, TEST_DATA_MODAL_REF, TableActionToolbarComponent, TableDataLoaderComponent, TableTemplateComponent, TailwindOverlayContainer, TemplateVariablesFormComponent, TestCaseAiAgentStepComponent, TestCaseAiVerifyStepComponent, TestCaseApiStepComponent, TestCaseConditionStepComponent, TestCaseCustomCodeStepComponent, TestCaseDatabaseStepComponent, TestCaseDetailsComponent, TestCaseDetailsEditComponent, TestCaseDetailsRendererComponent, TestCaseLinkCellComponent, TestCaseLoopStepComponent, TestCaseNormalStepComponent, TestCaseRestoreSessionStepComponent, TestCaseScreenshotStepComponent, TestCaseScrollStepComponent, TestCaseStepGroupComponent, TestCaseUploadStepComponent, TestCaseVerifyUrlStepComponent, TestDataModalComponent, TestDataModalRef, TestDataModalService, TestDistributionCardComponent, UiKitModule, UpdatedFailedStepComponent, VersionHistoryCompareComponent, VersionHistoryDetailComponent, VersionHistoryListComponent, VersionHistoryRestoreConfirmComponent, ViewCompareButtonComponent, ViewMoreFailedStepButtonComponent, ViewportSelectorComponent, VisualComparisonComponent, VisualDifferenceModalComponent, WorkspaceSelectorComponent, buildTestCaseDetailsFromApi, getDynamicFieldsFromLegacyConfig, getEmptyStatePreset, getMetadataColor, getMetadataValueStyle, getStepDetailsStepType, humanizeVariableKey, isAiAgentStepConfig, isAiVerifyStepConfig, isApiStepConfig, isConditionStepConfig, isCustomCodeStepConfig, isDatabaseStepConfig, isLoopStepConfig, isNormalStepConfig, isRestoreSessionStepConfig, isScreenshotStepConfig, isScrollStepConfig, isStepGroupConfig, isUploadStepConfig, isVerifyUrlStepConfig, mapApiVariablesToDynamicFields };
54988
+ export { ADVANCED_SUBFIELDS_BY_TYPE, ADVANCED_TOGGLE_KEYS, AIActionStepComponent, AIAgentStepComponent, ALL_FILTER_VALUE, API_EDIT_STEP_LABELS, ActionMenuButtonComponent, AddPrerequisiteCasesSectionComponent, AdvancedVariablesFormComponent, AiDebugAlertComponent, AiLogsWithReasoningComponent, AiPromptCardComponent, AiReasoningComponent, ApiEditStepComponent, ApiMockingCardComponent, ApiStepComponent, AssignEnvironmentsDialogComponent, AuditLogDrawerComponent, AuditLogDrawerService, AuditLogEntryCardComponent, AutocompleteComponent, BadgeComponent, BasicStepComponent, BreakpointsModalComponent, ButtonComponent, CUSTOM_EDIT_STEP_DATA, CUSTOM_EDIT_STEP_EDIT_IN_DEPTH, CUSTOM_EDIT_STEP_REF, CUSTOM_ELEMENT_POPUP_REF, CaptureVideoDialogComponent, ChangeHistoryComponent, ChartCardComponent, CodeEditorComponent, ColumnVisibilityComponent, CompareRunsComponent, ConditionBranchEditorComponent, ConditionDebugStepComponent, ConditionStepComponent, ConfigurationCardComponent, ConsoleAlertComponent, CoverageModuleCardComponent, CreateStepGroupComponent, CustomEditStepComponent, CustomEditStepRef, CustomEditStepService, CustomInputComponent, CustomTextareaComponent, CustomToggleComponent, DEFAULT_FOLDER_COLOR, DEFAULT_METADATA_COLOR, DEFAULT_MODULAR_CONFIG, DEFAULT_MODULAR_LABELS, DEFAULT_PRIORITY_COLOR_CONFIG, DEFAULT_REORDER_LABELS, DEFAULT_STATUS_COLOR_CONFIG, DEFAULT_TEST_SUITE_LABELS, DIALOG_DATA, DIALOG_REF, DashboardHeaderComponent, DaterangepickerComponent, DaterangepickerDirective, DbQueryExecutionItemComponent, DbVerificationStepComponent, DeleteFolderDialogComponent, DeleteStepsComponent, DetailDrawerComponent, DetailDrawerTabComponent, DetailDrawerTabContentDirective, DetailSidePanelComponent, DialogComponent, DialogRef, DialogService, DocumentVerificationStepComponent, DropdownButtonComponent, DynamicCellContainerDirective, DynamicCellTemplateDirective, DynamicFilterComponent, DynamicHeaderTemplateDirective, DynamicSelectFieldComponent, DynamicTableComponent, ELEMENT_POPUP_DATA, ELEMENT_POPUP_EDIT_IN_DEPTH, EMPTY_STATE_IMAGES, EMPTY_STATE_PRESETS, ENVIRONMENT_ACCENT_COLORS, ElementFormComponent, ElementListComponent, ElementPopupComponent, ElementPopupRef, ElementPopupService, EmptyStateComponent, ErrorModalComponent, ExecutionResultModalComponent, ExportCodeModalComponent, FOLDER_COLUMN_FIELD_ID, FOLDER_DRAG_MIME, FOLDER_NAME_MAX_LENGTH, FailedStepCardComponent, FailedStepComponent, FailedTestCasesCardComponent, FileDownloadStepComponent, FileUploadComponent, FolderDragDirective, FolderDropDirective, FolderSidebarComponent, FullTableLoaderComponent, HeatErrorMapCellComponent, InsightCardComponent, ItemListComponent, IterationsLoopComponent, JumpToStepModalComponent, LiveConversationComponent, LiveExecutionStepComponent, LoopStepComponent, MONACO_LANGUAGE_MAP, MainStepCollapseComponent, ManageColumnsDialogComponent, MetricsCardComponent, MixedVariableInputComponent, ModularTableTemplateComponent, MoveTestSuiteDialogComponent, MoveToFolderDialogComponent, NamePromptModalComponent, NetworkRequestComponent, NewDbConfigDialogComponent, NewEnvironmentDialogComponent, NewEnvironmentVariableDialogComponent, NewFolderDialogComponent, NewGlobalVariableDialogComponent, NewTestDataProfileDialogComponent, NewVersionHistoryDetailComponent, OtherButtonComponent, PRIORITY_COLORS, PaginationComponent, PermissionToggleComponent, ProgressIndicatorComponent, ProgressTextCardComponent, QuestionnaireListComponent, RESULT_COLORS, ROW_DRAG_MIME, RadioCardGroupComponent, RecordingBannerComponent, ReviewRecordedStepsModalComponent, RowDragDirective, RunExecutionAlertComponent, RunHistoryCardComponent, STATUS_COLORS, STEP_DETAILS_DRAWER_DATA, STEP_DETAILS_DRAWER_REF, STEP_DETAILS_FIELDS_BY_TYPE, STEP_DETAILS_FIELD_META, STEP_DETAILS_MODAL_DATA, STEP_DETAILS_MODAL_REF, SearchBarComponent, SegmentControlComponent, SelectedFiltersComponent, SelfHealAnalysisComponent, SessionChangesModalComponent, SessionRestorationDialogComponent, SimulatorComponent, StepBuilderActionComponent, StepBuilderAiAgentComponent, StepBuilderConditionComponent, StepBuilderCustomCodeComponent, StepBuilderDatabaseComponent, StepBuilderDocumentComponent, StepBuilderDocumentGenerationTemplateStepComponent, StepBuilderGroupComponent, StepBuilderLoopComponent, StepBuilderRecordStepComponent, StepDetailsDrawerComponent, StepDetailsDrawerRef, StepDetailsDrawerService, StepDetailsModalComponent, StepDetailsModalRef, StepDetailsModalService, StepGroupComponent, StepProgressCardComponent, StepRendererComponent, StepStatusCardComponent, StepTypes, StepperComponent, SubStepsConfirmationDialogComponent, TEST_CASE_DETAILS_FIELD_MAP, TEST_CASE_DETAILS_SELECT_KEYS, TEST_DATA_MODAL_DATA, TEST_DATA_MODAL_EDIT_IN_DEPTH, TEST_DATA_MODAL_REF, TableActionToolbarComponent, TableDataLoaderComponent, TableTemplateComponent, TailwindOverlayContainer, TemplateVariablesFormComponent, TestCaseAiAgentStepComponent, TestCaseAiVerifyStepComponent, TestCaseApiStepComponent, TestCaseConditionStepComponent, TestCaseCustomCodeStepComponent, TestCaseDatabaseStepComponent, TestCaseDetailsComponent, TestCaseDetailsEditComponent, TestCaseDetailsRendererComponent, TestCaseLinkCellComponent, TestCaseLoopStepComponent, TestCaseNormalStepComponent, TestCaseRestoreSessionStepComponent, TestCaseScreenshotStepComponent, TestCaseScrollStepComponent, TestCaseStepGroupComponent, TestCaseUploadStepComponent, TestCaseVerifyUrlStepComponent, TestDataModalComponent, TestDataModalRef, TestDataModalService, TestDistributionCardComponent, UiKitModule, UpdatedFailedStepComponent, VersionHistoryCompareComponent, VersionHistoryDetailComponent, VersionHistoryListComponent, VersionHistoryRestoreConfirmComponent, ViewCompareButtonComponent, ViewMoreFailedStepButtonComponent, ViewportSelectorComponent, VisualComparisonComponent, VisualDifferenceModalComponent, WorkspaceSelectorComponent, buildTestCaseDetailsFromApi, getDynamicFieldsFromLegacyConfig, getEmptyStatePreset, getMetadataColor, getMetadataValueStyle, getStepDetailsStepType, humanizeVariableKey, isAiAgentStepConfig, isAiVerifyStepConfig, isApiStepConfig, isConditionStepConfig, isCustomCodeStepConfig, isDatabaseStepConfig, isLoopStepConfig, isNormalStepConfig, isRestoreSessionStepConfig, isScreenshotStepConfig, isScrollStepConfig, isStepGroupConfig, isUploadStepConfig, isVerifyUrlStepConfig, mapApiVariablesToDynamicFields };
54671
54989
  //# sourceMappingURL=cqa-lib-cqa-ui.mjs.map