@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.
@@ -11434,6 +11434,318 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
11434
11434
  type: Input
11435
11435
  }] } });
11436
11436
 
11437
+ const DEFAULT_TEST_SUITE_LABELS = {
11438
+ moveTestSuiteDialogTitle: 'Move test suite',
11439
+ moveTestSuiteDialogDescription: 'Pick a destination folder for this test suite.',
11440
+ moveTestSuiteDialogSuiteNameLabel: 'Test suite',
11441
+ moveTestSuiteDialogCurrentLabel: 'Current folder',
11442
+ moveTestSuiteDialogDestinationLabel: 'Destination folder',
11443
+ moveTestSuiteDialogDestinationPlaceholder: 'Select a folder below',
11444
+ moveTestSuiteDialogCancel: 'Cancel',
11445
+ moveTestSuiteDialogConfirm: 'Move',
11446
+ };
11447
+
11448
+ /**
11449
+ * Body of the "Move Test Suite" dialog.
11450
+ *
11451
+ * Reuses `<cqa-move-to-folder-dialog>` as the tree picker (same embedding pattern
11452
+ * as `NewFolderDialogComponent`) so consumers get the same folder-tree UX, while
11453
+ * adding two read-only rows above it: the suite's **current folder** (source)
11454
+ * and the **destination folder** the user has picked (live-updates).
11455
+ *
11456
+ * Two integration paths:
11457
+ *
11458
+ * 1. **From within this library** via `DialogService.open(...)`. The outer
11459
+ * `cqa-dialog` supplies title/description/Cancel/Move buttons; the Move
11460
+ * button reads `pickedFolderId` via `dialogRef.getComponentInstance()` and
11461
+ * checks `isValid` before closing.
11462
+ *
11463
+ * 2. **Host-driven** — host renders `<cqa-move-test-suite-dialog>` inside its
11464
+ * own modal and listens to `(submitted)` / `(cancelled)` / `(pickedFolderIdChange)`.
11465
+ */
11466
+ class MoveTestSuiteDialogComponent {
11467
+ constructor(cdr) {
11468
+ this.cdr = cdr;
11469
+ // NOTE: `folders` and `labels` are declared as setters (instead of plain @Input fields)
11470
+ // because `DialogService.open(...)` assigns the `inputs` map via direct property
11471
+ // assignment *after* `attachComponent` has already run the component's lifecycle
11472
+ // hooks — direct assignment bypasses `ngOnChanges`, so setters keep derived state
11473
+ // in sync no matter the assignment order. Same pattern as `NewFolderDialogComponent`.
11474
+ this._folders = [];
11475
+ this._labels = { ...DEFAULT_MODULAR_LABELS };
11476
+ /** Test-suite-section labels (title, description, button text, field labels,
11477
+ * placeholder). Kept separate from `labels` (ModularLabels) so the embedded
11478
+ * picker can keep its modular-table-template label model. Same setter
11479
+ * pattern as `labels` for DialogService property-assignment compatibility. */
11480
+ this._testSuiteLabels = { ...DEFAULT_TEST_SUITE_LABELS };
11481
+ /** Folder the suite currently lives in. Used both to gray out the row in the
11482
+ * embedded picker and to render the "Current folder" readout. */
11483
+ this.currentFolderId = null;
11484
+ /** Optional override for the current-folder display name. When not provided,
11485
+ * the component resolves the name from `folders` by walking to `currentFolderId`,
11486
+ * falling back to `labels.moveDialogRoot` ("Unorganized") when null. */
11487
+ this.currentFolderName = null;
11488
+ /** Name of the test suite being moved. Rendered as a disabled input at the
11489
+ * top of the dialog body so the user can confirm which suite the move
11490
+ * applies to. Defaults to empty string. */
11491
+ this.suiteName = '';
11492
+ /** Destination folder id picked by the user. Two-way-bind friendly. */
11493
+ this.pickedFolderId = null;
11494
+ /** Height of the embedded picker. Defaults to 240px (matches the parent-folder
11495
+ * picker height in `NewFolderDialogComponent`) so the modal stays compact. */
11496
+ this.pickerHeight = '240px';
11497
+ /** When true (default), both the Current folder and Destination folder inputs
11498
+ * render as disabled (read-only via the cqa-custom-input `[disabled]` flag).
11499
+ * Set to false if a host needs to re-enable interaction on those fields. */
11500
+ this.fieldsDisabled = true;
11501
+ this.pickedFolderIdChange = new EventEmitter();
11502
+ this.submitted = new EventEmitter();
11503
+ this.cancelled = new EventEmitter();
11504
+ /** Bubble cqa-custom-input focus/blur events up to hosts. Useful when
11505
+ * `fieldsDisabled = false` and the host wants to react to interaction. */
11506
+ this.currentFieldFocus = new EventEmitter();
11507
+ this.currentFieldBlur = new EventEmitter();
11508
+ this.destinationFieldFocus = new EventEmitter();
11509
+ this.destinationFieldBlur = new EventEmitter();
11510
+ /** Set to true the first time the user picks anything. Lets `isValid` treat
11511
+ * the initial pre-touch state as "nothing selected" — important when the
11512
+ * suite starts in Unorganized (`currentFolderId = null`) so a fresh dialog
11513
+ * doesn't appear valid just because `pickedFolderId` also defaults to null. */
11514
+ this.pickedTouched = false;
11515
+ }
11516
+ set folders(value) {
11517
+ this._folders = value || [];
11518
+ this.cdr.markForCheck();
11519
+ }
11520
+ get folders() { return this._folders; }
11521
+ set labels(value) {
11522
+ this._labels = value || { ...DEFAULT_MODULAR_LABELS };
11523
+ this.cdr.markForCheck();
11524
+ }
11525
+ get labels() { return this._labels; }
11526
+ set testSuiteLabels(value) {
11527
+ this._testSuiteLabels = value || { ...DEFAULT_TEST_SUITE_LABELS };
11528
+ this.cdr.markForCheck();
11529
+ }
11530
+ get testSuiteLabels() { return this._testSuiteLabels; }
11531
+ onParentPicked(id) {
11532
+ let next = null;
11533
+ if (id != null) {
11534
+ const coerced = typeof id === 'number' ? id : Number(id);
11535
+ if (Number.isFinite(coerced))
11536
+ next = coerced;
11537
+ }
11538
+ this.pickedFolderId = next;
11539
+ this.pickedTouched = true;
11540
+ this.pickedFolderIdChange.emit(next);
11541
+ this.cdr.markForCheck();
11542
+ }
11543
+ /** True once the user has picked a destination via the embedded tree. Drives
11544
+ * the destination-readout styling (indigo when picked, muted when not). */
11545
+ get hasPick() {
11546
+ return this.pickedTouched;
11547
+ }
11548
+ get resolvedCurrentName() {
11549
+ if (this.currentFolderName && this.currentFolderName.trim().length) {
11550
+ return this.currentFolderName;
11551
+ }
11552
+ if (this.currentFolderId == null) {
11553
+ return this.labels.moveDialogRoot;
11554
+ }
11555
+ const name = this.findFolderName(this._folders, this.currentFolderId);
11556
+ return name ?? this.labels.moveDialogRoot;
11557
+ }
11558
+ /** Value shown inside the Destination input. Empty until the user picks; once
11559
+ * picked, the resolved folder name (or `labels.moveDialogRoot` for Unorganized).
11560
+ * Empty state lets the input's `[placeholder]` show through. */
11561
+ get destinationFieldValue() {
11562
+ if (!this.pickedTouched)
11563
+ return '';
11564
+ if (this.pickedFolderId == null)
11565
+ return this.labels.moveDialogRoot;
11566
+ return this.findFolderName(this._folders, this.pickedFolderId) ?? this.labels.moveDialogRoot;
11567
+ }
11568
+ /** Placeholder shown in the Destination input before the user picks. */
11569
+ get destinationFieldPlaceholder() {
11570
+ return this._testSuiteLabels.moveTestSuiteDialogDestinationPlaceholder;
11571
+ }
11572
+ /** Move is valid when the user has picked a destination different from the
11573
+ * current folder. Picking the same folder as the source is a no-op, and we
11574
+ * also require an explicit interaction (`pickedTouched`). */
11575
+ get isValid() {
11576
+ if (!this.pickedTouched)
11577
+ return false;
11578
+ return this.pickedFolderId !== this.currentFolderId;
11579
+ }
11580
+ submit() {
11581
+ if (!this.isValid)
11582
+ return;
11583
+ this.submitted.emit({ targetFolderId: this.pickedFolderId });
11584
+ }
11585
+ cancel() {
11586
+ this.cancelled.emit();
11587
+ }
11588
+ /** Hooks for the Current folder cqa-custom-input. Field is disabled by
11589
+ * default, so these mostly no-op; they're wired so the component still
11590
+ * behaves correctly when `fieldsDisabled = false`. */
11591
+ onCurrentFieldValueChange(_value) {
11592
+ // Read-only field — ignore programmatic changes.
11593
+ }
11594
+ onCurrentFieldFocused(event) {
11595
+ this.currentFieldFocus.emit(event);
11596
+ }
11597
+ onCurrentFieldBlurred(event) {
11598
+ this.currentFieldBlur.emit(event);
11599
+ }
11600
+ /** Hooks for the Destination folder cqa-custom-input. Value is driven by the
11601
+ * tree picker below, so the input itself is informational. */
11602
+ onDestinationFieldValueChange(_value) {
11603
+ // Destination is driven by the tree picker, not the input itself.
11604
+ }
11605
+ onDestinationFieldFocused(event) {
11606
+ this.destinationFieldFocus.emit(event);
11607
+ }
11608
+ onDestinationFieldBlurred(event) {
11609
+ this.destinationFieldBlur.emit(event);
11610
+ }
11611
+ findFolderName(nodes, id) {
11612
+ for (const n of nodes || []) {
11613
+ if (n.id === id)
11614
+ return n.name;
11615
+ if (n.children?.length) {
11616
+ const hit = this.findFolderName(n.children, id);
11617
+ if (hit != null)
11618
+ return hit;
11619
+ }
11620
+ }
11621
+ return null;
11622
+ }
11623
+ }
11624
+ MoveTestSuiteDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: MoveTestSuiteDialogComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
11625
+ 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: `
11626
+ <div class="cqa-flex cqa-flex-col cqa-gap-2 cqa-w-full">
11627
+ <!-- Test suite name (read-only display; surfaces which suite is being moved) -->
11628
+ <cqa-custom-input
11629
+ [label]="testSuiteLabels.moveTestSuiteDialogSuiteNameLabel"
11630
+ [value]="suiteName"
11631
+ [disabled]="fieldsDisabled"
11632
+ [fullWidth]="true"
11633
+ ></cqa-custom-input>
11634
+
11635
+ <!-- Current folder (rendered as a disabled input) -->
11636
+ <cqa-custom-input
11637
+ [label]="testSuiteLabels.moveTestSuiteDialogCurrentLabel"
11638
+ [value]="resolvedCurrentName"
11639
+ [disabled]="fieldsDisabled"
11640
+ [fullWidth]="true"
11641
+ (valueChange)="onCurrentFieldValueChange($event)"
11642
+ (focused)="onCurrentFieldFocused($event)"
11643
+ (blurred)="onCurrentFieldBlurred($event)"
11644
+ ></cqa-custom-input>
11645
+
11646
+ <!-- Destination folder (rendered as a disabled input; value driven by the tree picker below) -->
11647
+ <cqa-custom-input
11648
+ [label]="testSuiteLabels.moveTestSuiteDialogDestinationLabel"
11649
+ [value]="destinationFieldValue"
11650
+ [placeholder]="destinationFieldPlaceholder"
11651
+ [disabled]="fieldsDisabled"
11652
+ [fullWidth]="true"
11653
+ (valueChange)="onDestinationFieldValueChange($event)"
11654
+ (focused)="onDestinationFieldFocused($event)"
11655
+ (blurred)="onDestinationFieldBlurred($event)"
11656
+ ></cqa-custom-input>
11657
+
11658
+ <!-- Folder tree picker -->
11659
+ <cqa-move-to-folder-dialog
11660
+ [folders]="folders"
11661
+ [labels]="labels"
11662
+ [currentFolderId]="currentFolderId"
11663
+ [pickedFolderId]="pickedFolderId"
11664
+ [pickerHeight]="pickerHeight"
11665
+ (pickedFolderIdChange)="onParentPicked($event)"
11666
+ ></cqa-move-to-folder-dialog>
11667
+ </div>
11668
+ `, 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 });
11669
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: MoveTestSuiteDialogComponent, decorators: [{
11670
+ type: Component,
11671
+ args: [{ selector: 'cqa-move-test-suite-dialog', template: `
11672
+ <div class="cqa-flex cqa-flex-col cqa-gap-2 cqa-w-full">
11673
+ <!-- Test suite name (read-only display; surfaces which suite is being moved) -->
11674
+ <cqa-custom-input
11675
+ [label]="testSuiteLabels.moveTestSuiteDialogSuiteNameLabel"
11676
+ [value]="suiteName"
11677
+ [disabled]="fieldsDisabled"
11678
+ [fullWidth]="true"
11679
+ ></cqa-custom-input>
11680
+
11681
+ <!-- Current folder (rendered as a disabled input) -->
11682
+ <cqa-custom-input
11683
+ [label]="testSuiteLabels.moveTestSuiteDialogCurrentLabel"
11684
+ [value]="resolvedCurrentName"
11685
+ [disabled]="fieldsDisabled"
11686
+ [fullWidth]="true"
11687
+ (valueChange)="onCurrentFieldValueChange($event)"
11688
+ (focused)="onCurrentFieldFocused($event)"
11689
+ (blurred)="onCurrentFieldBlurred($event)"
11690
+ ></cqa-custom-input>
11691
+
11692
+ <!-- Destination folder (rendered as a disabled input; value driven by the tree picker below) -->
11693
+ <cqa-custom-input
11694
+ [label]="testSuiteLabels.moveTestSuiteDialogDestinationLabel"
11695
+ [value]="destinationFieldValue"
11696
+ [placeholder]="destinationFieldPlaceholder"
11697
+ [disabled]="fieldsDisabled"
11698
+ [fullWidth]="true"
11699
+ (valueChange)="onDestinationFieldValueChange($event)"
11700
+ (focused)="onDestinationFieldFocused($event)"
11701
+ (blurred)="onDestinationFieldBlurred($event)"
11702
+ ></cqa-custom-input>
11703
+
11704
+ <!-- Folder tree picker -->
11705
+ <cqa-move-to-folder-dialog
11706
+ [folders]="folders"
11707
+ [labels]="labels"
11708
+ [currentFolderId]="currentFolderId"
11709
+ [pickedFolderId]="pickedFolderId"
11710
+ [pickerHeight]="pickerHeight"
11711
+ (pickedFolderIdChange)="onParentPicked($event)"
11712
+ ></cqa-move-to-folder-dialog>
11713
+ </div>
11714
+ `, host: { class: 'cqa-ui-root' }, changeDetection: ChangeDetectionStrategy.OnPush, styles: [] }]
11715
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { folders: [{
11716
+ type: Input
11717
+ }], labels: [{
11718
+ type: Input
11719
+ }], testSuiteLabels: [{
11720
+ type: Input
11721
+ }], currentFolderId: [{
11722
+ type: Input
11723
+ }], currentFolderName: [{
11724
+ type: Input
11725
+ }], suiteName: [{
11726
+ type: Input
11727
+ }], pickedFolderId: [{
11728
+ type: Input
11729
+ }], pickerHeight: [{
11730
+ type: Input
11731
+ }], fieldsDisabled: [{
11732
+ type: Input
11733
+ }], pickedFolderIdChange: [{
11734
+ type: Output
11735
+ }], submitted: [{
11736
+ type: Output
11737
+ }], cancelled: [{
11738
+ type: Output
11739
+ }], currentFieldFocus: [{
11740
+ type: Output
11741
+ }], currentFieldBlur: [{
11742
+ type: Output
11743
+ }], destinationFieldFocus: [{
11744
+ type: Output
11745
+ }], destinationFieldBlur: [{
11746
+ type: Output
11747
+ }] } });
11748
+
11437
11749
  /**
11438
11750
  * Generic single-input prompt modal. Used wherever a flow needs to ask the
11439
11751
  * user for a single name (or short text) and confirm with a primary button.
@@ -52984,6 +53296,7 @@ UiKitModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "1
52984
53296
  ModularTableTemplateComponent,
52985
53297
  FolderSidebarComponent,
52986
53298
  MoveToFolderDialogComponent,
53299
+ MoveTestSuiteDialogComponent,
52987
53300
  NewFolderDialogComponent,
52988
53301
  DeleteFolderDialogComponent,
52989
53302
  RowDragDirective,
@@ -53181,6 +53494,7 @@ UiKitModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "1
53181
53494
  NewFolderDialogComponent,
53182
53495
  DeleteFolderDialogComponent,
53183
53496
  MoveToFolderDialogComponent,
53497
+ MoveTestSuiteDialogComponent,
53184
53498
  RowDragDirective,
53185
53499
  FolderDropDirective,
53186
53500
  FolderDragDirective,
@@ -53421,6 +53735,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
53421
53735
  ModularTableTemplateComponent,
53422
53736
  FolderSidebarComponent,
53423
53737
  MoveToFolderDialogComponent,
53738
+ MoveTestSuiteDialogComponent,
53424
53739
  NewFolderDialogComponent,
53425
53740
  DeleteFolderDialogComponent,
53426
53741
  RowDragDirective,
@@ -53624,6 +53939,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
53624
53939
  NewFolderDialogComponent,
53625
53940
  DeleteFolderDialogComponent,
53626
53941
  MoveToFolderDialogComponent,
53942
+ MoveTestSuiteDialogComponent,
53627
53943
  RowDragDirective,
53628
53944
  FolderDropDirective,
53629
53945
  FolderDragDirective,
@@ -54467,5 +54783,5 @@ function buildTestCaseDetailsFromApi(data, options) {
54467
54783
  * Generated bundle index. Do not edit.
54468
54784
  */
54469
54785
 
54470
- 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 };
54786
+ 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 };
54471
54787
  //# sourceMappingURL=cqa-lib-cqa-ui.mjs.map