@cqa-lib/cqa-ui 1.1.169 → 1.1.170

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/esm2020/lib/test-case-details/ai-verify-step/ai-verify-step.component.mjs +77 -0
  2. package/esm2020/lib/test-case-details/condition-step/condition-step.component.mjs +3 -3
  3. package/esm2020/lib/test-case-details/loop-step/loop-step.component.mjs +33 -3
  4. package/esm2020/lib/test-case-details/normal-step/normal-step.component.mjs +43 -3
  5. package/esm2020/lib/test-case-details/restore-session-step/restore-session-step.component.mjs +81 -0
  6. package/esm2020/lib/test-case-details/scroll-step/scroll-step.component.mjs +102 -0
  7. package/esm2020/lib/test-case-details/step-group/step-group.component.mjs +11 -3
  8. package/esm2020/lib/test-case-details/test-case-details-renderer/test-case-details-renderer.component.mjs +10 -2
  9. package/esm2020/lib/test-case-details/test-case-step-components.token.mjs +1 -1
  10. package/esm2020/lib/test-case-details/test-case-step.models.mjs +17 -1
  11. package/esm2020/lib/test-case-details/verify-url-step/verify-url-step.component.mjs +85 -0
  12. package/esm2020/lib/ui-kit.module.mjs +27 -1
  13. package/esm2020/public-api.mjs +5 -1
  14. package/fesm2015/cqa-lib-cqa-ui.mjs +460 -9
  15. package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
  16. package/fesm2020/cqa-lib-cqa-ui.mjs +458 -9
  17. package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
  18. package/lib/test-case-details/ai-verify-step/ai-verify-step.component.d.ts +31 -0
  19. package/lib/test-case-details/loop-step/loop-step.component.d.ts +6 -0
  20. package/lib/test-case-details/normal-step/normal-step.component.d.ts +5 -0
  21. package/lib/test-case-details/restore-session-step/restore-session-step.component.d.ts +31 -0
  22. package/lib/test-case-details/scroll-step/scroll-step.component.d.ts +41 -0
  23. package/lib/test-case-details/step-group/step-group.component.d.ts +2 -1
  24. package/lib/test-case-details/test-case-step-components.token.d.ts +4 -0
  25. package/lib/test-case-details/test-case-step.models.d.ts +36 -3
  26. package/lib/test-case-details/verify-url-step/verify-url-step.component.d.ts +32 -0
  27. package/lib/ui-kit.module.d.ts +30 -26
  28. package/package.json +1 -1
  29. package/public-api.d.ts +4 -0
  30. package/styles.css +1 -1
@@ -0,0 +1,31 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { AiVerifyStepConfig } from '../test-case-step.models';
3
+ import * as i0 from "@angular/core";
4
+ export declare class TestCaseAiVerifyStepComponent implements OnInit {
5
+ config: AiVerifyStepConfig;
6
+ stepNumber: number | string;
7
+ instructions: string;
8
+ description?: string;
9
+ selected: boolean;
10
+ disabled: boolean;
11
+ isNested: boolean;
12
+ isInsideLoop: boolean;
13
+ isReorder: boolean;
14
+ edit: EventEmitter<void>;
15
+ link: EventEmitter<void>;
16
+ duplicate: EventEmitter<void>;
17
+ delete: EventEmitter<void>;
18
+ moreOptions: EventEmitter<void>;
19
+ viewDetails: EventEmitter<void>;
20
+ selectionChange: EventEmitter<boolean>;
21
+ ngOnInit(): void;
22
+ onEdit(): void;
23
+ onLink(): void;
24
+ onDuplicate(): void;
25
+ onDelete(): void;
26
+ onMoreOptions(): void;
27
+ onViewDetails(): void;
28
+ onSelectionChange(checked: boolean): void;
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseAiVerifyStepComponent, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseAiVerifyStepComponent, "cqa-test-case-ai-verify-step", never, { "config": "config"; "stepNumber": "stepNumber"; "instructions": "instructions"; "description": "description"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "edit": "edit"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
31
+ }
@@ -66,8 +66,14 @@ export declare class TestCaseLoopStepComponent implements OnInit {
66
66
  private buildSelectConfigs;
67
67
  onEditFormFieldChange(controlName: string, value: string | number): void;
68
68
  getLoopTypeLabel(): string;
69
+ isWhileLoop(): boolean;
70
+ isForLoop(): boolean;
69
71
  getEndLabel(): string;
70
72
  getStepsSummary(): string;
73
+ getStartStepLabel(): string;
74
+ getEndStepLabel(): string;
75
+ getTestDataProfileLabel(): string;
76
+ getConditionDisplay(): string;
71
77
  onToggleExpanded(): void;
72
78
  onTestDataProfileChange(value: string): void;
73
79
  onStartStepChange(value: number): void;
@@ -29,6 +29,11 @@ export declare class TestCaseNormalStepComponent implements OnInit {
29
29
  getCurrentEventTypeConfig(): EventTypeConfig;
30
30
  getActionDescription(): string;
31
31
  getActionSuffix(): string;
32
+ /**
33
+ * Get the URL parameter for navigate steps (old UI style - show only URL)
34
+ * Returns the first parameter with name 'url' or 'URL', or the first parameter if none found
35
+ */
36
+ getNavigateUrlParameter(): StepParameter | null;
32
37
  onEventTypeSelect(eventType: TestCaseEventType): void;
33
38
  onParameterChange(parameter: StepParameter, value: string): void;
34
39
  onEdit(): void;
@@ -0,0 +1,31 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { RestoreSessionStepConfig } from '../test-case-step.models';
3
+ import * as i0 from "@angular/core";
4
+ export declare class TestCaseRestoreSessionStepComponent implements OnInit {
5
+ config: RestoreSessionStepConfig;
6
+ stepNumber: number | string;
7
+ action?: string;
8
+ selected: boolean;
9
+ disabled: boolean;
10
+ isNested: boolean;
11
+ isInsideLoop: boolean;
12
+ isReorder: boolean;
13
+ edit: EventEmitter<void>;
14
+ link: EventEmitter<void>;
15
+ duplicate: EventEmitter<void>;
16
+ delete: EventEmitter<void>;
17
+ moreOptions: EventEmitter<void>;
18
+ viewDetails: EventEmitter<void>;
19
+ selectionChange: EventEmitter<boolean>;
20
+ ngOnInit(): void;
21
+ getRestoreSessionDescription(): string;
22
+ onEdit(): void;
23
+ onLink(): void;
24
+ onDuplicate(): void;
25
+ onDelete(): void;
26
+ onMoreOptions(): void;
27
+ onViewDetails(): void;
28
+ onSelectionChange(checked: boolean): void;
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseRestoreSessionStepComponent, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseRestoreSessionStepComponent, "cqa-test-case-restore-session-step", never, { "config": "config"; "stepNumber": "stepNumber"; "action": "action"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "edit": "edit"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
31
+ }
@@ -0,0 +1,41 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { ScrollStepConfig } from '../test-case-step.models';
3
+ import * as i0 from "@angular/core";
4
+ export declare class TestCaseScrollStepComponent implements OnInit {
5
+ config: ScrollStepConfig;
6
+ stepNumber: number | string;
7
+ selector: string;
8
+ direction?: 'top' | 'bottom' | 'up' | 'down' | 'left' | 'right';
9
+ description?: string;
10
+ selected: boolean;
11
+ disabled: boolean;
12
+ isNested: boolean;
13
+ isInsideLoop: boolean;
14
+ expanded: boolean;
15
+ isReorder: boolean;
16
+ edit: EventEmitter<void>;
17
+ link: EventEmitter<void>;
18
+ duplicate: EventEmitter<void>;
19
+ delete: EventEmitter<void>;
20
+ viewDetails: EventEmitter<void>;
21
+ selectionChange: EventEmitter<boolean>;
22
+ toggleExpanded: EventEmitter<{
23
+ config: ScrollStepConfig;
24
+ expanded: boolean;
25
+ }>;
26
+ selectorChange: EventEmitter<string>;
27
+ directionChange: EventEmitter<"left" | "right" | "top" | "down" | "up" | "bottom">;
28
+ ngOnInit(): void;
29
+ getDisplayText(): string;
30
+ onToggleExpanded(): void;
31
+ onEdit(): void;
32
+ onLink(): void;
33
+ onDuplicate(): void;
34
+ onDelete(): void;
35
+ onViewDetails(): void;
36
+ onSelectionChange(checked: boolean): void;
37
+ onSelectorChange(value: string): void;
38
+ onDirectionChange(value: 'top' | 'bottom' | 'up' | 'down' | 'left' | 'right'): void;
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseScrollStepComponent, never>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseScrollStepComponent, "cqa-test-case-scroll-step", never, { "config": "config"; "stepNumber": "stepNumber"; "selector": "selector"; "direction": "direction"; "description": "description"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "expanded": "expanded"; "isReorder": "isReorder"; }, { "edit": "edit"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; "toggleExpanded": "toggleExpanded"; "selectorChange": "selectorChange"; "directionChange": "directionChange"; }, never, never>;
41
+ }
@@ -15,6 +15,7 @@ export declare class TestCaseStepGroupComponent implements OnInit, OnChanges, Do
15
15
  isNested: boolean;
16
16
  isInsideLoop: boolean;
17
17
  isReorder: boolean;
18
+ loading: boolean;
18
19
  private previousNestedStepsLength;
19
20
  private previousNestedStepsReference;
20
21
  constructor(cdr: ChangeDetectorRef);
@@ -73,5 +74,5 @@ export declare class TestCaseStepGroupComponent implements OnInit, OnChanges, Do
73
74
  onNestedConditionAddBranch(nestedStep: ConditionStepConfig, index: number): void;
74
75
  onNestedConditionDeleteBranch(nestedStep: ConditionStepConfig, branch: any, index: number): void;
75
76
  static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseStepGroupComponent, never>;
76
- static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseStepGroupComponent, "cqa-test-case-step-group", never, { "config": "config"; "id": "id"; "stepNumber": "stepNumber"; "groupName": "groupName"; "description": "description"; "reusable": "reusable"; "nestedSteps": "nestedSteps"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "toggleExpanded": "toggleExpanded"; "groupNameChange": "groupNameChange"; "descriptionChange": "descriptionChange"; "reusableChange": "reusableChange"; "nestedStepChange": "nestedStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "openExternal": "openExternal"; "edit": "edit"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "dndDropInZone": "dndDropInZone"; }, never, never>;
77
+ static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseStepGroupComponent, "cqa-test-case-step-group", never, { "config": "config"; "id": "id"; "stepNumber": "stepNumber"; "groupName": "groupName"; "description": "description"; "reusable": "reusable"; "nestedSteps": "nestedSteps"; "expanded": "expanded"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; "loading": "loading"; }, { "toggleExpanded": "toggleExpanded"; "groupNameChange": "groupNameChange"; "descriptionChange": "descriptionChange"; "reusableChange": "reusableChange"; "nestedStepChange": "nestedStepChange"; "addStep": "addStep"; "deleteStep": "deleteStep"; "openExternal": "openExternal"; "edit": "edit"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "dndDropInZone": "dndDropInZone"; }, never, never>;
77
78
  }
@@ -8,8 +8,12 @@ export interface TestCaseStepComponentMap {
8
8
  apiStep: Type<unknown>;
9
9
  databaseStep: Type<unknown>;
10
10
  aiAgentStep: Type<unknown>;
11
+ aiVerifyStep: Type<unknown>;
11
12
  uploadStep: Type<unknown>;
12
13
  screenshotStep: Type<unknown>;
14
+ scrollStep: Type<unknown>;
15
+ verifyUrlStep: Type<unknown>;
16
+ restoreSessionStep: Type<unknown>;
13
17
  customCodeStep: Type<unknown>;
14
18
  }
15
19
  export declare const TEST_CASE_STEP_COMPONENT_MAP: InjectionToken<TestCaseStepComponentMap>;
@@ -1,21 +1,25 @@
1
1
  /**
2
2
  * Models and interfaces for test case details step components
3
3
  */
4
- export declare type TestCaseEventType = 'navigate' | 'custom' | 'ai-agent' | 'type' | 'click' | 'verify' | 'wait';
4
+ export declare type TestCaseEventType = 'navigate' | 'custom' | 'ai-agent' | 'type' | 'click' | 'doubleClick' | 'pressEnter' | 'enter' | 'verify' | 'wait';
5
5
  export declare enum StepTypes {
6
6
  NORMAL = "NORMAL",
7
7
  API = "API",
8
8
  DATABASE = "DATABASE",
9
9
  AI_AGENT = "AI_AGENT",
10
+ AI_VERIFY = "AI_VERIFY",
10
11
  UPLOAD = "UPLOAD",
11
12
  SCREENSHOT = "SCREENSHOT",
13
+ VERIFY_URL = "VERIFY_URL",
14
+ RESTORE_SESSION = "RESTORE_SESSION",
12
15
  CUSTOM_CODE = "CUSTOM_CODE",
13
16
  FOR_LOOP = "FOR_LOOP",
14
17
  WHILE_LOOP = "WHILE_LOOP",
15
18
  BREAK_LOOP = "BREAK_LOOP",
16
19
  CONTINUE_LOOP = "CONTINUE_LOOP",
17
20
  CONDITION_IF = "CONDITION_IF",
18
- STEP_GROUP = "STEP_GROUP"
21
+ STEP_GROUP = "STEP_GROUP",
22
+ SCROLL = "SCROLL"
19
23
  }
20
24
  export interface EventTypeConfig {
21
25
  type: TestCaseEventType;
@@ -70,6 +74,11 @@ export interface AiAgentStepConfig extends BaseStepConfig {
70
74
  stepType: StepTypes.AI_AGENT;
71
75
  instructions: string;
72
76
  }
77
+ /** AI Verify Step Configuration */
78
+ export interface AiVerifyStepConfig extends BaseStepConfig {
79
+ stepType: StepTypes.AI_VERIFY;
80
+ instructions: string;
81
+ }
73
82
  /** Upload Step Configuration */
74
83
  export interface UploadStepConfig extends BaseStepConfig {
75
84
  stepType: StepTypes.UPLOAD;
@@ -85,6 +94,24 @@ export interface ScreenshotStepConfig extends BaseStepConfig {
85
94
  fullPage?: boolean;
86
95
  selector?: string;
87
96
  }
97
+ /** Scroll Step Configuration */
98
+ export interface ScrollStepConfig extends BaseStepConfig {
99
+ stepType: StepTypes.SCROLL;
100
+ selector: string;
101
+ direction?: 'top' | 'bottom' | 'up' | 'down' | 'left' | 'right';
102
+ description?: string;
103
+ }
104
+ /** Verify URL Step Configuration */
105
+ export interface VerifyUrlStepConfig extends BaseStepConfig {
106
+ stepType: StepTypes.VERIFY_URL;
107
+ action?: string;
108
+ url?: string;
109
+ }
110
+ /** Restore Session Step Configuration */
111
+ export interface RestoreSessionStepConfig extends BaseStepConfig {
112
+ stepType: StepTypes.RESTORE_SESSION;
113
+ action?: string;
114
+ }
88
115
  /** Custom Code Step Configuration */
89
116
  export interface CustomCodeStepConfig extends BaseStepConfig {
90
117
  stepType: StepTypes.CUSTOM_CODE;
@@ -105,6 +132,7 @@ export interface ConditionBranch {
105
132
  type: 'if' | 'else' | 'else-if';
106
133
  stepType: StepTypes.CONDITION_IF;
107
134
  label: string;
135
+ action?: string;
108
136
  nestedSteps: TestCaseStepConfig[];
109
137
  }
110
138
  export interface ConditionStepConfig extends BaseStepConfig {
@@ -118,8 +146,9 @@ export interface StepGroupConfig extends BaseStepConfig {
118
146
  reusable?: boolean;
119
147
  stepType: StepTypes.STEP_GROUP;
120
148
  nestedSteps: TestCaseStepConfig[];
149
+ loading?: boolean;
121
150
  }
122
- export declare type TestCaseStepConfig = NormalStepConfig | LoopStepConfig | ConditionStepConfig | StepGroupConfig | ApiStepConfig | DatabaseStepConfig | AiAgentStepConfig | UploadStepConfig | ScreenshotStepConfig | CustomCodeStepConfig;
151
+ export declare type TestCaseStepConfig = NormalStepConfig | LoopStepConfig | ConditionStepConfig | StepGroupConfig | ApiStepConfig | DatabaseStepConfig | AiAgentStepConfig | AiVerifyStepConfig | UploadStepConfig | ScreenshotStepConfig | ScrollStepConfig | VerifyUrlStepConfig | RestoreSessionStepConfig | CustomCodeStepConfig;
123
152
  /** Type guards for dispatching step type (e.g. in test-case-details-renderer) */
124
153
  export declare function isNormalStepConfig(step: TestCaseStepConfig): step is NormalStepConfig;
125
154
  export declare function isLoopStepConfig(step: TestCaseStepConfig): step is LoopStepConfig;
@@ -128,6 +157,10 @@ export declare function isStepGroupConfig(step: TestCaseStepConfig): step is Ste
128
157
  export declare function isApiStepConfig(step: TestCaseStepConfig): step is ApiStepConfig;
129
158
  export declare function isDatabaseStepConfig(step: TestCaseStepConfig): step is DatabaseStepConfig;
130
159
  export declare function isAiAgentStepConfig(step: TestCaseStepConfig): step is AiAgentStepConfig;
160
+ export declare function isAiVerifyStepConfig(step: TestCaseStepConfig): step is AiVerifyStepConfig;
131
161
  export declare function isUploadStepConfig(step: TestCaseStepConfig): step is UploadStepConfig;
132
162
  export declare function isScreenshotStepConfig(step: TestCaseStepConfig): step is ScreenshotStepConfig;
163
+ export declare function isScrollStepConfig(step: TestCaseStepConfig): step is ScrollStepConfig;
164
+ export declare function isVerifyUrlStepConfig(step: TestCaseStepConfig): step is VerifyUrlStepConfig;
165
+ export declare function isRestoreSessionStepConfig(step: TestCaseStepConfig): step is RestoreSessionStepConfig;
133
166
  export declare function isCustomCodeStepConfig(step: TestCaseStepConfig): step is CustomCodeStepConfig;
@@ -0,0 +1,32 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { VerifyUrlStepConfig } from '../test-case-step.models';
3
+ import * as i0 from "@angular/core";
4
+ export declare class TestCaseVerifyUrlStepComponent implements OnInit {
5
+ config: VerifyUrlStepConfig;
6
+ stepNumber: number | string;
7
+ action?: string;
8
+ url?: string;
9
+ selected: boolean;
10
+ disabled: boolean;
11
+ isNested: boolean;
12
+ isInsideLoop: boolean;
13
+ isReorder: boolean;
14
+ edit: EventEmitter<void>;
15
+ link: EventEmitter<void>;
16
+ duplicate: EventEmitter<void>;
17
+ delete: EventEmitter<void>;
18
+ moreOptions: EventEmitter<void>;
19
+ viewDetails: EventEmitter<void>;
20
+ selectionChange: EventEmitter<boolean>;
21
+ ngOnInit(): void;
22
+ getVerifyUrlDescription(): string;
23
+ onEdit(): void;
24
+ onLink(): void;
25
+ onDuplicate(): void;
26
+ onDelete(): void;
27
+ onMoreOptions(): void;
28
+ onViewDetails(): void;
29
+ onSelectionChange(checked: boolean): void;
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseVerifyUrlStepComponent, never>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseVerifyUrlStepComponent, "cqa-test-case-verify-url-step", never, { "config": "config"; "stepNumber": "stepNumber"; "action": "action"; "url": "url"; "selected": "selected"; "disabled": "disabled"; "isNested": "isNested"; "isInsideLoop": "isInsideLoop"; "isReorder": "isReorder"; }, { "edit": "edit"; "link": "link"; "duplicate": "duplicate"; "delete": "delete"; "moreOptions": "moreOptions"; "viewDetails": "viewDetails"; "selectionChange": "selectionChange"; }, never, never>;
32
+ }
@@ -78,34 +78,38 @@ import * as i75 from "./test-case-details/test-case-details-renderer/test-case-d
78
78
  import * as i76 from "./test-case-details/api-step/api-step.component";
79
79
  import * as i77 from "./test-case-details/database-step/database-step.component";
80
80
  import * as i78 from "./test-case-details/ai-agent-step/ai-agent-step.component";
81
- import * as i79 from "./test-case-details/upload-step/upload-step.component";
82
- import * as i80 from "./test-case-details/screenshot-step/screenshot-step.component";
83
- import * as i81 from "./test-case-details/custom-code-step/custom-code-step.component";
84
- import * as i82 from "./live-conversation/live-conversation.component";
85
- import * as i83 from "./step-builder/step-builder-action/step-builder-action.component";
86
- import * as i84 from "./step-builder/step-builder-loop/step-builder-loop.component";
87
- import * as i85 from "@angular/common";
88
- import * as i86 from "@angular/forms";
89
- import * as i87 from "@angular/material/icon";
90
- import * as i88 from "@angular/material/menu";
91
- import * as i89 from "@angular/material/button";
92
- import * as i90 from "@angular/material/form-field";
93
- import * as i91 from "@angular/material/select";
94
- import * as i92 from "@angular/material/core";
95
- import * as i93 from "@angular/material/checkbox";
96
- import * as i94 from "@angular/material/radio";
97
- import * as i95 from "@angular/material/slide-toggle";
98
- import * as i96 from "@angular/material/datepicker";
99
- import * as i97 from "@angular/material/progress-spinner";
100
- import * as i98 from "@angular/material/tooltip";
101
- import * as i99 from "@angular/material/dialog";
102
- import * as i100 from "@angular/cdk/overlay";
103
- import * as i101 from "@angular/cdk/portal";
104
- import * as i102 from "ngx-typed-js";
105
- import * as i103 from "ngx-drag-drop";
81
+ import * as i79 from "./test-case-details/ai-verify-step/ai-verify-step.component";
82
+ import * as i80 from "./test-case-details/upload-step/upload-step.component";
83
+ import * as i81 from "./test-case-details/screenshot-step/screenshot-step.component";
84
+ import * as i82 from "./test-case-details/scroll-step/scroll-step.component";
85
+ import * as i83 from "./test-case-details/verify-url-step/verify-url-step.component";
86
+ import * as i84 from "./test-case-details/restore-session-step/restore-session-step.component";
87
+ import * as i85 from "./test-case-details/custom-code-step/custom-code-step.component";
88
+ import * as i86 from "./live-conversation/live-conversation.component";
89
+ import * as i87 from "./step-builder/step-builder-action/step-builder-action.component";
90
+ import * as i88 from "./step-builder/step-builder-loop/step-builder-loop.component";
91
+ import * as i89 from "@angular/common";
92
+ import * as i90 from "@angular/forms";
93
+ import * as i91 from "@angular/material/icon";
94
+ import * as i92 from "@angular/material/menu";
95
+ import * as i93 from "@angular/material/button";
96
+ import * as i94 from "@angular/material/form-field";
97
+ import * as i95 from "@angular/material/select";
98
+ import * as i96 from "@angular/material/core";
99
+ import * as i97 from "@angular/material/checkbox";
100
+ import * as i98 from "@angular/material/radio";
101
+ import * as i99 from "@angular/material/slide-toggle";
102
+ import * as i100 from "@angular/material/datepicker";
103
+ import * as i101 from "@angular/material/progress-spinner";
104
+ import * as i102 from "@angular/material/tooltip";
105
+ import * as i103 from "@angular/material/dialog";
106
+ import * as i104 from "@angular/cdk/overlay";
107
+ import * as i105 from "@angular/cdk/portal";
108
+ import * as i106 from "ngx-typed-js";
109
+ import * as i107 from "ngx-drag-drop";
106
110
  export declare class UiKitModule {
107
111
  constructor(iconRegistry: MatIconRegistry);
108
112
  static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
109
- static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.SegmentControlComponent, typeof i4.DialogComponent, typeof i5.DynamicTableComponent, typeof i6.DynamicCellTemplateDirective, typeof i6.DynamicHeaderTemplateDirective, typeof i7.DynamicCellContainerDirective, typeof i8.PaginationComponent, typeof i9.ActionMenuButtonComponent, typeof i10.OtherButtonComponent, typeof i11.DynamicFilterComponent, typeof i12.DaterangepickerDirective, typeof i13.DaterangepickerComponent, typeof i14.ColumnVisibilityComponent, typeof i15.TableActionToolbarComponent, typeof i16.MetricsCardComponent, typeof i17.MetricsBlockComponent, typeof i18.ChartCardComponent, typeof i19.ProgressTextCardComponent, typeof i20.DashboardHeaderComponent, typeof i21.CoverageModuleCardComponent, typeof i22.TestDistributionCardComponent, typeof i23.FailedTestCasesCardComponent, typeof i24.DynamicSelectFieldComponent, typeof i25.SelectedFiltersComponent, typeof i26.InsightCardComponent, typeof i27.BadgeComponent, typeof i28.DropdownButtonComponent, typeof i29.HeatErrorMapCellComponent, typeof i30.EmptyStateComponent, typeof i31.TableTemplateComponent, typeof i32.FullTableLoaderComponent, typeof i33.TableDataLoaderComponent, typeof i34.BasicStepComponent, typeof i35.StepRendererComponent, typeof i36.StepGroupComponent, typeof i37.LoopStepComponent, typeof i38.ConditionStepComponent, typeof i39.FailedStepComponent, typeof i40.UpdatedFailedStepComponent, typeof i41.ViewMoreFailedStepButtonComponent, typeof i42.SelfHealAnalysisComponent, typeof i43.AIAgentStepComponent, typeof i44.AIActionStepComponent, typeof i45.ApiStepComponent, typeof i46.FileDownloadStepComponent, typeof i47.DocumentVerificationStepComponent, typeof i48.LiveExecutionStepComponent, typeof i49.MainStepCollapseComponent, typeof i50.VisualComparisonComponent, typeof i51.SimulatorComponent, typeof i52.ConsoleAlertComponent, typeof i53.AiDebugAlertComponent, typeof i54.NetworkRequestComponent, typeof i55.RunHistoryCardComponent, typeof i56.VisualDifferenceModalComponent, typeof i57.ConfigurationCardComponent, typeof i58.CompareRunsComponent, typeof i59.IterationsLoopComponent, typeof i60.FailedStepCardComponent, typeof i61.CustomInputComponent, typeof i62.CustomTextareaComponent, typeof i63.AiReasoningComponent, typeof i64.ExecutionResultModalComponent, typeof i65.ErrorModalComponent, typeof i66.ProgressIndicatorComponent, typeof i67.StepProgressCardComponent, typeof i68.StepStatusCardComponent, typeof i69.DbVerificationStepComponent, typeof i70.DbQueryExecutionItemComponent, typeof i71.TestCaseNormalStepComponent, typeof i72.TestCaseLoopStepComponent, typeof i73.TestCaseConditionStepComponent, typeof i74.TestCaseStepGroupComponent, typeof i75.TestCaseDetailsRendererComponent, typeof i76.TestCaseApiStepComponent, typeof i77.TestCaseDatabaseStepComponent, typeof i78.TestCaseAiAgentStepComponent, typeof i79.TestCaseUploadStepComponent, typeof i80.TestCaseScreenshotStepComponent, typeof i81.TestCaseCustomCodeStepComponent, typeof i82.LiveConversationComponent, typeof i83.StepBuilderActionComponent, typeof i84.StepBuilderLoopComponent], [typeof i85.CommonModule, typeof i86.FormsModule, typeof i86.ReactiveFormsModule, typeof i87.MatIconModule, typeof i88.MatMenuModule, typeof i89.MatButtonModule, typeof i90.MatFormFieldModule, typeof i91.MatSelectModule, typeof i92.MatOptionModule, typeof i93.MatCheckboxModule, typeof i94.MatRadioModule, typeof i95.MatSlideToggleModule, typeof i96.MatDatepickerModule, typeof i92.MatNativeDateModule, typeof i97.MatProgressSpinnerModule, typeof i98.MatTooltipModule, typeof i99.MatDialogModule, typeof i100.OverlayModule, typeof i101.PortalModule, typeof i102.NgxTypedJsModule, typeof i103.DndModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.SegmentControlComponent, typeof i4.DialogComponent, typeof i5.DynamicTableComponent, typeof i6.DynamicCellTemplateDirective, typeof i6.DynamicHeaderTemplateDirective, typeof i7.DynamicCellContainerDirective, typeof i8.PaginationComponent, typeof i9.ActionMenuButtonComponent, typeof i10.OtherButtonComponent, typeof i11.DynamicFilterComponent, typeof i12.DaterangepickerDirective, typeof i13.DaterangepickerComponent, typeof i14.ColumnVisibilityComponent, typeof i15.TableActionToolbarComponent, typeof i16.MetricsCardComponent, typeof i18.ChartCardComponent, typeof i19.ProgressTextCardComponent, typeof i20.DashboardHeaderComponent, typeof i21.CoverageModuleCardComponent, typeof i22.TestDistributionCardComponent, typeof i23.FailedTestCasesCardComponent, typeof i24.DynamicSelectFieldComponent, typeof i25.SelectedFiltersComponent, typeof i26.InsightCardComponent, typeof i27.BadgeComponent, typeof i28.DropdownButtonComponent, typeof i29.HeatErrorMapCellComponent, typeof i30.EmptyStateComponent, typeof i31.TableTemplateComponent, typeof i32.FullTableLoaderComponent, typeof i33.TableDataLoaderComponent, typeof i34.BasicStepComponent, typeof i35.StepRendererComponent, typeof i36.StepGroupComponent, typeof i37.LoopStepComponent, typeof i38.ConditionStepComponent, typeof i39.FailedStepComponent, typeof i40.UpdatedFailedStepComponent, typeof i41.ViewMoreFailedStepButtonComponent, typeof i42.SelfHealAnalysisComponent, typeof i43.AIAgentStepComponent, typeof i44.AIActionStepComponent, typeof i45.ApiStepComponent, typeof i46.FileDownloadStepComponent, typeof i47.DocumentVerificationStepComponent, typeof i48.LiveExecutionStepComponent, typeof i49.MainStepCollapseComponent, typeof i50.VisualComparisonComponent, typeof i51.SimulatorComponent, typeof i52.ConsoleAlertComponent, typeof i53.AiDebugAlertComponent, typeof i54.NetworkRequestComponent, typeof i55.RunHistoryCardComponent, typeof i56.VisualDifferenceModalComponent, typeof i57.ConfigurationCardComponent, typeof i58.CompareRunsComponent, typeof i59.IterationsLoopComponent, typeof i60.FailedStepCardComponent, typeof i61.CustomInputComponent, typeof i62.CustomTextareaComponent, typeof i63.AiReasoningComponent, typeof i64.ExecutionResultModalComponent, typeof i65.ErrorModalComponent, typeof i66.ProgressIndicatorComponent, typeof i67.StepProgressCardComponent, typeof i68.StepStatusCardComponent, typeof i69.DbVerificationStepComponent, typeof i70.DbQueryExecutionItemComponent, typeof i71.TestCaseNormalStepComponent, typeof i72.TestCaseLoopStepComponent, typeof i73.TestCaseConditionStepComponent, typeof i74.TestCaseStepGroupComponent, typeof i75.TestCaseDetailsRendererComponent, typeof i76.TestCaseApiStepComponent, typeof i77.TestCaseDatabaseStepComponent, typeof i78.TestCaseAiAgentStepComponent, typeof i79.TestCaseUploadStepComponent, typeof i80.TestCaseScreenshotStepComponent, typeof i81.TestCaseCustomCodeStepComponent, typeof i82.LiveConversationComponent, typeof i83.StepBuilderActionComponent, typeof i84.StepBuilderLoopComponent]>;
113
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.SegmentControlComponent, typeof i4.DialogComponent, typeof i5.DynamicTableComponent, typeof i6.DynamicCellTemplateDirective, typeof i6.DynamicHeaderTemplateDirective, typeof i7.DynamicCellContainerDirective, typeof i8.PaginationComponent, typeof i9.ActionMenuButtonComponent, typeof i10.OtherButtonComponent, typeof i11.DynamicFilterComponent, typeof i12.DaterangepickerDirective, typeof i13.DaterangepickerComponent, typeof i14.ColumnVisibilityComponent, typeof i15.TableActionToolbarComponent, typeof i16.MetricsCardComponent, typeof i17.MetricsBlockComponent, typeof i18.ChartCardComponent, typeof i19.ProgressTextCardComponent, typeof i20.DashboardHeaderComponent, typeof i21.CoverageModuleCardComponent, typeof i22.TestDistributionCardComponent, typeof i23.FailedTestCasesCardComponent, typeof i24.DynamicSelectFieldComponent, typeof i25.SelectedFiltersComponent, typeof i26.InsightCardComponent, typeof i27.BadgeComponent, typeof i28.DropdownButtonComponent, typeof i29.HeatErrorMapCellComponent, typeof i30.EmptyStateComponent, typeof i31.TableTemplateComponent, typeof i32.FullTableLoaderComponent, typeof i33.TableDataLoaderComponent, typeof i34.BasicStepComponent, typeof i35.StepRendererComponent, typeof i36.StepGroupComponent, typeof i37.LoopStepComponent, typeof i38.ConditionStepComponent, typeof i39.FailedStepComponent, typeof i40.UpdatedFailedStepComponent, typeof i41.ViewMoreFailedStepButtonComponent, typeof i42.SelfHealAnalysisComponent, typeof i43.AIAgentStepComponent, typeof i44.AIActionStepComponent, typeof i45.ApiStepComponent, typeof i46.FileDownloadStepComponent, typeof i47.DocumentVerificationStepComponent, typeof i48.LiveExecutionStepComponent, typeof i49.MainStepCollapseComponent, typeof i50.VisualComparisonComponent, typeof i51.SimulatorComponent, typeof i52.ConsoleAlertComponent, typeof i53.AiDebugAlertComponent, typeof i54.NetworkRequestComponent, typeof i55.RunHistoryCardComponent, typeof i56.VisualDifferenceModalComponent, typeof i57.ConfigurationCardComponent, typeof i58.CompareRunsComponent, typeof i59.IterationsLoopComponent, typeof i60.FailedStepCardComponent, typeof i61.CustomInputComponent, typeof i62.CustomTextareaComponent, typeof i63.AiReasoningComponent, typeof i64.ExecutionResultModalComponent, typeof i65.ErrorModalComponent, typeof i66.ProgressIndicatorComponent, typeof i67.StepProgressCardComponent, typeof i68.StepStatusCardComponent, typeof i69.DbVerificationStepComponent, typeof i70.DbQueryExecutionItemComponent, typeof i71.TestCaseNormalStepComponent, typeof i72.TestCaseLoopStepComponent, typeof i73.TestCaseConditionStepComponent, typeof i74.TestCaseStepGroupComponent, typeof i75.TestCaseDetailsRendererComponent, typeof i76.TestCaseApiStepComponent, typeof i77.TestCaseDatabaseStepComponent, typeof i78.TestCaseAiAgentStepComponent, typeof i79.TestCaseAiVerifyStepComponent, typeof i80.TestCaseUploadStepComponent, typeof i81.TestCaseScreenshotStepComponent, typeof i82.TestCaseScrollStepComponent, typeof i83.TestCaseVerifyUrlStepComponent, typeof i84.TestCaseRestoreSessionStepComponent, typeof i85.TestCaseCustomCodeStepComponent, typeof i86.LiveConversationComponent, typeof i87.StepBuilderActionComponent, typeof i88.StepBuilderLoopComponent], [typeof i89.CommonModule, typeof i90.FormsModule, typeof i90.ReactiveFormsModule, typeof i91.MatIconModule, typeof i92.MatMenuModule, typeof i93.MatButtonModule, typeof i94.MatFormFieldModule, typeof i95.MatSelectModule, typeof i96.MatOptionModule, typeof i97.MatCheckboxModule, typeof i98.MatRadioModule, typeof i99.MatSlideToggleModule, typeof i100.MatDatepickerModule, typeof i96.MatNativeDateModule, typeof i101.MatProgressSpinnerModule, typeof i102.MatTooltipModule, typeof i103.MatDialogModule, typeof i104.OverlayModule, typeof i105.PortalModule, typeof i106.NgxTypedJsModule, typeof i107.DndModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.SegmentControlComponent, typeof i4.DialogComponent, typeof i5.DynamicTableComponent, typeof i6.DynamicCellTemplateDirective, typeof i6.DynamicHeaderTemplateDirective, typeof i7.DynamicCellContainerDirective, typeof i8.PaginationComponent, typeof i9.ActionMenuButtonComponent, typeof i10.OtherButtonComponent, typeof i11.DynamicFilterComponent, typeof i12.DaterangepickerDirective, typeof i13.DaterangepickerComponent, typeof i14.ColumnVisibilityComponent, typeof i15.TableActionToolbarComponent, typeof i16.MetricsCardComponent, typeof i18.ChartCardComponent, typeof i19.ProgressTextCardComponent, typeof i20.DashboardHeaderComponent, typeof i21.CoverageModuleCardComponent, typeof i22.TestDistributionCardComponent, typeof i23.FailedTestCasesCardComponent, typeof i24.DynamicSelectFieldComponent, typeof i25.SelectedFiltersComponent, typeof i26.InsightCardComponent, typeof i27.BadgeComponent, typeof i28.DropdownButtonComponent, typeof i29.HeatErrorMapCellComponent, typeof i30.EmptyStateComponent, typeof i31.TableTemplateComponent, typeof i32.FullTableLoaderComponent, typeof i33.TableDataLoaderComponent, typeof i34.BasicStepComponent, typeof i35.StepRendererComponent, typeof i36.StepGroupComponent, typeof i37.LoopStepComponent, typeof i38.ConditionStepComponent, typeof i39.FailedStepComponent, typeof i40.UpdatedFailedStepComponent, typeof i41.ViewMoreFailedStepButtonComponent, typeof i42.SelfHealAnalysisComponent, typeof i43.AIAgentStepComponent, typeof i44.AIActionStepComponent, typeof i45.ApiStepComponent, typeof i46.FileDownloadStepComponent, typeof i47.DocumentVerificationStepComponent, typeof i48.LiveExecutionStepComponent, typeof i49.MainStepCollapseComponent, typeof i50.VisualComparisonComponent, typeof i51.SimulatorComponent, typeof i52.ConsoleAlertComponent, typeof i53.AiDebugAlertComponent, typeof i54.NetworkRequestComponent, typeof i55.RunHistoryCardComponent, typeof i56.VisualDifferenceModalComponent, typeof i57.ConfigurationCardComponent, typeof i58.CompareRunsComponent, typeof i59.IterationsLoopComponent, typeof i60.FailedStepCardComponent, typeof i61.CustomInputComponent, typeof i62.CustomTextareaComponent, typeof i63.AiReasoningComponent, typeof i64.ExecutionResultModalComponent, typeof i65.ErrorModalComponent, typeof i66.ProgressIndicatorComponent, typeof i67.StepProgressCardComponent, typeof i68.StepStatusCardComponent, typeof i69.DbVerificationStepComponent, typeof i70.DbQueryExecutionItemComponent, typeof i71.TestCaseNormalStepComponent, typeof i72.TestCaseLoopStepComponent, typeof i73.TestCaseConditionStepComponent, typeof i74.TestCaseStepGroupComponent, typeof i75.TestCaseDetailsRendererComponent, typeof i76.TestCaseApiStepComponent, typeof i77.TestCaseDatabaseStepComponent, typeof i78.TestCaseAiAgentStepComponent, typeof i80.TestCaseUploadStepComponent, typeof i81.TestCaseScreenshotStepComponent, typeof i82.TestCaseScrollStepComponent, typeof i83.TestCaseVerifyUrlStepComponent, typeof i84.TestCaseRestoreSessionStepComponent, typeof i85.TestCaseCustomCodeStepComponent, typeof i86.LiveConversationComponent, typeof i87.StepBuilderActionComponent, typeof i88.StepBuilderLoopComponent]>;
110
114
  static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
111
115
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cqa-lib/cqa-ui",
3
- "version": "1.1.169",
3
+ "version": "1.1.170",
4
4
  "description": "UI Kit library for Angular 13.4",
5
5
  "keywords": [
6
6
  "angular",
package/public-api.d.ts CHANGED
@@ -86,8 +86,12 @@ export * from './lib/test-case-details/test-case-details-renderer/test-case-deta
86
86
  export * from './lib/test-case-details/api-step/api-step.component';
87
87
  export * from './lib/test-case-details/database-step/database-step.component';
88
88
  export * from './lib/test-case-details/ai-agent-step/ai-agent-step.component';
89
+ export * from './lib/test-case-details/ai-verify-step/ai-verify-step.component';
89
90
  export * from './lib/test-case-details/upload-step/upload-step.component';
90
91
  export * from './lib/test-case-details/screenshot-step/screenshot-step.component';
92
+ export * from './lib/test-case-details/scroll-step/scroll-step.component';
93
+ export * from './lib/test-case-details/verify-url-step/verify-url-step.component';
94
+ export * from './lib/test-case-details/restore-session-step/restore-session-step.component';
91
95
  export * from './lib/test-case-details/custom-code-step/custom-code-step.component';
92
96
  export * from './lib/test-case-details/test-case-step.models';
93
97
  export * from './lib/live-conversation/live-conversation.component';