@cqa-lib/cqa-ui 1.1.175 → 1.1.176

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 (29) hide show
  1. package/esm2020/lib/dynamic-select/dynamic-select-field.component.mjs +3 -3
  2. package/esm2020/lib/step-builder/step-builder-action/step-builder-action.component.mjs +29 -9
  3. package/esm2020/lib/step-builder/step-builder-condition/step-builder-condition.component.mjs +330 -0
  4. package/esm2020/lib/step-builder/step-builder-database/step-builder-database.component.mjs +205 -0
  5. package/esm2020/lib/test-case-details/custom-edit-step/custom-edit-step-data.mjs +5 -0
  6. package/esm2020/lib/test-case-details/custom-edit-step/custom-edit-step-ref.mjs +32 -0
  7. package/esm2020/lib/test-case-details/custom-edit-step/custom-edit-step.component.mjs +71 -0
  8. package/esm2020/lib/test-case-details/custom-edit-step/custom-edit-step.service.mjs +97 -0
  9. package/esm2020/lib/test-case-details/normal-step/normal-step.component.mjs +59 -9
  10. package/esm2020/lib/ui-kit.module.mjs +18 -3
  11. package/esm2020/lib/utils/tw-overlay-container.mjs +6 -3
  12. package/esm2020/public-api.mjs +7 -1
  13. package/fesm2015/cqa-lib-cqa-ui.mjs +814 -21
  14. package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
  15. package/fesm2020/cqa-lib-cqa-ui.mjs +802 -21
  16. package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
  17. package/lib/dynamic-select/dynamic-select-field.component.d.ts +1 -0
  18. package/lib/step-builder/step-builder-action/step-builder-action.component.d.ts +2 -1
  19. package/lib/step-builder/step-builder-condition/step-builder-condition.component.d.ts +61 -0
  20. package/lib/step-builder/step-builder-database/step-builder-database.component.d.ts +61 -0
  21. package/lib/test-case-details/custom-edit-step/custom-edit-step-data.d.ts +8 -0
  22. package/lib/test-case-details/custom-edit-step/custom-edit-step-ref.d.ts +13 -0
  23. package/lib/test-case-details/custom-edit-step/custom-edit-step.component.d.ts +25 -0
  24. package/lib/test-case-details/custom-edit-step/custom-edit-step.service.d.ts +23 -0
  25. package/lib/test-case-details/normal-step/normal-step.component.d.ts +9 -0
  26. package/lib/ui-kit.module.d.ts +26 -23
  27. package/package.json +1 -1
  28. package/public-api.d.ts +6 -0
  29. package/styles.css +1 -1
@@ -18,6 +18,7 @@ export interface DynamicSelectFieldConfig {
18
18
  key: string;
19
19
  label?: string;
20
20
  placeholder?: string;
21
+ displayLabelAsInnerHtml?: boolean;
21
22
  disabled?: boolean;
22
23
  multiple?: boolean;
23
24
  searchable?: boolean;
@@ -4,7 +4,7 @@ import { DynamicSelectFieldConfig } from '../../dynamic-select/dynamic-select-fi
4
4
  import * as i0 from "@angular/core";
5
5
  export interface VariableDefinition {
6
6
  path: string;
7
- default: string;
7
+ default: string | boolean;
8
8
  mutable: boolean;
9
9
  type?: string;
10
10
  options?: string[];
@@ -60,6 +60,7 @@ export declare class StepBuilderActionComponent implements OnInit, OnChanges {
60
60
  private buildVariablesForm;
61
61
  getSelectConfig(variable: any): DynamicSelectFieldConfig;
62
62
  onVariableValueChange(variableName: string, value: any): void;
63
+ onVariableBooleanChange(variableName: string, value: boolean): void;
63
64
  onBack(): void;
64
65
  onCancel(): void;
65
66
  onCreateStep(): void;
@@ -0,0 +1,61 @@
1
+ import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core';
2
+ import { FormArray, FormBuilder, FormGroup } from '@angular/forms';
3
+ import { DynamicSelectFieldConfig, SelectOption } from '../../dynamic-select/dynamic-select-field.component';
4
+ import { ActionTemplate } from '../step-builder-action/step-builder-action.component';
5
+ import * as i0 from "@angular/core";
6
+ export interface ConditionRow {
7
+ field: string;
8
+ operator: string;
9
+ value: ActionTemplate;
10
+ templateVariables?: any[];
11
+ description?: string;
12
+ metadata?: string;
13
+ }
14
+ export interface ConditionFormData {
15
+ conditions: ConditionRow[];
16
+ includeElse: boolean;
17
+ }
18
+ export declare class StepBuilderConditionComponent implements OnInit, OnChanges {
19
+ private fb;
20
+ /** Options for operator dropdown */
21
+ operatorOptions: SelectOption[];
22
+ /** List of action templates to display in value dropdown */
23
+ conditionTemplates: ActionTemplate[];
24
+ /** Function to handle variable processing or custom logic. Can be passed from parent component. */
25
+ setConditionTemplateVariables: (variables: ActionTemplate) => any;
26
+ /** Emit when step is created */
27
+ createStep: EventEmitter<ConditionFormData>;
28
+ /** Emit when cancelled */
29
+ cancelled: EventEmitter<void>;
30
+ conditionForm: FormGroup;
31
+ includeElse: boolean;
32
+ private valueConfigCache;
33
+ private selectedTemplates;
34
+ private conditionTemplateVariables;
35
+ private conditionVariablesForms;
36
+ constructor(fb: FormBuilder);
37
+ ngOnInit(): void;
38
+ ngOnChanges(changes: SimpleChanges): void;
39
+ get conditionsFormArray(): FormArray;
40
+ addCondition(conditionType: string): void;
41
+ removeCondition(index: number): void;
42
+ private reindexConditionData;
43
+ getOperatorConfig(index: number): DynamicSelectFieldConfig;
44
+ private updateValueConfigCache;
45
+ getValueConfig(index: number): DynamicSelectFieldConfig;
46
+ onTemplateValueChange(index: number, templateId: any): void;
47
+ private buildConditionVariablesForm;
48
+ getConditionTemplateVariables(index: number): any[];
49
+ getConditionVariablesForm(index: number): FormGroup;
50
+ getSelectedTemplate(index: number): ActionTemplate | null;
51
+ getSelectConfigForVariable(index: number, variable: any): DynamicSelectFieldConfig;
52
+ onConditionVariableValueChange(conditionIndex: number, variableName: string, value: any): void;
53
+ onConditionVariableInputChange(conditionIndex: number, variableName: string, value: any): void;
54
+ onConditionVariableBooleanChange(conditionIndex: number, variableName: string, value: boolean): void;
55
+ getConditionFormGroup(index: number): FormGroup;
56
+ onIncludeElseChange(checked: boolean): void;
57
+ onCancel(): void;
58
+ onCreateStep(): void;
59
+ static ɵfac: i0.ɵɵFactoryDeclaration<StepBuilderConditionComponent, never>;
60
+ static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderConditionComponent, "cqa-step-builder-condition", never, { "operatorOptions": "operatorOptions"; "conditionTemplates": "conditionTemplates"; "setConditionTemplateVariables": "setConditionTemplateVariables"; }, { "createStep": "createStep"; "cancelled": "cancelled"; }, never, never>;
61
+ }
@@ -0,0 +1,61 @@
1
+ import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core';
2
+ import { FormBuilder, FormGroup, FormArray } from '@angular/forms';
3
+ import { DynamicSelectFieldConfig, SelectOption } from '../../dynamic-select/dynamic-select-field.component';
4
+ import * as i0 from "@angular/core";
5
+ export interface DatabaseQuery {
6
+ id: string;
7
+ query: string;
8
+ variable: string;
9
+ status?: 'passed' | 'failed' | 'pending';
10
+ }
11
+ export interface DatabaseFormData {
12
+ dbEnvironment: string;
13
+ queries: DatabaseQuery[];
14
+ }
15
+ export declare class StepBuilderDatabaseComponent implements OnInit, OnChanges {
16
+ private fb;
17
+ /** Options for DB environment dropdown */
18
+ dbEnvironmentOptions: SelectOption[];
19
+ /** Initial queries list */
20
+ queries: DatabaseQuery[];
21
+ /** Query results data */
22
+ queryResults: any[];
23
+ /** Loading state */
24
+ isLoading: boolean;
25
+ /** Emit when step is created */
26
+ createStep: EventEmitter<DatabaseFormData>;
27
+ /** Emit when cancelled */
28
+ cancelled: EventEmitter<void>;
29
+ /** Emit when query is run */
30
+ runQuery: EventEmitter<{
31
+ query: string;
32
+ variable: string;
33
+ dbEnvironment: string;
34
+ }>;
35
+ /** Emit when query is added */
36
+ addQuery: EventEmitter<void>;
37
+ /** Emit when query is deleted */
38
+ deleteQuery: EventEmitter<string>;
39
+ databaseForm: FormGroup;
40
+ selectedTab: 'output' | 'verification';
41
+ selectedQueryIndex: number;
42
+ constructor(fb: FormBuilder);
43
+ ngOnInit(): void;
44
+ ngOnChanges(changes: SimpleChanges): void;
45
+ get queriesFormArray(): FormArray;
46
+ addNewQuery(): void;
47
+ private addQueryToForm;
48
+ deleteQueryById(queryId: string): void;
49
+ getDbEnvironmentConfig(): DynamicSelectFieldConfig;
50
+ getCurrentQuery(): DatabaseQuery | null;
51
+ getCurrentQueryFormGroup(): FormGroup | null;
52
+ onRunQuery(): void;
53
+ onSelectQuery(index: number): void;
54
+ onTabChange(tab: 'output' | 'verification'): void;
55
+ onCopyResults(): void;
56
+ onCancel(): void;
57
+ onCreateStep(): void;
58
+ getTableColumns(): string[];
59
+ static ɵfac: i0.ɵɵFactoryDeclaration<StepBuilderDatabaseComponent, never>;
60
+ static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderDatabaseComponent, "cqa-step-builder-database", never, { "dbEnvironmentOptions": "dbEnvironmentOptions"; "queries": "queries"; "queryResults": "queryResults"; "isLoading": "isLoading"; }, { "createStep": "createStep"; "cancelled": "cancelled"; "runQuery": "runQuery"; "addQuery": "addQuery"; "deleteQuery": "deleteQuery"; }, never, never>;
61
+ }
@@ -0,0 +1,8 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ export interface CustomEditStepData {
3
+ description: string;
4
+ helpUrl?: string;
5
+ }
6
+ /** Sentinel returned from afterClosed() when user clicked "Edit in depth". */
7
+ export declare const CUSTOM_EDIT_STEP_EDIT_IN_DEPTH: unique symbol;
8
+ export declare const CUSTOM_EDIT_STEP_DATA: InjectionToken<CustomEditStepData>;
@@ -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 CustomEditStepRef<TResult = string | undefined> {
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 CUSTOM_EDIT_STEP_REF: InjectionToken<CustomEditStepRef<string>>;
@@ -0,0 +1,25 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { CustomEditStepData } from './custom-edit-step-data';
3
+ import { CustomEditStepRef } from './../custom-edit-step/custom-edit-step-ref';
4
+ import * as i0 from "@angular/core";
5
+ export declare class CustomEditStepComponent {
6
+ private ref;
7
+ apply: EventEmitter<string>;
8
+ cancel: EventEmitter<void>;
9
+ editInDepth: EventEmitter<void>;
10
+ /** Local value while editing (for two-way binding in textarea) */
11
+ value: string;
12
+ helpUrl: string;
13
+ /** Tooltip shown when hovering over the "Need help ?" icon and text */
14
+ helpTooltipText: string;
15
+ /** Whether the help tooltip is visible (custom tooltip for use inside overlay) */
16
+ showHelpTooltip: boolean;
17
+ constructor(ref: CustomEditStepRef, data?: CustomEditStepData);
18
+ onApply(): void;
19
+ onCancel(): void;
20
+ onClose(): void;
21
+ onEditInDepth(event: Event): void;
22
+ onHelp(event: Event): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomEditStepComponent, [null, { optional: true; }]>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomEditStepComponent, "cqa-custom-edit-step", never, {}, { "apply": "apply"; "cancel": "cancel"; "editInDepth": "editInDepth"; }, never, never>;
25
+ }
@@ -0,0 +1,23 @@
1
+ import { ElementRef, Injector } from '@angular/core';
2
+ import { Overlay } from '@angular/cdk/overlay';
3
+ import { CustomEditStepRef } from './custom-edit-step-ref';
4
+ import { CUSTOM_EDIT_STEP_EDIT_IN_DEPTH, CustomEditStepData } from './custom-edit-step-data';
5
+ import * as i0 from "@angular/core";
6
+ export declare type CustomEditStepResult = string | undefined | typeof CUSTOM_EDIT_STEP_EDIT_IN_DEPTH;
7
+ export declare class CustomEditStepService {
8
+ private readonly overlay;
9
+ private readonly injector;
10
+ /** Currently open Step Description overlay ref; only one panel is allowed at a time. */
11
+ private currentRef;
12
+ constructor(overlay: Overlay, injector: Injector);
13
+ /**
14
+ * Opens the Step Description modal positioned just below the given origin element.
15
+ * If a panel is already open, returns the existing ref and does not open a duplicate.
16
+ * @param origin Element (e.g. description span or edit icon) to position below
17
+ * @param data Initial description and optional help URL
18
+ * @returns Ref with afterClosed() and close(); afterClosed emits the new description on Apply, undefined on Cancel, or EDIT_IN_DEPTH symbol when user clicks "Edit in depth"
19
+ */
20
+ open(origin: ElementRef<HTMLElement>, data: CustomEditStepData): CustomEditStepRef<CustomEditStepResult>;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomEditStepService, never>;
22
+ static ɵprov: i0.ɵɵInjectableDeclaration<CustomEditStepService>;
23
+ }
@@ -1,8 +1,12 @@
1
1
  import { EventEmitter, OnInit, ElementRef } from '@angular/core';
2
2
  import { NormalStepConfig, TestCaseEventType, EventTypeConfig, StepParameter } from '../test-case-step.models';
3
+ import { CustomEditStepService } from '../custom-edit-step/custom-edit-step.service';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class TestCaseNormalStepComponent implements OnInit {
6
+ private readonly customEditStep;
5
7
  dropdownContainer?: ElementRef;
8
+ descriptionTrigger?: ElementRef<HTMLElement>;
9
+ editTrigger?: ElementRef<HTMLElement>;
6
10
  config: NormalStepConfig;
7
11
  stepNumber: number | string;
8
12
  eventType: TestCaseEventType;
@@ -24,16 +28,21 @@ export declare class TestCaseNormalStepComponent implements OnInit {
24
28
  moreOptions: EventEmitter<void>;
25
29
  selectionChange: EventEmitter<boolean>;
26
30
  eventTypeDropdownOpen: boolean;
31
+ constructor(customEditStep: CustomEditStepService);
27
32
  eventTypeConfigs: EventTypeConfig[];
28
33
  ngOnInit(): void;
29
34
  getCurrentEventTypeConfig(): EventTypeConfig;
30
35
  getActionDescription(): string;
31
36
  getActionSuffix(): string;
37
+ /** Current description for custom event type (first parameter value). */
38
+ getCustomDescription(): string;
32
39
  /**
33
40
  * Get the URL parameter for navigate steps (old UI style - show only URL)
34
41
  * Returns the first parameter with name 'url' or 'URL', or the first parameter if none found
35
42
  */
36
43
  getNavigateUrlParameter(): StepParameter | null;
44
+ /** Opens Step Description modal below the given trigger; used when eventType === 'custom'. */
45
+ openStepDescriptionModal(origin: ElementRef<HTMLElement> | HTMLElement | MouseEvent): void;
37
46
  onEventTypeSelect(eventType: TestCaseEventType): void;
38
47
  onParameterChange(parameter: StepParameter, value: string): void;
39
48
  onEdit(): void;
@@ -85,31 +85,34 @@ import * as i82 from "./test-case-details/scroll-step/scroll-step.component";
85
85
  import * as i83 from "./test-case-details/verify-url-step/verify-url-step.component";
86
86
  import * as i84 from "./test-case-details/restore-session-step/restore-session-step.component";
87
87
  import * as i85 from "./test-case-details/custom-code-step/custom-code-step.component";
88
- import * as i86 from "./live-conversation/live-conversation.component";
89
- import * as i87 from "./step-builder/step-builder-action/step-builder-action.component";
90
- import * as i88 from "./step-builder/step-builder-loop/step-builder-loop.component";
91
- import * as i89 from "@angular/common";
92
- import * as i90 from "@angular/forms";
93
- import * as i91 from "@angular/material/icon";
94
- import * as i92 from "@angular/material/menu";
95
- import * as i93 from "@angular/material/button";
96
- import * as i94 from "@angular/material/form-field";
97
- import * as i95 from "@angular/material/select";
98
- import * as i96 from "@angular/material/core";
99
- import * as i97 from "@angular/material/checkbox";
100
- import * as i98 from "@angular/material/radio";
101
- import * as i99 from "@angular/material/slide-toggle";
102
- import * as i100 from "@angular/material/datepicker";
103
- import * as i101 from "@angular/material/progress-spinner";
104
- import * as i102 from "@angular/material/tooltip";
105
- import * as i103 from "@angular/material/dialog";
106
- import * as i104 from "@angular/cdk/overlay";
107
- import * as i105 from "@angular/cdk/portal";
108
- import * as i106 from "ngx-typed-js";
109
- import * as i107 from "ngx-drag-drop";
88
+ import * as i86 from "./test-case-details/custom-edit-step/custom-edit-step.component";
89
+ import * as i87 from "./live-conversation/live-conversation.component";
90
+ import * as i88 from "./step-builder/step-builder-action/step-builder-action.component";
91
+ import * as i89 from "./step-builder/step-builder-loop/step-builder-loop.component";
92
+ import * as i90 from "./step-builder/step-builder-condition/step-builder-condition.component";
93
+ import * as i91 from "./step-builder/step-builder-database/step-builder-database.component";
94
+ import * as i92 from "@angular/common";
95
+ import * as i93 from "@angular/forms";
96
+ import * as i94 from "@angular/material/icon";
97
+ import * as i95 from "@angular/material/menu";
98
+ import * as i96 from "@angular/material/button";
99
+ import * as i97 from "@angular/material/form-field";
100
+ import * as i98 from "@angular/material/select";
101
+ import * as i99 from "@angular/material/core";
102
+ import * as i100 from "@angular/material/checkbox";
103
+ import * as i101 from "@angular/material/radio";
104
+ import * as i102 from "@angular/material/slide-toggle";
105
+ import * as i103 from "@angular/material/datepicker";
106
+ import * as i104 from "@angular/material/progress-spinner";
107
+ import * as i105 from "@angular/material/tooltip";
108
+ import * as i106 from "@angular/material/dialog";
109
+ import * as i107 from "@angular/cdk/overlay";
110
+ import * as i108 from "@angular/cdk/portal";
111
+ import * as i109 from "ngx-typed-js";
112
+ import * as i110 from "ngx-drag-drop";
110
113
  export declare class UiKitModule {
111
114
  constructor(iconRegistry: MatIconRegistry);
112
115
  static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
113
- 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.SelectedFiltersComponent, typeof i26.InsightCardComponent, typeof i27.BadgeComponent, typeof i28.DropdownButtonComponent, typeof i29.HeatErrorMapCellComponent, typeof i30.EmptyStateComponent, typeof i31.TableTemplateComponent, typeof i32.FullTableLoaderComponent, typeof i33.TableDataLoaderComponent, typeof i34.BasicStepComponent, typeof i35.StepRendererComponent, typeof i36.StepGroupComponent, typeof i37.LoopStepComponent, typeof i38.ConditionStepComponent, typeof i39.FailedStepComponent, typeof i40.UpdatedFailedStepComponent, typeof i41.ViewMoreFailedStepButtonComponent, typeof i42.SelfHealAnalysisComponent, typeof i43.AIAgentStepComponent, typeof i44.AIActionStepComponent, typeof i45.ApiStepComponent, typeof i46.FileDownloadStepComponent, typeof i47.DocumentVerificationStepComponent, typeof i48.LiveExecutionStepComponent, typeof i49.MainStepCollapseComponent, typeof i50.VisualComparisonComponent, typeof i51.SimulatorComponent, typeof i52.ConsoleAlertComponent, typeof i53.AiDebugAlertComponent, typeof i54.NetworkRequestComponent, typeof i55.RunHistoryCardComponent, typeof i56.VisualDifferenceModalComponent, typeof i57.ConfigurationCardComponent, typeof i58.CompareRunsComponent, typeof i59.IterationsLoopComponent, typeof i60.FailedStepCardComponent, typeof i61.CustomInputComponent, typeof i62.CustomTextareaComponent, typeof i63.AiReasoningComponent, typeof i64.ExecutionResultModalComponent, typeof i65.ErrorModalComponent, typeof i66.ProgressIndicatorComponent, typeof i67.StepProgressCardComponent, typeof i68.StepStatusCardComponent, typeof i69.DbVerificationStepComponent, typeof i70.DbQueryExecutionItemComponent, typeof i71.TestCaseNormalStepComponent, typeof i72.TestCaseLoopStepComponent, typeof i73.TestCaseConditionStepComponent, typeof i74.TestCaseStepGroupComponent, typeof i75.TestCaseDetailsRendererComponent, typeof i76.TestCaseApiStepComponent, typeof i77.TestCaseDatabaseStepComponent, typeof i78.TestCaseAiAgentStepComponent, typeof i79.TestCaseAiVerifyStepComponent, typeof i80.TestCaseUploadStepComponent, typeof i81.TestCaseScreenshotStepComponent, typeof i82.TestCaseScrollStepComponent, typeof i83.TestCaseVerifyUrlStepComponent, typeof i84.TestCaseRestoreSessionStepComponent, typeof i85.TestCaseCustomCodeStepComponent, typeof i86.LiveConversationComponent, typeof i87.StepBuilderActionComponent, typeof i88.StepBuilderLoopComponent], [typeof i89.CommonModule, typeof i90.FormsModule, typeof i90.ReactiveFormsModule, typeof i91.MatIconModule, typeof i92.MatMenuModule, typeof i93.MatButtonModule, typeof i94.MatFormFieldModule, typeof i95.MatSelectModule, typeof i96.MatOptionModule, typeof i97.MatCheckboxModule, typeof i98.MatRadioModule, typeof i99.MatSlideToggleModule, typeof i100.MatDatepickerModule, typeof i96.MatNativeDateModule, typeof i101.MatProgressSpinnerModule, typeof i102.MatTooltipModule, typeof i103.MatDialogModule, typeof i104.OverlayModule, typeof i105.PortalModule, typeof i106.NgxTypedJsModule, typeof i107.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.SelectedFiltersComponent, typeof i26.InsightCardComponent, typeof i27.BadgeComponent, typeof i28.DropdownButtonComponent, typeof i29.HeatErrorMapCellComponent, typeof i30.EmptyStateComponent, typeof i31.TableTemplateComponent, typeof i32.FullTableLoaderComponent, typeof i33.TableDataLoaderComponent, typeof i34.BasicStepComponent, typeof i35.StepRendererComponent, typeof i36.StepGroupComponent, typeof i37.LoopStepComponent, typeof i38.ConditionStepComponent, typeof i39.FailedStepComponent, typeof i40.UpdatedFailedStepComponent, typeof i41.ViewMoreFailedStepButtonComponent, typeof i42.SelfHealAnalysisComponent, typeof i43.AIAgentStepComponent, typeof i44.AIActionStepComponent, typeof i45.ApiStepComponent, typeof i46.FileDownloadStepComponent, typeof i47.DocumentVerificationStepComponent, typeof i48.LiveExecutionStepComponent, typeof i49.MainStepCollapseComponent, typeof i50.VisualComparisonComponent, typeof i51.SimulatorComponent, typeof i52.ConsoleAlertComponent, typeof i53.AiDebugAlertComponent, typeof i54.NetworkRequestComponent, typeof i55.RunHistoryCardComponent, typeof i56.VisualDifferenceModalComponent, typeof i57.ConfigurationCardComponent, typeof i58.CompareRunsComponent, typeof i59.IterationsLoopComponent, typeof i60.FailedStepCardComponent, typeof i61.CustomInputComponent, typeof i62.CustomTextareaComponent, typeof i63.AiReasoningComponent, typeof i64.ExecutionResultModalComponent, typeof i65.ErrorModalComponent, typeof i66.ProgressIndicatorComponent, typeof i67.StepProgressCardComponent, typeof i68.StepStatusCardComponent, typeof i69.DbVerificationStepComponent, typeof i70.DbQueryExecutionItemComponent, typeof i71.TestCaseNormalStepComponent, typeof i72.TestCaseLoopStepComponent, typeof i73.TestCaseConditionStepComponent, typeof i74.TestCaseStepGroupComponent, typeof i75.TestCaseDetailsRendererComponent, typeof i76.TestCaseApiStepComponent, typeof i77.TestCaseDatabaseStepComponent, typeof i78.TestCaseAiAgentStepComponent, typeof i80.TestCaseUploadStepComponent, typeof i81.TestCaseScreenshotStepComponent, typeof i82.TestCaseScrollStepComponent, typeof i83.TestCaseVerifyUrlStepComponent, typeof i84.TestCaseRestoreSessionStepComponent, typeof i85.TestCaseCustomCodeStepComponent, typeof i86.LiveConversationComponent, typeof i87.StepBuilderActionComponent, typeof i88.StepBuilderLoopComponent]>;
116
+ 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.SelectedFiltersComponent, typeof i26.InsightCardComponent, typeof i27.BadgeComponent, typeof i28.DropdownButtonComponent, typeof i29.HeatErrorMapCellComponent, typeof i30.EmptyStateComponent, typeof i31.TableTemplateComponent, typeof i32.FullTableLoaderComponent, typeof i33.TableDataLoaderComponent, typeof i34.BasicStepComponent, typeof i35.StepRendererComponent, typeof i36.StepGroupComponent, typeof i37.LoopStepComponent, typeof i38.ConditionStepComponent, typeof i39.FailedStepComponent, typeof i40.UpdatedFailedStepComponent, typeof i41.ViewMoreFailedStepButtonComponent, typeof i42.SelfHealAnalysisComponent, typeof i43.AIAgentStepComponent, typeof i44.AIActionStepComponent, typeof i45.ApiStepComponent, typeof i46.FileDownloadStepComponent, typeof i47.DocumentVerificationStepComponent, typeof i48.LiveExecutionStepComponent, typeof i49.MainStepCollapseComponent, typeof i50.VisualComparisonComponent, typeof i51.SimulatorComponent, typeof i52.ConsoleAlertComponent, typeof i53.AiDebugAlertComponent, typeof i54.NetworkRequestComponent, typeof i55.RunHistoryCardComponent, typeof i56.VisualDifferenceModalComponent, typeof i57.ConfigurationCardComponent, typeof i58.CompareRunsComponent, typeof i59.IterationsLoopComponent, typeof i60.FailedStepCardComponent, typeof i61.CustomInputComponent, typeof i62.CustomTextareaComponent, typeof i63.AiReasoningComponent, typeof i64.ExecutionResultModalComponent, typeof i65.ErrorModalComponent, typeof i66.ProgressIndicatorComponent, typeof i67.StepProgressCardComponent, typeof i68.StepStatusCardComponent, typeof i69.DbVerificationStepComponent, typeof i70.DbQueryExecutionItemComponent, typeof i71.TestCaseNormalStepComponent, typeof i72.TestCaseLoopStepComponent, typeof i73.TestCaseConditionStepComponent, typeof i74.TestCaseStepGroupComponent, typeof i75.TestCaseDetailsRendererComponent, typeof i76.TestCaseApiStepComponent, typeof i77.TestCaseDatabaseStepComponent, typeof i78.TestCaseAiAgentStepComponent, typeof i79.TestCaseAiVerifyStepComponent, typeof i80.TestCaseUploadStepComponent, typeof i81.TestCaseScreenshotStepComponent, typeof i82.TestCaseScrollStepComponent, typeof i83.TestCaseVerifyUrlStepComponent, typeof i84.TestCaseRestoreSessionStepComponent, typeof i85.TestCaseCustomCodeStepComponent, typeof i86.CustomEditStepComponent, typeof i87.LiveConversationComponent, typeof i88.StepBuilderActionComponent, typeof i89.StepBuilderLoopComponent, typeof i90.StepBuilderConditionComponent, typeof i91.StepBuilderDatabaseComponent], [typeof i92.CommonModule, typeof i93.FormsModule, typeof i93.ReactiveFormsModule, typeof i94.MatIconModule, typeof i95.MatMenuModule, typeof i96.MatButtonModule, typeof i97.MatFormFieldModule, typeof i98.MatSelectModule, typeof i99.MatOptionModule, typeof i100.MatCheckboxModule, typeof i101.MatRadioModule, typeof i102.MatSlideToggleModule, typeof i103.MatDatepickerModule, typeof i99.MatNativeDateModule, typeof i104.MatProgressSpinnerModule, typeof i105.MatTooltipModule, typeof i106.MatDialogModule, typeof i107.OverlayModule, typeof i108.PortalModule, typeof i109.NgxTypedJsModule, typeof i110.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.SelectedFiltersComponent, typeof i26.InsightCardComponent, typeof i27.BadgeComponent, typeof i28.DropdownButtonComponent, typeof i29.HeatErrorMapCellComponent, typeof i30.EmptyStateComponent, typeof i31.TableTemplateComponent, typeof i32.FullTableLoaderComponent, typeof i33.TableDataLoaderComponent, typeof i34.BasicStepComponent, typeof i35.StepRendererComponent, typeof i36.StepGroupComponent, typeof i37.LoopStepComponent, typeof i38.ConditionStepComponent, typeof i39.FailedStepComponent, typeof i40.UpdatedFailedStepComponent, typeof i41.ViewMoreFailedStepButtonComponent, typeof i42.SelfHealAnalysisComponent, typeof i43.AIAgentStepComponent, typeof i44.AIActionStepComponent, typeof i45.ApiStepComponent, typeof i46.FileDownloadStepComponent, typeof i47.DocumentVerificationStepComponent, typeof i48.LiveExecutionStepComponent, typeof i49.MainStepCollapseComponent, typeof i50.VisualComparisonComponent, typeof i51.SimulatorComponent, typeof i52.ConsoleAlertComponent, typeof i53.AiDebugAlertComponent, typeof i54.NetworkRequestComponent, typeof i55.RunHistoryCardComponent, typeof i56.VisualDifferenceModalComponent, typeof i57.ConfigurationCardComponent, typeof i58.CompareRunsComponent, typeof i59.IterationsLoopComponent, typeof i60.FailedStepCardComponent, typeof i61.CustomInputComponent, typeof i62.CustomTextareaComponent, typeof i63.AiReasoningComponent, typeof i64.ExecutionResultModalComponent, typeof i65.ErrorModalComponent, typeof i66.ProgressIndicatorComponent, typeof i67.StepProgressCardComponent, typeof i68.StepStatusCardComponent, typeof i69.DbVerificationStepComponent, typeof i70.DbQueryExecutionItemComponent, typeof i71.TestCaseNormalStepComponent, typeof i72.TestCaseLoopStepComponent, typeof i73.TestCaseConditionStepComponent, typeof i74.TestCaseStepGroupComponent, typeof i75.TestCaseDetailsRendererComponent, typeof i76.TestCaseApiStepComponent, typeof i77.TestCaseDatabaseStepComponent, typeof i78.TestCaseAiAgentStepComponent, typeof i80.TestCaseUploadStepComponent, typeof i81.TestCaseScreenshotStepComponent, typeof i82.TestCaseScrollStepComponent, typeof i83.TestCaseVerifyUrlStepComponent, typeof i84.TestCaseRestoreSessionStepComponent, typeof i85.TestCaseCustomCodeStepComponent, typeof i86.CustomEditStepComponent, typeof i87.LiveConversationComponent, typeof i88.StepBuilderActionComponent, typeof i89.StepBuilderLoopComponent, typeof i90.StepBuilderConditionComponent, typeof i91.StepBuilderDatabaseComponent]>;
114
117
  static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
115
118
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cqa-lib/cqa-ui",
3
- "version": "1.1.175",
3
+ "version": "1.1.176",
4
4
  "description": "UI Kit library for Angular 13.4",
5
5
  "keywords": [
6
6
  "angular",
package/public-api.d.ts CHANGED
@@ -93,7 +93,13 @@ export * from './lib/test-case-details/scroll-step/scroll-step.component';
93
93
  export * from './lib/test-case-details/verify-url-step/verify-url-step.component';
94
94
  export * from './lib/test-case-details/restore-session-step/restore-session-step.component';
95
95
  export * from './lib/test-case-details/custom-code-step/custom-code-step.component';
96
+ export * from './lib/test-case-details/custom-edit-step/custom-edit-step.component';
97
+ export * from './lib/test-case-details/custom-edit-step/custom-edit-step.service';
98
+ export * from './lib/test-case-details/custom-edit-step/custom-edit-step-ref';
99
+ export * from './lib/test-case-details/custom-edit-step/custom-edit-step-data';
96
100
  export * from './lib/test-case-details/test-case-step.models';
97
101
  export * from './lib/live-conversation/live-conversation.component';
98
102
  export * from './lib/step-builder/step-builder-action/step-builder-action.component';
99
103
  export * from './lib/step-builder/step-builder-loop/step-builder-loop.component';
104
+ export * from './lib/step-builder/step-builder-condition/step-builder-condition.component';
105
+ export * from './lib/step-builder/step-builder-database/step-builder-database.component';