@cqa-lib/cqa-ui 1.1.218 → 1.1.219
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/execution-screen/ai-action-step/ai-action-step.component.mjs +44 -8
- package/esm2020/lib/execution-screen/ai-agent-step/ai-agent-step.component.mjs +44 -8
- package/esm2020/lib/execution-screen/api-step/api-step.component.mjs +44 -8
- package/esm2020/lib/execution-screen/basic-step/basic-step.component.mjs +53 -9
- package/esm2020/lib/execution-screen/condition-step/condition-step.component.mjs +56 -9
- package/esm2020/lib/execution-screen/db-verification-step/db-verification-step.component.mjs +48 -12
- package/esm2020/lib/execution-screen/document-verification-step/document-verification-step.component.mjs +41 -5
- package/esm2020/lib/execution-screen/execution-step.models.mjs +14 -2
- package/esm2020/lib/execution-screen/failed-step/failed-step.component.mjs +41 -5
- package/esm2020/lib/execution-screen/file-download-step/file-download-step.component.mjs +42 -6
- package/esm2020/lib/execution-screen/live-execution-step/live-execution-step.component.mjs +42 -5
- package/esm2020/lib/execution-screen/loop-step/loop-step.component.mjs +65 -11
- package/esm2020/lib/execution-screen/main-step-collapse/main-step-collapse.component.mjs +41 -4
- package/esm2020/lib/execution-screen/session-changes-modal/session-changes-modal.component.mjs +83 -0
- package/esm2020/lib/execution-screen/step-group/step-group.component.mjs +53 -6
- package/esm2020/lib/execution-screen/step-renderer/step-renderer.component.mjs +297 -28
- package/esm2020/lib/ui-kit.module.mjs +6 -1
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/cqa-lib-cqa-ui.mjs +961 -89
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +947 -89
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/execution-screen/ai-action-step/ai-action-step.component.d.ts +12 -2
- package/lib/execution-screen/ai-agent-step/ai-agent-step.component.d.ts +12 -2
- package/lib/execution-screen/api-step/api-step.component.d.ts +12 -2
- package/lib/execution-screen/basic-step/basic-step.component.d.ts +18 -2
- package/lib/execution-screen/condition-step/condition-step.component.d.ts +21 -2
- package/lib/execution-screen/db-verification-step/db-verification-step.component.d.ts +12 -2
- package/lib/execution-screen/document-verification-step/document-verification-step.component.d.ts +12 -2
- package/lib/execution-screen/execution-step.models.d.ts +14 -0
- package/lib/execution-screen/failed-step/failed-step.component.d.ts +11 -2
- package/lib/execution-screen/file-download-step/file-download-step.component.d.ts +12 -2
- package/lib/execution-screen/live-execution-step/live-execution-step.component.d.ts +12 -2
- package/lib/execution-screen/loop-step/loop-step.component.d.ts +23 -2
- package/lib/execution-screen/main-step-collapse/main-step-collapse.component.d.ts +18 -2
- package/lib/execution-screen/session-changes-modal/session-changes-modal.component.d.ts +34 -0
- package/lib/execution-screen/step-group/step-group.component.d.ts +23 -2
- package/lib/execution-screen/step-renderer/step-renderer.component.d.ts +33 -3
- package/lib/ui-kit.module.d.ts +72 -71
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/styles.css +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, OnInit, OnChanges, SimpleChanges, TemplateRef } from '@angular/core';
|
|
2
|
-
import { PrerequisiteItem, StepStatus } from '../execution-step.models';
|
|
2
|
+
import { PrerequisiteItem, StepStatus, AddStepMenuOption, StepMoreMenuOption } from '../execution-step.models';
|
|
3
3
|
import { ButtonVariant } from '../../button/button.component';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare type IconType = 'folder' | 'loop' | 'bar' | 'custom';
|
|
@@ -35,8 +35,21 @@ export declare class MainStepCollapseComponent implements OnInit, OnChanges {
|
|
|
35
35
|
viewStepsOpenInNewTab: boolean;
|
|
36
36
|
/** Optional initial item id to expand (e.g. first failed prerequisite). When set and present in items, that item is expanded on load. */
|
|
37
37
|
initialExpandedItemId: string | number | null;
|
|
38
|
+
/** When true, shows Edit/Add/More options icons before duration on each item. */
|
|
39
|
+
isDebug?: boolean;
|
|
38
40
|
itemContentTpl?: TemplateRef<any>;
|
|
39
41
|
viewSteps: EventEmitter<PrerequisiteItem>;
|
|
42
|
+
editStep: EventEmitter<PrerequisiteItem>;
|
|
43
|
+
addStepOptionSelect: EventEmitter<{
|
|
44
|
+
item: PrerequisiteItem;
|
|
45
|
+
option: AddStepMenuOption;
|
|
46
|
+
}>;
|
|
47
|
+
stepMoreOptionSelect: EventEmitter<{
|
|
48
|
+
item: PrerequisiteItem;
|
|
49
|
+
option: StepMoreMenuOption;
|
|
50
|
+
}>;
|
|
51
|
+
addStepMenuOptions: AddStepMenuOption[];
|
|
52
|
+
stepMoreMenuOptions: StepMoreMenuOption[];
|
|
40
53
|
headerButtonClick: EventEmitter<{
|
|
41
54
|
config: HeaderButtonConfig;
|
|
42
55
|
index: number;
|
|
@@ -51,6 +64,9 @@ export declare class MainStepCollapseComponent implements OnInit, OnChanges {
|
|
|
51
64
|
formatDuration(seconds: number): string;
|
|
52
65
|
getStatusIcon(status: StepStatus): string;
|
|
53
66
|
onViewSteps(item: PrerequisiteItem, event: Event): void;
|
|
67
|
+
onEditStep(item: PrerequisiteItem, event: Event): void;
|
|
68
|
+
onAddStepOptionSelect(item: PrerequisiteItem, option: AddStepMenuOption, event: Event): void;
|
|
69
|
+
onStepMoreOptionSelect(item: PrerequisiteItem, option: StepMoreMenuOption, event: Event): void;
|
|
54
70
|
isItemExpanded(itemId: string | number): boolean;
|
|
55
71
|
getDisplayCount(): number;
|
|
56
72
|
onHeaderButtonClick(config: HeaderButtonConfig, index: number, event: MouseEvent): void;
|
|
@@ -59,5 +75,5 @@ export declare class MainStepCollapseComponent implements OnInit, OnChanges {
|
|
|
59
75
|
/** Whether redirect mode is active and we have a URL for this item */
|
|
60
76
|
hasViewStepsRedirectUrl(item: PrerequisiteItem): boolean;
|
|
61
77
|
static ɵfac: i0.ɵɵFactoryDeclaration<MainStepCollapseComponent, never>;
|
|
62
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MainStepCollapseComponent, "cqa-main-step-collapse", never, { "title": "title"; "items": "items"; "expanded": "expanded"; "icon": "icon"; "count": "count"; "itemContentTemplate": "itemContentTemplate"; "headerButtons": "headerButtons"; "viewStepsAsRedirect": "viewStepsAsRedirect"; "getViewStepsUrl": "getViewStepsUrl"; "viewStepsOpenInNewTab": "viewStepsOpenInNewTab"; "initialExpandedItemId": "initialExpandedItemId"; }, { "viewSteps": "viewSteps"; "headerButtonClick": "headerButtonClick"; "expandedChange": "expandedChange"; }, ["itemContentTpl"], ["*", "[itemContent]", "[afterItems]"]>;
|
|
78
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MainStepCollapseComponent, "cqa-main-step-collapse", never, { "title": "title"; "items": "items"; "expanded": "expanded"; "icon": "icon"; "count": "count"; "itemContentTemplate": "itemContentTemplate"; "headerButtons": "headerButtons"; "viewStepsAsRedirect": "viewStepsAsRedirect"; "getViewStepsUrl": "getViewStepsUrl"; "viewStepsOpenInNewTab": "viewStepsOpenInNewTab"; "initialExpandedItemId": "initialExpandedItemId"; "isDebug": "isDebug"; "addStepMenuOptions": "addStepMenuOptions"; "stepMoreMenuOptions": "stepMoreMenuOptions"; }, { "viewSteps": "viewSteps"; "editStep": "editStep"; "addStepOptionSelect": "addStepOptionSelect"; "stepMoreOptionSelect": "stepMoreOptionSelect"; "headerButtonClick": "headerButtonClick"; "expandedChange": "expandedChange"; }, ["itemContentTpl"], ["*", "[itemContent]", "[afterItems]"]>;
|
|
63
79
|
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare type SessionChangeType = 'added' | 'edited';
|
|
4
|
+
export interface SessionChangeStep {
|
|
5
|
+
id: string;
|
|
6
|
+
description: string;
|
|
7
|
+
timestamp: string;
|
|
8
|
+
type: SessionChangeType;
|
|
9
|
+
}
|
|
10
|
+
export declare class SessionChangesModalComponent {
|
|
11
|
+
isOpen: boolean;
|
|
12
|
+
title: string;
|
|
13
|
+
addedSteps: SessionChangeStep[];
|
|
14
|
+
editedSteps: SessionChangeStep[];
|
|
15
|
+
saveButtonLabel: string;
|
|
16
|
+
saveButtonDisabled: boolean;
|
|
17
|
+
commitMessageTemplate: string;
|
|
18
|
+
closeModal: EventEmitter<void>;
|
|
19
|
+
saveToTestCase: EventEmitter<void>;
|
|
20
|
+
removeStep: EventEmitter<{
|
|
21
|
+
id: string;
|
|
22
|
+
type: SessionChangeType;
|
|
23
|
+
}>;
|
|
24
|
+
get totalChangesCount(): number;
|
|
25
|
+
get commitMessage(): string;
|
|
26
|
+
onBackdropClick(event: MouseEvent): void;
|
|
27
|
+
onClose(): void;
|
|
28
|
+
onSave(): void;
|
|
29
|
+
onRemoveStep(step: SessionChangeStep, event: Event): void;
|
|
30
|
+
onEscape(): void;
|
|
31
|
+
trackByStepId(_index: number, step: SessionChangeStep): string;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SessionChangesModalComponent, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SessionChangesModalComponent, "cqa-session-changes-modal", never, { "isOpen": "isOpen"; "title": "title"; "addedSteps": "addedSteps"; "editedSteps": "editedSteps"; "saveButtonLabel": "saveButtonLabel"; "saveButtonDisabled": "saveButtonDisabled"; "commitMessageTemplate": "commitMessageTemplate"; }, { "closeModal": "closeModal"; "saveToTestCase": "saveToTestCase"; "removeStep": "removeStep"; }, never, never>;
|
|
34
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, OnInit, OnChanges, SimpleChanges, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { StepGroupConfig, ConditionBranch, ExecutionStepConfig, StepStatus, TimingBreakdown } from '../execution-step.models';
|
|
2
|
+
import { StepGroupConfig, ConditionBranch, ExecutionStepConfig, StepStatus, TimingBreakdown, AddStepMenuOption, StepMoreMenuOption } from '../execution-step.models';
|
|
3
3
|
import { BaseStepComponent } from '../base-step.component';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class StepGroupComponent extends BaseStepComponent implements OnInit, OnChanges {
|
|
@@ -22,7 +22,22 @@ export declare class StepGroupComponent extends BaseStepComponent implements OnI
|
|
|
22
22
|
getDebugPointSetHandler?: (step: ExecutionStepConfig) => boolean;
|
|
23
23
|
onDebugPointChangeHandler?: (step: ExecutionStepConfig, value: boolean) => void;
|
|
24
24
|
debugPointChange: EventEmitter<boolean>;
|
|
25
|
+
editStep: EventEmitter<void>;
|
|
26
|
+
addStepOptionSelect: EventEmitter<AddStepMenuOption>;
|
|
27
|
+
stepMoreOptionSelect: EventEmitter<StepMoreMenuOption>;
|
|
28
|
+
addStepMenuOptions: AddStepMenuOption[];
|
|
29
|
+
stepMoreMenuOptions: StepMoreMenuOption[];
|
|
25
30
|
onExpandHandler?: (step: ExecutionStepConfig) => void;
|
|
31
|
+
/** When provided, passed to nested step-renderer so Edit on nested steps is forwarded with the step config. */
|
|
32
|
+
onEditStepHandler?: (step: ExecutionStepConfig) => void;
|
|
33
|
+
/** When provided, passed to nested step-renderer so Add-step menu selection on nested steps is forwarded. */
|
|
34
|
+
onAddStepOptionSelectHandler?: (option: AddStepMenuOption, step?: ExecutionStepConfig) => void;
|
|
35
|
+
/** When provided, passed to nested step-renderer so More options menu selection on nested steps is forwarded. */
|
|
36
|
+
onStepMoreOptionSelectHandler?: (option: StepMoreMenuOption, step?: ExecutionStepConfig) => void;
|
|
37
|
+
/** When provided, used to get add-step menu options per nested step at any depth; otherwise addStepMenuOptions is used. */
|
|
38
|
+
getAddStepMenuOptionsForNested?: (step: ExecutionStepConfig) => AddStepMenuOption[];
|
|
39
|
+
/** When provided, used to get step-more menu options per nested step at any depth; otherwise stepMoreMenuOptions is used. */
|
|
40
|
+
getStepMoreMenuOptionsForNested?: (step: ExecutionStepConfig) => StepMoreMenuOption[];
|
|
26
41
|
getConditionBranchesHandler?: (step: ExecutionStepConfig) => ConditionBranch[];
|
|
27
42
|
onConditionBranchClickHandler?: (step: any, branch: any) => void;
|
|
28
43
|
isStepLoadingHandler?: (step: ExecutionStepConfig) => boolean;
|
|
@@ -75,11 +90,17 @@ export declare class StepGroupComponent extends BaseStepComponent implements OnI
|
|
|
75
90
|
onExpand: EventEmitter<void>;
|
|
76
91
|
config: StepGroupConfig;
|
|
77
92
|
loadingSteps: Set<string>;
|
|
93
|
+
/** Show debug icon only when this step has no child steps (icon is shown on child steps instead). */
|
|
94
|
+
/** Show debug icon when debug mode is on (shown on parent and all child steps). */
|
|
95
|
+
get showDebugIcon(): boolean;
|
|
78
96
|
constructor(cdr: ChangeDetectorRef);
|
|
79
97
|
ngOnInit(): void;
|
|
80
98
|
ngOnChanges(changes: SimpleChanges): void;
|
|
81
99
|
private updateConfig;
|
|
82
100
|
onDebugPointClick(event: Event): void;
|
|
101
|
+
onEditStep(event: Event): void;
|
|
102
|
+
onAddStepOptionSelect(option: AddStepMenuOption, event: Event): void;
|
|
103
|
+
onStepMoreOptionSelect(option: StepMoreMenuOption, event: Event): void;
|
|
83
104
|
toggle(event?: Event): void;
|
|
84
105
|
isNestedStepLoading(step: ExecutionStepConfig): boolean;
|
|
85
106
|
markStepLoaded(step: ExecutionStepConfig): void;
|
|
@@ -110,5 +131,5 @@ export declare class StepGroupComponent extends BaseStepComponent implements OnI
|
|
|
110
131
|
isStepLoading(): boolean;
|
|
111
132
|
onJumpToTimestamp(event: Event): void;
|
|
112
133
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepGroupComponent, never>;
|
|
113
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepGroupComponent, "cqa-step-group", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "groupName": "groupName"; "steps": "steps"; "hasChild": "hasChild"; "isLoading": "isLoading"; "stepDeleted": "stepDeleted"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "getDebugPointSetHandler": "getDebugPointSetHandler"; "onDebugPointChangeHandler": "onDebugPointChangeHandler"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "onConditionBranchClickHandler": "onConditionBranchClickHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "onDownloadHandler": "onDownloadHandler"; "onFilePathCopiedHandler": "onFilePathCopiedHandler"; "onTextCopiedHandler": "onTextCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "downloadingStepId": "downloadingStepId"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; "step": "step"; }, { "debugPointChange": "debugPointChange"; "onExpand": "onExpand"; }, never, never>;
|
|
134
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepGroupComponent, "cqa-step-group", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "groupName": "groupName"; "steps": "steps"; "hasChild": "hasChild"; "isLoading": "isLoading"; "stepDeleted": "stepDeleted"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "getDebugPointSetHandler": "getDebugPointSetHandler"; "onDebugPointChangeHandler": "onDebugPointChangeHandler"; "addStepMenuOptions": "addStepMenuOptions"; "stepMoreMenuOptions": "stepMoreMenuOptions"; "onExpandHandler": "onExpandHandler"; "onEditStepHandler": "onEditStepHandler"; "onAddStepOptionSelectHandler": "onAddStepOptionSelectHandler"; "onStepMoreOptionSelectHandler": "onStepMoreOptionSelectHandler"; "getAddStepMenuOptionsForNested": "getAddStepMenuOptionsForNested"; "getStepMoreMenuOptionsForNested": "getStepMoreMenuOptionsForNested"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "onConditionBranchClickHandler": "onConditionBranchClickHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "onDownloadHandler": "onDownloadHandler"; "onFilePathCopiedHandler": "onFilePathCopiedHandler"; "onTextCopiedHandler": "onTextCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "downloadingStepId": "downloadingStepId"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; "step": "step"; }, { "debugPointChange": "debugPointChange"; "editStep": "editStep"; "addStepOptionSelect": "addStepOptionSelect"; "stepMoreOptionSelect": "stepMoreOptionSelect"; "onExpand": "onExpand"; }, never, never>;
|
|
114
135
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, ViewContainerRef, OnChanges, SimpleChanges, Type, AfterViewInit, DoCheck, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { ExecutionStepConfig } from '../execution-step.models';
|
|
2
|
+
import { ExecutionStepConfig, AddStepMenuOption, StepMoreMenuOption } from '../execution-step.models';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
/**
|
|
5
5
|
* Component that renders the appropriate step component based on the step type.
|
|
@@ -62,12 +62,42 @@ export declare class StepRendererComponent implements OnChanges, AfterViewInit,
|
|
|
62
62
|
container: ViewContainerRef;
|
|
63
63
|
isLive: boolean;
|
|
64
64
|
isDebug?: boolean;
|
|
65
|
+
/** When set, used directly for the rendered step's debugPointSet so the icon state propagates when toggled (e.g. in Storybook). */
|
|
66
|
+
debugPointSet?: boolean;
|
|
65
67
|
getDebugPointSetHandler?: (step: ExecutionStepConfig) => boolean;
|
|
66
68
|
onDebugPointChangeHandler?: (step: ExecutionStepConfig, value: boolean) => void;
|
|
69
|
+
/** Called when the user clicks the Edit icon on a step (when isDebug is true). Receives the step config so the parent can open an editor. */
|
|
70
|
+
onEditStepHandler?: (step: ExecutionStepConfig) => void;
|
|
71
|
+
/** Add-step menu options (e.g. "Add before", "Add after"). When set, passed to all rendered steps; when unset, steps use their default. Managed like httpMethodOptions in the API edit section. */
|
|
72
|
+
addStepMenuOptions?: AddStepMenuOption[];
|
|
73
|
+
/** Called when the user selects an option from the Plus menu. Receives the option and the step config. */
|
|
74
|
+
onAddStepOptionSelectHandler?: (option: AddStepMenuOption, step?: ExecutionStepConfig) => void;
|
|
75
|
+
/** More options (three-dot) menu options. When set, passed to all rendered steps. */
|
|
76
|
+
stepMoreMenuOptions?: StepMoreMenuOption[];
|
|
77
|
+
/** Called when the user selects an option from the More options (three-dot) menu. Receives the option and the step config. */
|
|
78
|
+
onStepMoreOptionSelectHandler?: (option: StepMoreMenuOption, step?: ExecutionStepConfig) => void;
|
|
79
|
+
/** When provided, passed to loop/condition steps so they can supply per-step menu options to their nested step-renderers (supports arbitrary nesting). */
|
|
80
|
+
getAddStepMenuOptionsForNested?: (step: ExecutionStepConfig) => AddStepMenuOption[];
|
|
81
|
+
/** When provided, passed to loop/condition steps so they can supply per-step menu options to their nested step-renderers (supports arbitrary nesting). */
|
|
82
|
+
getStepMoreMenuOptionsForNested?: (step: ExecutionStepConfig) => StepMoreMenuOption[];
|
|
67
83
|
stepNumber?: string;
|
|
84
|
+
/** Emitted when the user selects an option from the Add (plus) menu. Payload: { option, step }. */
|
|
85
|
+
addStepOptionSelect: EventEmitter<{
|
|
86
|
+
option: AddStepMenuOption;
|
|
87
|
+
step?: ExecutionStepConfig;
|
|
88
|
+
}>;
|
|
89
|
+
/** Emitted when the user selects an option from the More options (three-dot) menu. Payload: { option, step }. */
|
|
90
|
+
stepMoreOptionSelect: EventEmitter<{
|
|
91
|
+
option: StepMoreMenuOption;
|
|
92
|
+
step?: ExecutionStepConfig;
|
|
93
|
+
}>;
|
|
68
94
|
componentReady: EventEmitter<void>;
|
|
69
|
-
/** Effective type for component lookup: 'file-download' when testStepType === 'generateDocument'. */
|
|
95
|
+
/** Effective type for component lookup: 'file-download' when testStepType === 'generateDocument', 'loop' for FOR_LOOP/WHILE_LOOP. */
|
|
70
96
|
private getEffectiveStepType;
|
|
97
|
+
/** Whether the step is a loop step (for, while, or generic loop). */
|
|
98
|
+
private isLoopStep;
|
|
99
|
+
/** Resolve effective debugPointSet so it propagates when toggled (e.g. Storybook Controls). */
|
|
100
|
+
private getEffectiveDebugPointSet;
|
|
71
101
|
private static componentInstances;
|
|
72
102
|
private static componentRefs;
|
|
73
103
|
private static subscribedEventEmitters;
|
|
@@ -97,5 +127,5 @@ export declare class StepRendererComponent implements OnChanges, AfterViewInit,
|
|
|
97
127
|
private loadComponent;
|
|
98
128
|
ngDoCheck(): void;
|
|
99
129
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepRendererComponent, never>;
|
|
100
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepRendererComponent, "cqa-step-renderer", never, { "step": "step"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "selectedIterationId": "selectedIterationId"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "onConditionBranchClickHandler": "onConditionBranchClickHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "onDownloadHandler": "onDownloadHandler"; "onFilePathCopiedHandler": "onFilePathCopiedHandler"; "onTextCopiedHandler": "onTextCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "downloadingStepId": "downloadingStepId"; "isLive": "isLive"; "isDebug": "isDebug"; "getDebugPointSetHandler": "getDebugPointSetHandler"; "onDebugPointChangeHandler": "onDebugPointChangeHandler"; "stepNumber": "stepNumber"; }, { "componentReady": "componentReady"; }, never, never>;
|
|
130
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepRendererComponent, "cqa-step-renderer", never, { "step": "step"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "selectedIterationId": "selectedIterationId"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "onConditionBranchClickHandler": "onConditionBranchClickHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "onDownloadHandler": "onDownloadHandler"; "onFilePathCopiedHandler": "onFilePathCopiedHandler"; "onTextCopiedHandler": "onTextCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "downloadingStepId": "downloadingStepId"; "isLive": "isLive"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "getDebugPointSetHandler": "getDebugPointSetHandler"; "onDebugPointChangeHandler": "onDebugPointChangeHandler"; "onEditStepHandler": "onEditStepHandler"; "addStepMenuOptions": "addStepMenuOptions"; "onAddStepOptionSelectHandler": "onAddStepOptionSelectHandler"; "stepMoreMenuOptions": "stepMoreMenuOptions"; "onStepMoreOptionSelectHandler": "onStepMoreOptionSelectHandler"; "getAddStepMenuOptionsForNested": "getAddStepMenuOptionsForNested"; "getStepMoreMenuOptionsForNested": "getStepMoreMenuOptionsForNested"; "stepNumber": "stepNumber"; }, { "addStepOptionSelect": "addStepOptionSelect"; "stepMoreOptionSelect": "stepMoreOptionSelect"; "componentReady": "componentReady"; }, never, never>;
|
|
101
131
|
}
|
package/lib/ui-kit.module.d.ts
CHANGED
|
@@ -68,79 +68,80 @@ import * as i65 from "./custom-toggle/custom-toggle.component";
|
|
|
68
68
|
import * as i66 from "./file-upload/file-upload.component";
|
|
69
69
|
import * as i67 from "./ai-reasoning/ai-reasoning.component";
|
|
70
70
|
import * as i68 from "./execution-result-modal/execution-result-modal.component";
|
|
71
|
-
import * as i69 from "./
|
|
72
|
-
import * as i70 from "./
|
|
73
|
-
import * as i71 from "./
|
|
74
|
-
import * as i72 from "./step-
|
|
75
|
-
import * as i73 from "./
|
|
76
|
-
import * as i74 from "./execution-screen/db-
|
|
77
|
-
import * as i75 from "./
|
|
78
|
-
import * as i76 from "./test-case-details/
|
|
79
|
-
import * as i77 from "./test-case-details/
|
|
80
|
-
import * as i78 from "./test-case-details/step-
|
|
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/ai-
|
|
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 "./test-case-details/
|
|
90
|
-
import * as i88 from "./test-case-details/
|
|
91
|
-
import * as i89 from "./test-case-details/
|
|
92
|
-
import * as i90 from "./test-case-details/custom-
|
|
93
|
-
import * as i91 from "./
|
|
94
|
-
import * as i92 from "./
|
|
95
|
-
import * as i93 from "./test-case-details/
|
|
96
|
-
import * as i94 from "./test-case-details/
|
|
97
|
-
import * as i95 from "./test-case-details/
|
|
98
|
-
import * as i96 from "./
|
|
99
|
-
import * as i97 from "./
|
|
100
|
-
import * as i98 from "./step-builder/step-builder-
|
|
101
|
-
import * as i99 from "./
|
|
102
|
-
import * as i100 from "./
|
|
103
|
-
import * as i101 from "./step-builder/step-builder-
|
|
104
|
-
import * as i102 from "./step-builder/step-builder-
|
|
105
|
-
import * as i103 from "./step-builder/step-builder-
|
|
106
|
-
import * as i104 from "./step-builder/step-builder-
|
|
107
|
-
import * as i105 from "./step-builder/step-builder-
|
|
108
|
-
import * as i106 from "./
|
|
109
|
-
import * as i107 from "./
|
|
110
|
-
import * as i108 from "./
|
|
111
|
-
import * as i109 from "./detail-
|
|
112
|
-
import * as i110 from "./detail-drawer/detail-drawer
|
|
113
|
-
import * as i111 from "./detail-drawer/detail-drawer-tab-
|
|
114
|
-
import * as i112 from "./
|
|
115
|
-
import * as i113 from "./test-case-details/test-case-details
|
|
116
|
-
import * as i114 from "./
|
|
117
|
-
import * as i115 from "./
|
|
118
|
-
import * as i116 from "./
|
|
119
|
-
import * as i117 from "
|
|
120
|
-
import * as i118 from "@angular/
|
|
121
|
-
import * as i119 from "@angular/
|
|
122
|
-
import * as i120 from "@angular/
|
|
123
|
-
import * as i121 from "@angular/material/
|
|
124
|
-
import * as i122 from "@angular/material/
|
|
125
|
-
import * as i123 from "@angular/material/
|
|
126
|
-
import * as i124 from "@angular/material/
|
|
127
|
-
import * as i125 from "@angular/material/
|
|
128
|
-
import * as i126 from "@angular/material/
|
|
129
|
-
import * as i127 from "@angular/material/
|
|
130
|
-
import * as i128 from "@angular/material/
|
|
131
|
-
import * as i129 from "@angular/material/
|
|
132
|
-
import * as i130 from "@angular/material/
|
|
133
|
-
import * as i131 from "@angular/material/
|
|
134
|
-
import * as i132 from "@angular/material/
|
|
135
|
-
import * as i133 from "@angular/material/
|
|
136
|
-
import * as i134 from "@angular/material/
|
|
137
|
-
import * as i135 from "@angular/
|
|
138
|
-
import * as i136 from "@angular/cdk/
|
|
139
|
-
import * as i137 from "
|
|
140
|
-
import * as i138 from "ngx-
|
|
71
|
+
import * as i69 from "./execution-screen/session-changes-modal/session-changes-modal.component";
|
|
72
|
+
import * as i70 from "./error-modal/error-modal.component";
|
|
73
|
+
import * as i71 from "./progress-indicator/progress-indicator.component";
|
|
74
|
+
import * as i72 from "./step-progress-card/step-progress-card.component";
|
|
75
|
+
import * as i73 from "./step-status-card/step-status-card.component";
|
|
76
|
+
import * as i74 from "./execution-screen/db-verification-step/db-verification-step.component";
|
|
77
|
+
import * as i75 from "./execution-screen/db-query-execution-item/db-query-execution-item.component";
|
|
78
|
+
import * as i76 from "./test-case-details/normal-step/normal-step.component";
|
|
79
|
+
import * as i77 from "./test-case-details/loop-step/loop-step.component";
|
|
80
|
+
import * as i78 from "./test-case-details/condition-step/condition-step.component";
|
|
81
|
+
import * as i79 from "./test-case-details/step-group/step-group.component";
|
|
82
|
+
import * as i80 from "./test-case-details/test-case-details-renderer/test-case-details-renderer.component";
|
|
83
|
+
import * as i81 from "./test-case-details/api-step/api-step.component";
|
|
84
|
+
import * as i82 from "./test-case-details/database-step/database-step.component";
|
|
85
|
+
import * as i83 from "./test-case-details/ai-agent-step/ai-agent-step.component";
|
|
86
|
+
import * as i84 from "./test-case-details/ai-verify-step/ai-verify-step.component";
|
|
87
|
+
import * as i85 from "./test-case-details/upload-step/upload-step.component";
|
|
88
|
+
import * as i86 from "./test-case-details/screenshot-step/screenshot-step.component";
|
|
89
|
+
import * as i87 from "./test-case-details/scroll-step/scroll-step.component";
|
|
90
|
+
import * as i88 from "./test-case-details/verify-url-step/verify-url-step.component";
|
|
91
|
+
import * as i89 from "./test-case-details/restore-session-step/restore-session-step.component";
|
|
92
|
+
import * as i90 from "./test-case-details/custom-code-step/custom-code-step.component";
|
|
93
|
+
import * as i91 from "./test-case-details/custom-edit-step/custom-edit-step.component";
|
|
94
|
+
import * as i92 from "./item-list/item-list.component";
|
|
95
|
+
import * as i93 from "./test-case-details/test-data-modal/test-data-modal.component";
|
|
96
|
+
import * as i94 from "./test-case-details/create-step-group/create-step-group.component";
|
|
97
|
+
import * as i95 from "./test-case-details/delete-steps/delete-steps.component";
|
|
98
|
+
import * as i96 from "./test-case-details/api-edit-step/api-edit-step.component";
|
|
99
|
+
import * as i97 from "./live-conversation/live-conversation.component";
|
|
100
|
+
import * as i98 from "./step-builder/step-builder-action/step-builder-action.component";
|
|
101
|
+
import * as i99 from "./step-builder/step-builder-loop/step-builder-loop.component";
|
|
102
|
+
import * as i100 from "./test-case-details/element-popup/element-popup.component";
|
|
103
|
+
import * as i101 from "./step-builder/step-builder-condition/step-builder-condition.component";
|
|
104
|
+
import * as i102 from "./step-builder/step-builder-database/step-builder-database.component";
|
|
105
|
+
import * as i103 from "./step-builder/step-builder-ai-agent/step-builder-ai-agent.component";
|
|
106
|
+
import * as i104 from "./step-builder/step-builder-custom-code/step-builder-custom-code.component";
|
|
107
|
+
import * as i105 from "./step-builder/step-builder-record-step/step-builder-record-step.component";
|
|
108
|
+
import * as i106 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
|
|
109
|
+
import * as i107 from "./test-case-details/element-list/element-list.component";
|
|
110
|
+
import * as i108 from "./step-builder/step-builder-document/step-builder-document.component";
|
|
111
|
+
import * as i109 from "./detail-side-panel/detail-side-panel.component";
|
|
112
|
+
import * as i110 from "./detail-drawer/detail-drawer.component";
|
|
113
|
+
import * as i111 from "./detail-drawer/detail-drawer-tab/detail-drawer-tab.component";
|
|
114
|
+
import * as i112 from "./detail-drawer/detail-drawer-tab-content.directive";
|
|
115
|
+
import * as i113 from "./test-case-details/test-case-details.component";
|
|
116
|
+
import * as i114 from "./test-case-details/test-case-details-edit/test-case-details-edit.component";
|
|
117
|
+
import * as i115 from "./step-builder/step-builder-group/step-builder-group.component";
|
|
118
|
+
import * as i116 from "./test-case-details/step-details-drawer/step-details-drawer.component";
|
|
119
|
+
import * as i117 from "./step-builder/template-variables-form/template-variables-form.component";
|
|
120
|
+
import * as i118 from "@angular/common";
|
|
121
|
+
import * as i119 from "@angular/forms";
|
|
122
|
+
import * as i120 from "@angular/platform-browser/animations";
|
|
123
|
+
import * as i121 from "@angular/material/icon";
|
|
124
|
+
import * as i122 from "@angular/material/menu";
|
|
125
|
+
import * as i123 from "@angular/material/button";
|
|
126
|
+
import * as i124 from "@angular/material/form-field";
|
|
127
|
+
import * as i125 from "@angular/material/select";
|
|
128
|
+
import * as i126 from "@angular/material/core";
|
|
129
|
+
import * as i127 from "@angular/material/checkbox";
|
|
130
|
+
import * as i128 from "@angular/material/radio";
|
|
131
|
+
import * as i129 from "@angular/material/slide-toggle";
|
|
132
|
+
import * as i130 from "@angular/material/datepicker";
|
|
133
|
+
import * as i131 from "@angular/material/progress-spinner";
|
|
134
|
+
import * as i132 from "@angular/material/tooltip";
|
|
135
|
+
import * as i133 from "@angular/material/dialog";
|
|
136
|
+
import * as i134 from "@angular/material/table";
|
|
137
|
+
import * as i135 from "@angular/material/input";
|
|
138
|
+
import * as i136 from "@angular/cdk/overlay";
|
|
139
|
+
import * as i137 from "@angular/cdk/portal";
|
|
140
|
+
import * as i138 from "ngx-typed-js";
|
|
141
|
+
import * as i139 from "ngx-drag-drop";
|
|
141
142
|
export declare class UiKitModule {
|
|
142
143
|
constructor(iconRegistry: MatIconRegistry);
|
|
143
144
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
|
|
144
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.DialogComponent, typeof i6.DynamicTableComponent, typeof i7.DynamicCellTemplateDirective, typeof i7.DynamicHeaderTemplateDirective, typeof i8.DynamicCellContainerDirective, typeof i9.PaginationComponent, typeof i10.ActionMenuButtonComponent, typeof i11.OtherButtonComponent, typeof i12.DynamicFilterComponent, typeof i13.DaterangepickerDirective, typeof i14.DaterangepickerComponent, typeof i15.ColumnVisibilityComponent, typeof i16.TableActionToolbarComponent, typeof i17.MetricsCardComponent, typeof i18.MetricsBlockComponent, typeof i19.ChartCardComponent, typeof i20.ProgressTextCardComponent, typeof i21.DashboardHeaderComponent, typeof i22.CoverageModuleCardComponent, typeof i23.TestDistributionCardComponent, typeof i24.FailedTestCasesCardComponent, typeof i25.DynamicSelectFieldComponent, typeof i26.AddPrerequisiteCasesSectionComponent, typeof i27.SelectedFiltersComponent, typeof i28.InsightCardComponent, typeof i29.BadgeComponent, typeof i30.DropdownButtonComponent, typeof i31.HeatErrorMapCellComponent, typeof i32.EmptyStateComponent, typeof i33.TableTemplateComponent, typeof i34.FullTableLoaderComponent, typeof i35.TableDataLoaderComponent, typeof i36.BasicStepComponent, typeof i37.StepRendererComponent, typeof i38.StepGroupComponent, typeof i39.LoopStepComponent, typeof i40.ConditionStepComponent, typeof i41.FailedStepComponent, typeof i42.UpdatedFailedStepComponent, typeof i43.ViewMoreFailedStepButtonComponent, typeof i44.SelfHealAnalysisComponent, typeof i45.AIAgentStepComponent, typeof i46.AIActionStepComponent, typeof i47.ApiStepComponent, typeof i48.FileDownloadStepComponent, typeof i49.DocumentVerificationStepComponent, typeof i50.LiveExecutionStepComponent, typeof i51.MainStepCollapseComponent, typeof i52.VisualComparisonComponent, typeof i53.SimulatorComponent, typeof i54.ConsoleAlertComponent, typeof i55.AiDebugAlertComponent, typeof i56.NetworkRequestComponent, typeof i57.RunHistoryCardComponent, typeof i58.VisualDifferenceModalComponent, typeof i59.ConfigurationCardComponent, typeof i60.CompareRunsComponent, typeof i61.IterationsLoopComponent, typeof i62.FailedStepCardComponent, typeof i63.CustomInputComponent, typeof i64.CustomTextareaComponent, typeof i65.CustomToggleComponent, typeof i66.FileUploadComponent, typeof i67.AiReasoningComponent, typeof i68.ExecutionResultModalComponent, typeof i69.
|
|
145
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.DialogComponent, typeof i6.DynamicTableComponent, typeof i7.DynamicCellTemplateDirective, typeof i7.DynamicHeaderTemplateDirective, typeof i8.DynamicCellContainerDirective, typeof i9.PaginationComponent, typeof i10.ActionMenuButtonComponent, typeof i11.OtherButtonComponent, typeof i12.DynamicFilterComponent, typeof i13.DaterangepickerDirective, typeof i14.DaterangepickerComponent, typeof i15.ColumnVisibilityComponent, typeof i16.TableActionToolbarComponent, typeof i17.MetricsCardComponent, typeof i18.MetricsBlockComponent, typeof i19.ChartCardComponent, typeof i20.ProgressTextCardComponent, typeof i21.DashboardHeaderComponent, typeof i22.CoverageModuleCardComponent, typeof i23.TestDistributionCardComponent, typeof i24.FailedTestCasesCardComponent, typeof i25.DynamicSelectFieldComponent, typeof i26.AddPrerequisiteCasesSectionComponent, typeof i27.SelectedFiltersComponent, typeof i28.InsightCardComponent, typeof i29.BadgeComponent, typeof i30.DropdownButtonComponent, typeof i31.HeatErrorMapCellComponent, typeof i32.EmptyStateComponent, typeof i33.TableTemplateComponent, typeof i34.FullTableLoaderComponent, typeof i35.TableDataLoaderComponent, typeof i36.BasicStepComponent, typeof i37.StepRendererComponent, typeof i38.StepGroupComponent, typeof i39.LoopStepComponent, typeof i40.ConditionStepComponent, typeof i41.FailedStepComponent, typeof i42.UpdatedFailedStepComponent, typeof i43.ViewMoreFailedStepButtonComponent, typeof i44.SelfHealAnalysisComponent, typeof i45.AIAgentStepComponent, typeof i46.AIActionStepComponent, typeof i47.ApiStepComponent, typeof i48.FileDownloadStepComponent, typeof i49.DocumentVerificationStepComponent, typeof i50.LiveExecutionStepComponent, typeof i51.MainStepCollapseComponent, typeof i52.VisualComparisonComponent, typeof i53.SimulatorComponent, typeof i54.ConsoleAlertComponent, typeof i55.AiDebugAlertComponent, typeof i56.NetworkRequestComponent, typeof i57.RunHistoryCardComponent, typeof i58.VisualDifferenceModalComponent, typeof i59.ConfigurationCardComponent, typeof i60.CompareRunsComponent, typeof i61.IterationsLoopComponent, typeof i62.FailedStepCardComponent, typeof i63.CustomInputComponent, typeof i64.CustomTextareaComponent, typeof i65.CustomToggleComponent, typeof i66.FileUploadComponent, typeof i67.AiReasoningComponent, typeof i68.ExecutionResultModalComponent, typeof i69.SessionChangesModalComponent, typeof i70.ErrorModalComponent, typeof i71.ProgressIndicatorComponent, typeof i72.StepProgressCardComponent, typeof i73.StepStatusCardComponent, typeof i74.DbVerificationStepComponent, typeof i75.DbQueryExecutionItemComponent, typeof i76.TestCaseNormalStepComponent, typeof i77.TestCaseLoopStepComponent, typeof i78.TestCaseConditionStepComponent, typeof i79.TestCaseStepGroupComponent, typeof i80.TestCaseDetailsRendererComponent, typeof i81.TestCaseApiStepComponent, typeof i82.TestCaseDatabaseStepComponent, typeof i83.TestCaseAiAgentStepComponent, typeof i84.TestCaseAiVerifyStepComponent, typeof i85.TestCaseUploadStepComponent, typeof i86.TestCaseScreenshotStepComponent, typeof i87.TestCaseScrollStepComponent, typeof i88.TestCaseVerifyUrlStepComponent, typeof i89.TestCaseRestoreSessionStepComponent, typeof i90.TestCaseCustomCodeStepComponent, typeof i91.CustomEditStepComponent, typeof i92.ItemListComponent, typeof i93.TestDataModalComponent, typeof i94.CreateStepGroupComponent, typeof i95.DeleteStepsComponent, typeof i96.ApiEditStepComponent, typeof i97.LiveConversationComponent, typeof i98.StepBuilderActionComponent, typeof i99.StepBuilderLoopComponent, typeof i100.ElementPopupComponent, typeof i101.StepBuilderConditionComponent, typeof i102.StepBuilderDatabaseComponent, typeof i103.StepBuilderAiAgentComponent, typeof i104.StepBuilderCustomCodeComponent, typeof i105.StepBuilderRecordStepComponent, typeof i106.StepBuilderDocumentGenerationTemplateStepComponent, typeof i107.ElementListComponent, typeof i108.StepBuilderDocumentComponent, typeof i109.DetailSidePanelComponent, typeof i110.DetailDrawerComponent, typeof i111.DetailDrawerTabComponent, typeof i112.DetailDrawerTabContentDirective, typeof i113.TestCaseDetailsComponent, typeof i114.TestCaseDetailsEditComponent, typeof i115.StepBuilderGroupComponent, typeof i116.StepDetailsDrawerComponent, typeof i117.TemplateVariablesFormComponent], [typeof i118.CommonModule, typeof i119.FormsModule, typeof i119.ReactiveFormsModule, typeof i120.NoopAnimationsModule, typeof i121.MatIconModule, typeof i122.MatMenuModule, typeof i123.MatButtonModule, typeof i124.MatFormFieldModule, typeof i125.MatSelectModule, typeof i126.MatOptionModule, typeof i127.MatCheckboxModule, typeof i128.MatRadioModule, typeof i129.MatSlideToggleModule, typeof i130.MatDatepickerModule, typeof i126.MatNativeDateModule, typeof i131.MatProgressSpinnerModule, typeof i132.MatTooltipModule, typeof i133.MatDialogModule, typeof i134.MatTableModule, typeof i135.MatInputModule, typeof i136.OverlayModule, typeof i137.PortalModule, typeof i138.NgxTypedJsModule, typeof i139.DndModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.DialogComponent, typeof i6.DynamicTableComponent, typeof i7.DynamicCellTemplateDirective, typeof i7.DynamicHeaderTemplateDirective, typeof i8.DynamicCellContainerDirective, typeof i9.PaginationComponent, typeof i10.ActionMenuButtonComponent, typeof i11.OtherButtonComponent, typeof i12.DynamicFilterComponent, typeof i13.DaterangepickerDirective, typeof i14.DaterangepickerComponent, typeof i15.ColumnVisibilityComponent, typeof i16.TableActionToolbarComponent, typeof i17.MetricsCardComponent, typeof i19.ChartCardComponent, typeof i20.ProgressTextCardComponent, typeof i21.DashboardHeaderComponent, typeof i22.CoverageModuleCardComponent, typeof i23.TestDistributionCardComponent, typeof i24.FailedTestCasesCardComponent, typeof i25.DynamicSelectFieldComponent, typeof i26.AddPrerequisiteCasesSectionComponent, typeof i27.SelectedFiltersComponent, typeof i28.InsightCardComponent, typeof i29.BadgeComponent, typeof i30.DropdownButtonComponent, typeof i31.HeatErrorMapCellComponent, typeof i32.EmptyStateComponent, typeof i33.TableTemplateComponent, typeof i34.FullTableLoaderComponent, typeof i35.TableDataLoaderComponent, typeof i36.BasicStepComponent, typeof i37.StepRendererComponent, typeof i38.StepGroupComponent, typeof i39.LoopStepComponent, typeof i40.ConditionStepComponent, typeof i41.FailedStepComponent, typeof i42.UpdatedFailedStepComponent, typeof i43.ViewMoreFailedStepButtonComponent, typeof i44.SelfHealAnalysisComponent, typeof i45.AIAgentStepComponent, typeof i46.AIActionStepComponent, typeof i47.ApiStepComponent, typeof i48.FileDownloadStepComponent, typeof i49.DocumentVerificationStepComponent, typeof i50.LiveExecutionStepComponent, typeof i51.MainStepCollapseComponent, typeof i52.VisualComparisonComponent, typeof i53.SimulatorComponent, typeof i54.ConsoleAlertComponent, typeof i55.AiDebugAlertComponent, typeof i56.NetworkRequestComponent, typeof i57.RunHistoryCardComponent, typeof i58.VisualDifferenceModalComponent, typeof i59.ConfigurationCardComponent, typeof i60.CompareRunsComponent, typeof i61.IterationsLoopComponent, typeof i62.FailedStepCardComponent, typeof i63.CustomInputComponent, typeof i64.CustomTextareaComponent, typeof i65.CustomToggleComponent, typeof i66.FileUploadComponent, typeof i67.AiReasoningComponent, typeof i68.ExecutionResultModalComponent, typeof i69.SessionChangesModalComponent, typeof i70.ErrorModalComponent, typeof i71.ProgressIndicatorComponent, typeof i72.StepProgressCardComponent, typeof i73.StepStatusCardComponent, typeof i74.DbVerificationStepComponent, typeof i75.DbQueryExecutionItemComponent, typeof i76.TestCaseNormalStepComponent, typeof i77.TestCaseLoopStepComponent, typeof i78.TestCaseConditionStepComponent, typeof i79.TestCaseStepGroupComponent, typeof i80.TestCaseDetailsRendererComponent, typeof i81.TestCaseApiStepComponent, typeof i82.TestCaseDatabaseStepComponent, typeof i83.TestCaseAiAgentStepComponent, typeof i85.TestCaseUploadStepComponent, typeof i86.TestCaseScreenshotStepComponent, typeof i87.TestCaseScrollStepComponent, typeof i88.TestCaseVerifyUrlStepComponent, typeof i89.TestCaseRestoreSessionStepComponent, typeof i90.TestCaseCustomCodeStepComponent, typeof i91.CustomEditStepComponent, typeof i92.ItemListComponent, typeof i93.TestDataModalComponent, typeof i94.CreateStepGroupComponent, typeof i95.DeleteStepsComponent, typeof i96.ApiEditStepComponent, typeof i97.LiveConversationComponent, typeof i98.StepBuilderActionComponent, typeof i99.StepBuilderLoopComponent, typeof i100.ElementPopupComponent, typeof i101.StepBuilderConditionComponent, typeof i102.StepBuilderDatabaseComponent, typeof i103.StepBuilderAiAgentComponent, typeof i104.StepBuilderCustomCodeComponent, typeof i105.StepBuilderRecordStepComponent, typeof i106.StepBuilderDocumentGenerationTemplateStepComponent, typeof i107.ElementListComponent, typeof i108.StepBuilderDocumentComponent, typeof i109.DetailSidePanelComponent, typeof i110.DetailDrawerComponent, typeof i111.DetailDrawerTabComponent, typeof i112.DetailDrawerTabContentDirective, typeof i113.TestCaseDetailsComponent, typeof i114.TestCaseDetailsEditComponent, typeof i115.StepBuilderGroupComponent, typeof i116.StepDetailsDrawerComponent, typeof i117.TemplateVariablesFormComponent]>;
|
|
145
146
|
static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
|
|
146
147
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -76,6 +76,7 @@ export * from './lib/execution-screen/visual-comparison/visual-comparison.compon
|
|
|
76
76
|
export * from './lib/execution-screen/step-renderer/step-renderer.component';
|
|
77
77
|
export * from './lib/ai-reasoning/ai-reasoning.component';
|
|
78
78
|
export * from './lib/execution-result-modal/execution-result-modal.component';
|
|
79
|
+
export * from './lib/execution-screen/session-changes-modal/session-changes-modal.component';
|
|
79
80
|
export * from './lib/error-modal/error-modal.component';
|
|
80
81
|
export * from './lib/progress-indicator/progress-indicator.component';
|
|
81
82
|
export * from './lib/step-progress-card/step-progress-card.component';
|