@cqa-lib/cqa-ui 1.1.188 → 1.1.189

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (23) hide show
  1. package/esm2020/lib/dynamic-select/dynamic-select-field.component.mjs +27 -3
  2. package/esm2020/lib/test-case-details/step-details-drawer/step-details-drawer-data.mjs +3 -0
  3. package/esm2020/lib/test-case-details/step-details-drawer/step-details-drawer-field.config.mjs +188 -0
  4. package/esm2020/lib/test-case-details/step-details-drawer/step-details-drawer-ref.mjs +28 -0
  5. package/esm2020/lib/test-case-details/step-details-drawer/step-details-drawer.component.mjs +291 -0
  6. package/esm2020/lib/test-case-details/step-details-drawer/step-details-drawer.service.mjs +67 -0
  7. package/esm2020/lib/ui-kit.module.mjs +8 -3
  8. package/esm2020/lib/utils/tw-overlay-container.mjs +6 -3
  9. package/esm2020/public-api.mjs +6 -1
  10. package/fesm2015/cqa-lib-cqa-ui.mjs +596 -7
  11. package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
  12. package/fesm2020/cqa-lib-cqa-ui.mjs +586 -7
  13. package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
  14. package/lib/dynamic-select/dynamic-select-field.component.d.ts +6 -0
  15. package/lib/test-case-details/step-details-drawer/step-details-drawer-data.d.ts +7 -0
  16. package/lib/test-case-details/step-details-drawer/step-details-drawer-field.config.d.ts +51 -0
  17. package/lib/test-case-details/step-details-drawer/step-details-drawer-ref.d.ts +13 -0
  18. package/lib/test-case-details/step-details-drawer/step-details-drawer.component.d.ts +60 -0
  19. package/lib/test-case-details/step-details-drawer/step-details-drawer.service.d.ts +22 -0
  20. package/lib/ui-kit.module.d.ts +21 -20
  21. package/package.json +1 -1
  22. package/public-api.d.ts +5 -0
  23. package/styles.css +1 -1
@@ -97,6 +97,12 @@ export declare class DynamicSelectFieldComponent implements OnInit, OnChanges {
97
97
  get useCheckboxStyle(): boolean;
98
98
  get allSelected(): boolean;
99
99
  private toBoolean;
100
+ /**
101
+ * Sync the form control's disabled state from config.
102
+ * Use the FormControl API instead of [disabled] in the template to avoid Angular's
103
+ * "changed after checked" / reactive forms disabled-attribute warning.
104
+ */
105
+ private syncDisabledState;
100
106
  private syncControlValueForMultipleMode;
101
107
  private applySelectedValueIfNeeded;
102
108
  private hasExistingValue;
@@ -0,0 +1,7 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ import { TestCaseStepConfig } from '../test-case-step.models';
3
+ export interface StepDetailsDrawerData {
4
+ step: TestCaseStepConfig;
5
+ stepNumber: number | string;
6
+ }
7
+ export declare const STEP_DETAILS_DRAWER_DATA: InjectionToken<StepDetailsDrawerData>;
@@ -0,0 +1,51 @@
1
+ /**
2
+ * Configuration for Step Details Drawer (Edit In Depth).
3
+ * Form is fully dynamic by Step Type – no hardcoded field lists.
4
+ */
5
+ import { TestCaseStepConfig } from '../test-case-step.models';
6
+ /** Field keys used for configuration-based rendering. */
7
+ export declare type StepDetailsFieldKey = 'description' | 'metadata' | 'retryCount' | 'advanced' | 'method' | 'url' | 'headers' | 'body' | 'saveOutputAsVariable' | 'agentTask' | 'type' | 'environment' | 'maxRetries' | 'onlyUseAttachedContext' | 'takeScreenshotsWhenVerifying' | 'iframeLocator' | 'otherLocators' | 'continueOnError' | 'disabled';
8
+ /** Step type for the drawer (drives which fields are shown). */
9
+ export declare type StepDetailsStepType = 'custom' | 'api' | 'aiAgent';
10
+ /**
11
+ * Resolves drawer step type from a test case step config.
12
+ */
13
+ export declare function getStepDetailsStepType(step: TestCaseStepConfig | null | undefined): StepDetailsStepType | null;
14
+ /**
15
+ * Fields shown per step type (configuration-based).
16
+ * Custom: Description, Metadata, Retry Count (if configured), Advanced (if configured).
17
+ * API: Method, URL, Headers, Body, Save Output as Variable, Advanced (if configured).
18
+ * AI Agent: Agent Task, Type, Metadata, Environment, Description, Constraints (toggles + Max Retries), Advanced (toggles + Retry Count, Iframe locator, Other Locators).
19
+ */
20
+ export declare const STEP_DETAILS_FIELDS_BY_TYPE: Record<StepDetailsStepType, StepDetailsFieldKey[]>;
21
+ /** Section for grouping fields (main form, constraints, or inside advanced). */
22
+ export declare type StepDetailsFieldSection = 'main' | 'constraints' | 'advanced';
23
+ /** Option for dropdown fields (value/label). */
24
+ export interface StepDetailsSelectOption {
25
+ value: string;
26
+ label: string;
27
+ }
28
+ /** Metadata per field (label, placeholder, control type, visibility). */
29
+ export interface StepDetailsFieldMeta {
30
+ key: StepDetailsFieldKey;
31
+ label: string;
32
+ placeholder?: string;
33
+ controlType: 'text' | 'textarea' | 'dropdown' | 'code' | 'toggleGroup' | 'toggle';
34
+ /** Section for grouping; used for conditional headings (e.g. "Constraints"). */
35
+ section?: StepDetailsFieldSection;
36
+ /** Dropdown options (for controlType === 'dropdown'). */
37
+ options?: StepDetailsSelectOption[];
38
+ /** Whether the field is required (e.g. show Required pill). */
39
+ required?: boolean;
40
+ /** Textarea rows. */
41
+ rows?: number;
42
+ /** Helper text or tip below the field. */
43
+ tip?: string;
44
+ /** Sub-label or description for toggles (e.g. "Only use elements from the attached context"). */
45
+ subLabel?: string;
46
+ }
47
+ export declare const STEP_DETAILS_FIELD_META: Record<StepDetailsFieldKey, StepDetailsFieldMeta>;
48
+ /** Toggle fields always shown inside the Advanced section. */
49
+ export declare const ADVANCED_TOGGLE_KEYS: StepDetailsFieldKey[];
50
+ /** Field keys shown inside Advanced (per step type), in addition to ADVANCED_TOGGLE_KEYS. */
51
+ export declare const ADVANCED_SUBFIELDS_BY_TYPE: Record<StepDetailsStepType, StepDetailsFieldKey[]>;
@@ -0,0 +1,13 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ import { OverlayRef } from '@angular/cdk/overlay';
3
+ import { Observable } from 'rxjs';
4
+ export declare class StepDetailsDrawerRef<TResult = unknown> {
5
+ private readonly overlayRef;
6
+ private readonly closed$;
7
+ private isClosed;
8
+ constructor(overlayRef: OverlayRef);
9
+ close(result?: TResult): void;
10
+ afterClosed(): Observable<TResult | undefined>;
11
+ private finishClose;
12
+ }
13
+ export declare const STEP_DETAILS_DRAWER_REF: InjectionToken<StepDetailsDrawerRef<unknown>>;
@@ -0,0 +1,60 @@
1
+ import { ChangeDetectorRef, EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
+ import { FormBuilder, FormGroup } from '@angular/forms';
3
+ import { StepDetailsFieldKey, StepDetailsStepType, StepDetailsFieldSection } from './step-details-drawer-field.config';
4
+ import { StepDetailsDrawerRef } from './step-details-drawer-ref';
5
+ import { StepDetailsDrawerData } from './step-details-drawer-data';
6
+ import { TestCaseStepConfig } from '../test-case-step.models';
7
+ import type { DynamicSelectFieldConfig } from '../../dynamic-select/dynamic-select-field.component';
8
+ import * as i0 from "@angular/core";
9
+ /**
10
+ * Step Details Drawer (Edit In Depth).
11
+ * Single reusable component; form is dynamic by Step Type via configuration.
12
+ * No Priority section. Uses CQA components only.
13
+ */
14
+ export declare class StepDetailsDrawerComponent implements OnInit, OnChanges {
15
+ private ref;
16
+ private fb;
17
+ private cdr;
18
+ saveChanges: EventEmitter<TestCaseStepConfig>;
19
+ cancel: EventEmitter<void>;
20
+ saveAsTemplate: EventEmitter<TestCaseStepConfig>;
21
+ /** Optional: when provided (e.g. from Storybook Controls), use instead of STEP_DETAILS_DRAWER_DATA. */
22
+ stepData: TestCaseStepConfig | null;
23
+ stepNumberInput: number | string | null;
24
+ step: TestCaseStepConfig;
25
+ stepNumber: number | string;
26
+ stepType: StepDetailsStepType | null;
27
+ visibleFields: StepDetailsFieldKey[];
28
+ fieldMeta: Record<StepDetailsFieldKey, import("./step-details-drawer-field.config").StepDetailsFieldMeta>;
29
+ advancedToggleKeys: StepDetailsFieldKey[];
30
+ advancedExpanded: boolean;
31
+ agentTaskExpanded: boolean;
32
+ form: FormGroup;
33
+ /** Cached select configs (stable references per key) to avoid infinite change detection in template. */
34
+ readonly selectConfigMap: Record<string, DynamicSelectFieldConfig>;
35
+ /** Subfields to show inside Advanced section for current step type. */
36
+ get advancedSubfields(): StepDetailsFieldKey[];
37
+ constructor(ref: StepDetailsDrawerRef, fb: FormBuilder, cdr: ChangeDetectorRef, data?: StepDetailsDrawerData);
38
+ ngOnInit(): void;
39
+ ngOnChanges(changes: SimpleChanges): void;
40
+ private syncStepTypeAndForm;
41
+ private buildFormFromStep;
42
+ getStepValue(key: StepDetailsFieldKey): unknown;
43
+ setStepValue(key: StepDetailsFieldKey, value: unknown): void;
44
+ onBack(): void;
45
+ onClose(): void;
46
+ onCancel(): void;
47
+ onSaveAsTemplate(): void;
48
+ onSaveChanges(): void;
49
+ private applyFormToStep;
50
+ /** Build cached map of select configs from field meta (stable refs to prevent CD loops). */
51
+ private buildSelectConfigMap;
52
+ /** Return cached select config for key (for template use; same reference every time). */
53
+ getSelectConfig(key: StepDetailsFieldKey): DynamicSelectFieldConfig | null;
54
+ /** Whether this key is the first in its section (for showing section headings). */
55
+ isFirstInSection(key: StepDetailsFieldKey, section: StepDetailsFieldSection): boolean;
56
+ /** Dynamic drawer title by step type (e.g. "AI Agent Step Details"). */
57
+ get drawerTitle(): string;
58
+ static ɵfac: i0.ɵɵFactoryDeclaration<StepDetailsDrawerComponent, [null, null, null, { optional: true; }]>;
59
+ static ɵcmp: i0.ɵɵComponentDeclaration<StepDetailsDrawerComponent, "cqa-step-details-drawer", never, { "stepData": "stepData"; "stepNumberInput": "stepNumberInput"; }, { "saveChanges": "saveChanges"; "cancel": "cancel"; "saveAsTemplate": "saveAsTemplate"; }, never, never>;
60
+ }
@@ -0,0 +1,22 @@
1
+ import { Injector } from '@angular/core';
2
+ import { Overlay } from '@angular/cdk/overlay';
3
+ import { TestCaseStepConfig } from '../test-case-step.models';
4
+ import { StepDetailsDrawerRef } from './step-details-drawer-ref';
5
+ import { StepDetailsDrawerData } from './step-details-drawer-data';
6
+ import * as i0 from "@angular/core";
7
+ export interface StepDetailsDrawerResult {
8
+ action: 'saveChanges' | 'saveAsTemplate' | 'cancel';
9
+ step?: TestCaseStepConfig;
10
+ }
11
+ /**
12
+ * Opens the Step Details Drawer (Edit In Depth) from the right.
13
+ */
14
+ export declare class StepDetailsDrawerService {
15
+ private readonly overlay;
16
+ private readonly injector;
17
+ private currentRef;
18
+ constructor(overlay: Overlay, injector: Injector);
19
+ open(data: StepDetailsDrawerData): StepDetailsDrawerRef<StepDetailsDrawerResult>;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<StepDetailsDrawerService, never>;
21
+ static ɵprov: i0.ɵɵInjectableDeclaration<StepDetailsDrawerService>;
22
+ }
@@ -106,28 +106,29 @@ import * as i103 from "./step-builder/step-builder-document-generation-template-
106
106
  import * as i104 from "./test-case-details/element-list/element-list.component";
107
107
  import * as i105 from "./step-builder/step-builder-document/step-builder-document.component";
108
108
  import * as i106 from "./step-builder/step-builder-api/step-builder-api.component";
109
- import * as i107 from "@angular/common";
110
- import * as i108 from "@angular/forms";
111
- import * as i109 from "@angular/material/icon";
112
- import * as i110 from "@angular/material/menu";
113
- import * as i111 from "@angular/material/button";
114
- import * as i112 from "@angular/material/form-field";
115
- import * as i113 from "@angular/material/select";
116
- import * as i114 from "@angular/material/core";
117
- import * as i115 from "@angular/material/checkbox";
118
- import * as i116 from "@angular/material/radio";
119
- import * as i117 from "@angular/material/slide-toggle";
120
- import * as i118 from "@angular/material/datepicker";
121
- import * as i119 from "@angular/material/progress-spinner";
122
- import * as i120 from "@angular/material/tooltip";
123
- import * as i121 from "@angular/material/dialog";
124
- import * as i122 from "@angular/cdk/overlay";
125
- import * as i123 from "@angular/cdk/portal";
126
- import * as i124 from "ngx-typed-js";
127
- import * as i125 from "ngx-drag-drop";
109
+ import * as i107 from "./test-case-details/step-details-drawer/step-details-drawer.component";
110
+ import * as i108 from "@angular/common";
111
+ import * as i109 from "@angular/forms";
112
+ import * as i110 from "@angular/material/icon";
113
+ import * as i111 from "@angular/material/menu";
114
+ import * as i112 from "@angular/material/button";
115
+ import * as i113 from "@angular/material/form-field";
116
+ import * as i114 from "@angular/material/select";
117
+ import * as i115 from "@angular/material/core";
118
+ import * as i116 from "@angular/material/checkbox";
119
+ import * as i117 from "@angular/material/radio";
120
+ import * as i118 from "@angular/material/slide-toggle";
121
+ import * as i119 from "@angular/material/datepicker";
122
+ import * as i120 from "@angular/material/progress-spinner";
123
+ import * as i121 from "@angular/material/tooltip";
124
+ import * as i122 from "@angular/material/dialog";
125
+ import * as i123 from "@angular/cdk/overlay";
126
+ import * as i124 from "@angular/cdk/portal";
127
+ import * as i125 from "ngx-typed-js";
128
+ import * as i126 from "ngx-drag-drop";
128
129
  export declare class UiKitModule {
129
130
  constructor(iconRegistry: MatIconRegistry);
130
131
  static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
131
- static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.SegmentControlComponent, typeof i4.DialogComponent, typeof i5.DynamicTableComponent, typeof i6.DynamicCellTemplateDirective, typeof i6.DynamicHeaderTemplateDirective, typeof i7.DynamicCellContainerDirective, typeof i8.PaginationComponent, typeof i9.ActionMenuButtonComponent, typeof i10.OtherButtonComponent, typeof i11.DynamicFilterComponent, typeof i12.DaterangepickerDirective, typeof i13.DaterangepickerComponent, typeof i14.ColumnVisibilityComponent, typeof i15.TableActionToolbarComponent, typeof i16.MetricsCardComponent, typeof i17.MetricsBlockComponent, typeof i18.ChartCardComponent, typeof i19.ProgressTextCardComponent, typeof i20.DashboardHeaderComponent, typeof i21.CoverageModuleCardComponent, typeof i22.TestDistributionCardComponent, typeof i23.FailedTestCasesCardComponent, typeof i24.DynamicSelectFieldComponent, typeof i25.AddPrerequisiteCasesSectionComponent, typeof i26.SelectedFiltersComponent, typeof i27.InsightCardComponent, typeof i28.BadgeComponent, typeof i29.DropdownButtonComponent, typeof i30.HeatErrorMapCellComponent, typeof i31.EmptyStateComponent, typeof i32.TableTemplateComponent, typeof i33.FullTableLoaderComponent, typeof i34.TableDataLoaderComponent, typeof i35.BasicStepComponent, typeof i36.StepRendererComponent, typeof i37.StepGroupComponent, typeof i38.LoopStepComponent, typeof i39.ConditionStepComponent, typeof i40.FailedStepComponent, typeof i41.UpdatedFailedStepComponent, typeof i42.ViewMoreFailedStepButtonComponent, typeof i43.SelfHealAnalysisComponent, typeof i44.AIAgentStepComponent, typeof i45.AIActionStepComponent, typeof i46.ApiStepComponent, typeof i47.FileDownloadStepComponent, typeof i48.DocumentVerificationStepComponent, typeof i49.LiveExecutionStepComponent, typeof i50.MainStepCollapseComponent, typeof i51.VisualComparisonComponent, typeof i52.SimulatorComponent, typeof i53.ConsoleAlertComponent, typeof i54.AiDebugAlertComponent, typeof i55.NetworkRequestComponent, typeof i56.RunHistoryCardComponent, typeof i57.VisualDifferenceModalComponent, typeof i58.ConfigurationCardComponent, typeof i59.CompareRunsComponent, typeof i60.IterationsLoopComponent, typeof i61.FailedStepCardComponent, typeof i62.CustomInputComponent, typeof i63.CustomTextareaComponent, typeof i64.CustomToggleComponent, typeof i65.FileUploadComponent, typeof i66.AiReasoningComponent, typeof i67.ExecutionResultModalComponent, typeof i68.ErrorModalComponent, typeof i69.ProgressIndicatorComponent, typeof i70.StepProgressCardComponent, typeof i71.StepStatusCardComponent, typeof i72.DbVerificationStepComponent, typeof i73.DbQueryExecutionItemComponent, typeof i74.TestCaseNormalStepComponent, typeof i75.TestCaseLoopStepComponent, typeof i76.TestCaseConditionStepComponent, typeof i77.TestCaseStepGroupComponent, typeof i78.TestCaseDetailsRendererComponent, typeof i79.TestCaseApiStepComponent, typeof i80.TestCaseDatabaseStepComponent, typeof i81.TestCaseAiAgentStepComponent, typeof i82.TestCaseAiVerifyStepComponent, typeof i83.TestCaseUploadStepComponent, typeof i84.TestCaseScreenshotStepComponent, typeof i85.TestCaseScrollStepComponent, typeof i86.TestCaseVerifyUrlStepComponent, typeof i87.TestCaseRestoreSessionStepComponent, typeof i88.TestCaseCustomCodeStepComponent, typeof i89.CustomEditStepComponent, typeof i90.ItemListComponent, typeof i91.TestDataModalComponent, typeof i92.CreateStepGroupComponent, typeof i93.DeleteStepsComponent, typeof i94.LiveConversationComponent, typeof i95.StepBuilderActionComponent, typeof i96.StepBuilderLoopComponent, typeof i97.ElementPopupComponent, typeof i98.StepBuilderConditionComponent, typeof i99.StepBuilderDatabaseComponent, typeof i100.StepBuilderAiAgentComponent, typeof i101.StepBuilderCustomCodeComponent, typeof i102.StepBuilderRecordStepComponent, typeof i103.StepBuilderDocumentGenerationTemplateStepComponent, typeof i104.ElementListComponent, typeof i105.StepBuilderDocumentComponent, typeof i106.StepBuilderApiComponent], [typeof i107.CommonModule, typeof i108.FormsModule, typeof i108.ReactiveFormsModule, typeof i109.MatIconModule, typeof i110.MatMenuModule, typeof i111.MatButtonModule, typeof i112.MatFormFieldModule, typeof i113.MatSelectModule, typeof i114.MatOptionModule, typeof i115.MatCheckboxModule, typeof i116.MatRadioModule, typeof i117.MatSlideToggleModule, typeof i118.MatDatepickerModule, typeof i114.MatNativeDateModule, typeof i119.MatProgressSpinnerModule, typeof i120.MatTooltipModule, typeof i121.MatDialogModule, typeof i122.OverlayModule, typeof i123.PortalModule, typeof i124.NgxTypedJsModule, typeof i125.DndModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.SegmentControlComponent, typeof i4.DialogComponent, typeof i5.DynamicTableComponent, typeof i6.DynamicCellTemplateDirective, typeof i6.DynamicHeaderTemplateDirective, typeof i7.DynamicCellContainerDirective, typeof i8.PaginationComponent, typeof i9.ActionMenuButtonComponent, typeof i10.OtherButtonComponent, typeof i11.DynamicFilterComponent, typeof i12.DaterangepickerDirective, typeof i13.DaterangepickerComponent, typeof i14.ColumnVisibilityComponent, typeof i15.TableActionToolbarComponent, typeof i16.MetricsCardComponent, typeof i18.ChartCardComponent, typeof i19.ProgressTextCardComponent, typeof i20.DashboardHeaderComponent, typeof i21.CoverageModuleCardComponent, typeof i22.TestDistributionCardComponent, typeof i23.FailedTestCasesCardComponent, typeof i24.DynamicSelectFieldComponent, typeof i25.AddPrerequisiteCasesSectionComponent, typeof i26.SelectedFiltersComponent, typeof i27.InsightCardComponent, typeof i28.BadgeComponent, typeof i29.DropdownButtonComponent, typeof i30.HeatErrorMapCellComponent, typeof i31.EmptyStateComponent, typeof i32.TableTemplateComponent, typeof i33.FullTableLoaderComponent, typeof i34.TableDataLoaderComponent, typeof i35.BasicStepComponent, typeof i36.StepRendererComponent, typeof i37.StepGroupComponent, typeof i38.LoopStepComponent, typeof i39.ConditionStepComponent, typeof i40.FailedStepComponent, typeof i41.UpdatedFailedStepComponent, typeof i42.ViewMoreFailedStepButtonComponent, typeof i43.SelfHealAnalysisComponent, typeof i44.AIAgentStepComponent, typeof i45.AIActionStepComponent, typeof i46.ApiStepComponent, typeof i47.FileDownloadStepComponent, typeof i48.DocumentVerificationStepComponent, typeof i49.LiveExecutionStepComponent, typeof i50.MainStepCollapseComponent, typeof i51.VisualComparisonComponent, typeof i52.SimulatorComponent, typeof i53.ConsoleAlertComponent, typeof i54.AiDebugAlertComponent, typeof i55.NetworkRequestComponent, typeof i56.RunHistoryCardComponent, typeof i57.VisualDifferenceModalComponent, typeof i58.ConfigurationCardComponent, typeof i59.CompareRunsComponent, typeof i60.IterationsLoopComponent, typeof i61.FailedStepCardComponent, typeof i62.CustomInputComponent, typeof i63.CustomTextareaComponent, typeof i64.CustomToggleComponent, typeof i65.FileUploadComponent, typeof i66.AiReasoningComponent, typeof i67.ExecutionResultModalComponent, typeof i68.ErrorModalComponent, typeof i69.ProgressIndicatorComponent, typeof i70.StepProgressCardComponent, typeof i71.StepStatusCardComponent, typeof i72.DbVerificationStepComponent, typeof i73.DbQueryExecutionItemComponent, typeof i74.TestCaseNormalStepComponent, typeof i75.TestCaseLoopStepComponent, typeof i76.TestCaseConditionStepComponent, typeof i77.TestCaseStepGroupComponent, typeof i78.TestCaseDetailsRendererComponent, typeof i79.TestCaseApiStepComponent, typeof i80.TestCaseDatabaseStepComponent, typeof i81.TestCaseAiAgentStepComponent, typeof i83.TestCaseUploadStepComponent, typeof i84.TestCaseScreenshotStepComponent, typeof i85.TestCaseScrollStepComponent, typeof i86.TestCaseVerifyUrlStepComponent, typeof i87.TestCaseRestoreSessionStepComponent, typeof i88.TestCaseCustomCodeStepComponent, typeof i89.CustomEditStepComponent, typeof i90.ItemListComponent, typeof i91.TestDataModalComponent, typeof i92.CreateStepGroupComponent, typeof i93.DeleteStepsComponent, typeof i94.LiveConversationComponent, typeof i95.StepBuilderActionComponent, typeof i96.StepBuilderLoopComponent, typeof i97.ElementPopupComponent, typeof i98.StepBuilderConditionComponent, typeof i99.StepBuilderDatabaseComponent, typeof i100.StepBuilderAiAgentComponent, typeof i101.StepBuilderCustomCodeComponent, typeof i102.StepBuilderRecordStepComponent, typeof i103.StepBuilderDocumentGenerationTemplateStepComponent, typeof i106.StepBuilderApiComponent, typeof i104.ElementListComponent, typeof i105.StepBuilderDocumentComponent]>;
132
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.SegmentControlComponent, typeof i4.DialogComponent, typeof i5.DynamicTableComponent, typeof i6.DynamicCellTemplateDirective, typeof i6.DynamicHeaderTemplateDirective, typeof i7.DynamicCellContainerDirective, typeof i8.PaginationComponent, typeof i9.ActionMenuButtonComponent, typeof i10.OtherButtonComponent, typeof i11.DynamicFilterComponent, typeof i12.DaterangepickerDirective, typeof i13.DaterangepickerComponent, typeof i14.ColumnVisibilityComponent, typeof i15.TableActionToolbarComponent, typeof i16.MetricsCardComponent, typeof i17.MetricsBlockComponent, typeof i18.ChartCardComponent, typeof i19.ProgressTextCardComponent, typeof i20.DashboardHeaderComponent, typeof i21.CoverageModuleCardComponent, typeof i22.TestDistributionCardComponent, typeof i23.FailedTestCasesCardComponent, typeof i24.DynamicSelectFieldComponent, typeof i25.AddPrerequisiteCasesSectionComponent, typeof i26.SelectedFiltersComponent, typeof i27.InsightCardComponent, typeof i28.BadgeComponent, typeof i29.DropdownButtonComponent, typeof i30.HeatErrorMapCellComponent, typeof i31.EmptyStateComponent, typeof i32.TableTemplateComponent, typeof i33.FullTableLoaderComponent, typeof i34.TableDataLoaderComponent, typeof i35.BasicStepComponent, typeof i36.StepRendererComponent, typeof i37.StepGroupComponent, typeof i38.LoopStepComponent, typeof i39.ConditionStepComponent, typeof i40.FailedStepComponent, typeof i41.UpdatedFailedStepComponent, typeof i42.ViewMoreFailedStepButtonComponent, typeof i43.SelfHealAnalysisComponent, typeof i44.AIAgentStepComponent, typeof i45.AIActionStepComponent, typeof i46.ApiStepComponent, typeof i47.FileDownloadStepComponent, typeof i48.DocumentVerificationStepComponent, typeof i49.LiveExecutionStepComponent, typeof i50.MainStepCollapseComponent, typeof i51.VisualComparisonComponent, typeof i52.SimulatorComponent, typeof i53.ConsoleAlertComponent, typeof i54.AiDebugAlertComponent, typeof i55.NetworkRequestComponent, typeof i56.RunHistoryCardComponent, typeof i57.VisualDifferenceModalComponent, typeof i58.ConfigurationCardComponent, typeof i59.CompareRunsComponent, typeof i60.IterationsLoopComponent, typeof i61.FailedStepCardComponent, typeof i62.CustomInputComponent, typeof i63.CustomTextareaComponent, typeof i64.CustomToggleComponent, typeof i65.FileUploadComponent, typeof i66.AiReasoningComponent, typeof i67.ExecutionResultModalComponent, typeof i68.ErrorModalComponent, typeof i69.ProgressIndicatorComponent, typeof i70.StepProgressCardComponent, typeof i71.StepStatusCardComponent, typeof i72.DbVerificationStepComponent, typeof i73.DbQueryExecutionItemComponent, typeof i74.TestCaseNormalStepComponent, typeof i75.TestCaseLoopStepComponent, typeof i76.TestCaseConditionStepComponent, typeof i77.TestCaseStepGroupComponent, typeof i78.TestCaseDetailsRendererComponent, typeof i79.TestCaseApiStepComponent, typeof i80.TestCaseDatabaseStepComponent, typeof i81.TestCaseAiAgentStepComponent, typeof i82.TestCaseAiVerifyStepComponent, typeof i83.TestCaseUploadStepComponent, typeof i84.TestCaseScreenshotStepComponent, typeof i85.TestCaseScrollStepComponent, typeof i86.TestCaseVerifyUrlStepComponent, typeof i87.TestCaseRestoreSessionStepComponent, typeof i88.TestCaseCustomCodeStepComponent, typeof i89.CustomEditStepComponent, typeof i90.ItemListComponent, typeof i91.TestDataModalComponent, typeof i92.CreateStepGroupComponent, typeof i93.DeleteStepsComponent, typeof i94.LiveConversationComponent, typeof i95.StepBuilderActionComponent, typeof i96.StepBuilderLoopComponent, typeof i97.ElementPopupComponent, typeof i98.StepBuilderConditionComponent, typeof i99.StepBuilderDatabaseComponent, typeof i100.StepBuilderAiAgentComponent, typeof i101.StepBuilderCustomCodeComponent, typeof i102.StepBuilderRecordStepComponent, typeof i103.StepBuilderDocumentGenerationTemplateStepComponent, typeof i104.ElementListComponent, typeof i105.StepBuilderDocumentComponent, typeof i106.StepBuilderApiComponent, typeof i107.StepDetailsDrawerComponent], [typeof i108.CommonModule, typeof i109.FormsModule, typeof i109.ReactiveFormsModule, typeof i110.MatIconModule, typeof i111.MatMenuModule, typeof i112.MatButtonModule, typeof i113.MatFormFieldModule, typeof i114.MatSelectModule, typeof i115.MatOptionModule, typeof i116.MatCheckboxModule, typeof i117.MatRadioModule, typeof i118.MatSlideToggleModule, typeof i119.MatDatepickerModule, typeof i115.MatNativeDateModule, typeof i120.MatProgressSpinnerModule, typeof i121.MatTooltipModule, typeof i122.MatDialogModule, typeof i123.OverlayModule, typeof i124.PortalModule, typeof i125.NgxTypedJsModule, typeof i126.DndModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.SegmentControlComponent, typeof i4.DialogComponent, typeof i5.DynamicTableComponent, typeof i6.DynamicCellTemplateDirective, typeof i6.DynamicHeaderTemplateDirective, typeof i7.DynamicCellContainerDirective, typeof i8.PaginationComponent, typeof i9.ActionMenuButtonComponent, typeof i10.OtherButtonComponent, typeof i11.DynamicFilterComponent, typeof i12.DaterangepickerDirective, typeof i13.DaterangepickerComponent, typeof i14.ColumnVisibilityComponent, typeof i15.TableActionToolbarComponent, typeof i16.MetricsCardComponent, typeof i18.ChartCardComponent, typeof i19.ProgressTextCardComponent, typeof i20.DashboardHeaderComponent, typeof i21.CoverageModuleCardComponent, typeof i22.TestDistributionCardComponent, typeof i23.FailedTestCasesCardComponent, typeof i24.DynamicSelectFieldComponent, typeof i25.AddPrerequisiteCasesSectionComponent, typeof i26.SelectedFiltersComponent, typeof i27.InsightCardComponent, typeof i28.BadgeComponent, typeof i29.DropdownButtonComponent, typeof i30.HeatErrorMapCellComponent, typeof i31.EmptyStateComponent, typeof i32.TableTemplateComponent, typeof i33.FullTableLoaderComponent, typeof i34.TableDataLoaderComponent, typeof i35.BasicStepComponent, typeof i36.StepRendererComponent, typeof i37.StepGroupComponent, typeof i38.LoopStepComponent, typeof i39.ConditionStepComponent, typeof i40.FailedStepComponent, typeof i41.UpdatedFailedStepComponent, typeof i42.ViewMoreFailedStepButtonComponent, typeof i43.SelfHealAnalysisComponent, typeof i44.AIAgentStepComponent, typeof i45.AIActionStepComponent, typeof i46.ApiStepComponent, typeof i47.FileDownloadStepComponent, typeof i48.DocumentVerificationStepComponent, typeof i49.LiveExecutionStepComponent, typeof i50.MainStepCollapseComponent, typeof i51.VisualComparisonComponent, typeof i52.SimulatorComponent, typeof i53.ConsoleAlertComponent, typeof i54.AiDebugAlertComponent, typeof i55.NetworkRequestComponent, typeof i56.RunHistoryCardComponent, typeof i57.VisualDifferenceModalComponent, typeof i58.ConfigurationCardComponent, typeof i59.CompareRunsComponent, typeof i60.IterationsLoopComponent, typeof i61.FailedStepCardComponent, typeof i62.CustomInputComponent, typeof i63.CustomTextareaComponent, typeof i64.CustomToggleComponent, typeof i65.FileUploadComponent, typeof i66.AiReasoningComponent, typeof i67.ExecutionResultModalComponent, typeof i68.ErrorModalComponent, typeof i69.ProgressIndicatorComponent, typeof i70.StepProgressCardComponent, typeof i71.StepStatusCardComponent, typeof i72.DbVerificationStepComponent, typeof i73.DbQueryExecutionItemComponent, typeof i74.TestCaseNormalStepComponent, typeof i75.TestCaseLoopStepComponent, typeof i76.TestCaseConditionStepComponent, typeof i77.TestCaseStepGroupComponent, typeof i78.TestCaseDetailsRendererComponent, typeof i79.TestCaseApiStepComponent, typeof i80.TestCaseDatabaseStepComponent, typeof i81.TestCaseAiAgentStepComponent, typeof i83.TestCaseUploadStepComponent, typeof i84.TestCaseScreenshotStepComponent, typeof i85.TestCaseScrollStepComponent, typeof i86.TestCaseVerifyUrlStepComponent, typeof i87.TestCaseRestoreSessionStepComponent, typeof i88.TestCaseCustomCodeStepComponent, typeof i89.CustomEditStepComponent, typeof i90.ItemListComponent, typeof i91.TestDataModalComponent, typeof i92.CreateStepGroupComponent, typeof i93.DeleteStepsComponent, typeof i94.LiveConversationComponent, typeof i95.StepBuilderActionComponent, typeof i96.StepBuilderLoopComponent, typeof i97.ElementPopupComponent, typeof i98.StepBuilderConditionComponent, typeof i99.StepBuilderDatabaseComponent, typeof i100.StepBuilderAiAgentComponent, typeof i101.StepBuilderCustomCodeComponent, typeof i102.StepBuilderRecordStepComponent, typeof i103.StepBuilderDocumentGenerationTemplateStepComponent, typeof i106.StepBuilderApiComponent, typeof i104.ElementListComponent, typeof i105.StepBuilderDocumentComponent, typeof i107.StepDetailsDrawerComponent]>;
132
133
  static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
133
134
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cqa-lib/cqa-ui",
3
- "version": "1.1.188",
3
+ "version": "1.1.189",
4
4
  "description": "UI Kit library for Angular 13.4",
5
5
  "keywords": [
6
6
  "angular",
package/public-api.d.ts CHANGED
@@ -99,6 +99,11 @@ export * from './lib/test-case-details/custom-edit-step/custom-edit-step.compone
99
99
  export * from './lib/test-case-details/custom-edit-step/custom-edit-step.service';
100
100
  export * from './lib/test-case-details/custom-edit-step/custom-edit-step-ref';
101
101
  export * from './lib/test-case-details/custom-edit-step/custom-edit-step-data';
102
+ export * from './lib/test-case-details/step-details-drawer/step-details-drawer.component';
103
+ export * from './lib/test-case-details/step-details-drawer/step-details-drawer.service';
104
+ export * from './lib/test-case-details/step-details-drawer/step-details-drawer-ref';
105
+ export * from './lib/test-case-details/step-details-drawer/step-details-drawer-data';
106
+ export * from './lib/test-case-details/step-details-drawer/step-details-drawer-field.config';
102
107
  export * from './lib/item-list/item-list.component';
103
108
  export * from './lib/item-list/item-list.model';
104
109
  export * from './lib/test-case-details/test-data-modal/test-data-modal.component';