@cqa-lib/cqa-ui 1.1.158 → 1.1.160

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 (43) hide show
  1. package/esm2020/lib/step-builder/step-builder-action/step-builder-action.component.mjs +119 -0
  2. package/esm2020/lib/table-action-toolbar/table-action-toolbar.component.mjs +27 -3
  3. package/esm2020/lib/templates/table-template.component.mjs +1 -1
  4. package/esm2020/lib/test-case-details/ai-agent-step/ai-agent-step.component.mjs +73 -0
  5. package/esm2020/lib/test-case-details/api-step/api-step.component.mjs +107 -0
  6. package/esm2020/lib/test-case-details/condition-step/condition-step.component.mjs +292 -0
  7. package/esm2020/lib/test-case-details/custom-code-step/custom-code-step.component.mjs +84 -0
  8. package/esm2020/lib/test-case-details/database-step/database-step.component.mjs +95 -0
  9. package/esm2020/lib/test-case-details/loop-step/loop-step.component.mjs +328 -0
  10. package/esm2020/lib/test-case-details/normal-step/normal-step.component.mjs +202 -0
  11. package/esm2020/lib/test-case-details/screenshot-step/screenshot-step.component.mjs +87 -0
  12. package/esm2020/lib/test-case-details/step-group/step-group.component.mjs +247 -0
  13. package/esm2020/lib/test-case-details/step-row-actions.styles.mjs +15 -0
  14. package/esm2020/lib/test-case-details/test-case-details-renderer/test-case-details-renderer.component.mjs +224 -0
  15. package/esm2020/lib/test-case-details/test-case-step-components.token.mjs +3 -0
  16. package/esm2020/lib/test-case-details/test-case-step.models.mjs +51 -0
  17. package/esm2020/lib/test-case-details/upload-step/upload-step.component.mjs +85 -0
  18. package/esm2020/lib/ui-kit.module.mjs +96 -5
  19. package/esm2020/public-api.mjs +14 -1
  20. package/fesm2015/cqa-lib-cqa-ui.mjs +2265 -208
  21. package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
  22. package/fesm2020/cqa-lib-cqa-ui.mjs +2252 -208
  23. package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
  24. package/lib/step-builder/step-builder-action/step-builder-action.component.d.ts +59 -0
  25. package/lib/table-action-toolbar/table-action-toolbar.component.d.ts +11 -1
  26. package/lib/test-case-details/ai-agent-step/ai-agent-step.component.d.ts +30 -0
  27. package/lib/test-case-details/api-step/api-step.component.d.ts +42 -0
  28. package/lib/test-case-details/condition-step/condition-step.component.d.ts +87 -0
  29. package/lib/test-case-details/custom-code-step/custom-code-step.component.d.ts +33 -0
  30. package/lib/test-case-details/database-step/database-step.component.d.ts +41 -0
  31. package/lib/test-case-details/loop-step/loop-step.component.d.ts +96 -0
  32. package/lib/test-case-details/normal-step/normal-step.component.d.ts +44 -0
  33. package/lib/test-case-details/screenshot-step/screenshot-step.component.d.ts +33 -0
  34. package/lib/test-case-details/step-group/step-group.component.d.ts +70 -0
  35. package/lib/test-case-details/step-row-actions.styles.d.ts +6 -0
  36. package/lib/test-case-details/test-case-details-renderer/test-case-details-renderer.component.d.ts +67 -0
  37. package/lib/test-case-details/test-case-step-components.token.d.ts +15 -0
  38. package/lib/test-case-details/test-case-step.models.d.ts +133 -0
  39. package/lib/test-case-details/upload-step/upload-step.component.d.ts +33 -0
  40. package/lib/ui-kit.module.d.ts +31 -19
  41. package/package.json +1 -1
  42. package/public-api.d.ts +13 -0
  43. package/styles.css +1 -1
@@ -0,0 +1,15 @@
1
+ import { InjectionToken, Type } from '@angular/core';
2
+ /** Map of step type key to component type. Used by test-case-details-renderer to avoid circular deps. */
3
+ export interface TestCaseStepComponentMap {
4
+ stepGroup: Type<unknown>;
5
+ conditionStep: Type<unknown>;
6
+ loopStep: Type<unknown>;
7
+ normalStep: Type<unknown>;
8
+ apiStep: Type<unknown>;
9
+ databaseStep: Type<unknown>;
10
+ aiAgentStep: Type<unknown>;
11
+ uploadStep: Type<unknown>;
12
+ screenshotStep: Type<unknown>;
13
+ customCodeStep: Type<unknown>;
14
+ }
15
+ export declare const TEST_CASE_STEP_COMPONENT_MAP: InjectionToken<TestCaseStepComponentMap>;
@@ -0,0 +1,133 @@
1
+ /**
2
+ * Models and interfaces for test case details step components
3
+ */
4
+ export declare type TestCaseEventType = 'navigate' | 'custom' | 'ai-agent' | 'type' | 'click' | 'verify' | 'wait';
5
+ export declare enum StepTypes {
6
+ NORMAL = "NORMAL",
7
+ API = "API",
8
+ DATABASE = "DATABASE",
9
+ AI_AGENT = "AI_AGENT",
10
+ UPLOAD = "UPLOAD",
11
+ SCREENSHOT = "SCREENSHOT",
12
+ CUSTOM_CODE = "CUSTOM_CODE",
13
+ FOR_LOOP = "FOR_LOOP",
14
+ WHILE_LOOP = "WHILE_LOOP",
15
+ BREAK_LOOP = "BREAK_LOOP",
16
+ CONTINUE_LOOP = "CONTINUE_LOOP",
17
+ CONDITION_IF = "CONDITION_IF",
18
+ STEP_GROUP = "STEP_GROUP"
19
+ }
20
+ export interface EventTypeConfig {
21
+ type: TestCaseEventType;
22
+ label: string;
23
+ icon?: string;
24
+ color: string;
25
+ backgroundColor: string;
26
+ }
27
+ export interface StepParameter {
28
+ name: string;
29
+ value: string;
30
+ displayValue?: string;
31
+ }
32
+ /** Base interface containing common properties for all step configurations */
33
+ export interface BaseStepConfig {
34
+ id: string;
35
+ stepNumber: number | string;
36
+ stepType: StepTypes;
37
+ description?: string;
38
+ selected?: boolean;
39
+ disabled?: boolean;
40
+ expanded?: boolean;
41
+ }
42
+ export interface NormalStepConfig extends BaseStepConfig {
43
+ stepType: StepTypes.NORMAL;
44
+ eventType: TestCaseEventType;
45
+ parameters: StepParameter[];
46
+ }
47
+ /** API Step Configuration */
48
+ export interface ApiStepConfig extends BaseStepConfig {
49
+ stepType: StepTypes.API;
50
+ method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
51
+ endpoint: string;
52
+ baseUrl?: string;
53
+ requestBody?: string;
54
+ headers?: Record<string, string>;
55
+ headersCount?: number;
56
+ hasBody?: boolean;
57
+ saveTo?: string;
58
+ expectedStatus?: number;
59
+ }
60
+ /** Database Step Configuration */
61
+ export interface DatabaseStepConfig extends BaseStepConfig {
62
+ stepType: StepTypes.DATABASE;
63
+ query: string;
64
+ databaseType?: 'mysql' | 'postgresql' | 'mongodb' | 'mssql' | 'oracle';
65
+ connectionName?: string;
66
+ saveTo?: string;
67
+ }
68
+ /** AI Agent Step Configuration */
69
+ export interface AiAgentStepConfig extends BaseStepConfig {
70
+ stepType: StepTypes.AI_AGENT;
71
+ instructions: string;
72
+ }
73
+ /** Upload Step Configuration */
74
+ export interface UploadStepConfig extends BaseStepConfig {
75
+ stepType: StepTypes.UPLOAD;
76
+ selector: string;
77
+ fileName: string;
78
+ source: 'Data Library' | 'Local' | 'URL';
79
+ sourcePath: string;
80
+ }
81
+ /** Screenshot Step Configuration */
82
+ export interface ScreenshotStepConfig extends BaseStepConfig {
83
+ stepType: StepTypes.SCREENSHOT;
84
+ name?: string;
85
+ fullPage?: boolean;
86
+ selector?: string;
87
+ }
88
+ /** Custom Code Step Configuration */
89
+ export interface CustomCodeStepConfig extends BaseStepConfig {
90
+ stepType: StepTypes.CUSTOM_CODE;
91
+ language: 'javascript' | 'python' | 'typescript';
92
+ code: string;
93
+ }
94
+ export interface LoopStepConfig extends BaseStepConfig {
95
+ loopType: 'for' | 'while';
96
+ stepType: StepTypes.FOR_LOOP | StepTypes.WHILE_LOOP;
97
+ condition?: string;
98
+ maxIterations?: number;
99
+ testDataProfile?: string;
100
+ startStep?: number;
101
+ endStep?: number;
102
+ nestedSteps: TestCaseStepConfig[];
103
+ }
104
+ export interface ConditionBranch {
105
+ type: 'if' | 'else' | 'else-if';
106
+ stepType: StepTypes.CONDITION_IF;
107
+ label: string;
108
+ nestedSteps: TestCaseStepConfig[];
109
+ }
110
+ export interface ConditionStepConfig extends BaseStepConfig {
111
+ condition: string;
112
+ branches: ConditionBranch[];
113
+ nestedSteps: TestCaseStepConfig[];
114
+ }
115
+ export interface StepGroupConfig extends BaseStepConfig {
116
+ stepGroupId: number;
117
+ groupName: string;
118
+ reusable?: boolean;
119
+ stepType: StepTypes.STEP_GROUP;
120
+ nestedSteps: TestCaseStepConfig[];
121
+ }
122
+ export declare type TestCaseStepConfig = NormalStepConfig | LoopStepConfig | ConditionStepConfig | StepGroupConfig | ApiStepConfig | DatabaseStepConfig | AiAgentStepConfig | UploadStepConfig | ScreenshotStepConfig | CustomCodeStepConfig;
123
+ /** Type guards for dispatching step type (e.g. in test-case-details-renderer) */
124
+ export declare function isNormalStepConfig(step: TestCaseStepConfig): step is NormalStepConfig;
125
+ export declare function isLoopStepConfig(step: TestCaseStepConfig): step is LoopStepConfig;
126
+ export declare function isConditionStepConfig(step: TestCaseStepConfig): step is ConditionStepConfig;
127
+ export declare function isStepGroupConfig(step: TestCaseStepConfig): step is StepGroupConfig;
128
+ export declare function isApiStepConfig(step: TestCaseStepConfig): step is ApiStepConfig;
129
+ export declare function isDatabaseStepConfig(step: TestCaseStepConfig): step is DatabaseStepConfig;
130
+ export declare function isAiAgentStepConfig(step: TestCaseStepConfig): step is AiAgentStepConfig;
131
+ export declare function isUploadStepConfig(step: TestCaseStepConfig): step is UploadStepConfig;
132
+ export declare function isScreenshotStepConfig(step: TestCaseStepConfig): step is ScreenshotStepConfig;
133
+ export declare function isCustomCodeStepConfig(step: TestCaseStepConfig): step is CustomCodeStepConfig;
@@ -0,0 +1,33 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { UploadStepConfig } from '../test-case-step.models';
3
+ import * as i0 from "@angular/core";
4
+ export declare class TestCaseUploadStepComponent implements OnInit {
5
+ config: UploadStepConfig;
6
+ stepNumber: number | string;
7
+ selector: string;
8
+ fileName: string;
9
+ source: 'Data Library' | 'Local' | 'URL';
10
+ sourcePath: string;
11
+ description?: string;
12
+ selected: boolean;
13
+ disabled: boolean;
14
+ isNested: boolean;
15
+ isInsideLoop: boolean;
16
+ edit: EventEmitter<void>;
17
+ link: EventEmitter<void>;
18
+ duplicate: EventEmitter<void>;
19
+ delete: EventEmitter<void>;
20
+ moreOptions: EventEmitter<void>;
21
+ viewDetails: EventEmitter<void>;
22
+ selectionChange: EventEmitter<boolean>;
23
+ ngOnInit(): void;
24
+ onEdit(): void;
25
+ onLink(): void;
26
+ onDuplicate(): void;
27
+ onDelete(): void;
28
+ onMoreOptions(): void;
29
+ onViewDetails(): void;
30
+ onSelectionChange(checked: boolean): void;
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseUploadStepComponent, never>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseUploadStepComponent, "cqa-test-case-upload-step", never, { "config": "config"; "stepNumber": "stepNumber"; "selector": "selector"; "fileName": "fileName"; "source": "source"; "sourcePath": "sourcePath"; "description": "description"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; }, { "edit": "edit"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
33
+ }
@@ -69,27 +69,39 @@ import * as i66 from "./step-progress-card/step-progress-card.component";
69
69
  import * as i67 from "./step-status-card/step-status-card.component";
70
70
  import * as i68 from "./execution-screen/db-verification-step/db-verification-step.component";
71
71
  import * as i69 from "./execution-screen/db-query-execution-item/db-query-execution-item.component";
72
- import * as i70 from "./live-conversation/live-conversation.component";
73
- import * as i71 from "@angular/common";
74
- import * as i72 from "@angular/forms";
75
- import * as i73 from "@angular/material/icon";
76
- import * as i74 from "@angular/material/menu";
77
- import * as i75 from "@angular/material/button";
78
- import * as i76 from "@angular/material/form-field";
79
- import * as i77 from "@angular/material/select";
80
- import * as i78 from "@angular/material/core";
81
- import * as i79 from "@angular/material/checkbox";
82
- import * as i80 from "@angular/material/radio";
83
- import * as i81 from "@angular/material/datepicker";
84
- import * as i82 from "@angular/material/progress-spinner";
85
- import * as i83 from "@angular/material/tooltip";
86
- import * as i84 from "@angular/material/dialog";
87
- import * as i85 from "@angular/cdk/overlay";
88
- import * as i86 from "@angular/cdk/portal";
89
- import * as i87 from "ngx-typed-js";
72
+ import * as i70 from "./test-case-details/normal-step/normal-step.component";
73
+ import * as i71 from "./test-case-details/loop-step/loop-step.component";
74
+ import * as i72 from "./test-case-details/condition-step/condition-step.component";
75
+ import * as i73 from "./test-case-details/step-group/step-group.component";
76
+ import * as i74 from "./test-case-details/test-case-details-renderer/test-case-details-renderer.component";
77
+ import * as i75 from "./test-case-details/api-step/api-step.component";
78
+ import * as i76 from "./test-case-details/database-step/database-step.component";
79
+ import * as i77 from "./test-case-details/ai-agent-step/ai-agent-step.component";
80
+ import * as i78 from "./test-case-details/upload-step/upload-step.component";
81
+ import * as i79 from "./test-case-details/screenshot-step/screenshot-step.component";
82
+ import * as i80 from "./test-case-details/custom-code-step/custom-code-step.component";
83
+ import * as i81 from "./live-conversation/live-conversation.component";
84
+ import * as i82 from "./step-builder/step-builder-action/step-builder-action.component";
85
+ import * as i83 from "@angular/common";
86
+ import * as i84 from "@angular/forms";
87
+ import * as i85 from "@angular/material/icon";
88
+ import * as i86 from "@angular/material/menu";
89
+ import * as i87 from "@angular/material/button";
90
+ import * as i88 from "@angular/material/form-field";
91
+ import * as i89 from "@angular/material/select";
92
+ import * as i90 from "@angular/material/core";
93
+ import * as i91 from "@angular/material/checkbox";
94
+ import * as i92 from "@angular/material/radio";
95
+ import * as i93 from "@angular/material/datepicker";
96
+ import * as i94 from "@angular/material/progress-spinner";
97
+ import * as i95 from "@angular/material/tooltip";
98
+ import * as i96 from "@angular/material/dialog";
99
+ import * as i97 from "@angular/cdk/overlay";
100
+ import * as i98 from "@angular/cdk/portal";
101
+ import * as i99 from "ngx-typed-js";
90
102
  export declare class UiKitModule {
91
103
  constructor(iconRegistry: MatIconRegistry);
92
104
  static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
93
- 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.ApiStepComponent, typeof i45.FileDownloadStepComponent, typeof i46.DocumentVerificationStepComponent, typeof i47.LiveExecutionStepComponent, typeof i48.MainStepCollapseComponent, typeof i49.VisualComparisonComponent, typeof i50.SimulatorComponent, typeof i51.ConsoleAlertComponent, typeof i52.AiDebugAlertComponent, typeof i53.NetworkRequestComponent, typeof i54.RunHistoryCardComponent, typeof i55.VisualDifferenceModalComponent, typeof i56.ConfigurationCardComponent, typeof i57.CompareRunsComponent, typeof i58.IterationsLoopComponent, typeof i59.FailedStepCardComponent, typeof i60.CustomInputComponent, typeof i61.CustomTextareaComponent, typeof i62.AiReasoningComponent, typeof i63.ExecutionResultModalComponent, typeof i64.ErrorModalComponent, typeof i65.ProgressIndicatorComponent, typeof i66.StepProgressCardComponent, typeof i67.StepStatusCardComponent, typeof i68.DbVerificationStepComponent, typeof i69.DbQueryExecutionItemComponent, typeof i70.LiveConversationComponent], [typeof i71.CommonModule, typeof i72.FormsModule, typeof i72.ReactiveFormsModule, typeof i73.MatIconModule, typeof i74.MatMenuModule, typeof i75.MatButtonModule, typeof i76.MatFormFieldModule, typeof i77.MatSelectModule, typeof i78.MatOptionModule, typeof i79.MatCheckboxModule, typeof i80.MatRadioModule, typeof i81.MatDatepickerModule, typeof i78.MatNativeDateModule, typeof i82.MatProgressSpinnerModule, typeof i83.MatTooltipModule, typeof i84.MatDialogModule, typeof i85.OverlayModule, typeof i86.PortalModule, typeof i87.NgxTypedJsModule], [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.ApiStepComponent, typeof i45.FileDownloadStepComponent, typeof i46.DocumentVerificationStepComponent, typeof i47.LiveExecutionStepComponent, typeof i48.MainStepCollapseComponent, typeof i49.VisualComparisonComponent, typeof i50.SimulatorComponent, typeof i51.ConsoleAlertComponent, typeof i52.AiDebugAlertComponent, typeof i53.NetworkRequestComponent, typeof i54.RunHistoryCardComponent, typeof i55.VisualDifferenceModalComponent, typeof i56.ConfigurationCardComponent, typeof i57.CompareRunsComponent, typeof i58.IterationsLoopComponent, typeof i59.FailedStepCardComponent, typeof i60.CustomInputComponent, typeof i61.CustomTextareaComponent, typeof i62.AiReasoningComponent, typeof i63.ExecutionResultModalComponent, typeof i64.ErrorModalComponent, typeof i65.ProgressIndicatorComponent, typeof i66.StepProgressCardComponent, typeof i67.StepStatusCardComponent, typeof i68.DbVerificationStepComponent, typeof i69.DbQueryExecutionItemComponent, typeof i70.LiveConversationComponent]>;
105
+ 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.ApiStepComponent, typeof i45.FileDownloadStepComponent, typeof i46.DocumentVerificationStepComponent, typeof i47.LiveExecutionStepComponent, typeof i48.MainStepCollapseComponent, typeof i49.VisualComparisonComponent, typeof i50.SimulatorComponent, typeof i51.ConsoleAlertComponent, typeof i52.AiDebugAlertComponent, typeof i53.NetworkRequestComponent, typeof i54.RunHistoryCardComponent, typeof i55.VisualDifferenceModalComponent, typeof i56.ConfigurationCardComponent, typeof i57.CompareRunsComponent, typeof i58.IterationsLoopComponent, typeof i59.FailedStepCardComponent, typeof i60.CustomInputComponent, typeof i61.CustomTextareaComponent, typeof i62.AiReasoningComponent, typeof i63.ExecutionResultModalComponent, typeof i64.ErrorModalComponent, typeof i65.ProgressIndicatorComponent, typeof i66.StepProgressCardComponent, typeof i67.StepStatusCardComponent, typeof i68.DbVerificationStepComponent, typeof i69.DbQueryExecutionItemComponent, typeof i70.TestCaseNormalStepComponent, typeof i71.TestCaseLoopStepComponent, typeof i72.TestCaseConditionStepComponent, typeof i73.TestCaseStepGroupComponent, typeof i74.TestCaseDetailsRendererComponent, typeof i75.TestCaseApiStepComponent, typeof i76.TestCaseDatabaseStepComponent, typeof i77.TestCaseAiAgentStepComponent, typeof i78.TestCaseUploadStepComponent, typeof i79.TestCaseScreenshotStepComponent, typeof i80.TestCaseCustomCodeStepComponent, typeof i81.LiveConversationComponent, typeof i82.StepBuilderActionComponent], [typeof i83.CommonModule, typeof i84.FormsModule, typeof i84.ReactiveFormsModule, typeof i85.MatIconModule, typeof i86.MatMenuModule, typeof i87.MatButtonModule, typeof i88.MatFormFieldModule, typeof i89.MatSelectModule, typeof i90.MatOptionModule, typeof i91.MatCheckboxModule, typeof i92.MatRadioModule, typeof i93.MatDatepickerModule, typeof i90.MatNativeDateModule, typeof i94.MatProgressSpinnerModule, typeof i95.MatTooltipModule, typeof i96.MatDialogModule, typeof i97.OverlayModule, typeof i98.PortalModule, typeof i99.NgxTypedJsModule], [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.ApiStepComponent, typeof i45.FileDownloadStepComponent, typeof i46.DocumentVerificationStepComponent, typeof i47.LiveExecutionStepComponent, typeof i48.MainStepCollapseComponent, typeof i49.VisualComparisonComponent, typeof i50.SimulatorComponent, typeof i51.ConsoleAlertComponent, typeof i52.AiDebugAlertComponent, typeof i53.NetworkRequestComponent, typeof i54.RunHistoryCardComponent, typeof i55.VisualDifferenceModalComponent, typeof i56.ConfigurationCardComponent, typeof i57.CompareRunsComponent, typeof i58.IterationsLoopComponent, typeof i59.FailedStepCardComponent, typeof i60.CustomInputComponent, typeof i61.CustomTextareaComponent, typeof i62.AiReasoningComponent, typeof i63.ExecutionResultModalComponent, typeof i64.ErrorModalComponent, typeof i65.ProgressIndicatorComponent, typeof i66.StepProgressCardComponent, typeof i67.StepStatusCardComponent, typeof i68.DbVerificationStepComponent, typeof i69.DbQueryExecutionItemComponent, typeof i70.TestCaseNormalStepComponent, typeof i71.TestCaseLoopStepComponent, typeof i72.TestCaseConditionStepComponent, typeof i73.TestCaseStepGroupComponent, typeof i74.TestCaseDetailsRendererComponent, typeof i75.TestCaseApiStepComponent, typeof i76.TestCaseDatabaseStepComponent, typeof i77.TestCaseAiAgentStepComponent, typeof i78.TestCaseUploadStepComponent, typeof i79.TestCaseScreenshotStepComponent, typeof i80.TestCaseCustomCodeStepComponent, typeof i81.LiveConversationComponent, typeof i82.StepBuilderActionComponent]>;
94
106
  static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
95
107
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cqa-lib/cqa-ui",
3
- "version": "1.1.158",
3
+ "version": "1.1.160",
4
4
  "description": "UI Kit library for Angular 13.4",
5
5
  "keywords": [
6
6
  "angular",
package/public-api.d.ts CHANGED
@@ -77,4 +77,17 @@ export * from './lib/step-progress-card/step-progress-card.component';
77
77
  export * from './lib/step-status-card/step-status-card.component';
78
78
  export * from './lib/execution-screen/db-verification-step/db-verification-step.component';
79
79
  export * from './lib/execution-screen/db-query-execution-item/db-query-execution-item.component';
80
+ export * from './lib/test-case-details/normal-step/normal-step.component';
81
+ export * from './lib/test-case-details/loop-step/loop-step.component';
82
+ export * from './lib/test-case-details/condition-step/condition-step.component';
83
+ export * from './lib/test-case-details/step-group/step-group.component';
84
+ export * from './lib/test-case-details/test-case-details-renderer/test-case-details-renderer.component';
85
+ export * from './lib/test-case-details/api-step/api-step.component';
86
+ export * from './lib/test-case-details/database-step/database-step.component';
87
+ export * from './lib/test-case-details/ai-agent-step/ai-agent-step.component';
88
+ export * from './lib/test-case-details/upload-step/upload-step.component';
89
+ export * from './lib/test-case-details/screenshot-step/screenshot-step.component';
90
+ export * from './lib/test-case-details/custom-code-step/custom-code-step.component';
91
+ export * from './lib/test-case-details/test-case-step.models';
80
92
  export * from './lib/live-conversation/live-conversation.component';
93
+ export * from './lib/step-builder/step-builder-action/step-builder-action.component';