@cqa-lib/cqa-ui 1.1.167 → 1.1.169
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.
- package/esm2020/lib/step-builder/step-builder-action/step-builder-action.component.mjs +7 -4
- package/esm2020/lib/step-builder/step-builder-loop/step-builder-loop.component.mjs +391 -0
- package/esm2020/lib/ui-kit.module.mjs +14 -5
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/cqa-lib-cqa-ui.mjs +384 -8
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +401 -8
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/step-builder/step-builder-action/step-builder-action.component.d.ts +2 -1
- package/lib/step-builder/step-builder-loop/step-builder-loop.component.d.ts +114 -0
- package/lib/ui-kit.module.d.ts +21 -19
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -28,6 +28,7 @@ export interface ElementField {
|
|
|
28
28
|
}
|
|
29
29
|
export declare class StepBuilderActionComponent implements OnInit, OnChanges {
|
|
30
30
|
private fb;
|
|
31
|
+
showHeader: boolean;
|
|
31
32
|
/** List of action templates to display */
|
|
32
33
|
templates: ActionTemplate[];
|
|
33
34
|
/** Placeholder text for search input */
|
|
@@ -67,5 +68,5 @@ export declare class StepBuilderActionComponent implements OnInit, OnChanges {
|
|
|
67
68
|
onElementValueChange(key: string, value: string): void;
|
|
68
69
|
onTestDataValueChange(key: string, value: string): void;
|
|
69
70
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepBuilderActionComponent, never>;
|
|
70
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderActionComponent, "cqa-step-builder-action", never, { "templates": "templates"; "searchPlaceholder": "searchPlaceholder"; "setTemplateVariables": "setTemplateVariables"; "preventSelectTemplate": "preventSelectTemplate"; }, { "templateChanged": "templateChanged"; "createStep": "createStep"; "cancelled": "cancelled"; }, never, never>;
|
|
71
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderActionComponent, "cqa-step-builder-action", never, { "showHeader": "showHeader"; "templates": "templates"; "searchPlaceholder": "searchPlaceholder"; "setTemplateVariables": "setTemplateVariables"; "preventSelectTemplate": "preventSelectTemplate"; }, { "templateChanged": "templateChanged"; "createStep": "createStep"; "cancelled": "cancelled"; }, never, never>;
|
|
71
72
|
}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { DynamicSelectFieldConfig } 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 declare type LoopType = 'for' | 'while';
|
|
7
|
+
/**
|
|
8
|
+
* Interface for data profile option
|
|
9
|
+
* Based on TestData model structure
|
|
10
|
+
*/
|
|
11
|
+
export interface DataProfileOption {
|
|
12
|
+
id: number | string;
|
|
13
|
+
name: string;
|
|
14
|
+
/** Array of data sets - length determines available loop indices */
|
|
15
|
+
data?: any[];
|
|
16
|
+
/** Optional: direct data length if data array is not provided */
|
|
17
|
+
dataLength?: number;
|
|
18
|
+
}
|
|
19
|
+
export interface LoopFormData {
|
|
20
|
+
selectedLoopType: LoopType;
|
|
21
|
+
loopType: LoopType;
|
|
22
|
+
selectOption?: string;
|
|
23
|
+
dataProfile?: string | number;
|
|
24
|
+
loopStart?: number | string;
|
|
25
|
+
loopEnd?: number | string;
|
|
26
|
+
runTime?: string;
|
|
27
|
+
whileTemplate?: any;
|
|
28
|
+
event?: any;
|
|
29
|
+
}
|
|
30
|
+
export declare class StepBuilderLoopComponent implements OnInit, OnChanges {
|
|
31
|
+
/** Currently selected loop type */
|
|
32
|
+
loopType: LoopType;
|
|
33
|
+
/** Options for the select option dropdown */
|
|
34
|
+
selectOptions: any[];
|
|
35
|
+
/** Options for the data profile dropdown - accepts DataProfileOption objects */
|
|
36
|
+
dataProfileOptions: DataProfileOption[];
|
|
37
|
+
/** Indicates if more data profiles are available for loading */
|
|
38
|
+
hasMoreDataProfiles: boolean;
|
|
39
|
+
/** Loading state for data profiles */
|
|
40
|
+
isLoadingDataProfiles: boolean;
|
|
41
|
+
/** Function to handle variable processing or custom logic. Can be passed from parent component. */
|
|
42
|
+
setWhileTemplateVariables: (variables: ActionTemplate) => any;
|
|
43
|
+
/** Emit when step is created */
|
|
44
|
+
createStep: EventEmitter<LoopFormData>;
|
|
45
|
+
/** Emit when cancelled */
|
|
46
|
+
cancelled: EventEmitter<void>;
|
|
47
|
+
/** Emit when loop type changes */
|
|
48
|
+
loopTypeChange: EventEmitter<LoopType>;
|
|
49
|
+
/** Emit when more data profiles need to be loaded */
|
|
50
|
+
loadMoreDataProfiles: EventEmitter<string>;
|
|
51
|
+
/** Emit when data profile search query changes */
|
|
52
|
+
searchDataProfiles: EventEmitter<string>;
|
|
53
|
+
whileTemplates: any[];
|
|
54
|
+
whileSearchPlaceholder: string;
|
|
55
|
+
whileSearchValue: string;
|
|
56
|
+
selectedWhileTemplate: any;
|
|
57
|
+
selectedLoopType: LoopType;
|
|
58
|
+
loopForm: FormGroup;
|
|
59
|
+
selectOptionConfig: DynamicSelectFieldConfig;
|
|
60
|
+
dataProfileConfig: DynamicSelectFieldConfig;
|
|
61
|
+
loopStartConfig: DynamicSelectFieldConfig;
|
|
62
|
+
loopEndConfig: DynamicSelectFieldConfig;
|
|
63
|
+
private selectedDataProfile;
|
|
64
|
+
private startArray;
|
|
65
|
+
private endArray;
|
|
66
|
+
constructor();
|
|
67
|
+
ngOnInit(): void;
|
|
68
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
69
|
+
private updateConfigs;
|
|
70
|
+
private convertDataProfileOptionsToSelectOptions;
|
|
71
|
+
/**
|
|
72
|
+
* Handle data profile selection and update loop start/end options
|
|
73
|
+
*/
|
|
74
|
+
private onDataProfileChange;
|
|
75
|
+
/**
|
|
76
|
+
* Calculate loop indices based on selected data profile
|
|
77
|
+
*/
|
|
78
|
+
private updateLoopIndicesFromProfile;
|
|
79
|
+
/**
|
|
80
|
+
* Handle loop start change and update end options
|
|
81
|
+
*/
|
|
82
|
+
private onLoopStartChange;
|
|
83
|
+
/**
|
|
84
|
+
* Update loop start and end config options
|
|
85
|
+
*/
|
|
86
|
+
private updateLoopIndexOptions;
|
|
87
|
+
onLoopTypeChange(type: string | LoopType): void;
|
|
88
|
+
onCancel(): void;
|
|
89
|
+
onCreateStep(): void;
|
|
90
|
+
createWhileStep(event: any): void;
|
|
91
|
+
/**
|
|
92
|
+
* Handle search event for data profiles
|
|
93
|
+
*/
|
|
94
|
+
onSearchDataProfiles(query: string): void;
|
|
95
|
+
/**
|
|
96
|
+
* Handle loadMore event for data profiles
|
|
97
|
+
*/
|
|
98
|
+
onLoadMoreDataProfiles(event: {
|
|
99
|
+
key: string;
|
|
100
|
+
query: string;
|
|
101
|
+
}): void;
|
|
102
|
+
/**
|
|
103
|
+
* Update data profile config when loading state or hasMore changes
|
|
104
|
+
*/
|
|
105
|
+
private updateDataProfileConfig;
|
|
106
|
+
private resetForm;
|
|
107
|
+
onWhileSearchChange(event: any): void;
|
|
108
|
+
onWhileSearchSubmit(event: any): void;
|
|
109
|
+
onWhileSearchCleared(): void;
|
|
110
|
+
filterWhileTemplates(query: string): void;
|
|
111
|
+
selectWhileTemplate(template: any): void;
|
|
112
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepBuilderLoopComponent, never>;
|
|
113
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepBuilderLoopComponent, "cqa-step-builder-loop", never, { "loopType": "loopType"; "selectOptions": "selectOptions"; "dataProfileOptions": "dataProfileOptions"; "hasMoreDataProfiles": "hasMoreDataProfiles"; "isLoadingDataProfiles": "isLoadingDataProfiles"; "setWhileTemplateVariables": "setWhileTemplateVariables"; "whileTemplates": "whileTemplates"; "whileSearchPlaceholder": "whileSearchPlaceholder"; "whileSearchValue": "whileSearchValue"; }, { "createStep": "createStep"; "cancelled": "cancelled"; "loopTypeChange": "loopTypeChange"; "loadMoreDataProfiles": "loadMoreDataProfiles"; "searchDataProfiles": "searchDataProfiles"; }, never, never>;
|
|
114
|
+
}
|
package/lib/ui-kit.module.d.ts
CHANGED
|
@@ -83,27 +83,29 @@ import * as i80 from "./test-case-details/screenshot-step/screenshot-step.compon
|
|
|
83
83
|
import * as i81 from "./test-case-details/custom-code-step/custom-code-step.component";
|
|
84
84
|
import * as i82 from "./live-conversation/live-conversation.component";
|
|
85
85
|
import * as i83 from "./step-builder/step-builder-action/step-builder-action.component";
|
|
86
|
-
import * as i84 from "
|
|
87
|
-
import * as i85 from "@angular/
|
|
88
|
-
import * as i86 from "@angular/
|
|
89
|
-
import * as i87 from "@angular/material/
|
|
90
|
-
import * as i88 from "@angular/material/
|
|
91
|
-
import * as i89 from "@angular/material/
|
|
92
|
-
import * as i90 from "@angular/material/
|
|
93
|
-
import * as i91 from "@angular/material/
|
|
94
|
-
import * as i92 from "@angular/material/
|
|
95
|
-
import * as i93 from "@angular/material/
|
|
96
|
-
import * as i94 from "@angular/material/
|
|
97
|
-
import * as i95 from "@angular/material/
|
|
98
|
-
import * as i96 from "@angular/material/
|
|
99
|
-
import * as i97 from "@angular/material/
|
|
100
|
-
import * as i98 from "@angular/
|
|
101
|
-
import * as i99 from "@angular/
|
|
102
|
-
import * as i100 from "
|
|
103
|
-
import * as i101 from "
|
|
86
|
+
import * as i84 from "./step-builder/step-builder-loop/step-builder-loop.component";
|
|
87
|
+
import * as i85 from "@angular/common";
|
|
88
|
+
import * as i86 from "@angular/forms";
|
|
89
|
+
import * as i87 from "@angular/material/icon";
|
|
90
|
+
import * as i88 from "@angular/material/menu";
|
|
91
|
+
import * as i89 from "@angular/material/button";
|
|
92
|
+
import * as i90 from "@angular/material/form-field";
|
|
93
|
+
import * as i91 from "@angular/material/select";
|
|
94
|
+
import * as i92 from "@angular/material/core";
|
|
95
|
+
import * as i93 from "@angular/material/checkbox";
|
|
96
|
+
import * as i94 from "@angular/material/radio";
|
|
97
|
+
import * as i95 from "@angular/material/slide-toggle";
|
|
98
|
+
import * as i96 from "@angular/material/datepicker";
|
|
99
|
+
import * as i97 from "@angular/material/progress-spinner";
|
|
100
|
+
import * as i98 from "@angular/material/tooltip";
|
|
101
|
+
import * as i99 from "@angular/material/dialog";
|
|
102
|
+
import * as i100 from "@angular/cdk/overlay";
|
|
103
|
+
import * as i101 from "@angular/cdk/portal";
|
|
104
|
+
import * as i102 from "ngx-typed-js";
|
|
105
|
+
import * as i103 from "ngx-drag-drop";
|
|
104
106
|
export declare class UiKitModule {
|
|
105
107
|
constructor(iconRegistry: MatIconRegistry);
|
|
106
108
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
|
|
107
|
-
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.TestCaseUploadStepComponent, typeof i80.TestCaseScreenshotStepComponent, typeof i81.TestCaseCustomCodeStepComponent, typeof i82.LiveConversationComponent, typeof i83.StepBuilderActionComponent], [typeof
|
|
109
|
+
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.TestCaseUploadStepComponent, typeof i80.TestCaseScreenshotStepComponent, typeof i81.TestCaseCustomCodeStepComponent, typeof i82.LiveConversationComponent, typeof i83.StepBuilderActionComponent, typeof i84.StepBuilderLoopComponent], [typeof i85.CommonModule, typeof i86.FormsModule, typeof i86.ReactiveFormsModule, typeof i87.MatIconModule, typeof i88.MatMenuModule, typeof i89.MatButtonModule, typeof i90.MatFormFieldModule, typeof i91.MatSelectModule, typeof i92.MatOptionModule, typeof i93.MatCheckboxModule, typeof i94.MatRadioModule, typeof i95.MatSlideToggleModule, typeof i96.MatDatepickerModule, typeof i92.MatNativeDateModule, typeof i97.MatProgressSpinnerModule, typeof i98.MatTooltipModule, typeof i99.MatDialogModule, typeof i100.OverlayModule, typeof i101.PortalModule, typeof i102.NgxTypedJsModule, typeof i103.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 i79.TestCaseUploadStepComponent, typeof i80.TestCaseScreenshotStepComponent, typeof i81.TestCaseCustomCodeStepComponent, typeof i82.LiveConversationComponent, typeof i83.StepBuilderActionComponent, typeof i84.StepBuilderLoopComponent]>;
|
|
108
110
|
static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
|
|
109
111
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -92,3 +92,4 @@ export * from './lib/test-case-details/custom-code-step/custom-code-step.compone
|
|
|
92
92
|
export * from './lib/test-case-details/test-case-step.models';
|
|
93
93
|
export * from './lib/live-conversation/live-conversation.component';
|
|
94
94
|
export * from './lib/step-builder/step-builder-action/step-builder-action.component';
|
|
95
|
+
export * from './lib/step-builder/step-builder-loop/step-builder-loop.component';
|