@cqa-lib/cqa-ui 1.1.491 → 1.1.492

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.
@@ -0,0 +1,46 @@
1
+ import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
+ import { MatRadioChange } from '@angular/material/radio';
3
+ import { ButtonVariant } from '../button/button.component';
4
+ import * as i0 from "@angular/core";
5
+ export declare type SubStepsOptionVariant = 'default' | 'danger';
6
+ export interface SubStepsConfirmationOption {
7
+ /** Unique identifier for the option (emitted via `selectionChange` / `confirm`). */
8
+ value: string;
9
+ /** Bold title shown on the card. */
10
+ title: string;
11
+ /** Paragraph shown under the title. */
12
+ description: string;
13
+ /** `danger` renders the title in red to indicate a destructive choice. */
14
+ variant?: SubStepsOptionVariant;
15
+ /** Label for the primary CTA when this option is selected. */
16
+ buttonLabel: string;
17
+ /** Variant for the primary CTA when this option is selected. Defaults to `filled`. */
18
+ buttonVariant?: ButtonVariant;
19
+ }
20
+ /**
21
+ * Confirmation dialog shown before editing an AI-Agent step whose execution has
22
+ * already generated sub-steps (CON-926). The caller supplies the option list
23
+ * and copy; this component only renders the UI and emits the user's choice.
24
+ */
25
+ export declare class SubStepsConfirmationDialogComponent implements OnChanges {
26
+ isOpen: boolean;
27
+ title: string;
28
+ description: string;
29
+ options: SubStepsConfirmationOption[];
30
+ selectedValue?: string;
31
+ cancelLabel: string;
32
+ disableBackdropClose: boolean;
33
+ selectionChange: EventEmitter<string>;
34
+ confirm: EventEmitter<string>;
35
+ closeModal: EventEmitter<void>;
36
+ ngOnChanges(changes: SimpleChanges): void;
37
+ get currentOption(): SubStepsConfirmationOption | undefined;
38
+ isSelected(option: SubStepsConfirmationOption): boolean;
39
+ onSelect(option: SubStepsConfirmationOption): void;
40
+ onRadioChange(event: MatRadioChange): void;
41
+ onBackdropClick(event: MouseEvent): void;
42
+ onClose(): void;
43
+ onConfirm(): void;
44
+ static ɵfac: i0.ɵɵFactoryDeclaration<SubStepsConfirmationDialogComponent, never>;
45
+ static ɵcmp: i0.ɵɵComponentDeclaration<SubStepsConfirmationDialogComponent, "cqa-sub-steps-confirmation-dialog", never, { "isOpen": "isOpen"; "title": "title"; "description": "description"; "options": "options"; "selectedValue": "selectedValue"; "cancelLabel": "cancelLabel"; "disableBackdropClose": "disableBackdropClose"; }, { "selectionChange": "selectionChange"; "confirm": "confirm"; "closeModal": "closeModal"; }, never, never>;
46
+ }
@@ -12,10 +12,16 @@ export declare class ElementFormComponent implements OnInit, OnChanges {
12
12
  element: ElementPopupDataElements;
13
13
  /** Screen name options for autocomplete (from API) */
14
14
  screenNameOptions: ScreenNameOption[];
15
+ /** Elements (for the Label dropdown when a screen is selected) */
16
+ elements: ElementPopupDataElements[];
15
17
  /** Whether more screen names are available for infinite scroll */
16
18
  hasMoreScreenNames: boolean;
17
19
  /** True while parent is loading screen names (search or load more) */
18
20
  isLoadingScreenNames: boolean;
21
+ /** Whether more elements are available for infinite scroll */
22
+ hasMoreElements: boolean;
23
+ /** True while parent is loading elements (search or load more) */
24
+ isLoadingElements: boolean;
19
25
  /** True while parent is fetching latest element data for edit (shows loading state) */
20
26
  isElementLoading: boolean;
21
27
  /** Whether we're in edit mode */
@@ -34,6 +40,15 @@ export declare class ElementFormComponent implements OnInit, OnChanges {
34
40
  searchScreenName: EventEmitter<string>;
35
41
  /** Emitted when user scrolls to load more screen names (passes current search query) */
36
42
  loadMoreScreenNames: EventEmitter<string>;
43
+ /** Emitted when user searches elements (server search) */
44
+ searchElements: EventEmitter<string>;
45
+ /** Emitted when user scrolls to load more elements */
46
+ loadMoreElements: EventEmitter<void>;
47
+ /** Emitted when user selects a screen so parent can fetch elements filtered by that screen */
48
+ searchElementsByScreenName: EventEmitter<{
49
+ screenNameId: number;
50
+ searchTerm?: string;
51
+ }>;
37
52
  /** Emitted when user clicks "Select from Element list" or "Cancel" */
38
53
  cancel: EventEmitter<void>;
39
54
  /** Emitted when user clicks "Edit in depth" */
@@ -45,6 +60,10 @@ export declare class ElementFormComponent implements OnInit, OnChanges {
45
60
  tagInputValue: string;
46
61
  /** Config for screen name dynamic-select (server search, allowCustomValue, infinite scroll) */
47
62
  screenNameSelectConfig: DynamicSelectFieldConfig;
63
+ /** Config for the Label dynamic-select (shown when a real screen is selected) */
64
+ elementSelectConfig: DynamicSelectFieldConfig;
65
+ /** True when the user just created a brand-new screen name in this session (no elements exist yet for it). */
66
+ isNewScreenNameSelected: boolean;
48
67
  /** Whether we're saving (disable buttons) */
49
68
  saving: boolean;
50
69
  private fb;
@@ -52,6 +71,9 @@ export declare class ElementFormComponent implements OnInit, OnChanges {
52
71
  ngOnChanges(changes: SimpleChanges): void;
53
72
  ngOnInit(): void;
54
73
  private initializeForm;
74
+ /** True when a real (non-None) screen is selected */
75
+ hasSelectedScreenName(): boolean;
76
+ private updateElementSelectConfig;
55
77
  private updateScreenNameSelectConfig;
56
78
  private populateFormForEdit;
57
79
  private populateFormForCreateWithElement;
@@ -77,5 +99,5 @@ export declare class ElementFormComponent implements OnInit, OnChanges {
77
99
  /** Tooltip text showing all tags */
78
100
  get allTagsTooltip(): string;
79
101
  static ɵfac: i0.ɵɵFactoryDeclaration<ElementFormComponent, [{ optional: true; }, { optional: true; }]>;
80
- static ɵcmp: i0.ɵɵComponentDeclaration<ElementFormComponent, "cqa-element-form", never, { "elementId": "elementId"; "element": "element"; "screenNameOptions": "screenNameOptions"; "hasMoreScreenNames": "hasMoreScreenNames"; "isLoadingScreenNames": "isLoadingScreenNames"; "isElementLoading": "isElementLoading"; "isEditMode": "isEditMode"; "isCreateMode": "isCreateMode"; "isEditInDepthAvailable": "isEditInDepthAvailable"; }, { "createElement": "createElement"; "updateElement": "updateElement"; "createScreenNameRequest": "createScreenNameRequest"; "searchScreenName": "searchScreenName"; "loadMoreScreenNames": "loadMoreScreenNames"; "cancel": "cancel"; "editInDepth": "editInDepth"; }, never, never>;
102
+ static ɵcmp: i0.ɵɵComponentDeclaration<ElementFormComponent, "cqa-element-form", never, { "elementId": "elementId"; "element": "element"; "screenNameOptions": "screenNameOptions"; "elements": "elements"; "hasMoreScreenNames": "hasMoreScreenNames"; "isLoadingScreenNames": "isLoadingScreenNames"; "hasMoreElements": "hasMoreElements"; "isLoadingElements": "isLoadingElements"; "isElementLoading": "isElementLoading"; "isEditMode": "isEditMode"; "isCreateMode": "isCreateMode"; "isEditInDepthAvailable": "isEditInDepthAvailable"; }, { "createElement": "createElement"; "updateElement": "updateElement"; "createScreenNameRequest": "createScreenNameRequest"; "searchScreenName": "searchScreenName"; "loadMoreScreenNames": "loadMoreScreenNames"; "searchElements": "searchElements"; "loadMoreElements": "loadMoreElements"; "searchElementsByScreenName": "searchElementsByScreenName"; "cancel": "cancel"; "editInDepth": "editInDepth"; }, never, never>;
81
103
  }
@@ -23,6 +23,8 @@ export declare class ElementPopupComponent implements OnInit, OnChanges {
23
23
  hasMoreScreenNames: boolean;
24
24
  /** True while parent is loading screen names (search or load more) */
25
25
  isLoadingScreenNames: boolean;
26
+ /** True while parent is loading elements (search or load more) */
27
+ isLoadingElements: boolean;
26
28
  /** Suggested tags from API for labels field */
27
29
  suggestedTags: string[];
28
30
  /** True while parent is fetching latest element data for edit (shows loading state) */
@@ -46,6 +48,11 @@ export declare class ElementPopupComponent implements OnInit, OnChanges {
46
48
  searchScreenName: EventEmitter<string>;
47
49
  /** Emitted when user scrolls to load more screen names (passes current search query) */
48
50
  loadMoreScreenNames: EventEmitter<string>;
51
+ /** Emitted when user selects a screen so parent can fetch elements filtered by that screen */
52
+ searchElementsByScreenName: EventEmitter<{
53
+ screenNameId: number;
54
+ searchTerm?: string;
55
+ }>;
49
56
  /** Emitted when Create or Edit form is opened - parent should fetch screen names and (for edit) latest element */
50
57
  formOpenRequest: EventEmitter<{
51
58
  mode: 'create' | 'edit';
@@ -90,5 +97,5 @@ export declare class ElementPopupComponent implements OnInit, OnChanges {
90
97
  name: string;
91
98
  }): void;
92
99
  static ɵfac: i0.ɵɵFactoryDeclaration<ElementPopupComponent, [{ optional: true; }, { optional: true; }, { optional: true; }]>;
93
- static ɵcmp: i0.ɵɵComponentDeclaration<ElementPopupComponent, "cqa-element-popup", never, { "value": "value"; "helpUrl": "helpUrl"; "labels": "labels"; "element": "element"; "elements": "elements"; "enableForm": "enableForm"; "isOnRecord": "isOnRecord"; "hasMoreElements": "hasMoreElements"; "elementId": "elementId"; "screenNameOptions": "screenNameOptions"; "hasMoreScreenNames": "hasMoreScreenNames"; "isLoadingScreenNames": "isLoadingScreenNames"; "suggestedTags": "suggestedTags"; "isElementLoading": "isElementLoading"; "recentSearchedItems": "recentSearchedItems"; }, { "apply": "apply"; "cancel": "cancel"; "editInDepth": "editInDepth"; "searchElement": "searchElement"; "recentItemClick": "recentItemClick"; "loadMoreElements": "loadMoreElements"; "createElement": "createElement"; "updateElement": "updateElement"; "createScreenNameRequest": "createScreenNameRequest"; "searchScreenName": "searchScreenName"; "loadMoreScreenNames": "loadMoreScreenNames"; "formOpenRequest": "formOpenRequest"; "elementSelect": "elementSelect"; "toggleRecord": "toggleRecord"; }, never, never>;
100
+ static ɵcmp: i0.ɵɵComponentDeclaration<ElementPopupComponent, "cqa-element-popup", never, { "value": "value"; "helpUrl": "helpUrl"; "labels": "labels"; "element": "element"; "elements": "elements"; "enableForm": "enableForm"; "isOnRecord": "isOnRecord"; "hasMoreElements": "hasMoreElements"; "elementId": "elementId"; "screenNameOptions": "screenNameOptions"; "hasMoreScreenNames": "hasMoreScreenNames"; "isLoadingScreenNames": "isLoadingScreenNames"; "isLoadingElements": "isLoadingElements"; "suggestedTags": "suggestedTags"; "isElementLoading": "isElementLoading"; "recentSearchedItems": "recentSearchedItems"; }, { "apply": "apply"; "cancel": "cancel"; "editInDepth": "editInDepth"; "searchElement": "searchElement"; "recentItemClick": "recentItemClick"; "loadMoreElements": "loadMoreElements"; "createElement": "createElement"; "updateElement": "updateElement"; "createScreenNameRequest": "createScreenNameRequest"; "searchScreenName": "searchScreenName"; "loadMoreScreenNames": "loadMoreScreenNames"; "searchElementsByScreenName": "searchElementsByScreenName"; "formOpenRequest": "formOpenRequest"; "elementSelect": "elementSelect"; "toggleRecord": "toggleRecord"; }, never, never>;
94
101
  }
@@ -84,94 +84,95 @@ import * as i81 from "./execution-result-modal/execution-result-modal.component"
84
84
  import * as i82 from "./execution-screen/session-changes-modal/session-changes-modal.component";
85
85
  import * as i83 from "./error-modal/error-modal.component";
86
86
  import * as i84 from "./session-restoration-dialog/session-restoration-dialog.component";
87
- import * as i85 from "./export-code-modal/export-code-modal.component";
88
- import * as i86 from "./progress-indicator/progress-indicator.component";
89
- import * as i87 from "./step-progress-card/step-progress-card.component";
90
- import * as i88 from "./step-status-card/step-status-card.component";
91
- import * as i89 from "./execution-screen/db-verification-step/db-verification-step.component";
92
- import * as i90 from "./execution-screen/db-query-execution-item/db-query-execution-item.component";
93
- import * as i91 from "./test-case-details/normal-step/normal-step.component";
94
- import * as i92 from "./test-case-details/loop-step/loop-step.component";
95
- import * as i93 from "./test-case-details/condition-step/condition-step.component";
96
- import * as i94 from "./test-case-details/step-group/step-group.component";
97
- import * as i95 from "./test-case-details/test-case-details-renderer/test-case-details-renderer.component";
98
- import * as i96 from "./test-case-details/api-step/api-step.component";
99
- import * as i97 from "./test-case-details/database-step/database-step.component";
100
- import * as i98 from "./test-case-details/ai-agent-step/ai-agent-step.component";
101
- import * as i99 from "./test-case-details/ai-verify-step/ai-verify-step.component";
102
- import * as i100 from "./test-case-details/upload-step/upload-step.component";
103
- import * as i101 from "./test-case-details/screenshot-step/screenshot-step.component";
104
- import * as i102 from "./test-case-details/scroll-step/scroll-step.component";
105
- import * as i103 from "./test-case-details/verify-url-step/verify-url-step.component";
106
- import * as i104 from "./test-case-details/restore-session-step/restore-session-step.component";
107
- import * as i105 from "./test-case-details/custom-code-step/custom-code-step.component";
108
- import * as i106 from "./test-case-details/custom-edit-step/custom-edit-step.component";
109
- import * as i107 from "./item-list/item-list.component";
110
- import * as i108 from "./test-case-details/test-data-modal/test-data-modal.component";
111
- import * as i109 from "./test-case-details/create-step-group/create-step-group.component";
112
- import * as i110 from "./test-case-details/delete-steps/delete-steps.component";
113
- import * as i111 from "./test-case-details/run-execution-alert/run-execution-alert.component";
114
- import * as i112 from "./test-case-details/api-edit-step/api-edit-step.component";
115
- import * as i113 from "./live-conversation/live-conversation.component";
116
- import * as i114 from "./step-builder/step-builder-action/step-builder-action.component";
117
- import * as i115 from "./step-builder/step-builder-loop/step-builder-loop.component";
118
- import * as i116 from "./test-case-details/element-popup/element-popup.component";
119
- import * as i117 from "./test-case-details/element-popup/element-form/element-form.component";
120
- import * as i118 from "./step-builder/step-builder-condition/step-builder-condition.component";
121
- import * as i119 from "./step-builder/step-builder-database/step-builder-database.component";
122
- import * as i120 from "./step-builder/step-builder-ai-agent/step-builder-ai-agent.component";
123
- import * as i121 from "./step-builder/step-builder-custom-code/step-builder-custom-code.component";
124
- import * as i122 from "./step-builder/step-builder-record-step/step-builder-record-step.component";
125
- import * as i123 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
126
- import * as i124 from "./test-case-details/element-list/element-list.component";
127
- import * as i125 from "./step-builder/step-builder-document/step-builder-document.component";
128
- import * as i126 from "./detail-side-panel/detail-side-panel.component";
129
- import * as i127 from "./detail-drawer/detail-drawer.component";
130
- import * as i128 from "./detail-drawer/detail-drawer-tab/detail-drawer-tab.component";
131
- import * as i129 from "./detail-drawer/detail-drawer-tab-content.directive";
132
- import * as i130 from "./test-case-details/test-case-details.component";
133
- import * as i131 from "./test-case-details/test-case-details-edit/test-case-details-edit.component";
134
- import * as i132 from "./step-builder/step-builder-group/step-builder-group.component";
135
- import * as i133 from "./test-case-details/step-details-drawer/step-details-drawer.component";
136
- import * as i134 from "./step-builder/template-variables-form/template-variables-form.component";
137
- import * as i135 from "./step-builder/advanced-variables-form/advanced-variables-form.component";
138
- import * as i136 from "./test-case-details/step-details-modal/step-details-modal.component";
139
- import * as i137 from "./pipes/safe-html.pipe";
140
- import * as i138 from "./questionnaire-list/questionnaire-list.component";
141
- import * as i139 from "./change-history/change-history.component";
142
- import * as i140 from "./pipes/camel-to-title.pipe";
143
- import * as i141 from "./version-history/version-history-list/version-history-list.component";
144
- import * as i142 from "./version-history/version-history-compare/version-history-compare.component";
145
- import * as i143 from "./version-history/version-history-detail/version-history-detail.component";
146
- import * as i144 from "./version-history/version-history-restore-confirm/version-history-restore-confirm.component";
147
- import * as i145 from "./version-history/new-version-history-detail/new-version-history-detail.component";
148
- import * as i146 from "@angular/common";
149
- import * as i147 from "@angular/forms";
150
- import * as i148 from "@angular/platform-browser/animations";
151
- import * as i149 from "@angular/material/icon";
152
- import * as i150 from "@angular/material/menu";
153
- import * as i151 from "@angular/material/button";
154
- import * as i152 from "@angular/material/form-field";
155
- import * as i153 from "@angular/material/select";
156
- import * as i154 from "@angular/material/core";
157
- import * as i155 from "@angular/material/checkbox";
158
- import * as i156 from "@angular/material/radio";
159
- import * as i157 from "@angular/material/slide-toggle";
160
- import * as i158 from "@angular/material/datepicker";
161
- import * as i159 from "@angular/material/progress-spinner";
162
- import * as i160 from "@angular/material/tooltip";
163
- import * as i161 from "@angular/material/dialog";
164
- import * as i162 from "@angular/material/table";
165
- import * as i163 from "@angular/material/input";
166
- import * as i164 from "@angular/cdk/overlay";
167
- import * as i165 from "@angular/cdk/portal";
168
- import * as i166 from "@angular/cdk/scrolling";
169
- import * as i167 from "ngx-typed-js";
170
- import * as i168 from "ngx-drag-drop";
171
- import * as i169 from "ngx-monaco-editor";
87
+ import * as i85 from "./sub-steps-confirmation-dialog/sub-steps-confirmation-dialog.component";
88
+ import * as i86 from "./export-code-modal/export-code-modal.component";
89
+ import * as i87 from "./progress-indicator/progress-indicator.component";
90
+ import * as i88 from "./step-progress-card/step-progress-card.component";
91
+ import * as i89 from "./step-status-card/step-status-card.component";
92
+ import * as i90 from "./execution-screen/db-verification-step/db-verification-step.component";
93
+ import * as i91 from "./execution-screen/db-query-execution-item/db-query-execution-item.component";
94
+ import * as i92 from "./test-case-details/normal-step/normal-step.component";
95
+ import * as i93 from "./test-case-details/loop-step/loop-step.component";
96
+ import * as i94 from "./test-case-details/condition-step/condition-step.component";
97
+ import * as i95 from "./test-case-details/step-group/step-group.component";
98
+ import * as i96 from "./test-case-details/test-case-details-renderer/test-case-details-renderer.component";
99
+ import * as i97 from "./test-case-details/api-step/api-step.component";
100
+ import * as i98 from "./test-case-details/database-step/database-step.component";
101
+ import * as i99 from "./test-case-details/ai-agent-step/ai-agent-step.component";
102
+ import * as i100 from "./test-case-details/ai-verify-step/ai-verify-step.component";
103
+ import * as i101 from "./test-case-details/upload-step/upload-step.component";
104
+ import * as i102 from "./test-case-details/screenshot-step/screenshot-step.component";
105
+ import * as i103 from "./test-case-details/scroll-step/scroll-step.component";
106
+ import * as i104 from "./test-case-details/verify-url-step/verify-url-step.component";
107
+ import * as i105 from "./test-case-details/restore-session-step/restore-session-step.component";
108
+ import * as i106 from "./test-case-details/custom-code-step/custom-code-step.component";
109
+ import * as i107 from "./test-case-details/custom-edit-step/custom-edit-step.component";
110
+ import * as i108 from "./item-list/item-list.component";
111
+ import * as i109 from "./test-case-details/test-data-modal/test-data-modal.component";
112
+ import * as i110 from "./test-case-details/create-step-group/create-step-group.component";
113
+ import * as i111 from "./test-case-details/delete-steps/delete-steps.component";
114
+ import * as i112 from "./test-case-details/run-execution-alert/run-execution-alert.component";
115
+ import * as i113 from "./test-case-details/api-edit-step/api-edit-step.component";
116
+ import * as i114 from "./live-conversation/live-conversation.component";
117
+ import * as i115 from "./step-builder/step-builder-action/step-builder-action.component";
118
+ import * as i116 from "./step-builder/step-builder-loop/step-builder-loop.component";
119
+ import * as i117 from "./test-case-details/element-popup/element-popup.component";
120
+ import * as i118 from "./test-case-details/element-popup/element-form/element-form.component";
121
+ import * as i119 from "./step-builder/step-builder-condition/step-builder-condition.component";
122
+ import * as i120 from "./step-builder/step-builder-database/step-builder-database.component";
123
+ import * as i121 from "./step-builder/step-builder-ai-agent/step-builder-ai-agent.component";
124
+ import * as i122 from "./step-builder/step-builder-custom-code/step-builder-custom-code.component";
125
+ import * as i123 from "./step-builder/step-builder-record-step/step-builder-record-step.component";
126
+ import * as i124 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
127
+ import * as i125 from "./test-case-details/element-list/element-list.component";
128
+ import * as i126 from "./step-builder/step-builder-document/step-builder-document.component";
129
+ import * as i127 from "./detail-side-panel/detail-side-panel.component";
130
+ import * as i128 from "./detail-drawer/detail-drawer.component";
131
+ import * as i129 from "./detail-drawer/detail-drawer-tab/detail-drawer-tab.component";
132
+ import * as i130 from "./detail-drawer/detail-drawer-tab-content.directive";
133
+ import * as i131 from "./test-case-details/test-case-details.component";
134
+ import * as i132 from "./test-case-details/test-case-details-edit/test-case-details-edit.component";
135
+ import * as i133 from "./step-builder/step-builder-group/step-builder-group.component";
136
+ import * as i134 from "./test-case-details/step-details-drawer/step-details-drawer.component";
137
+ import * as i135 from "./step-builder/template-variables-form/template-variables-form.component";
138
+ import * as i136 from "./step-builder/advanced-variables-form/advanced-variables-form.component";
139
+ import * as i137 from "./test-case-details/step-details-modal/step-details-modal.component";
140
+ import * as i138 from "./pipes/safe-html.pipe";
141
+ import * as i139 from "./questionnaire-list/questionnaire-list.component";
142
+ import * as i140 from "./change-history/change-history.component";
143
+ import * as i141 from "./pipes/camel-to-title.pipe";
144
+ import * as i142 from "./version-history/version-history-list/version-history-list.component";
145
+ import * as i143 from "./version-history/version-history-compare/version-history-compare.component";
146
+ import * as i144 from "./version-history/version-history-detail/version-history-detail.component";
147
+ import * as i145 from "./version-history/version-history-restore-confirm/version-history-restore-confirm.component";
148
+ import * as i146 from "./version-history/new-version-history-detail/new-version-history-detail.component";
149
+ import * as i147 from "@angular/common";
150
+ import * as i148 from "@angular/forms";
151
+ import * as i149 from "@angular/platform-browser/animations";
152
+ import * as i150 from "@angular/material/icon";
153
+ import * as i151 from "@angular/material/menu";
154
+ import * as i152 from "@angular/material/button";
155
+ import * as i153 from "@angular/material/form-field";
156
+ import * as i154 from "@angular/material/select";
157
+ import * as i155 from "@angular/material/core";
158
+ import * as i156 from "@angular/material/checkbox";
159
+ import * as i157 from "@angular/material/radio";
160
+ import * as i158 from "@angular/material/slide-toggle";
161
+ import * as i159 from "@angular/material/datepicker";
162
+ import * as i160 from "@angular/material/progress-spinner";
163
+ import * as i161 from "@angular/material/tooltip";
164
+ import * as i162 from "@angular/material/dialog";
165
+ import * as i163 from "@angular/material/table";
166
+ import * as i164 from "@angular/material/input";
167
+ import * as i165 from "@angular/cdk/overlay";
168
+ import * as i166 from "@angular/cdk/portal";
169
+ import * as i167 from "@angular/cdk/scrolling";
170
+ import * as i168 from "ngx-typed-js";
171
+ import * as i169 from "ngx-drag-drop";
172
+ import * as i170 from "ngx-monaco-editor";
172
173
  export declare class UiKitModule {
173
174
  constructor(iconRegistry: MatIconRegistry);
174
175
  static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
175
- static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.DialogComponent, typeof i8.DynamicTableComponent, typeof i9.DynamicCellTemplateDirective, typeof i9.DynamicHeaderTemplateDirective, typeof i10.DynamicCellContainerDirective, typeof i11.PaginationComponent, typeof i12.ActionMenuButtonComponent, typeof i13.OtherButtonComponent, typeof i14.DynamicFilterComponent, typeof i15.DaterangepickerDirective, typeof i16.DaterangepickerComponent, typeof i17.ColumnVisibilityComponent, typeof i18.TableActionToolbarComponent, typeof i19.MetricsCardComponent, typeof i20.MetricsBlockComponent, typeof i21.ChartCardComponent, typeof i22.ProgressTextCardComponent, typeof i23.DashboardHeaderComponent, typeof i24.WorkspaceSelectorComponent, typeof i25.CoverageModuleCardComponent, typeof i26.TestDistributionCardComponent, typeof i27.FailedTestCasesCardComponent, typeof i28.DynamicSelectFieldComponent, typeof i29.AddPrerequisiteCasesSectionComponent, typeof i30.SelectedFiltersComponent, typeof i31.InsightCardComponent, typeof i32.BadgeComponent, typeof i33.DropdownButtonComponent, typeof i34.HeatErrorMapCellComponent, typeof i35.EmptyStateComponent, typeof i36.TableTemplateComponent, typeof i37.FullTableLoaderComponent, typeof i38.TableDataLoaderComponent, typeof i39.BasicStepComponent, typeof i40.StepRendererComponent, typeof i41.StepGroupComponent, typeof i42.LoopStepComponent, typeof i43.ConditionStepComponent, typeof i44.ConditionDebugStepComponent, typeof i45.ConditionBranchEditorComponent, typeof i46.FailedStepComponent, typeof i47.UpdatedFailedStepComponent, typeof i48.ViewMoreFailedStepButtonComponent, typeof i49.SelfHealAnalysisComponent, typeof i50.AIAgentStepComponent, typeof i51.AIActionStepComponent, typeof i52.ApiStepComponent, typeof i53.FileDownloadStepComponent, typeof i54.DocumentVerificationStepComponent, typeof i55.LiveExecutionStepComponent, typeof i56.AiLogsWithReasoningComponent, typeof i57.JumpToStepModalComponent, typeof i58.BreakpointsModalComponent, typeof i59.RecordingBannerComponent, typeof i60.ReviewRecordedStepsModalComponent, typeof i61.MainStepCollapseComponent, typeof i62.VisualComparisonComponent, typeof i63.SimulatorComponent, typeof i64.ConsoleAlertComponent, typeof i65.AiDebugAlertComponent, typeof i66.NetworkRequestComponent, typeof i67.RunHistoryCardComponent, typeof i68.AiPromptCardComponent, typeof i69.VisualDifferenceModalComponent, typeof i70.ConfigurationCardComponent, typeof i71.CompareRunsComponent, typeof i72.IterationsLoopComponent, typeof i73.FailedStepCardComponent, typeof i74.CustomInputComponent, typeof i75.MixedVariableInputComponent, typeof i76.CustomTextareaComponent, typeof i77.CodeEditorComponent, typeof i78.CustomToggleComponent, typeof i79.FileUploadComponent, typeof i80.AiReasoningComponent, typeof i81.ExecutionResultModalComponent, typeof i82.SessionChangesModalComponent, typeof i83.ErrorModalComponent, typeof i84.SessionRestorationDialogComponent, typeof i85.ExportCodeModalComponent, typeof i86.ProgressIndicatorComponent, typeof i87.StepProgressCardComponent, typeof i88.StepStatusCardComponent, typeof i89.DbVerificationStepComponent, typeof i90.DbQueryExecutionItemComponent, typeof i91.TestCaseNormalStepComponent, typeof i92.TestCaseLoopStepComponent, typeof i93.TestCaseConditionStepComponent, typeof i94.TestCaseStepGroupComponent, typeof i95.TestCaseDetailsRendererComponent, typeof i96.TestCaseApiStepComponent, typeof i97.TestCaseDatabaseStepComponent, typeof i98.TestCaseAiAgentStepComponent, typeof i99.TestCaseAiVerifyStepComponent, typeof i100.TestCaseUploadStepComponent, typeof i101.TestCaseScreenshotStepComponent, typeof i102.TestCaseScrollStepComponent, typeof i103.TestCaseVerifyUrlStepComponent, typeof i104.TestCaseRestoreSessionStepComponent, typeof i105.TestCaseCustomCodeStepComponent, typeof i106.CustomEditStepComponent, typeof i107.ItemListComponent, typeof i108.TestDataModalComponent, typeof i109.CreateStepGroupComponent, typeof i110.DeleteStepsComponent, typeof i111.RunExecutionAlertComponent, typeof i112.ApiEditStepComponent, typeof i113.LiveConversationComponent, typeof i114.StepBuilderActionComponent, typeof i115.StepBuilderLoopComponent, typeof i116.ElementPopupComponent, typeof i117.ElementFormComponent, typeof i118.StepBuilderConditionComponent, typeof i119.StepBuilderDatabaseComponent, typeof i120.StepBuilderAiAgentComponent, typeof i77.CodeEditorComponent, typeof i121.StepBuilderCustomCodeComponent, typeof i122.StepBuilderRecordStepComponent, typeof i123.StepBuilderDocumentGenerationTemplateStepComponent, typeof i124.ElementListComponent, typeof i125.StepBuilderDocumentComponent, typeof i126.DetailSidePanelComponent, typeof i127.DetailDrawerComponent, typeof i128.DetailDrawerTabComponent, typeof i129.DetailDrawerTabContentDirective, typeof i130.TestCaseDetailsComponent, typeof i131.TestCaseDetailsEditComponent, typeof i132.StepBuilderGroupComponent, typeof i133.StepDetailsDrawerComponent, typeof i134.TemplateVariablesFormComponent, typeof i135.AdvancedVariablesFormComponent, typeof i136.StepDetailsModalComponent, typeof i137.SafeHtmlPipe, typeof i138.QuestionnaireListComponent, typeof i139.ChangeHistoryComponent, typeof i140.CamelToTitlePipe, typeof i141.VersionHistoryListComponent, typeof i142.VersionHistoryCompareComponent, typeof i143.VersionHistoryDetailComponent, typeof i144.VersionHistoryRestoreConfirmComponent, typeof i145.NewVersionHistoryDetailComponent], [typeof i146.CommonModule, typeof i147.FormsModule, typeof i147.ReactiveFormsModule, typeof i148.NoopAnimationsModule, typeof i149.MatIconModule, typeof i150.MatMenuModule, typeof i151.MatButtonModule, typeof i152.MatFormFieldModule, typeof i153.MatSelectModule, typeof i154.MatOptionModule, typeof i155.MatCheckboxModule, typeof i156.MatRadioModule, typeof i157.MatSlideToggleModule, typeof i158.MatDatepickerModule, typeof i154.MatNativeDateModule, typeof i159.MatProgressSpinnerModule, typeof i160.MatTooltipModule, typeof i161.MatDialogModule, typeof i162.MatTableModule, typeof i163.MatInputModule, typeof i164.OverlayModule, typeof i165.PortalModule, typeof i166.ScrollingModule, typeof i167.NgxTypedJsModule, typeof i168.DndModule, typeof i169.MonacoEditorModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.DialogComponent, typeof i8.DynamicTableComponent, typeof i9.DynamicCellTemplateDirective, typeof i9.DynamicHeaderTemplateDirective, typeof i10.DynamicCellContainerDirective, typeof i11.PaginationComponent, typeof i12.ActionMenuButtonComponent, typeof i13.OtherButtonComponent, typeof i14.DynamicFilterComponent, typeof i15.DaterangepickerDirective, typeof i16.DaterangepickerComponent, typeof i17.ColumnVisibilityComponent, typeof i18.TableActionToolbarComponent, typeof i19.MetricsCardComponent, typeof i21.ChartCardComponent, typeof i22.ProgressTextCardComponent, typeof i23.DashboardHeaderComponent, typeof i24.WorkspaceSelectorComponent, typeof i25.CoverageModuleCardComponent, typeof i26.TestDistributionCardComponent, typeof i27.FailedTestCasesCardComponent, typeof i28.DynamicSelectFieldComponent, typeof i29.AddPrerequisiteCasesSectionComponent, typeof i30.SelectedFiltersComponent, typeof i31.InsightCardComponent, typeof i32.BadgeComponent, typeof i33.DropdownButtonComponent, typeof i34.HeatErrorMapCellComponent, typeof i35.EmptyStateComponent, typeof i36.TableTemplateComponent, typeof i37.FullTableLoaderComponent, typeof i38.TableDataLoaderComponent, typeof i39.BasicStepComponent, typeof i40.StepRendererComponent, typeof i41.StepGroupComponent, typeof i42.LoopStepComponent, typeof i43.ConditionStepComponent, typeof i44.ConditionDebugStepComponent, typeof i45.ConditionBranchEditorComponent, typeof i46.FailedStepComponent, typeof i44.ConditionDebugStepComponent, typeof i47.UpdatedFailedStepComponent, typeof i48.ViewMoreFailedStepButtonComponent, typeof i49.SelfHealAnalysisComponent, typeof i50.AIAgentStepComponent, typeof i51.AIActionStepComponent, typeof i52.ApiStepComponent, typeof i53.FileDownloadStepComponent, typeof i54.DocumentVerificationStepComponent, typeof i55.LiveExecutionStepComponent, typeof i56.AiLogsWithReasoningComponent, typeof i57.JumpToStepModalComponent, typeof i58.BreakpointsModalComponent, typeof i59.RecordingBannerComponent, typeof i60.ReviewRecordedStepsModalComponent, typeof i61.MainStepCollapseComponent, typeof i62.VisualComparisonComponent, typeof i63.SimulatorComponent, typeof i64.ConsoleAlertComponent, typeof i65.AiDebugAlertComponent, typeof i66.NetworkRequestComponent, typeof i67.RunHistoryCardComponent, typeof i68.AiPromptCardComponent, typeof i69.VisualDifferenceModalComponent, typeof i70.ConfigurationCardComponent, typeof i71.CompareRunsComponent, typeof i72.IterationsLoopComponent, typeof i73.FailedStepCardComponent, typeof i74.CustomInputComponent, typeof i75.MixedVariableInputComponent, typeof i76.CustomTextareaComponent, typeof i77.CodeEditorComponent, typeof i78.CustomToggleComponent, typeof i79.FileUploadComponent, typeof i80.AiReasoningComponent, typeof i81.ExecutionResultModalComponent, typeof i82.SessionChangesModalComponent, typeof i83.ErrorModalComponent, typeof i84.SessionRestorationDialogComponent, typeof i85.ExportCodeModalComponent, typeof i86.ProgressIndicatorComponent, typeof i87.StepProgressCardComponent, typeof i88.StepStatusCardComponent, typeof i89.DbVerificationStepComponent, typeof i90.DbQueryExecutionItemComponent, typeof i91.TestCaseNormalStepComponent, typeof i92.TestCaseLoopStepComponent, typeof i93.TestCaseConditionStepComponent, typeof i94.TestCaseStepGroupComponent, typeof i95.TestCaseDetailsRendererComponent, typeof i96.TestCaseApiStepComponent, typeof i97.TestCaseDatabaseStepComponent, typeof i98.TestCaseAiAgentStepComponent, typeof i100.TestCaseUploadStepComponent, typeof i101.TestCaseScreenshotStepComponent, typeof i102.TestCaseScrollStepComponent, typeof i103.TestCaseVerifyUrlStepComponent, typeof i104.TestCaseRestoreSessionStepComponent, typeof i105.TestCaseCustomCodeStepComponent, typeof i106.CustomEditStepComponent, typeof i107.ItemListComponent, typeof i108.TestDataModalComponent, typeof i109.CreateStepGroupComponent, typeof i110.DeleteStepsComponent, typeof i111.RunExecutionAlertComponent, typeof i112.ApiEditStepComponent, typeof i113.LiveConversationComponent, typeof i114.StepBuilderActionComponent, typeof i115.StepBuilderLoopComponent, typeof i116.ElementPopupComponent, typeof i117.ElementFormComponent, typeof i118.StepBuilderConditionComponent, typeof i119.StepBuilderDatabaseComponent, typeof i120.StepBuilderAiAgentComponent, typeof i77.CodeEditorComponent, typeof i121.StepBuilderCustomCodeComponent, typeof i122.StepBuilderRecordStepComponent, typeof i123.StepBuilderDocumentGenerationTemplateStepComponent, typeof i124.ElementListComponent, typeof i125.StepBuilderDocumentComponent, typeof i126.DetailSidePanelComponent, typeof i127.DetailDrawerComponent, typeof i128.DetailDrawerTabComponent, typeof i129.DetailDrawerTabContentDirective, typeof i130.TestCaseDetailsComponent, typeof i131.TestCaseDetailsEditComponent, typeof i132.StepBuilderGroupComponent, typeof i133.StepDetailsDrawerComponent, typeof i134.TemplateVariablesFormComponent, typeof i135.AdvancedVariablesFormComponent, typeof i138.QuestionnaireListComponent, typeof i139.ChangeHistoryComponent, typeof i141.VersionHistoryListComponent, typeof i142.VersionHistoryCompareComponent, typeof i143.VersionHistoryDetailComponent, typeof i144.VersionHistoryRestoreConfirmComponent, typeof i145.NewVersionHistoryDetailComponent]>;
176
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.DialogComponent, typeof i8.DynamicTableComponent, typeof i9.DynamicCellTemplateDirective, typeof i9.DynamicHeaderTemplateDirective, typeof i10.DynamicCellContainerDirective, typeof i11.PaginationComponent, typeof i12.ActionMenuButtonComponent, typeof i13.OtherButtonComponent, typeof i14.DynamicFilterComponent, typeof i15.DaterangepickerDirective, typeof i16.DaterangepickerComponent, typeof i17.ColumnVisibilityComponent, typeof i18.TableActionToolbarComponent, typeof i19.MetricsCardComponent, typeof i20.MetricsBlockComponent, typeof i21.ChartCardComponent, typeof i22.ProgressTextCardComponent, typeof i23.DashboardHeaderComponent, typeof i24.WorkspaceSelectorComponent, typeof i25.CoverageModuleCardComponent, typeof i26.TestDistributionCardComponent, typeof i27.FailedTestCasesCardComponent, typeof i28.DynamicSelectFieldComponent, typeof i29.AddPrerequisiteCasesSectionComponent, typeof i30.SelectedFiltersComponent, typeof i31.InsightCardComponent, typeof i32.BadgeComponent, typeof i33.DropdownButtonComponent, typeof i34.HeatErrorMapCellComponent, typeof i35.EmptyStateComponent, typeof i36.TableTemplateComponent, typeof i37.FullTableLoaderComponent, typeof i38.TableDataLoaderComponent, typeof i39.BasicStepComponent, typeof i40.StepRendererComponent, typeof i41.StepGroupComponent, typeof i42.LoopStepComponent, typeof i43.ConditionStepComponent, typeof i44.ConditionDebugStepComponent, typeof i45.ConditionBranchEditorComponent, typeof i46.FailedStepComponent, typeof i47.UpdatedFailedStepComponent, typeof i48.ViewMoreFailedStepButtonComponent, typeof i49.SelfHealAnalysisComponent, typeof i50.AIAgentStepComponent, typeof i51.AIActionStepComponent, typeof i52.ApiStepComponent, typeof i53.FileDownloadStepComponent, typeof i54.DocumentVerificationStepComponent, typeof i55.LiveExecutionStepComponent, typeof i56.AiLogsWithReasoningComponent, typeof i57.JumpToStepModalComponent, typeof i58.BreakpointsModalComponent, typeof i59.RecordingBannerComponent, typeof i60.ReviewRecordedStepsModalComponent, typeof i61.MainStepCollapseComponent, typeof i62.VisualComparisonComponent, typeof i63.SimulatorComponent, typeof i64.ConsoleAlertComponent, typeof i65.AiDebugAlertComponent, typeof i66.NetworkRequestComponent, typeof i67.RunHistoryCardComponent, typeof i68.AiPromptCardComponent, typeof i69.VisualDifferenceModalComponent, typeof i70.ConfigurationCardComponent, typeof i71.CompareRunsComponent, typeof i72.IterationsLoopComponent, typeof i73.FailedStepCardComponent, typeof i74.CustomInputComponent, typeof i75.MixedVariableInputComponent, typeof i76.CustomTextareaComponent, typeof i77.CodeEditorComponent, typeof i78.CustomToggleComponent, typeof i79.FileUploadComponent, typeof i80.AiReasoningComponent, typeof i81.ExecutionResultModalComponent, typeof i82.SessionChangesModalComponent, typeof i83.ErrorModalComponent, typeof i84.SessionRestorationDialogComponent, typeof i85.SubStepsConfirmationDialogComponent, typeof i86.ExportCodeModalComponent, typeof i87.ProgressIndicatorComponent, typeof i88.StepProgressCardComponent, typeof i89.StepStatusCardComponent, typeof i90.DbVerificationStepComponent, typeof i91.DbQueryExecutionItemComponent, typeof i92.TestCaseNormalStepComponent, typeof i93.TestCaseLoopStepComponent, typeof i94.TestCaseConditionStepComponent, typeof i95.TestCaseStepGroupComponent, typeof i96.TestCaseDetailsRendererComponent, typeof i97.TestCaseApiStepComponent, typeof i98.TestCaseDatabaseStepComponent, typeof i99.TestCaseAiAgentStepComponent, typeof i100.TestCaseAiVerifyStepComponent, typeof i101.TestCaseUploadStepComponent, typeof i102.TestCaseScreenshotStepComponent, typeof i103.TestCaseScrollStepComponent, typeof i104.TestCaseVerifyUrlStepComponent, typeof i105.TestCaseRestoreSessionStepComponent, typeof i106.TestCaseCustomCodeStepComponent, typeof i107.CustomEditStepComponent, typeof i108.ItemListComponent, typeof i109.TestDataModalComponent, typeof i110.CreateStepGroupComponent, typeof i111.DeleteStepsComponent, typeof i112.RunExecutionAlertComponent, typeof i113.ApiEditStepComponent, typeof i114.LiveConversationComponent, typeof i115.StepBuilderActionComponent, typeof i116.StepBuilderLoopComponent, typeof i117.ElementPopupComponent, typeof i118.ElementFormComponent, typeof i119.StepBuilderConditionComponent, typeof i120.StepBuilderDatabaseComponent, typeof i121.StepBuilderAiAgentComponent, typeof i77.CodeEditorComponent, typeof i122.StepBuilderCustomCodeComponent, typeof i123.StepBuilderRecordStepComponent, typeof i124.StepBuilderDocumentGenerationTemplateStepComponent, typeof i125.ElementListComponent, typeof i126.StepBuilderDocumentComponent, typeof i127.DetailSidePanelComponent, typeof i128.DetailDrawerComponent, typeof i129.DetailDrawerTabComponent, typeof i130.DetailDrawerTabContentDirective, typeof i131.TestCaseDetailsComponent, typeof i132.TestCaseDetailsEditComponent, typeof i133.StepBuilderGroupComponent, typeof i134.StepDetailsDrawerComponent, typeof i135.TemplateVariablesFormComponent, typeof i136.AdvancedVariablesFormComponent, typeof i137.StepDetailsModalComponent, typeof i138.SafeHtmlPipe, typeof i139.QuestionnaireListComponent, typeof i140.ChangeHistoryComponent, typeof i141.CamelToTitlePipe, typeof i142.VersionHistoryListComponent, typeof i143.VersionHistoryCompareComponent, typeof i144.VersionHistoryDetailComponent, typeof i145.VersionHistoryRestoreConfirmComponent, typeof i146.NewVersionHistoryDetailComponent], [typeof i147.CommonModule, typeof i148.FormsModule, typeof i148.ReactiveFormsModule, typeof i149.NoopAnimationsModule, typeof i150.MatIconModule, typeof i151.MatMenuModule, typeof i152.MatButtonModule, typeof i153.MatFormFieldModule, typeof i154.MatSelectModule, typeof i155.MatOptionModule, typeof i156.MatCheckboxModule, typeof i157.MatRadioModule, typeof i158.MatSlideToggleModule, typeof i159.MatDatepickerModule, typeof i155.MatNativeDateModule, typeof i160.MatProgressSpinnerModule, typeof i161.MatTooltipModule, typeof i162.MatDialogModule, typeof i163.MatTableModule, typeof i164.MatInputModule, typeof i165.OverlayModule, typeof i166.PortalModule, typeof i167.ScrollingModule, typeof i168.NgxTypedJsModule, typeof i169.DndModule, typeof i170.MonacoEditorModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.DialogComponent, typeof i8.DynamicTableComponent, typeof i9.DynamicCellTemplateDirective, typeof i9.DynamicHeaderTemplateDirective, typeof i10.DynamicCellContainerDirective, typeof i11.PaginationComponent, typeof i12.ActionMenuButtonComponent, typeof i13.OtherButtonComponent, typeof i14.DynamicFilterComponent, typeof i15.DaterangepickerDirective, typeof i16.DaterangepickerComponent, typeof i17.ColumnVisibilityComponent, typeof i18.TableActionToolbarComponent, typeof i19.MetricsCardComponent, typeof i21.ChartCardComponent, typeof i22.ProgressTextCardComponent, typeof i23.DashboardHeaderComponent, typeof i24.WorkspaceSelectorComponent, typeof i25.CoverageModuleCardComponent, typeof i26.TestDistributionCardComponent, typeof i27.FailedTestCasesCardComponent, typeof i28.DynamicSelectFieldComponent, typeof i29.AddPrerequisiteCasesSectionComponent, typeof i30.SelectedFiltersComponent, typeof i31.InsightCardComponent, typeof i32.BadgeComponent, typeof i33.DropdownButtonComponent, typeof i34.HeatErrorMapCellComponent, typeof i35.EmptyStateComponent, typeof i36.TableTemplateComponent, typeof i37.FullTableLoaderComponent, typeof i38.TableDataLoaderComponent, typeof i39.BasicStepComponent, typeof i40.StepRendererComponent, typeof i41.StepGroupComponent, typeof i42.LoopStepComponent, typeof i43.ConditionStepComponent, typeof i44.ConditionDebugStepComponent, typeof i45.ConditionBranchEditorComponent, typeof i46.FailedStepComponent, typeof i44.ConditionDebugStepComponent, typeof i47.UpdatedFailedStepComponent, typeof i48.ViewMoreFailedStepButtonComponent, typeof i49.SelfHealAnalysisComponent, typeof i50.AIAgentStepComponent, typeof i51.AIActionStepComponent, typeof i52.ApiStepComponent, typeof i53.FileDownloadStepComponent, typeof i54.DocumentVerificationStepComponent, typeof i55.LiveExecutionStepComponent, typeof i56.AiLogsWithReasoningComponent, typeof i57.JumpToStepModalComponent, typeof i58.BreakpointsModalComponent, typeof i59.RecordingBannerComponent, typeof i60.ReviewRecordedStepsModalComponent, typeof i61.MainStepCollapseComponent, typeof i62.VisualComparisonComponent, typeof i63.SimulatorComponent, typeof i64.ConsoleAlertComponent, typeof i65.AiDebugAlertComponent, typeof i66.NetworkRequestComponent, typeof i67.RunHistoryCardComponent, typeof i68.AiPromptCardComponent, typeof i69.VisualDifferenceModalComponent, typeof i70.ConfigurationCardComponent, typeof i71.CompareRunsComponent, typeof i72.IterationsLoopComponent, typeof i73.FailedStepCardComponent, typeof i74.CustomInputComponent, typeof i75.MixedVariableInputComponent, typeof i76.CustomTextareaComponent, typeof i77.CodeEditorComponent, typeof i78.CustomToggleComponent, typeof i79.FileUploadComponent, typeof i80.AiReasoningComponent, typeof i81.ExecutionResultModalComponent, typeof i82.SessionChangesModalComponent, typeof i83.ErrorModalComponent, typeof i84.SessionRestorationDialogComponent, typeof i85.SubStepsConfirmationDialogComponent, typeof i86.ExportCodeModalComponent, typeof i87.ProgressIndicatorComponent, typeof i88.StepProgressCardComponent, typeof i89.StepStatusCardComponent, typeof i90.DbVerificationStepComponent, typeof i91.DbQueryExecutionItemComponent, typeof i92.TestCaseNormalStepComponent, typeof i93.TestCaseLoopStepComponent, typeof i94.TestCaseConditionStepComponent, typeof i95.TestCaseStepGroupComponent, typeof i96.TestCaseDetailsRendererComponent, typeof i97.TestCaseApiStepComponent, typeof i98.TestCaseDatabaseStepComponent, typeof i99.TestCaseAiAgentStepComponent, typeof i101.TestCaseUploadStepComponent, typeof i102.TestCaseScreenshotStepComponent, typeof i103.TestCaseScrollStepComponent, typeof i104.TestCaseVerifyUrlStepComponent, typeof i105.TestCaseRestoreSessionStepComponent, typeof i106.TestCaseCustomCodeStepComponent, typeof i107.CustomEditStepComponent, typeof i108.ItemListComponent, typeof i109.TestDataModalComponent, typeof i110.CreateStepGroupComponent, typeof i111.DeleteStepsComponent, typeof i112.RunExecutionAlertComponent, typeof i113.ApiEditStepComponent, typeof i114.LiveConversationComponent, typeof i115.StepBuilderActionComponent, typeof i116.StepBuilderLoopComponent, typeof i117.ElementPopupComponent, typeof i118.ElementFormComponent, typeof i119.StepBuilderConditionComponent, typeof i120.StepBuilderDatabaseComponent, typeof i121.StepBuilderAiAgentComponent, typeof i77.CodeEditorComponent, typeof i122.StepBuilderCustomCodeComponent, typeof i123.StepBuilderRecordStepComponent, typeof i124.StepBuilderDocumentGenerationTemplateStepComponent, typeof i125.ElementListComponent, typeof i126.StepBuilderDocumentComponent, typeof i127.DetailSidePanelComponent, typeof i128.DetailDrawerComponent, typeof i129.DetailDrawerTabComponent, typeof i130.DetailDrawerTabContentDirective, typeof i131.TestCaseDetailsComponent, typeof i132.TestCaseDetailsEditComponent, typeof i133.StepBuilderGroupComponent, typeof i134.StepDetailsDrawerComponent, typeof i135.TemplateVariablesFormComponent, typeof i136.AdvancedVariablesFormComponent, typeof i139.QuestionnaireListComponent, typeof i140.ChangeHistoryComponent, typeof i142.VersionHistoryListComponent, typeof i143.VersionHistoryCompareComponent, typeof i144.VersionHistoryDetailComponent, typeof i145.VersionHistoryRestoreConfirmComponent, typeof i146.NewVersionHistoryDetailComponent]>;
176
177
  static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
177
178
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cqa-lib/cqa-ui",
3
- "version": "1.1.491",
3
+ "version": "1.1.492",
4
4
  "description": "UI Kit library for Angular 13.4",
5
5
  "keywords": [
6
6
  "angular",
package/public-api.d.ts CHANGED
@@ -88,6 +88,7 @@ export * from './lib/execution-result-modal/execution-result-modal.component';
88
88
  export * from './lib/execution-screen/session-changes-modal/session-changes-modal.component';
89
89
  export * from './lib/error-modal/error-modal.component';
90
90
  export * from './lib/session-restoration-dialog/session-restoration-dialog.component';
91
+ export * from './lib/sub-steps-confirmation-dialog/sub-steps-confirmation-dialog.component';
91
92
  export * from './lib/export-code-modal/export-code-modal.component';
92
93
  export * from './lib/progress-indicator/progress-indicator.component';
93
94
  export * from './lib/step-progress-card/step-progress-card.component';