@cqa-lib/cqa-ui 1.1.180 → 1.1.182
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/add-prerequisite-cases-section/add-prerequisite-cases-section.component.mjs +176 -0
- package/esm2020/lib/custom-textarea/custom-textarea.component.mjs +6 -3
- package/esm2020/lib/custom-toggle/custom-toggle.component.mjs +35 -0
- package/esm2020/lib/execution-screen/execution-step.models.mjs +1 -1
- package/esm2020/lib/execution-screen/main-step-collapse/main-step-collapse.component.mjs +36 -4
- package/esm2020/lib/file-upload/file-upload.component.mjs +87 -0
- package/esm2020/lib/item-list/item-list.component.mjs +59 -0
- package/esm2020/lib/item-list/item-list.model.mjs +2 -0
- package/esm2020/lib/step-builder/step-builder-ai-agent/step-builder-ai-agent.component.mjs +136 -0
- package/esm2020/lib/step-builder/step-builder-custom-code/step-builder-custom-code.component.mjs +65 -0
- package/esm2020/lib/step-builder/step-builder-database/step-builder-database.component.mjs +1 -1
- package/esm2020/lib/step-builder/step-builder-document/step-builder-document.component.mjs +241 -0
- package/esm2020/lib/step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component.mjs +176 -0
- package/esm2020/lib/step-builder/step-builder-record-step/step-builder-record-step.component.mjs +31 -0
- package/esm2020/lib/test-case-details/custom-edit-step/custom-edit-step.component.mjs +3 -3
- package/esm2020/lib/test-case-details/element-list/element-list.component.mjs +50 -0
- package/esm2020/lib/test-case-details/element-popup/element-popup-data.mjs +5 -0
- package/esm2020/lib/test-case-details/element-popup/element-popup-ref.mjs +32 -0
- package/esm2020/lib/test-case-details/element-popup/element-popup.component.mjs +272 -0
- package/esm2020/lib/test-case-details/element-popup/element-popup.service.mjs +97 -0
- package/esm2020/lib/test-case-details/normal-step/normal-step.component.mjs +151 -19
- package/esm2020/lib/test-case-details/test-data-modal/test-data-modal-data.mjs +5 -0
- package/esm2020/lib/test-case-details/test-data-modal/test-data-modal-environment.model.mjs +10 -0
- package/esm2020/lib/test-case-details/test-data-modal/test-data-modal-parameter.model.mjs +8 -0
- package/esm2020/lib/test-case-details/test-data-modal/test-data-modal-ref.mjs +32 -0
- package/esm2020/lib/test-case-details/test-data-modal/test-data-modal.component.mjs +301 -0
- package/esm2020/lib/test-case-details/test-data-modal/test-data-modal.service.mjs +97 -0
- package/esm2020/lib/ui-kit.module.mjs +63 -3
- package/esm2020/lib/utils/tw-overlay-container.mjs +9 -4
- package/esm2020/public-api.mjs +20 -1
- package/fesm2015/cqa-lib-cqa-ui.mjs +3059 -1020
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +3056 -1043
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/add-prerequisite-cases-section/add-prerequisite-cases-section.component.d.ts +88 -0
- package/lib/custom-textarea/custom-textarea.component.d.ts +2 -1
- package/lib/custom-toggle/custom-toggle.component.d.ts +12 -0
- package/lib/execution-screen/execution-step.models.d.ts +2 -0
- package/lib/execution-screen/main-step-collapse/main-step-collapse.component.d.ts +30 -1
- package/lib/file-upload/file-upload.component.d.ts +26 -0
- package/lib/item-list/item-list.component.d.ts +25 -0
- package/lib/item-list/item-list.model.d.ts +16 -0
- package/lib/step-builder/step-builder-ai-agent/step-builder-ai-agent.component.d.ts +47 -0
- package/lib/step-builder/step-builder-custom-code/step-builder-custom-code.component.d.ts +27 -0
- package/lib/step-builder/step-builder-document/step-builder-document.component.d.ts +81 -0
- package/lib/step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component.d.ts +55 -0
- package/lib/step-builder/step-builder-record-step/step-builder-record-step.component.d.ts +16 -0
- package/lib/test-case-details/element-list/element-list.component.d.ts +26 -0
- package/lib/test-case-details/element-popup/element-popup-data.d.ts +16 -0
- package/lib/test-case-details/element-popup/element-popup-ref.d.ts +13 -0
- package/lib/test-case-details/element-popup/element-popup.component.d.ts +60 -0
- package/lib/test-case-details/element-popup/element-popup.service.d.ts +23 -0
- package/lib/test-case-details/normal-step/normal-step.component.d.ts +17 -2
- package/lib/test-case-details/test-data-modal/test-data-modal-data.d.ts +31 -0
- package/lib/test-case-details/test-data-modal/test-data-modal-environment.model.d.ts +12 -0
- package/lib/test-case-details/test-data-modal/test-data-modal-parameter.model.d.ts +11 -0
- package/lib/test-case-details/test-data-modal/test-data-modal-ref.d.ts +13 -0
- package/lib/test-case-details/test-data-modal/test-data-modal.component.d.ts +91 -0
- package/lib/test-case-details/test-data-modal/test-data-modal.service.d.ts +23 -0
- package/lib/ui-kit.module.d.ts +99 -87
- package/package.json +1 -1
- package/public-api.d.ts +19 -0
- package/styles.css +1 -1
|
@@ -1,12 +1,20 @@
|
|
|
1
|
-
import { EventEmitter, OnInit, ElementRef } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnInit, ElementRef, ChangeDetectorRef, NgZone } from '@angular/core';
|
|
2
2
|
import { NormalStepConfig, TestCaseEventType, EventTypeConfig, StepParameter } from '../test-case-step.models';
|
|
3
3
|
import { CustomEditStepService } from '../custom-edit-step/custom-edit-step.service';
|
|
4
|
+
import { ElementPopupService } from '../element-popup/element-popup.service';
|
|
5
|
+
import { TestDataModalService } from '../test-data-modal/test-data-modal.service';
|
|
4
6
|
import * as i0 from "@angular/core";
|
|
5
7
|
export declare class TestCaseNormalStepComponent implements OnInit {
|
|
6
8
|
private readonly customEditStep;
|
|
9
|
+
private readonly elementPopup;
|
|
10
|
+
private readonly testDataModal;
|
|
11
|
+
private readonly cdr;
|
|
12
|
+
private readonly ngZone;
|
|
7
13
|
dropdownContainer?: ElementRef;
|
|
8
14
|
descriptionTrigger?: ElementRef<HTMLElement>;
|
|
15
|
+
testDataTrigger?: ElementRef<HTMLElement>;
|
|
9
16
|
editTrigger?: ElementRef<HTMLElement>;
|
|
17
|
+
elementTrigger?: ElementRef<HTMLElement>;
|
|
10
18
|
config: NormalStepConfig;
|
|
11
19
|
stepNumber: number | string;
|
|
12
20
|
eventType: TestCaseEventType;
|
|
@@ -28,7 +36,9 @@ export declare class TestCaseNormalStepComponent implements OnInit {
|
|
|
28
36
|
moreOptions: EventEmitter<void>;
|
|
29
37
|
selectionChange: EventEmitter<boolean>;
|
|
30
38
|
eventTypeDropdownOpen: boolean;
|
|
31
|
-
|
|
39
|
+
/** Stored test data modal state for reopening with same selections. */
|
|
40
|
+
private testDataModalState;
|
|
41
|
+
constructor(customEditStep: CustomEditStepService, elementPopup: ElementPopupService, testDataModal: TestDataModalService, cdr: ChangeDetectorRef, ngZone: NgZone);
|
|
32
42
|
eventTypeConfigs: EventTypeConfig[];
|
|
33
43
|
ngOnInit(): void;
|
|
34
44
|
getCurrentEventTypeConfig(): EventTypeConfig;
|
|
@@ -41,8 +51,13 @@ export declare class TestCaseNormalStepComponent implements OnInit {
|
|
|
41
51
|
* Returns the first parameter with name 'url' or 'URL', or the first parameter if none found
|
|
42
52
|
*/
|
|
43
53
|
getNavigateUrlParameter(): StepParameter | null;
|
|
54
|
+
/** Current URL value for navigate step (for Test Data modal). */
|
|
55
|
+
getNavigateUrlValue(): string;
|
|
56
|
+
/** Opens Test Data modal below the given trigger; used when eventType === 'navigate'. */
|
|
57
|
+
openTestDataModal(origin: ElementRef<HTMLElement> | HTMLElement | MouseEvent): void;
|
|
44
58
|
/** Opens Step Description modal below the given trigger; used when eventType === 'custom'. */
|
|
45
59
|
openStepDescriptionModal(origin: ElementRef<HTMLElement> | HTMLElement | MouseEvent): void;
|
|
60
|
+
openElementPopup(origin: ElementRef<HTMLElement> | HTMLElement | MouseEvent): void;
|
|
46
61
|
onEventTypeSelect(eventType: TestCaseEventType): void;
|
|
47
62
|
onParameterChange(parameter: StepParameter, value: string): void;
|
|
48
63
|
onEdit(): void;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import type { ParameterScopeFilter } from './test-data-modal-parameter.model';
|
|
3
|
+
export declare type TestDataModalTab = 'plain-text' | 'parameter' | 'environment' | 'runtime';
|
|
4
|
+
/**
|
|
5
|
+
* Config/data for Test Data Modal controls.
|
|
6
|
+
* Mirrors Loop Step pattern: single config object holds all control state;
|
|
7
|
+
* values are initialized from config and bound to editForm.
|
|
8
|
+
*/
|
|
9
|
+
export interface TestDataModalData {
|
|
10
|
+
/** Initial value for Plain Text tab (e.g. URL for navigate step). */
|
|
11
|
+
value?: string;
|
|
12
|
+
/** Optional help URL for "Need help?" link. */
|
|
13
|
+
helpUrl?: string;
|
|
14
|
+
/** Initially selected tab. Defaults to 'plain-text'. */
|
|
15
|
+
activeTab?: TestDataModalTab;
|
|
16
|
+
/** Parameter tab: scope filter (All / Global / Local). */
|
|
17
|
+
parameterScopeFilter?: ParameterScopeFilter;
|
|
18
|
+
/** Parameter tab: search query. */
|
|
19
|
+
parameterSearchQuery?: string;
|
|
20
|
+
/** Parameter tab: selected parameter id (for highlight). */
|
|
21
|
+
selectedParameterId?: string | null;
|
|
22
|
+
/** Environment tab: search query. */
|
|
23
|
+
environmentSearchQuery?: string;
|
|
24
|
+
/** Environment tab: selected environment id (for highlight). */
|
|
25
|
+
selectedEnvironmentId?: string | null;
|
|
26
|
+
/** Runtime tab: value (independent from Plain Text / Parameter / Environment). */
|
|
27
|
+
runtimeValue?: string;
|
|
28
|
+
}
|
|
29
|
+
/** Sentinel returned from afterClosed() when user clicked "Edit in depth". */
|
|
30
|
+
export declare const TEST_DATA_MODAL_EDIT_IN_DEPTH: unique symbol;
|
|
31
|
+
export declare const TEST_DATA_MODAL_DATA: InjectionToken<TestDataModalData>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/** Environment variable item for the Environment tab (variable library by environment). */
|
|
2
|
+
export interface EnvironmentItem {
|
|
3
|
+
id: string;
|
|
4
|
+
name: string;
|
|
5
|
+
value: string;
|
|
6
|
+
/** Display name of the environment group (e.g. "OHRM login", "Halight Env"). */
|
|
7
|
+
environment: string;
|
|
8
|
+
/** When true, show edit icon when selected. */
|
|
9
|
+
editable?: boolean;
|
|
10
|
+
}
|
|
11
|
+
/** Mock data for Environment tab (no API). Replace with API call when integrating. */
|
|
12
|
+
export declare const MOCK_ENVIRONMENT_ITEMS: EnvironmentItem[];
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/** Scope of a variable/parameter in the library. */
|
|
2
|
+
export declare type ParameterScope = 'Global' | 'Local';
|
|
3
|
+
export interface ParameterItem {
|
|
4
|
+
id: string;
|
|
5
|
+
name: string;
|
|
6
|
+
value: string;
|
|
7
|
+
scope: ParameterScope;
|
|
8
|
+
}
|
|
9
|
+
/** Mock data for Variable Library (no API). Replace with API call when integrating. */
|
|
10
|
+
export declare const MOCK_PARAMETERS: ParameterItem[];
|
|
11
|
+
export declare type ParameterScopeFilter = 'all' | 'global' | 'local';
|
|
@@ -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 TestDataModalRef<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 TEST_DATA_MODAL_REF: InjectionToken<TestDataModalRef<string>>;
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { DynamicSelectFieldConfig } from '../../dynamic-select/dynamic-select-field.component';
|
|
4
|
+
import { TestDataModalData, TestDataModalTab } from './test-data-modal-data';
|
|
5
|
+
import { TestDataModalRef } from './test-data-modal-ref';
|
|
6
|
+
import { TestDataModalResult } from './test-data-modal.service';
|
|
7
|
+
import { EnvironmentItem } from './test-data-modal-environment.model';
|
|
8
|
+
import { ParameterItem, ParameterScopeFilter } from './test-data-modal-parameter.model';
|
|
9
|
+
import { CqaListItemConfig } from '../../item-list/item-list.model';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class TestDataModalComponent implements OnInit {
|
|
12
|
+
private readonly fb;
|
|
13
|
+
private readonly cdr;
|
|
14
|
+
private ref;
|
|
15
|
+
apply: EventEmitter<{
|
|
16
|
+
value: string;
|
|
17
|
+
activeTab: TestDataModalTab;
|
|
18
|
+
}>;
|
|
19
|
+
cancel: EventEmitter<void>;
|
|
20
|
+
editInDepth: EventEmitter<void>;
|
|
21
|
+
readonly tabSegments: {
|
|
22
|
+
label: string;
|
|
23
|
+
value: string;
|
|
24
|
+
}[];
|
|
25
|
+
readonly parameterFilterTabs: {
|
|
26
|
+
label: string;
|
|
27
|
+
value: ParameterScopeFilter;
|
|
28
|
+
}[];
|
|
29
|
+
/** Mock parameter list (replace with API when integrating). */
|
|
30
|
+
readonly parameters: ParameterItem[];
|
|
31
|
+
/** Mock environment list (replace with API when integrating). */
|
|
32
|
+
readonly environmentItems: EnvironmentItem[];
|
|
33
|
+
/** Runtime tab: suggested variable chips. */
|
|
34
|
+
readonly runtimeSuggestedValues: readonly string[];
|
|
35
|
+
/** Form for all modal controls (same pattern as Loop Step editForm). */
|
|
36
|
+
editForm: FormGroup;
|
|
37
|
+
/** Cached select configs (stable refs, same naming as Loop Step: xxxSelectConfig). */
|
|
38
|
+
activeTabSelectConfig: DynamicSelectFieldConfig;
|
|
39
|
+
parameterScopeFilterSelectConfig: DynamicSelectFieldConfig;
|
|
40
|
+
/** Local copy of form value for Cancel revert (same pattern as Loop Step editSnapshot). */
|
|
41
|
+
private editSnapshot;
|
|
42
|
+
/** State derived from config/editForm for template and getters (mirrors Loop Step inputs). */
|
|
43
|
+
activeTab: TestDataModalTab;
|
|
44
|
+
value: string;
|
|
45
|
+
helpUrl: string;
|
|
46
|
+
helpTooltipText: string;
|
|
47
|
+
showHelpTooltip: boolean;
|
|
48
|
+
parameterScopeFilter: ParameterScopeFilter;
|
|
49
|
+
parameterSearchQuery: string;
|
|
50
|
+
selectedParameterId: string | null;
|
|
51
|
+
environmentSearchQuery: string;
|
|
52
|
+
selectedEnvironmentId: string | null;
|
|
53
|
+
runtimeValue: string;
|
|
54
|
+
constructor(fb: FormBuilder, cdr: ChangeDetectorRef, ref: TestDataModalRef<TestDataModalResult>, data?: TestDataModalData);
|
|
55
|
+
ngOnInit(): void;
|
|
56
|
+
/** Build form with all control values (same pattern as Loop Step buildEditForm). */
|
|
57
|
+
private buildEditForm;
|
|
58
|
+
/** Build select configs once (same pattern as Loop Step buildSelectConfigs). */
|
|
59
|
+
private buildSelectConfigs;
|
|
60
|
+
/** Update form control and sync component state (same pattern as Loop Step onEditFormFieldChange). */
|
|
61
|
+
onEditFormFieldChange(controlName: string, value: string | number | null): void;
|
|
62
|
+
/** Sync component state from editForm so getters (e.g. filteredParameters) stay correct. */
|
|
63
|
+
private syncStateFromForm;
|
|
64
|
+
/** Filtered parameters by scope and search (Parameter tab). */
|
|
65
|
+
get filteredParameters(): ParameterItem[];
|
|
66
|
+
/** Filtered environment items by search (Environment tab). */
|
|
67
|
+
get filteredEnvironments(): EnvironmentItem[];
|
|
68
|
+
/** Parameter tab: list config for cqa-item-list (search-friendly: bind filtered list). */
|
|
69
|
+
get parameterListConfig(): CqaListItemConfig[];
|
|
70
|
+
/** Environment tab: list config for cqa-item-list. */
|
|
71
|
+
get environmentListConfig(): CqaListItemConfig[];
|
|
72
|
+
onTabChange(tabValue: string): void;
|
|
73
|
+
onParameterScopeFilterChange(filter: ParameterScopeFilter): void;
|
|
74
|
+
onParameterSearchInput(value: string): void;
|
|
75
|
+
onParameterSelect(paramId: string): void;
|
|
76
|
+
onParameterEdit(_paramId: string): void;
|
|
77
|
+
onCreateNewVariable(event: Event): void;
|
|
78
|
+
onEnvironmentSearchInput(value: string): void;
|
|
79
|
+
onEnvironmentSelect(itemId: string): void;
|
|
80
|
+
onEnvironmentEdit(_itemId: string): void;
|
|
81
|
+
onCreateNewEnvironment(event: Event): void;
|
|
82
|
+
/** Runtime tab: insert suggested value into the runtime input field. */
|
|
83
|
+
onRuntimeChipInsert(snippet: string): void;
|
|
84
|
+
onApply(): void;
|
|
85
|
+
onCancel(): void;
|
|
86
|
+
onClose(): void;
|
|
87
|
+
onEditInDepth(event: Event): void;
|
|
88
|
+
onHelp(event: Event): void;
|
|
89
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TestDataModalComponent, [null, null, null, { optional: true; }]>;
|
|
90
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestDataModalComponent, "cqa-test-data-modal", never, {}, { "apply": "apply"; "cancel": "cancel"; "editInDepth": "editInDepth"; }, never, never>;
|
|
91
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { ElementRef, Injector } from '@angular/core';
|
|
2
|
+
import { Overlay } from '@angular/cdk/overlay';
|
|
3
|
+
import { TestDataModalRef } from './test-data-modal-ref';
|
|
4
|
+
import { TEST_DATA_MODAL_EDIT_IN_DEPTH, TestDataModalData } from './test-data-modal-data';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare type TestDataModalResult = string | TestDataModalData | undefined | typeof TEST_DATA_MODAL_EDIT_IN_DEPTH;
|
|
7
|
+
export declare class TestDataModalService {
|
|
8
|
+
private readonly overlay;
|
|
9
|
+
private readonly injector;
|
|
10
|
+
/** Currently open Test Data overlay ref; only one panel is allowed at a time. */
|
|
11
|
+
private currentRef;
|
|
12
|
+
constructor(overlay: Overlay, injector: Injector);
|
|
13
|
+
/**
|
|
14
|
+
* Opens the Test Data 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. test data trigger) to position below
|
|
17
|
+
* @param data Initial value, optional help URL, and optional active tab
|
|
18
|
+
* @returns Ref with afterClosed() and close(); afterClosed emits the value on Apply, undefined on Cancel, or EDIT_IN_DEPTH symbol when user clicks "Edit in depth"
|
|
19
|
+
*/
|
|
20
|
+
open(origin: ElementRef<HTMLElement>, data: TestDataModalData): TestDataModalRef<TestDataModalResult>;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TestDataModalService, never>;
|
|
22
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TestDataModalService>;
|
|
23
|
+
}
|
package/lib/ui-kit.module.d.ts
CHANGED
|
@@ -24,95 +24,107 @@ import * as i21 from "./dashboards/coverage-module-card/coverage-module-card.com
|
|
|
24
24
|
import * as i22 from "./dashboards/test-distribution-card/test-distribution-card.component";
|
|
25
25
|
import * as i23 from "./dashboards/failed-test-cases-card/failed-test-cases-card.component";
|
|
26
26
|
import * as i24 from "./dynamic-select/dynamic-select-field.component";
|
|
27
|
-
import * as i25 from "./
|
|
28
|
-
import * as i26 from "./
|
|
29
|
-
import * as i27 from "./
|
|
30
|
-
import * as i28 from "./
|
|
31
|
-
import * as i29 from "./
|
|
32
|
-
import * as i30 from "./
|
|
33
|
-
import * as i31 from "./
|
|
34
|
-
import * as i32 from "./
|
|
35
|
-
import * as i33 from "./table-
|
|
36
|
-
import * as i34 from "./
|
|
37
|
-
import * as i35 from "./execution-screen/step-
|
|
38
|
-
import * as i36 from "./execution-screen/step-
|
|
39
|
-
import * as i37 from "./execution-screen/
|
|
40
|
-
import * as i38 from "./execution-screen/
|
|
41
|
-
import * as i39 from "./execution-screen/
|
|
42
|
-
import * as i40 from "./execution-screen/
|
|
43
|
-
import * as i41 from "./execution-screen/
|
|
44
|
-
import * as i42 from "./execution-screen/
|
|
45
|
-
import * as i43 from "./execution-screen/
|
|
46
|
-
import * as i44 from "./execution-screen/ai-
|
|
47
|
-
import * as i45 from "./execution-screen/
|
|
48
|
-
import * as i46 from "./execution-screen/
|
|
49
|
-
import * as i47 from "./execution-screen/
|
|
50
|
-
import * as i48 from "./execution-screen/
|
|
51
|
-
import * as i49 from "./execution-screen/
|
|
52
|
-
import * as i50 from "./execution-screen/
|
|
53
|
-
import * as i51 from "./
|
|
54
|
-
import * as i52 from "./
|
|
55
|
-
import * as i53 from "./
|
|
56
|
-
import * as i54 from "./
|
|
57
|
-
import * as i55 from "./
|
|
58
|
-
import * as i56 from "./
|
|
59
|
-
import * as i57 from "./
|
|
60
|
-
import * as i58 from "./
|
|
61
|
-
import * as i59 from "./
|
|
62
|
-
import * as i60 from "./
|
|
63
|
-
import * as i61 from "./
|
|
64
|
-
import * as i62 from "./custom-
|
|
65
|
-
import * as i63 from "./
|
|
66
|
-
import * as i64 from "./
|
|
67
|
-
import * as i65 from "./
|
|
68
|
-
import * as i66 from "./
|
|
69
|
-
import * as i67 from "./
|
|
70
|
-
import * as i68 from "./
|
|
71
|
-
import * as i69 from "./
|
|
72
|
-
import * as i70 from "./
|
|
73
|
-
import * as i71 from "./
|
|
74
|
-
import * as i72 from "./
|
|
75
|
-
import * as i73 from "./
|
|
76
|
-
import * as i74 from "./test-case-details/step-
|
|
77
|
-
import * as i75 from "./test-case-details/
|
|
78
|
-
import * as i76 from "./test-case-details/
|
|
79
|
-
import * as i77 from "./test-case-details/
|
|
80
|
-
import * as i78 from "./test-case-details/
|
|
81
|
-
import * as i79 from "./test-case-details/
|
|
82
|
-
import * as i80 from "./test-case-details/
|
|
83
|
-
import * as i81 from "./test-case-details/
|
|
84
|
-
import * as i82 from "./test-case-details/
|
|
85
|
-
import * as i83 from "./test-case-details/
|
|
86
|
-
import * as i84 from "./test-case-details/
|
|
87
|
-
import * as i85 from "./test-case-details/
|
|
88
|
-
import * as i86 from "./test-case-details/
|
|
89
|
-
import * as i87 from "./
|
|
90
|
-
import * as i88 from "./
|
|
91
|
-
import * as i89 from "./
|
|
92
|
-
import * as i90 from "./
|
|
93
|
-
import * as i91 from "./
|
|
94
|
-
import * as i92 from "
|
|
95
|
-
import * as i93 from "
|
|
96
|
-
import * as i94 from "
|
|
97
|
-
import * as i95 from "
|
|
98
|
-
import * as i96 from "
|
|
99
|
-
import * as i97 from "
|
|
100
|
-
import * as i98 from "
|
|
101
|
-
import * as i99 from "
|
|
102
|
-
import * as i100 from "
|
|
103
|
-
import * as i101 from "
|
|
104
|
-
import * as i102 from "
|
|
105
|
-
import * as i103 from "
|
|
106
|
-
import * as i104 from "@angular/
|
|
107
|
-
import * as i105 from "@angular/
|
|
108
|
-
import * as i106 from "@angular/material/
|
|
109
|
-
import * as i107 from "@angular/
|
|
110
|
-
import * as i108 from "@angular/
|
|
111
|
-
import * as i109 from "
|
|
112
|
-
import * as i110 from "
|
|
27
|
+
import * as i25 from "./add-prerequisite-cases-section/add-prerequisite-cases-section.component";
|
|
28
|
+
import * as i26 from "./selected-filters/selected-filters.component";
|
|
29
|
+
import * as i27 from "./dashboards/insight-card/insight-card.component";
|
|
30
|
+
import * as i28 from "./badge/badge.component";
|
|
31
|
+
import * as i29 from "./dropdown-button/dropdown-button.component";
|
|
32
|
+
import * as i30 from "./dashboards/heat-error-map-cell/heat-error-map-cell.component";
|
|
33
|
+
import * as i31 from "./empty-state/empty-state.component";
|
|
34
|
+
import * as i32 from "./templates/table-template.component";
|
|
35
|
+
import * as i33 from "./full-table-loader/full-table-loader.component";
|
|
36
|
+
import * as i34 from "./table-data-loader/table-data-loader.component";
|
|
37
|
+
import * as i35 from "./execution-screen/basic-step/basic-step.component";
|
|
38
|
+
import * as i36 from "./execution-screen/step-renderer/step-renderer.component";
|
|
39
|
+
import * as i37 from "./execution-screen/step-group/step-group.component";
|
|
40
|
+
import * as i38 from "./execution-screen/loop-step/loop-step.component";
|
|
41
|
+
import * as i39 from "./execution-screen/condition-step/condition-step.component";
|
|
42
|
+
import * as i40 from "./execution-screen/failed-step/failed-step.component";
|
|
43
|
+
import * as i41 from "./execution-screen/updated-failed-step/updated-failed-step.component";
|
|
44
|
+
import * as i42 from "./execution-screen/view-more-failed-step-button/view-more-failed-step-button.component";
|
|
45
|
+
import * as i43 from "./execution-screen/self-heal-analysis/self-heal-analysis.component";
|
|
46
|
+
import * as i44 from "./execution-screen/ai-agent-step/ai-agent-step.component";
|
|
47
|
+
import * as i45 from "./execution-screen/ai-action-step/ai-action-step.component";
|
|
48
|
+
import * as i46 from "./execution-screen/api-step/api-step.component";
|
|
49
|
+
import * as i47 from "./execution-screen/file-download-step/file-download-step.component";
|
|
50
|
+
import * as i48 from "./execution-screen/document-verification-step/document-verification-step.component";
|
|
51
|
+
import * as i49 from "./execution-screen/live-execution-step/live-execution-step.component";
|
|
52
|
+
import * as i50 from "./execution-screen/main-step-collapse/main-step-collapse.component";
|
|
53
|
+
import * as i51 from "./execution-screen/visual-comparison/visual-comparison.component";
|
|
54
|
+
import * as i52 from "./simulator/simulator.component";
|
|
55
|
+
import * as i53 from "./console-alert/console-alert.component";
|
|
56
|
+
import * as i54 from "./ai-debug-alert/ai-debug-alert.component";
|
|
57
|
+
import * as i55 from "./network-request/network-request.component";
|
|
58
|
+
import * as i56 from "./run-history-card/run-history-card.component";
|
|
59
|
+
import * as i57 from "./visual-difference-modal/visual-difference-modal.component";
|
|
60
|
+
import * as i58 from "./configuration-card/configuration-card.component";
|
|
61
|
+
import * as i59 from "./compare-runs/compare-runs.component";
|
|
62
|
+
import * as i60 from "./iterations-loop/iterations-loop.component";
|
|
63
|
+
import * as i61 from "./failed-step-card/failed-step-card.component";
|
|
64
|
+
import * as i62 from "./custom-input/custom-input.component";
|
|
65
|
+
import * as i63 from "./custom-textarea/custom-textarea.component";
|
|
66
|
+
import * as i64 from "./custom-toggle/custom-toggle.component";
|
|
67
|
+
import * as i65 from "./file-upload/file-upload.component";
|
|
68
|
+
import * as i66 from "./ai-reasoning/ai-reasoning.component";
|
|
69
|
+
import * as i67 from "./execution-result-modal/execution-result-modal.component";
|
|
70
|
+
import * as i68 from "./error-modal/error-modal.component";
|
|
71
|
+
import * as i69 from "./progress-indicator/progress-indicator.component";
|
|
72
|
+
import * as i70 from "./step-progress-card/step-progress-card.component";
|
|
73
|
+
import * as i71 from "./step-status-card/step-status-card.component";
|
|
74
|
+
import * as i72 from "./execution-screen/db-verification-step/db-verification-step.component";
|
|
75
|
+
import * as i73 from "./execution-screen/db-query-execution-item/db-query-execution-item.component";
|
|
76
|
+
import * as i74 from "./test-case-details/normal-step/normal-step.component";
|
|
77
|
+
import * as i75 from "./test-case-details/loop-step/loop-step.component";
|
|
78
|
+
import * as i76 from "./test-case-details/condition-step/condition-step.component";
|
|
79
|
+
import * as i77 from "./test-case-details/step-group/step-group.component";
|
|
80
|
+
import * as i78 from "./test-case-details/test-case-details-renderer/test-case-details-renderer.component";
|
|
81
|
+
import * as i79 from "./test-case-details/api-step/api-step.component";
|
|
82
|
+
import * as i80 from "./test-case-details/database-step/database-step.component";
|
|
83
|
+
import * as i81 from "./test-case-details/ai-agent-step/ai-agent-step.component";
|
|
84
|
+
import * as i82 from "./test-case-details/ai-verify-step/ai-verify-step.component";
|
|
85
|
+
import * as i83 from "./test-case-details/upload-step/upload-step.component";
|
|
86
|
+
import * as i84 from "./test-case-details/screenshot-step/screenshot-step.component";
|
|
87
|
+
import * as i85 from "./test-case-details/scroll-step/scroll-step.component";
|
|
88
|
+
import * as i86 from "./test-case-details/verify-url-step/verify-url-step.component";
|
|
89
|
+
import * as i87 from "./test-case-details/restore-session-step/restore-session-step.component";
|
|
90
|
+
import * as i88 from "./test-case-details/custom-code-step/custom-code-step.component";
|
|
91
|
+
import * as i89 from "./test-case-details/custom-edit-step/custom-edit-step.component";
|
|
92
|
+
import * as i90 from "./item-list/item-list.component";
|
|
93
|
+
import * as i91 from "./test-case-details/test-data-modal/test-data-modal.component";
|
|
94
|
+
import * as i92 from "./live-conversation/live-conversation.component";
|
|
95
|
+
import * as i93 from "./step-builder/step-builder-action/step-builder-action.component";
|
|
96
|
+
import * as i94 from "./step-builder/step-builder-loop/step-builder-loop.component";
|
|
97
|
+
import * as i95 from "./test-case-details/element-popup/element-popup.component";
|
|
98
|
+
import * as i96 from "./step-builder/step-builder-condition/step-builder-condition.component";
|
|
99
|
+
import * as i97 from "./step-builder/step-builder-database/step-builder-database.component";
|
|
100
|
+
import * as i98 from "./step-builder/step-builder-ai-agent/step-builder-ai-agent.component";
|
|
101
|
+
import * as i99 from "./step-builder/step-builder-custom-code/step-builder-custom-code.component";
|
|
102
|
+
import * as i100 from "./step-builder/step-builder-record-step/step-builder-record-step.component";
|
|
103
|
+
import * as i101 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
|
|
104
|
+
import * as i102 from "./test-case-details/element-list/element-list.component";
|
|
105
|
+
import * as i103 from "./step-builder/step-builder-document/step-builder-document.component";
|
|
106
|
+
import * as i104 from "@angular/common";
|
|
107
|
+
import * as i105 from "@angular/forms";
|
|
108
|
+
import * as i106 from "@angular/material/icon";
|
|
109
|
+
import * as i107 from "@angular/material/menu";
|
|
110
|
+
import * as i108 from "@angular/material/button";
|
|
111
|
+
import * as i109 from "@angular/material/form-field";
|
|
112
|
+
import * as i110 from "@angular/material/select";
|
|
113
|
+
import * as i111 from "@angular/material/core";
|
|
114
|
+
import * as i112 from "@angular/material/checkbox";
|
|
115
|
+
import * as i113 from "@angular/material/radio";
|
|
116
|
+
import * as i114 from "@angular/material/slide-toggle";
|
|
117
|
+
import * as i115 from "@angular/material/datepicker";
|
|
118
|
+
import * as i116 from "@angular/material/progress-spinner";
|
|
119
|
+
import * as i117 from "@angular/material/tooltip";
|
|
120
|
+
import * as i118 from "@angular/material/dialog";
|
|
121
|
+
import * as i119 from "@angular/cdk/overlay";
|
|
122
|
+
import * as i120 from "@angular/cdk/portal";
|
|
123
|
+
import * as i121 from "ngx-typed-js";
|
|
124
|
+
import * as i122 from "ngx-drag-drop";
|
|
113
125
|
export declare class UiKitModule {
|
|
114
126
|
constructor(iconRegistry: MatIconRegistry);
|
|
115
127
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
|
|
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.
|
|
128
|
+
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.LiveConversationComponent, typeof i93.StepBuilderActionComponent, typeof i94.StepBuilderLoopComponent, typeof i95.ElementPopupComponent, typeof i96.StepBuilderConditionComponent, typeof i97.StepBuilderDatabaseComponent, typeof i98.StepBuilderAiAgentComponent, typeof i99.StepBuilderCustomCodeComponent, typeof i100.StepBuilderRecordStepComponent, typeof i101.StepBuilderDocumentGenerationTemplateStepComponent, typeof i102.ElementListComponent, typeof i103.StepBuilderDocumentComponent], [typeof i104.CommonModule, typeof i105.FormsModule, typeof i105.ReactiveFormsModule, typeof i106.MatIconModule, typeof i107.MatMenuModule, typeof i108.MatButtonModule, typeof i109.MatFormFieldModule, typeof i110.MatSelectModule, typeof i111.MatOptionModule, typeof i112.MatCheckboxModule, typeof i113.MatRadioModule, typeof i114.MatSlideToggleModule, typeof i115.MatDatepickerModule, typeof i111.MatNativeDateModule, typeof i116.MatProgressSpinnerModule, typeof i117.MatTooltipModule, typeof i118.MatDialogModule, typeof i119.OverlayModule, typeof i120.PortalModule, typeof i121.NgxTypedJsModule, typeof i122.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.LiveConversationComponent, typeof i93.StepBuilderActionComponent, typeof i94.StepBuilderLoopComponent, typeof i95.ElementPopupComponent, typeof i96.StepBuilderConditionComponent, typeof i97.StepBuilderDatabaseComponent, typeof i98.StepBuilderAiAgentComponent, typeof i99.StepBuilderCustomCodeComponent, typeof i100.StepBuilderRecordStepComponent, typeof i101.StepBuilderDocumentGenerationTemplateStepComponent, typeof i102.ElementListComponent, typeof i103.StepBuilderDocumentComponent]>;
|
|
117
129
|
static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
|
|
118
130
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ export * from './lib/dashboards/coverage-module-card/coverage-module-card.compon
|
|
|
27
27
|
export * from './lib/dashboards/test-distribution-card/test-distribution-card.component';
|
|
28
28
|
export * from './lib/dashboards/failed-test-cases-card/failed-test-cases-card.component';
|
|
29
29
|
export * from './lib/dynamic-select/dynamic-select-field.component';
|
|
30
|
+
export * from './lib/add-prerequisite-cases-section/add-prerequisite-cases-section.component';
|
|
30
31
|
export * from './lib/selected-filters/selected-filters.component';
|
|
31
32
|
export * from './lib/dashboards/insight-card/insight-card.component';
|
|
32
33
|
export * from './lib/badge/badge.component';
|
|
@@ -53,6 +54,7 @@ export * from './lib/iterations-loop/iterations-loop.component';
|
|
|
53
54
|
export * from './lib/failed-step-card/failed-step-card.component';
|
|
54
55
|
export * from './lib/custom-input/custom-input.component';
|
|
55
56
|
export * from './lib/custom-textarea/custom-textarea.component';
|
|
57
|
+
export * from './lib/custom-toggle/custom-toggle.component';
|
|
56
58
|
export * from './lib/execution-screen/basic-step/basic-step.component';
|
|
57
59
|
export * from './lib/execution-screen/step-group/step-group.component';
|
|
58
60
|
export * from './lib/execution-screen/loop-step/loop-step.component';
|
|
@@ -97,9 +99,26 @@ export * from './lib/test-case-details/custom-edit-step/custom-edit-step.compone
|
|
|
97
99
|
export * from './lib/test-case-details/custom-edit-step/custom-edit-step.service';
|
|
98
100
|
export * from './lib/test-case-details/custom-edit-step/custom-edit-step-ref';
|
|
99
101
|
export * from './lib/test-case-details/custom-edit-step/custom-edit-step-data';
|
|
102
|
+
export * from './lib/item-list/item-list.component';
|
|
103
|
+
export * from './lib/item-list/item-list.model';
|
|
104
|
+
export * from './lib/test-case-details/test-data-modal/test-data-modal.component';
|
|
105
|
+
export * from './lib/test-case-details/test-data-modal/test-data-modal.service';
|
|
106
|
+
export * from './lib/test-case-details/test-data-modal/test-data-modal-ref';
|
|
107
|
+
export * from './lib/test-case-details/test-data-modal/test-data-modal-data';
|
|
100
108
|
export * from './lib/test-case-details/test-case-step.models';
|
|
101
109
|
export * from './lib/live-conversation/live-conversation.component';
|
|
102
110
|
export * from './lib/step-builder/step-builder-action/step-builder-action.component';
|
|
103
111
|
export * from './lib/step-builder/step-builder-loop/step-builder-loop.component';
|
|
112
|
+
export * from './lib/test-case-details/element-popup/element-popup.component';
|
|
113
|
+
export * from './lib/test-case-details/element-popup/element-popup-ref';
|
|
114
|
+
export * from './lib/test-case-details/element-popup/element-popup-data';
|
|
115
|
+
export * from './lib/test-case-details/element-popup/element-popup.service';
|
|
104
116
|
export * from './lib/step-builder/step-builder-condition/step-builder-condition.component';
|
|
105
117
|
export * from './lib/step-builder/step-builder-database/step-builder-database.component';
|
|
118
|
+
export * from './lib/step-builder/step-builder-ai-agent/step-builder-ai-agent.component';
|
|
119
|
+
export * from './lib/test-case-details/element-list/element-list.component';
|
|
120
|
+
export * from './lib/step-builder/step-builder-document/step-builder-document.component';
|
|
121
|
+
export * from './lib/step-builder/step-builder-custom-code/step-builder-custom-code.component';
|
|
122
|
+
export * from './lib/step-builder/step-builder-record-step/step-builder-record-step.component';
|
|
123
|
+
export * from './lib/step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component';
|
|
124
|
+
export * from './lib/file-upload/file-upload.component';
|