@cqa-lib/cqa-ui 1.1.549-delta.3 → 1.1.550

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 (27) hide show
  1. package/esm2020/lib/dialog/dialog.component.mjs +15 -3
  2. package/esm2020/lib/dialog/dialog.models.mjs +1 -1
  3. package/esm2020/lib/templates/modular-table-template/dialogs/delete-folder-dialog.component.mjs +3 -3
  4. package/esm2020/lib/templates/modular-table-template/dialogs/move-to-folder-dialog.component.mjs +11 -11
  5. package/esm2020/lib/templates/modular-table-template/dialogs/new-folder-dialog.component.mjs +12 -5
  6. package/esm2020/lib/templates/modular-table-template/folder-sidebar/folder-sidebar.component.mjs +68 -9
  7. package/esm2020/lib/templates/modular-table-template/modular-table-template.component.mjs +38 -10
  8. package/esm2020/lib/templates/modular-table-template/modular-table-template.models.mjs +3 -1
  9. package/esm2020/lib/test-case-details/api-edit-step/api-edit-step.component.mjs +19 -314
  10. package/esm2020/lib/ui-kit.module.mjs +1 -6
  11. package/esm2020/public-api.mjs +1 -2
  12. package/fesm2015/cqa-lib-cqa-ui.mjs +163 -451
  13. package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
  14. package/fesm2020/cqa-lib-cqa-ui.mjs +143 -445
  15. package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
  16. package/lib/dialog/dialog.component.d.ts +1 -0
  17. package/lib/dialog/dialog.models.d.ts +4 -0
  18. package/lib/templates/modular-table-template/folder-sidebar/folder-sidebar.component.d.ts +18 -1
  19. package/lib/templates/modular-table-template/modular-table-template.component.d.ts +14 -1
  20. package/lib/templates/modular-table-template/modular-table-template.models.d.ts +6 -0
  21. package/lib/test-case-details/api-edit-step/api-edit-step.component.d.ts +5 -115
  22. package/lib/ui-kit.module.d.ts +59 -60
  23. package/package.json +1 -1
  24. package/public-api.d.ts +0 -1
  25. package/styles.css +1 -1
  26. package/esm2020/lib/test-case-details/api-edit-step/graphql-operation-picker/graphql-operation-picker.component.mjs +0 -121
  27. package/lib/test-case-details/api-edit-step/graphql-operation-picker/graphql-operation-picker.component.d.ts +0 -83
@@ -20,6 +20,7 @@ export declare class DialogComponent<TResult = unknown> {
20
20
  get panelStyles(): Record<string, string | undefined>;
21
21
  buttonVariant(button: DialogButtonConfig<TResult>): ButtonVariant;
22
22
  isButtonDisabled(button: DialogButtonConfig<TResult>): boolean;
23
+ isButtonLoading(button: DialogButtonConfig<TResult>): boolean;
23
24
  buttonHostClasses(button: DialogButtonConfig<TResult>): string[];
24
25
  private mapAlignmentToClass;
25
26
  private markContentAttached;
@@ -11,6 +11,10 @@ export interface DialogButtonConfig<TResult = unknown> {
11
11
  * (so consumers can read the rendered component instance via `getComponentInstance`)
12
12
  * and is re-evaluated on every change-detection pass. */
13
13
  disabled?: boolean | ((dialogRef: DialogRef<TResult>) => boolean);
14
+ /** Static or dynamic loading state. Drives the cqa-button spinner so consumers
15
+ * can keep the dialog open while an async submit is in flight. Same evaluation
16
+ * contract as `disabled`. */
17
+ loading?: boolean | ((dialogRef: DialogRef<TResult>) => boolean);
14
18
  }
15
19
  export declare type DialogButtonAlignment = 'left' | 'right' | 'center';
16
20
  export interface TemplateDialogContent<TContext = any> {
@@ -26,6 +26,7 @@ export declare class FolderSidebarComponent implements OnDestroy {
26
26
  allowDrop: boolean;
27
27
  showCounts: boolean;
28
28
  collapsed: boolean;
29
+ foldersAccordionExpanded: boolean;
29
30
  labels: ModularLabels;
30
31
  /** When true, the sidebar emits `searchChange` and skips its local name filter
31
32
  * — the host is expected to swap `folders` with server-side search results.
@@ -44,6 +45,16 @@ export declare class FolderSidebarComponent implements OnDestroy {
44
45
  * spinner; when set during pagination, a small spinner appears at the
45
46
  * bottom of the tree. */
46
47
  rootFoldersLoading: boolean;
48
+ /** Folder ids currently being saved (rename / move / etc). The sidebar renders
49
+ * a small spinner in place of the count so the user gets feedback while the
50
+ * host's API call is in flight. The host is responsible for adding/removing
51
+ * ids around its async call. */
52
+ savingFolderIds: Array<number>;
53
+ isFolderSaving(id: number): boolean;
54
+ folderRowTooltip(node: FolderNode): string | null;
55
+ /** Visual depth indent: linear up to a cap, then quarter-rate beyond, so deep
56
+ * trees don't push the row content off the right edge of the panel. */
57
+ rowIndent(depth: number): number;
47
58
  folderSelected: EventEmitter<number>;
48
59
  folderExpansionToggled: EventEmitter<{
49
60
  id: number;
@@ -96,6 +107,7 @@ export declare class FolderSidebarComponent implements OnDestroy {
96
107
  newParentId: number | null;
97
108
  }>;
98
109
  collapsedChange: EventEmitter<boolean>;
110
+ foldersAccordionExpandedChange: EventEmitter<boolean>;
99
111
  /** Bound to the search input. Exposed as an Input so hosts can seed/restore
100
112
  * the visible search term across destroy/re-create cycles (e.g., when the
101
113
  * sidebar is `*ngIf`'d out by a view-mode toggle and re-mounted later). */
@@ -202,6 +214,11 @@ export declare class FolderSidebarComponent implements OnDestroy {
202
214
  private parentIdOf;
203
215
  requestCreate(parentId?: number | null): void;
204
216
  togglePanel(): void;
217
+ toggleFoldersAccordion(): void;
218
+ /** Toggles the inline folder-search input. When closing while a query is active,
219
+ * also clear the search so the tree reverts to its full state. */
220
+ searchVisible: boolean;
221
+ toggleSearchVisible(): void;
205
222
  rowDropped(targetId: number | null, event: {
206
223
  testIds: Array<string | number>;
207
224
  targetFolderId: number | null;
@@ -236,6 +253,6 @@ export declare class FolderSidebarComponent implements OnDestroy {
236
253
  */
237
254
  private focusRenameInput;
238
255
  static ɵfac: i0.ɵɵFactoryDeclaration<FolderSidebarComponent, never>;
239
- static ɵcmp: i0.ɵɵComponentDeclaration<FolderSidebarComponent, "cqa-folder-sidebar", never, { "folders": "folders"; "selectedFolderId": "selectedFolderId"; "expandedFolderIds": "expandedFolderIds"; "unorganizedCount": "unorganizedCount"; "allowCreate": "allowCreate"; "allowRename": "allowRename"; "allowDelete": "allowDelete"; "allowMove": "allowMove"; "allowDuplicate": "allowDuplicate"; "allowDrop": "allowDrop"; "showCounts": "showCounts"; "collapsed": "collapsed"; "labels": "labels"; "serverSideSearch": "serverSideSearch"; "rootTotal": "rootTotal"; "folderSearchLoading": "folderSearchLoading"; "rootFoldersLoading": "rootFoldersLoading"; "searchValue": "searchValue"; }, { "folderSelected": "folderSelected"; "folderExpansionToggled": "folderExpansionToggled"; "folderChildrenRequested": "folderChildrenRequested"; "folderLoadMoreRequested": "folderLoadMoreRequested"; "searchChange": "searchChange"; "rootLoadMoreRequested": "rootLoadMoreRequested"; "folderCreated": "folderCreated"; "folderCreateRequested": "folderCreateRequested"; "folderRenamed": "folderRenamed"; "folderDeleted": "folderDeleted"; "folderMoveRequested": "folderMoveRequested"; "folderDuplicateRequested": "folderDuplicateRequested"; "testsDropped": "testsDropped"; "folderDropped": "folderDropped"; "collapsedChange": "collapsedChange"; }, never, never>;
256
+ static ɵcmp: i0.ɵɵComponentDeclaration<FolderSidebarComponent, "cqa-folder-sidebar", never, { "folders": "folders"; "selectedFolderId": "selectedFolderId"; "expandedFolderIds": "expandedFolderIds"; "unorganizedCount": "unorganizedCount"; "allowCreate": "allowCreate"; "allowRename": "allowRename"; "allowDelete": "allowDelete"; "allowMove": "allowMove"; "allowDuplicate": "allowDuplicate"; "allowDrop": "allowDrop"; "showCounts": "showCounts"; "collapsed": "collapsed"; "foldersAccordionExpanded": "foldersAccordionExpanded"; "labels": "labels"; "serverSideSearch": "serverSideSearch"; "rootTotal": "rootTotal"; "folderSearchLoading": "folderSearchLoading"; "rootFoldersLoading": "rootFoldersLoading"; "savingFolderIds": "savingFolderIds"; "searchValue": "searchValue"; }, { "folderSelected": "folderSelected"; "folderExpansionToggled": "folderExpansionToggled"; "folderChildrenRequested": "folderChildrenRequested"; "folderLoadMoreRequested": "folderLoadMoreRequested"; "searchChange": "searchChange"; "rootLoadMoreRequested": "rootLoadMoreRequested"; "folderCreated": "folderCreated"; "folderCreateRequested": "folderCreateRequested"; "folderRenamed": "folderRenamed"; "folderDeleted": "folderDeleted"; "folderMoveRequested": "folderMoveRequested"; "folderDuplicateRequested": "folderDuplicateRequested"; "testsDropped": "testsDropped"; "folderDropped": "folderDropped"; "collapsedChange": "collapsedChange"; "foldersAccordionExpandedChange": "foldersAccordionExpandedChange"; }, never, never>;
240
257
  }
241
258
  export {};
@@ -130,6 +130,12 @@ export declare class ModularTableTemplateComponent implements OnInit, OnChanges,
130
130
  modularLabels: ModularLabels;
131
131
  bulkActions: TableAction[];
132
132
  sidebarCollapsed: boolean;
133
+ /** Controls whether the "Subfolders in {parent}" section is expanded.
134
+ * Two-way bindable as `[(subfolderSectionExpanded)]`. Defaults to true. */
135
+ subfolderSectionExpanded: boolean;
136
+ /** Controls whether the root-view "Organized" folder grid is expanded.
137
+ * Two-way bindable as `[(organizedSectionExpanded)]`. Defaults to true. */
138
+ organizedSectionExpanded: boolean;
133
139
  /** Lazy-load: when true, the sidebar emits `searchChange` and skips its
134
140
  * local name filter so the host can serve search results from the backend. */
135
141
  serverSideSearch: boolean;
@@ -148,6 +154,9 @@ export declare class ModularTableTemplateComponent implements OnInit, OnChanges,
148
154
  * the modular grid renders at the right edge of the Organized row, and is
149
155
  * forwarded to the sidebar for its own loading affordance. */
150
156
  rootFoldersLoading: boolean;
157
+ /** Folder ids whose host-side save (rename / move / etc.) is in flight.
158
+ * Forwarded to the sidebar for loading state. */
159
+ savingFolderIds: Array<number>;
151
160
  /** Override for the currently-selected folder node. Used as a fallback when
152
161
  * `findFolder(folders, selectedFolderId)` misses — e.g., during sidebar
153
162
  * search when `folders` holds only the matched results, the selected
@@ -216,6 +225,10 @@ export declare class ModularTableTemplateComponent implements OnInit, OnChanges,
216
225
  */
217
226
  bulkActionInvoked: EventEmitter<BulkActionInvokedPayload>;
218
227
  sidebarCollapsedChange: EventEmitter<boolean>;
228
+ subfolderSectionExpandedChange: EventEmitter<boolean>;
229
+ organizedSectionExpandedChange: EventEmitter<boolean>;
230
+ toggleSubfolderSection(): void;
231
+ toggleOrganizedSection(): void;
219
232
  /** When true, renders a "Reorder" button in the toolbar. Host-driven. */
220
233
  showReorderButton: boolean;
221
234
  /**
@@ -537,5 +550,5 @@ export declare class ModularTableTemplateComponent implements OnInit, OnChanges,
537
550
  */
538
551
  buildRowDragPayload: (row: any) => Array<string | number>;
539
552
  static ɵfac: i0.ɵɵFactoryDeclaration<ModularTableTemplateComponent, never>;
540
- static ɵcmp: i0.ɵɵComponentDeclaration<ModularTableTemplateComponent, "cqa-modular-table-template", never, { "searchPlaceholder": "searchPlaceholder"; "searchValue": "searchValue"; "showClear": "showClear"; "showSearchBar": "showSearchBar"; "showExportButton": "showExportButton"; "isExporting": "isExporting"; "filterConfig": "filterConfig"; "filterModel": "filterModel"; "showFilterPanel": "showFilterPanel"; "showFilterButton": "showFilterButton"; "otherButtons": "otherButtons"; "otherDropDownButtons": "otherDropDownButtons"; "otherSelectDropDownButtons": "otherSelectDropDownButtons"; "otherButtonLabel": "otherButtonLabel"; "otherButtonVariant": "otherButtonVariant"; "showOtherButton": "showOtherButton"; "showActionButton": "showActionButton"; "showSettingsButton": "showSettingsButton"; "showAutoRefreshButton": "showAutoRefreshButton"; "showViewModeToggle": "showViewModeToggle"; "viewMode": "viewMode"; "viewModeLabels": "viewModeLabels"; "data": "data"; "isEmptyState": "isEmptyState"; "emptyStateConfig": "emptyStateConfig"; "actions": "actions"; "chips": "chips"; "filterApplied": "filterApplied"; "columns": "columns"; "rowSelectable": "rowSelectable"; "selectedAutoRefreshInterval": "selectedAutoRefreshInterval"; "pageIndex": "pageIndex"; "pageSize": "pageSize"; "pageSizeOptions": "pageSizeOptions"; "pageSizeMenuDirection": "pageSizeMenuDirection"; "serverSidePagination": "serverSidePagination"; "totalElements": "totalElements"; "enableLocalSort": "enableLocalSort"; "isTableLoading": "isTableLoading"; "isTableDataLoading": "isTableDataLoading"; "cellJsonPathGetter": "cellJsonPathGetter"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "selectedItems": "selectedItems"; "showSelectAllInToolbar": "showSelectAllInToolbar"; "showDismissInToolbar": "showDismissInToolbar"; "allSelectedInToolbar": "allSelectedInToolbar"; "folders": "folders"; "rootFolders": "rootFolders"; "selectedFolderId": "selectedFolderId"; "expandedFolderIds": "expandedFolderIds"; "unorganizedCount": "unorganizedCount"; "folderIdAccessor": "folderIdAccessor"; "modularConfig": "modularConfig"; "modularLabels": "modularLabels"; "bulkActions": "bulkActions"; "sidebarCollapsed": "sidebarCollapsed"; "serverSideSearch": "serverSideSearch"; "rootTotal": "rootTotal"; "folderSearchLoading": "folderSearchLoading"; "folderSearchValue": "folderSearchValue"; "rootFoldersLoading": "rootFoldersLoading"; "selectedFolderNode": "selectedFolderNode"; "selectedFolderTrail": "selectedFolderTrail"; "useInternalDialogs": "useInternalDialogs"; "showReorderButton": "showReorderButton"; "reorderSaving": "reorderSaving"; "reorderLabels": "reorderLabels"; "columnVisibility": "columnVisibility"; }, { "onSearchChange": "onSearchChange"; "onExportClick": "onExportClick"; "onApplyFilterClick": "onApplyFilterClick"; "onResetFilterClick": "onResetFilterClick"; "onClearAll": "onClearAll"; "removeChip": "removeChip"; "viewModeChange": "viewModeChange"; "pageChange": "pageChange"; "sortChange": "sortChange"; "folderSelected": "folderSelected"; "folderExpansionToggled": "folderExpansionToggled"; "folderChildrenRequested": "folderChildrenRequested"; "folderLoadMoreRequested": "folderLoadMoreRequested"; "rootLoadMoreRequested": "rootLoadMoreRequested"; "folderSearchChange": "folderSearchChange"; "folderCreated": "folderCreated"; "folderCreateRequested": "folderCreateRequested"; "folderRenamed": "folderRenamed"; "folderDeleted": "folderDeleted"; "testsMoved": "testsMoved"; "bulkActionClick": "bulkActionClick"; "bulkSelectAllChange": "bulkSelectAllChange"; "bulkDismiss": "bulkDismiss"; "bulkActionInvoked": "bulkActionInvoked"; "sidebarCollapsedChange": "sidebarCollapsedChange"; "reorderStart": "reorderStart"; "reorderCancel": "reorderCancel"; "reorderSave": "reorderSave"; "moveRequested": "moveRequested"; "selectedItemsChange": "selectedItemsChange"; "folderDeleteRequested": "folderDeleteRequested"; "folderMoveRequested": "folderMoveRequested"; "folderMoved": "folderMoved"; "folderDuplicateRequested": "folderDuplicateRequested"; "onReload": "onReload"; "onAutoRefreshClick": "onAutoRefreshClick"; "columnVisibilityChange": "columnVisibilityChange"; "autoRefreshIntervalChange": "autoRefreshIntervalChange"; }, never, never>;
553
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModularTableTemplateComponent, "cqa-modular-table-template", never, { "searchPlaceholder": "searchPlaceholder"; "searchValue": "searchValue"; "showClear": "showClear"; "showSearchBar": "showSearchBar"; "showExportButton": "showExportButton"; "isExporting": "isExporting"; "filterConfig": "filterConfig"; "filterModel": "filterModel"; "showFilterPanel": "showFilterPanel"; "showFilterButton": "showFilterButton"; "otherButtons": "otherButtons"; "otherDropDownButtons": "otherDropDownButtons"; "otherSelectDropDownButtons": "otherSelectDropDownButtons"; "otherButtonLabel": "otherButtonLabel"; "otherButtonVariant": "otherButtonVariant"; "showOtherButton": "showOtherButton"; "showActionButton": "showActionButton"; "showSettingsButton": "showSettingsButton"; "showAutoRefreshButton": "showAutoRefreshButton"; "showViewModeToggle": "showViewModeToggle"; "viewMode": "viewMode"; "viewModeLabels": "viewModeLabels"; "data": "data"; "isEmptyState": "isEmptyState"; "emptyStateConfig": "emptyStateConfig"; "actions": "actions"; "chips": "chips"; "filterApplied": "filterApplied"; "columns": "columns"; "rowSelectable": "rowSelectable"; "selectedAutoRefreshInterval": "selectedAutoRefreshInterval"; "pageIndex": "pageIndex"; "pageSize": "pageSize"; "pageSizeOptions": "pageSizeOptions"; "pageSizeMenuDirection": "pageSizeMenuDirection"; "serverSidePagination": "serverSidePagination"; "totalElements": "totalElements"; "enableLocalSort": "enableLocalSort"; "isTableLoading": "isTableLoading"; "isTableDataLoading": "isTableDataLoading"; "cellJsonPathGetter": "cellJsonPathGetter"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "selectedItems": "selectedItems"; "showSelectAllInToolbar": "showSelectAllInToolbar"; "showDismissInToolbar": "showDismissInToolbar"; "allSelectedInToolbar": "allSelectedInToolbar"; "folders": "folders"; "rootFolders": "rootFolders"; "selectedFolderId": "selectedFolderId"; "expandedFolderIds": "expandedFolderIds"; "unorganizedCount": "unorganizedCount"; "folderIdAccessor": "folderIdAccessor"; "modularConfig": "modularConfig"; "modularLabels": "modularLabels"; "bulkActions": "bulkActions"; "sidebarCollapsed": "sidebarCollapsed"; "subfolderSectionExpanded": "subfolderSectionExpanded"; "organizedSectionExpanded": "organizedSectionExpanded"; "serverSideSearch": "serverSideSearch"; "rootTotal": "rootTotal"; "folderSearchLoading": "folderSearchLoading"; "folderSearchValue": "folderSearchValue"; "rootFoldersLoading": "rootFoldersLoading"; "savingFolderIds": "savingFolderIds"; "selectedFolderNode": "selectedFolderNode"; "selectedFolderTrail": "selectedFolderTrail"; "useInternalDialogs": "useInternalDialogs"; "showReorderButton": "showReorderButton"; "reorderSaving": "reorderSaving"; "reorderLabels": "reorderLabels"; "columnVisibility": "columnVisibility"; }, { "onSearchChange": "onSearchChange"; "onExportClick": "onExportClick"; "onApplyFilterClick": "onApplyFilterClick"; "onResetFilterClick": "onResetFilterClick"; "onClearAll": "onClearAll"; "removeChip": "removeChip"; "viewModeChange": "viewModeChange"; "pageChange": "pageChange"; "sortChange": "sortChange"; "folderSelected": "folderSelected"; "folderExpansionToggled": "folderExpansionToggled"; "folderChildrenRequested": "folderChildrenRequested"; "folderLoadMoreRequested": "folderLoadMoreRequested"; "rootLoadMoreRequested": "rootLoadMoreRequested"; "folderSearchChange": "folderSearchChange"; "folderCreated": "folderCreated"; "folderCreateRequested": "folderCreateRequested"; "folderRenamed": "folderRenamed"; "folderDeleted": "folderDeleted"; "testsMoved": "testsMoved"; "bulkActionClick": "bulkActionClick"; "bulkSelectAllChange": "bulkSelectAllChange"; "bulkDismiss": "bulkDismiss"; "bulkActionInvoked": "bulkActionInvoked"; "sidebarCollapsedChange": "sidebarCollapsedChange"; "subfolderSectionExpandedChange": "subfolderSectionExpandedChange"; "organizedSectionExpandedChange": "organizedSectionExpandedChange"; "reorderStart": "reorderStart"; "reorderCancel": "reorderCancel"; "reorderSave": "reorderSave"; "moveRequested": "moveRequested"; "selectedItemsChange": "selectedItemsChange"; "folderDeleteRequested": "folderDeleteRequested"; "folderMoveRequested": "folderMoveRequested"; "folderMoved": "folderMoved"; "folderDuplicateRequested": "folderDuplicateRequested"; "onReload": "onReload"; "onAutoRefreshClick": "onAutoRefreshClick"; "columnVisibilityChange": "columnVisibilityChange"; "autoRefreshIntervalChange": "autoRefreshIntervalChange"; }, never, never>;
541
554
  }
@@ -108,6 +108,12 @@ export interface ModularLabels {
108
108
  unorganizedRowLabel: string;
109
109
  /** Shown in the folder sidebar when the search input filters out every folder. */
110
110
  noFoldersFound: string;
111
+ /** Sidebar folder-row hover tooltip count line. `{n}` is the descendant total
112
+ * (FolderNode.totalCount). The host swaps the noun for "step group" when in
113
+ * step-group mode by overriding these two keys. The full tooltip is composed
114
+ * as `${node.name}\n${tpl.replace('{n}', total)}`. */
115
+ folderTooltipTotalSingular: string;
116
+ folderTooltipTotalPlural: string;
111
117
  }
112
118
  export declare const DEFAULT_MODULAR_LABELS: ModularLabels;
113
119
  /**
@@ -2,25 +2,15 @@ import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnChanges,
2
2
  import { FormArray, FormBuilder, FormControl, FormGroup } from '@angular/forms';
3
3
  import { DynamicSelectFieldConfig, SelectOption } from '../../dynamic-select/dynamic-select-field.component';
4
4
  import { CqaAutocompleteOption } from '../../autocomplete/autocomplete.model';
5
- import { GraphQLOperationOption, GraphQLSchemaSource } from './graphql-operation-picker/graphql-operation-picker.component';
6
5
  import * as i0 from "@angular/core";
7
6
  export declare const API_EDIT_STEP_LABELS: {
8
7
  readonly REQUEST_DETAILS: "Request Details";
9
8
  readonly STORE_RESPONSE: "Store Response";
10
9
  readonly VALIDATION: "Validation";
11
10
  };
12
- export declare type ApiEditPayloadTab = 'headers' | 'body' | 'params' | 'authorization' | 'graphql';
13
- /** Top-level API type the step targets. New types beyond REST/GraphQL are intentionally a string union (not enum) so adding "soap"/"websocket"/"grpc" later is a one-line change. */
14
- export declare type ApiEditApiType = 'rest' | 'graphql' | 'soap' | 'websocket' | 'grpc';
15
- /** GraphQL request body emitted to the parent (variables already parsed when valid JSON; raw string otherwise). */
16
- export interface ApiEditGraphQLPayload {
17
- query: string;
18
- /** Object when the user typed valid JSON, raw string otherwise. Engine accepts both. */
19
- variables?: Record<string, unknown> | string;
20
- operationName?: string;
21
- }
22
- /** Which body content block is visible: headers (tabs), import cURL textarea, or the GraphQL operation picker. */
23
- export declare type ApiEditBodyView = 'headers' | 'import-curl' | 'graphql-schema';
11
+ export declare type ApiEditPayloadTab = 'headers' | 'body' | 'params' | 'authorization';
12
+ /** Which body content block is visible: headers (tabs) or import cURL textarea. */
13
+ export declare type ApiEditBodyView = 'headers' | 'import-curl';
24
14
  export interface ApiEditHeaderRow {
25
15
  name: string;
26
16
  type: string;
@@ -52,10 +42,6 @@ export interface ApiEditSendRequestPayload {
52
42
  key: string;
53
43
  value: string;
54
44
  }[];
55
- /** API type (REST or GraphQL). Absent on legacy callers; consumer treats undefined as 'rest'. */
56
- apiType?: ApiEditApiType;
57
- /** GraphQL body when `apiType === 'graphql'`. */
58
- graphQL?: ApiEditGraphQLPayload;
59
45
  }
60
46
  /** OAuth 2.0 auth fields (when auth type is OAuth 2.0). */
61
47
  export interface ApiEditOAuth2Payload {
@@ -96,10 +82,6 @@ export interface ApiEditStep1Payload {
96
82
  key: string;
97
83
  value: string;
98
84
  }[];
99
- /** API type (REST or GraphQL). Defaults to 'rest' when absent. */
100
- apiType?: ApiEditApiType;
101
- /** GraphQL body when `apiType === 'graphql'`. Always emitted as a complete object so the engine's Object.assign merge doesn't lose unsent keys. */
102
- graphQL?: ApiEditGraphQLPayload;
103
85
  }
104
86
  /** Step 2 store-response payload. */
105
87
  export interface ApiEditStep2Payload {
@@ -172,16 +154,6 @@ export declare class ApiEditStepComponent implements OnChanges, OnInit, AfterVie
172
154
  editMode?: boolean;
173
155
  /** True while parent is creating the step (API in progress); show loader on Create/Update button */
174
156
  isCreatingStep: boolean;
175
- /** Initial API type ('rest' default, 'graphql' for GraphQL steps). Comes from `event.type` on the saved step. */
176
- initialApiType?: ApiEditApiType;
177
- /** Initial GraphQL body when editing a GraphQL step. `variables` may be an object (preferred) or a JSON string. */
178
- initialGraphQL?: ApiEditGraphQLPayload;
179
- /** Schema source for the GraphQL operation picker (URL + counts). Parent provides this after `loadSchema` resolves. */
180
- graphQLSchemaSource?: GraphQLSchemaSource;
181
- /** Operations list for the picker. Empty until parent loads/introspects the schema. */
182
- graphQLOperations: GraphQLOperationOption[];
183
- /** True while the parent is introspecting; the picker swaps its empty state for a spinner. */
184
- isLoadingGraphQLSchema: boolean;
185
157
  /** Emits the cURL string when user clicks Import (value from the textarea control). */
186
158
  importCurl: EventEmitter<string>;
187
159
  /** Emits when user cancels the Import cURL panel (clicks Cancel). */
@@ -257,11 +229,6 @@ export declare class ApiEditStepComponent implements OnChanges, OnInit, AfterVie
257
229
  environmentSearch: EventEmitter<string>;
258
230
  /** Emit when user scrolls to load more environments. */
259
231
  environmentLoadMore: EventEmitter<void>;
260
- /** Emit when user clicks "Load Schema" in GraphQL mode. Parent handles the schema fetch (or shows a "coming soon" toast for now). */
261
- loadSchema: EventEmitter<{
262
- url: string;
263
- headers: ApiEditHeaderRow[];
264
- }>;
265
232
  /** Form for Auth Type select (Authorization tab) */
266
233
  authTypeForm: FormGroup;
267
234
  /** Auth type options: array of strings or objects with id, name, value, label (passed from parent). Falls back to built-in list when empty. */
@@ -323,41 +290,11 @@ export declare class ApiEditStepComponent implements OnChanges, OnInit, AfterVie
323
290
  private paramsSyncingFromUrl;
324
291
  /** Placeholder for the URL field: show "Enter URL or select Parameter *" when urlOptions are available (environment selected). */
325
292
  get urlPlaceholder(): string;
326
- /**
327
- * The two tab arrangements. REST keeps the legacy four-tab layout. GraphQL drops Body & Params
328
- * because the body is a single { query, variables, operationName } object (rendered in the new
329
- * GraphQL tab below) and query params have no meaning for a GraphQL POST.
330
- */
331
- private static readonly REST_PAYLOAD_TABS;
332
- private static readonly GRAPHQL_PAYLOAD_TABS;
333
- /** Tabs visible under the request row, swapped based on `activeApiType`. */
334
- get payloadTabs(): {
293
+ readonly payloadTabs: {
335
294
  value: ApiEditPayloadTab;
336
295
  label: string;
337
296
  }[];
338
297
  activePayloadTab: ApiEditPayloadTab;
339
- /** Currently selected API type. REST is the default and matches today's behaviour exactly. */
340
- activeApiType: ApiEditApiType;
341
- /** Segments rendered above the Method/URL row. SOAP/WebSocket/gRPC are intentionally `disabled` for now. */
342
- readonly apiTypeSegments: ({
343
- label: string;
344
- value: ApiEditApiType;
345
- disabled?: undefined;
346
- tooltip?: undefined;
347
- } | {
348
- label: string;
349
- value: ApiEditApiType;
350
- disabled: boolean;
351
- tooltip: string;
352
- })[];
353
- /** GraphQL fields backing the new tab content. Variables are stored as a JSON string in the form for the textarea round-trip; parsed on emit. */
354
- graphQLForm: FormGroup;
355
- /** Inline error displayed under the Query textarea when empty/blank on Save. Cleared as the user types. */
356
- graphQLQueryError: string;
357
- /** Inline error displayed under the Variables textarea when JSON is malformed. */
358
- graphQLVariablesError: string;
359
- /** Non-blocking warning shown under the Operation Name field when the query declares 2+ operations. */
360
- graphQLOperationWarning: string;
361
298
  /** Step 3: Response verification tabs */
362
299
  readonly responseVerificationTabs: {
363
300
  value: 'response-body' | 'status';
@@ -536,13 +473,6 @@ export declare class ApiEditStepComponent implements OnChanges, OnInit, AfterVie
536
473
  * Check if URL is valid (for button disabled state)
537
474
  */
538
475
  get isUrlValid(): boolean;
539
- /**
540
- * Aggregate disabled state for the Send Request button. URL validity is
541
- * always required; in GraphQL mode the Query field must also be non-blank
542
- * (without it the request body would be `{ query: "" }`, which the engine
543
- * rejects up-front anyway).
544
- */
545
- get isSendRequestDisabled(): boolean;
546
476
  onSendRequest(): void;
547
477
  onVariableNameChange(): void;
548
478
  onBack(): void;
@@ -550,46 +480,6 @@ export declare class ApiEditStepComponent implements OnChanges, OnInit, AfterVie
550
480
  onCancel(): void;
551
481
  onNext(): void;
552
482
  setPayloadTab(value: ApiEditPayloadTab): void;
553
- /**
554
- * Handle API Type segment toggle (REST ↔ GraphQL). When switching to GraphQL we
555
- * jump to the GraphQL tab so the Query / Variables / Operation Name fields are
556
- * immediately visible. When switching back to REST we land on Headers (REST default).
557
- * Disabled segments (SOAP/WebSocket/gRPC) cannot fire here — `cqa-segment-control`
558
- * blocks the click — but we guard anyway in case a future caller bypasses that.
559
- */
560
- onApiTypeChange(value: string): void;
561
- /**
562
- * Parse the Variables textarea as JSON. Empty string is valid (= no variables).
563
- * Sets `graphQLVariablesError` for inline display; returns the parsed object or
564
- * the raw string when the user typed something non-empty that didn't parse.
565
- *
566
- * @param strict When true (called from `onCreate`), an invalid JSON blocks save
567
- * — we leave the error visible and return `null` to signal abort.
568
- */
569
- private validateGraphQLVariables;
570
- /**
571
- * Detect when the GraphQL query declares 2+ named operations. GraphQL requires the
572
- * client to specify `operationName` in that case; absence is a runtime error, not a
573
- * syntax one, so we surface it as a non-blocking warning.
574
- */
575
- private recomputeGraphQLOperationWarning;
576
- /**
577
- * Click handler for the "Load Schema" button (GraphQL mode only). Switches the body view
578
- * to the operation picker AND emits `loadSchema` so the parent can fetch / refresh the
579
- * schema in the background. The picker renders whatever `graphQLSchemaSource` /
580
- * `graphQLOperations` the parent has supplied at any given time — empty state by default.
581
- */
582
- onLoadSchema(): void;
583
- /** Picker → back: drop the picker view and return to the headers/tabs panel. */
584
- onGraphQLPickerBack(): void;
585
- /** Picker → re-introspect: forward to parent so it can refetch the schema. */
586
- onGraphQLPickerReIntrospect(): void;
587
- /**
588
- * Picker → operation selected: patch the GraphQL form (query / variables / operationName)
589
- * and pop back to the main view with the GraphQL tab active so the user can see the
590
- * filled-in fields.
591
- */
592
- onGraphQLPickerOperationSelected(op: GraphQLOperationOption): void;
593
483
  setResponseVerificationTab(value: 'response-body' | 'status'): void;
594
484
  addHeader(): void;
595
485
  removeHeader(index: number): void;
@@ -648,5 +538,5 @@ export declare class ApiEditStepComponent implements OnChanges, OnInit, AfterVie
648
538
  */
649
539
  private scrollPreviewIntoView;
650
540
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiEditStepComponent, never>;
651
- static ɵcmp: i0.ɵɵComponentDeclaration<ApiEditStepComponent, "cqa-api-edit-step", never, { "initialMethod": "initialMethod"; "initialEnvironment": "initialEnvironment"; "initialStep": "initialStep"; "initialUrl": "initialUrl"; "initialPayloadTab": "initialPayloadTab"; "initialPayloadType": "initialPayloadType"; "initialPayloadText": "initialPayloadText"; "initialSummary": "initialSummary"; "initialHeaders": "initialHeaders"; "initialResponsePreview": "initialResponsePreview"; "initialVariableName": "initialVariableName"; "initialResponseBodyVerifications": "initialResponseBodyVerifications"; "initialStatusVerifications": "initialStatusVerifications"; "initialActiveResponseVerificationTab": "initialActiveResponseVerificationTab"; "editMode": "editMode"; "isCreatingStep": "isCreatingStep"; "initialApiType": "initialApiType"; "initialGraphQL": "initialGraphQL"; "graphQLSchemaSource": "graphQLSchemaSource"; "graphQLOperations": "graphQLOperations"; "isLoadingGraphQLSchema": "isLoadingGraphQLSchema"; "httpMethodOptions": "httpMethodOptions"; "environmentOptions": "environmentOptions"; "hasMoreEnvironments": "hasMoreEnvironments"; "isLoadingEnvironments": "isLoadingEnvironments"; "urlOptions": "urlOptions"; "authTypeOptions": "authTypeOptions"; "initialAuthType": "initialAuthType"; "formatOptions": "formatOptions"; "initialFormat": "initialFormat"; "headerNameOptions": "headerNameOptions"; "verificationOptions": "verificationOptions"; "verificationDataTypeOptions": "verificationDataTypeOptions"; "statusVerificationOptions": "statusVerificationOptions"; "advancedSettingsVariables": "advancedSettingsVariables"; }, { "importCurl": "importCurl"; "importCurlCancel": "importCurlCancel"; "sendRequest": "sendRequest"; "back": "back"; "cancel": "cancel"; "next": "next"; "create": "create"; "headersChange": "headersChange"; "environmentChange": "environmentChange"; "environmentSearch": "environmentSearch"; "environmentLoadMore": "environmentLoadMore"; "loadSchema": "loadSchema"; }, never, never>;
541
+ static ɵcmp: i0.ɵɵComponentDeclaration<ApiEditStepComponent, "cqa-api-edit-step", never, { "initialMethod": "initialMethod"; "initialEnvironment": "initialEnvironment"; "initialStep": "initialStep"; "initialUrl": "initialUrl"; "initialPayloadTab": "initialPayloadTab"; "initialPayloadType": "initialPayloadType"; "initialPayloadText": "initialPayloadText"; "initialSummary": "initialSummary"; "initialHeaders": "initialHeaders"; "initialResponsePreview": "initialResponsePreview"; "initialVariableName": "initialVariableName"; "initialResponseBodyVerifications": "initialResponseBodyVerifications"; "initialStatusVerifications": "initialStatusVerifications"; "initialActiveResponseVerificationTab": "initialActiveResponseVerificationTab"; "editMode": "editMode"; "isCreatingStep": "isCreatingStep"; "httpMethodOptions": "httpMethodOptions"; "environmentOptions": "environmentOptions"; "hasMoreEnvironments": "hasMoreEnvironments"; "isLoadingEnvironments": "isLoadingEnvironments"; "urlOptions": "urlOptions"; "authTypeOptions": "authTypeOptions"; "initialAuthType": "initialAuthType"; "formatOptions": "formatOptions"; "initialFormat": "initialFormat"; "headerNameOptions": "headerNameOptions"; "verificationOptions": "verificationOptions"; "verificationDataTypeOptions": "verificationDataTypeOptions"; "statusVerificationOptions": "statusVerificationOptions"; "advancedSettingsVariables": "advancedSettingsVariables"; }, { "importCurl": "importCurl"; "importCurlCancel": "importCurlCancel"; "sendRequest": "sendRequest"; "back": "back"; "cancel": "cancel"; "next": "next"; "create": "create"; "headersChange": "headersChange"; "environmentChange": "environmentChange"; "environmentSearch": "environmentSearch"; "environmentLoadMore": "environmentLoadMore"; }, never, never>;
652
542
  }
@@ -136,68 +136,67 @@ import * as i133 from "./test-case-details/create-step-group/create-step-group.c
136
136
  import * as i134 from "./test-case-details/delete-steps/delete-steps.component";
137
137
  import * as i135 from "./test-case-details/run-execution-alert/run-execution-alert.component";
138
138
  import * as i136 from "./test-case-details/api-edit-step/api-edit-step.component";
139
- import * as i137 from "./test-case-details/api-edit-step/graphql-operation-picker/graphql-operation-picker.component";
140
- import * as i138 from "./live-conversation/live-conversation.component";
141
- import * as i139 from "./step-builder/step-builder-action/step-builder-action.component";
142
- import * as i140 from "./step-builder/step-builder-loop/step-builder-loop.component";
143
- import * as i141 from "./test-case-details/element-popup/element-popup.component";
144
- import * as i142 from "./test-case-details/element-popup/element-form/element-form.component";
145
- import * as i143 from "./step-builder/step-builder-condition/step-builder-condition.component";
146
- import * as i144 from "./step-builder/step-builder-database/step-builder-database.component";
147
- import * as i145 from "./step-builder/step-builder-ai-agent/step-builder-ai-agent.component";
148
- import * as i146 from "./step-builder/step-builder-custom-code/step-builder-custom-code.component";
149
- import * as i147 from "./step-builder/step-builder-record-step/step-builder-record-step.component";
150
- import * as i148 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
151
- import * as i149 from "./test-case-details/element-list/element-list.component";
152
- import * as i150 from "./step-builder/step-builder-document/step-builder-document.component";
153
- import * as i151 from "./detail-side-panel/detail-side-panel.component";
154
- import * as i152 from "./detail-drawer/detail-drawer.component";
155
- import * as i153 from "./detail-drawer/detail-drawer-tab/detail-drawer-tab.component";
156
- import * as i154 from "./detail-drawer/detail-drawer-tab-content.directive";
157
- import * as i155 from "./test-case-details/test-case-details.component";
158
- import * as i156 from "./test-case-details/test-case-details-edit/test-case-details-edit.component";
159
- import * as i157 from "./test-case-details/api-mocking-card/api-mocking-card.component";
160
- import * as i158 from "./step-builder/step-builder-group/step-builder-group.component";
161
- import * as i159 from "./test-case-details/step-details-drawer/step-details-drawer.component";
162
- import * as i160 from "./step-builder/template-variables-form/template-variables-form.component";
163
- import * as i161 from "./step-builder/advanced-variables-form/advanced-variables-form.component";
164
- import * as i162 from "./test-case-details/step-details-modal/step-details-modal.component";
165
- import * as i163 from "./pipes/safe-html.pipe";
166
- import * as i164 from "./questionnaire-list/questionnaire-list.component";
167
- import * as i165 from "./change-history/change-history.component";
168
- import * as i166 from "./pipes/camel-to-title.pipe";
169
- import * as i167 from "./version-history/version-history-list/version-history-list.component";
170
- import * as i168 from "./version-history/version-history-compare/version-history-compare.component";
171
- import * as i169 from "./version-history/version-history-detail/version-history-detail.component";
172
- import * as i170 from "./version-history/version-history-restore-confirm/version-history-restore-confirm.component";
173
- import * as i171 from "./version-history/new-version-history-detail/new-version-history-detail.component";
174
- import * as i172 from "@angular/common";
175
- import * as i173 from "@angular/forms";
176
- import * as i174 from "@angular/platform-browser/animations";
177
- import * as i175 from "@angular/material/icon";
178
- import * as i176 from "@angular/material/menu";
179
- import * as i177 from "@angular/material/button";
180
- import * as i178 from "@angular/material/form-field";
181
- import * as i179 from "@angular/material/select";
182
- import * as i180 from "@angular/material/core";
183
- import * as i181 from "@angular/material/checkbox";
184
- import * as i182 from "@angular/material/radio";
185
- import * as i183 from "@angular/material/slide-toggle";
186
- import * as i184 from "@angular/material/datepicker";
187
- import * as i185 from "@angular/material/progress-spinner";
188
- import * as i186 from "@angular/material/tooltip";
189
- import * as i187 from "@angular/material/dialog";
190
- import * as i188 from "@angular/material/table";
191
- import * as i189 from "@angular/material/input";
192
- import * as i190 from "@angular/cdk/overlay";
193
- import * as i191 from "@angular/cdk/portal";
194
- import * as i192 from "@angular/cdk/scrolling";
195
- import * as i193 from "ngx-typed-js";
196
- import * as i194 from "ngx-drag-drop";
197
- import * as i195 from "ngx-monaco-editor";
139
+ import * as i137 from "./live-conversation/live-conversation.component";
140
+ import * as i138 from "./step-builder/step-builder-action/step-builder-action.component";
141
+ import * as i139 from "./step-builder/step-builder-loop/step-builder-loop.component";
142
+ import * as i140 from "./test-case-details/element-popup/element-popup.component";
143
+ import * as i141 from "./test-case-details/element-popup/element-form/element-form.component";
144
+ import * as i142 from "./step-builder/step-builder-condition/step-builder-condition.component";
145
+ import * as i143 from "./step-builder/step-builder-database/step-builder-database.component";
146
+ import * as i144 from "./step-builder/step-builder-ai-agent/step-builder-ai-agent.component";
147
+ import * as i145 from "./step-builder/step-builder-custom-code/step-builder-custom-code.component";
148
+ import * as i146 from "./step-builder/step-builder-record-step/step-builder-record-step.component";
149
+ import * as i147 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
150
+ import * as i148 from "./test-case-details/element-list/element-list.component";
151
+ import * as i149 from "./step-builder/step-builder-document/step-builder-document.component";
152
+ import * as i150 from "./detail-side-panel/detail-side-panel.component";
153
+ import * as i151 from "./detail-drawer/detail-drawer.component";
154
+ import * as i152 from "./detail-drawer/detail-drawer-tab/detail-drawer-tab.component";
155
+ import * as i153 from "./detail-drawer/detail-drawer-tab-content.directive";
156
+ import * as i154 from "./test-case-details/test-case-details.component";
157
+ import * as i155 from "./test-case-details/test-case-details-edit/test-case-details-edit.component";
158
+ import * as i156 from "./test-case-details/api-mocking-card/api-mocking-card.component";
159
+ import * as i157 from "./step-builder/step-builder-group/step-builder-group.component";
160
+ import * as i158 from "./test-case-details/step-details-drawer/step-details-drawer.component";
161
+ import * as i159 from "./step-builder/template-variables-form/template-variables-form.component";
162
+ import * as i160 from "./step-builder/advanced-variables-form/advanced-variables-form.component";
163
+ import * as i161 from "./test-case-details/step-details-modal/step-details-modal.component";
164
+ import * as i162 from "./pipes/safe-html.pipe";
165
+ import * as i163 from "./questionnaire-list/questionnaire-list.component";
166
+ import * as i164 from "./change-history/change-history.component";
167
+ import * as i165 from "./pipes/camel-to-title.pipe";
168
+ import * as i166 from "./version-history/version-history-list/version-history-list.component";
169
+ import * as i167 from "./version-history/version-history-compare/version-history-compare.component";
170
+ import * as i168 from "./version-history/version-history-detail/version-history-detail.component";
171
+ import * as i169 from "./version-history/version-history-restore-confirm/version-history-restore-confirm.component";
172
+ import * as i170 from "./version-history/new-version-history-detail/new-version-history-detail.component";
173
+ import * as i171 from "@angular/common";
174
+ import * as i172 from "@angular/forms";
175
+ import * as i173 from "@angular/platform-browser/animations";
176
+ import * as i174 from "@angular/material/icon";
177
+ import * as i175 from "@angular/material/menu";
178
+ import * as i176 from "@angular/material/button";
179
+ import * as i177 from "@angular/material/form-field";
180
+ import * as i178 from "@angular/material/select";
181
+ import * as i179 from "@angular/material/core";
182
+ import * as i180 from "@angular/material/checkbox";
183
+ import * as i181 from "@angular/material/radio";
184
+ import * as i182 from "@angular/material/slide-toggle";
185
+ import * as i183 from "@angular/material/datepicker";
186
+ import * as i184 from "@angular/material/progress-spinner";
187
+ import * as i185 from "@angular/material/tooltip";
188
+ import * as i186 from "@angular/material/dialog";
189
+ import * as i187 from "@angular/material/table";
190
+ import * as i188 from "@angular/material/input";
191
+ import * as i189 from "@angular/cdk/overlay";
192
+ import * as i190 from "@angular/cdk/portal";
193
+ import * as i191 from "@angular/cdk/scrolling";
194
+ import * as i192 from "ngx-typed-js";
195
+ import * as i193 from "ngx-drag-drop";
196
+ import * as i194 from "ngx-monaco-editor";
198
197
  export declare class UiKitModule {
199
198
  constructor(iconRegistry: MatIconRegistry);
200
199
  static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
201
- 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.ViewportSelectorComponent, typeof i8.DialogComponent, typeof i9.DynamicTableComponent, typeof i10.DynamicCellTemplateDirective, typeof i10.DynamicHeaderTemplateDirective, typeof i11.DynamicCellContainerDirective, typeof i12.PaginationComponent, typeof i13.ActionMenuButtonComponent, typeof i14.OtherButtonComponent, typeof i15.DynamicFilterComponent, typeof i16.DaterangepickerDirective, typeof i17.DaterangepickerComponent, typeof i18.ColumnVisibilityComponent, typeof i19.TableActionToolbarComponent, typeof i20.MetricsCardComponent, typeof i21.MetricsBlockComponent, typeof i22.ChartCardComponent, typeof i23.ProgressTextCardComponent, typeof i24.DashboardHeaderComponent, typeof i25.WorkspaceSelectorComponent, typeof i26.CoverageModuleCardComponent, typeof i27.TestDistributionCardComponent, typeof i28.FailedTestCasesCardComponent, typeof i29.DynamicSelectFieldComponent, typeof i30.AddPrerequisiteCasesSectionComponent, typeof i31.SelectedFiltersComponent, typeof i32.InsightCardComponent, typeof i33.BadgeComponent, typeof i34.DropdownButtonComponent, typeof i35.HeatErrorMapCellComponent, typeof i36.EmptyStateComponent, typeof i37.TableTemplateComponent, typeof i38.ModularTableTemplateComponent, typeof i39.FolderSidebarComponent, typeof i40.MoveToFolderDialogComponent, typeof i41.NewFolderDialogComponent, typeof i42.DeleteFolderDialogComponent, typeof i43.RowDragDirective, typeof i44.FolderDropDirective, typeof i45.FolderDragDirective, typeof i46.NamePromptModalComponent, typeof i47.FullTableLoaderComponent, typeof i48.TableDataLoaderComponent, typeof i49.BasicStepComponent, typeof i50.StepRendererComponent, typeof i51.StepGroupComponent, typeof i52.LoopStepComponent, typeof i53.ConditionStepComponent, typeof i54.ConditionDebugStepComponent, typeof i55.ConditionBranchEditorComponent, typeof i56.FailedStepComponent, typeof i57.UpdatedFailedStepComponent, typeof i58.ViewMoreFailedStepButtonComponent, typeof i59.SelfHealAnalysisComponent, typeof i60.AIAgentStepComponent, typeof i61.AIActionStepComponent, typeof i62.ApiStepComponent, typeof i63.FileDownloadStepComponent, typeof i64.DocumentVerificationStepComponent, typeof i65.LiveExecutionStepComponent, typeof i66.AiLogsWithReasoningComponent, typeof i67.JumpToStepModalComponent, typeof i68.BreakpointsModalComponent, typeof i69.RecordingBannerComponent, typeof i70.ReviewRecordedStepsModalComponent, typeof i71.MainStepCollapseComponent, typeof i72.VisualComparisonComponent, typeof i73.SimulatorComponent, typeof i74.ConsoleAlertComponent, typeof i75.AiDebugAlertComponent, typeof i76.NetworkRequestComponent, typeof i77.RunHistoryCardComponent, typeof i78.AiPromptCardComponent, typeof i79.VisualDifferenceModalComponent, typeof i80.ConfigurationCardComponent, typeof i81.CompareRunsComponent, typeof i82.ViewCompareButtonComponent, typeof i83.TestCaseLinkCellComponent, typeof i84.IterationsLoopComponent, typeof i85.FailedStepCardComponent, typeof i86.CustomInputComponent, typeof i87.MixedVariableInputComponent, typeof i88.CustomTextareaComponent, typeof i89.CodeEditorComponent, typeof i90.CustomToggleComponent, typeof i91.FileUploadComponent, typeof i92.AiReasoningComponent, typeof i93.ExecutionResultModalComponent, typeof i94.SessionChangesModalComponent, typeof i95.ErrorModalComponent, typeof i96.SessionRestorationDialogComponent, typeof i97.CaptureVideoDialogComponent, typeof i98.SubStepsConfirmationDialogComponent, typeof i99.NewGlobalVariableDialogComponent, typeof i100.NewEnvironmentDialogComponent, typeof i101.NewEnvironmentVariableDialogComponent, typeof i102.NewDbConfigDialogComponent, typeof i103.NewTestDataProfileDialogComponent, typeof i104.ManageColumnsDialogComponent, typeof i105.AuditLogDrawerComponent, typeof i106.AuditLogEntryCardComponent, typeof i107.AssignEnvironmentsDialogComponent, typeof i108.PermissionToggleComponent, typeof i109.ExportCodeModalComponent, typeof i110.ProgressIndicatorComponent, typeof i111.StepProgressCardComponent, typeof i112.StepStatusCardComponent, typeof i113.DbVerificationStepComponent, typeof i114.DbQueryExecutionItemComponent, typeof i115.TestCaseNormalStepComponent, typeof i116.TestCaseLoopStepComponent, typeof i117.TestCaseConditionStepComponent, typeof i118.TestCaseStepGroupComponent, typeof i119.TestCaseDetailsRendererComponent, typeof i120.TestCaseApiStepComponent, typeof i121.TestCaseDatabaseStepComponent, typeof i122.TestCaseAiAgentStepComponent, typeof i123.TestCaseAiVerifyStepComponent, typeof i124.TestCaseUploadStepComponent, typeof i125.TestCaseScreenshotStepComponent, typeof i126.TestCaseScrollStepComponent, typeof i127.TestCaseVerifyUrlStepComponent, typeof i128.TestCaseRestoreSessionStepComponent, typeof i129.TestCaseCustomCodeStepComponent, typeof i130.CustomEditStepComponent, typeof i131.ItemListComponent, typeof i132.TestDataModalComponent, typeof i133.CreateStepGroupComponent, typeof i134.DeleteStepsComponent, typeof i135.RunExecutionAlertComponent, typeof i136.ApiEditStepComponent, typeof i137.GraphQLOperationPickerComponent, typeof i138.LiveConversationComponent, typeof i139.StepBuilderActionComponent, typeof i140.StepBuilderLoopComponent, typeof i141.ElementPopupComponent, typeof i142.ElementFormComponent, typeof i143.StepBuilderConditionComponent, typeof i144.StepBuilderDatabaseComponent, typeof i145.StepBuilderAiAgentComponent, typeof i89.CodeEditorComponent, typeof i146.StepBuilderCustomCodeComponent, typeof i147.StepBuilderRecordStepComponent, typeof i148.StepBuilderDocumentGenerationTemplateStepComponent, typeof i149.ElementListComponent, typeof i150.StepBuilderDocumentComponent, typeof i151.DetailSidePanelComponent, typeof i152.DetailDrawerComponent, typeof i153.DetailDrawerTabComponent, typeof i154.DetailDrawerTabContentDirective, typeof i155.TestCaseDetailsComponent, typeof i156.TestCaseDetailsEditComponent, typeof i157.ApiMockingCardComponent, typeof i158.StepBuilderGroupComponent, typeof i159.StepDetailsDrawerComponent, typeof i160.TemplateVariablesFormComponent, typeof i161.AdvancedVariablesFormComponent, typeof i162.StepDetailsModalComponent, typeof i163.SafeHtmlPipe, typeof i164.QuestionnaireListComponent, typeof i165.ChangeHistoryComponent, typeof i166.CamelToTitlePipe, typeof i167.VersionHistoryListComponent, typeof i168.VersionHistoryCompareComponent, typeof i169.VersionHistoryDetailComponent, typeof i170.VersionHistoryRestoreConfirmComponent, typeof i171.NewVersionHistoryDetailComponent], [typeof i172.CommonModule, typeof i173.FormsModule, typeof i173.ReactiveFormsModule, typeof i174.NoopAnimationsModule, typeof i175.MatIconModule, typeof i176.MatMenuModule, typeof i177.MatButtonModule, typeof i178.MatFormFieldModule, typeof i179.MatSelectModule, typeof i180.MatOptionModule, typeof i181.MatCheckboxModule, typeof i182.MatRadioModule, typeof i183.MatSlideToggleModule, typeof i184.MatDatepickerModule, typeof i180.MatNativeDateModule, typeof i185.MatProgressSpinnerModule, typeof i186.MatTooltipModule, typeof i187.MatDialogModule, typeof i188.MatTableModule, typeof i189.MatInputModule, typeof i190.OverlayModule, typeof i191.PortalModule, typeof i192.ScrollingModule, typeof i193.NgxTypedJsModule, typeof i194.DndModule, typeof i195.MonacoEditorModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.ViewportSelectorComponent, typeof i8.DialogComponent, typeof i9.DynamicTableComponent, typeof i10.DynamicCellTemplateDirective, typeof i10.DynamicHeaderTemplateDirective, typeof i11.DynamicCellContainerDirective, typeof i12.PaginationComponent, typeof i13.ActionMenuButtonComponent, typeof i14.OtherButtonComponent, typeof i15.DynamicFilterComponent, typeof i16.DaterangepickerDirective, typeof i17.DaterangepickerComponent, typeof i18.ColumnVisibilityComponent, typeof i19.TableActionToolbarComponent, typeof i20.MetricsCardComponent, typeof i22.ChartCardComponent, typeof i23.ProgressTextCardComponent, typeof i24.DashboardHeaderComponent, typeof i25.WorkspaceSelectorComponent, typeof i26.CoverageModuleCardComponent, typeof i27.TestDistributionCardComponent, typeof i28.FailedTestCasesCardComponent, typeof i29.DynamicSelectFieldComponent, typeof i30.AddPrerequisiteCasesSectionComponent, typeof i31.SelectedFiltersComponent, typeof i32.InsightCardComponent, typeof i33.BadgeComponent, typeof i34.DropdownButtonComponent, typeof i35.HeatErrorMapCellComponent, typeof i36.EmptyStateComponent, typeof i37.TableTemplateComponent, typeof i38.ModularTableTemplateComponent, typeof i39.FolderSidebarComponent, typeof i41.NewFolderDialogComponent, typeof i42.DeleteFolderDialogComponent, typeof i40.MoveToFolderDialogComponent, typeof i43.RowDragDirective, typeof i44.FolderDropDirective, typeof i45.FolderDragDirective, typeof i46.NamePromptModalComponent, typeof i47.FullTableLoaderComponent, typeof i48.TableDataLoaderComponent, typeof i49.BasicStepComponent, typeof i50.StepRendererComponent, typeof i51.StepGroupComponent, typeof i52.LoopStepComponent, typeof i53.ConditionStepComponent, typeof i54.ConditionDebugStepComponent, typeof i55.ConditionBranchEditorComponent, typeof i56.FailedStepComponent, typeof i54.ConditionDebugStepComponent, typeof i57.UpdatedFailedStepComponent, typeof i58.ViewMoreFailedStepButtonComponent, typeof i59.SelfHealAnalysisComponent, typeof i60.AIAgentStepComponent, typeof i61.AIActionStepComponent, typeof i62.ApiStepComponent, typeof i63.FileDownloadStepComponent, typeof i64.DocumentVerificationStepComponent, typeof i65.LiveExecutionStepComponent, typeof i66.AiLogsWithReasoningComponent, typeof i67.JumpToStepModalComponent, typeof i68.BreakpointsModalComponent, typeof i69.RecordingBannerComponent, typeof i70.ReviewRecordedStepsModalComponent, typeof i71.MainStepCollapseComponent, typeof i72.VisualComparisonComponent, typeof i73.SimulatorComponent, typeof i74.ConsoleAlertComponent, typeof i75.AiDebugAlertComponent, typeof i76.NetworkRequestComponent, typeof i77.RunHistoryCardComponent, typeof i78.AiPromptCardComponent, typeof i79.VisualDifferenceModalComponent, typeof i80.ConfigurationCardComponent, typeof i81.CompareRunsComponent, typeof i82.ViewCompareButtonComponent, typeof i83.TestCaseLinkCellComponent, typeof i84.IterationsLoopComponent, typeof i85.FailedStepCardComponent, typeof i86.CustomInputComponent, typeof i87.MixedVariableInputComponent, typeof i88.CustomTextareaComponent, typeof i89.CodeEditorComponent, typeof i90.CustomToggleComponent, typeof i91.FileUploadComponent, typeof i92.AiReasoningComponent, typeof i93.ExecutionResultModalComponent, typeof i94.SessionChangesModalComponent, typeof i95.ErrorModalComponent, typeof i96.SessionRestorationDialogComponent, typeof i97.CaptureVideoDialogComponent, typeof i98.SubStepsConfirmationDialogComponent, typeof i99.NewGlobalVariableDialogComponent, typeof i100.NewEnvironmentDialogComponent, typeof i101.NewEnvironmentVariableDialogComponent, typeof i102.NewDbConfigDialogComponent, typeof i103.NewTestDataProfileDialogComponent, typeof i104.ManageColumnsDialogComponent, typeof i105.AuditLogDrawerComponent, typeof i106.AuditLogEntryCardComponent, typeof i107.AssignEnvironmentsDialogComponent, typeof i108.PermissionToggleComponent, typeof i109.ExportCodeModalComponent, typeof i110.ProgressIndicatorComponent, typeof i111.StepProgressCardComponent, typeof i112.StepStatusCardComponent, typeof i113.DbVerificationStepComponent, typeof i114.DbQueryExecutionItemComponent, typeof i115.TestCaseNormalStepComponent, typeof i116.TestCaseLoopStepComponent, typeof i117.TestCaseConditionStepComponent, typeof i118.TestCaseStepGroupComponent, typeof i119.TestCaseDetailsRendererComponent, typeof i120.TestCaseApiStepComponent, typeof i121.TestCaseDatabaseStepComponent, typeof i122.TestCaseAiAgentStepComponent, typeof i124.TestCaseUploadStepComponent, typeof i125.TestCaseScreenshotStepComponent, typeof i126.TestCaseScrollStepComponent, typeof i127.TestCaseVerifyUrlStepComponent, typeof i128.TestCaseRestoreSessionStepComponent, typeof i129.TestCaseCustomCodeStepComponent, typeof i130.CustomEditStepComponent, typeof i131.ItemListComponent, typeof i132.TestDataModalComponent, typeof i133.CreateStepGroupComponent, typeof i134.DeleteStepsComponent, typeof i135.RunExecutionAlertComponent, typeof i136.ApiEditStepComponent, typeof i137.GraphQLOperationPickerComponent, typeof i138.LiveConversationComponent, typeof i139.StepBuilderActionComponent, typeof i140.StepBuilderLoopComponent, typeof i141.ElementPopupComponent, typeof i142.ElementFormComponent, typeof i143.StepBuilderConditionComponent, typeof i144.StepBuilderDatabaseComponent, typeof i145.StepBuilderAiAgentComponent, typeof i89.CodeEditorComponent, typeof i146.StepBuilderCustomCodeComponent, typeof i147.StepBuilderRecordStepComponent, typeof i148.StepBuilderDocumentGenerationTemplateStepComponent, typeof i149.ElementListComponent, typeof i150.StepBuilderDocumentComponent, typeof i151.DetailSidePanelComponent, typeof i152.DetailDrawerComponent, typeof i153.DetailDrawerTabComponent, typeof i154.DetailDrawerTabContentDirective, typeof i155.TestCaseDetailsComponent, typeof i156.TestCaseDetailsEditComponent, typeof i157.ApiMockingCardComponent, typeof i158.StepBuilderGroupComponent, typeof i159.StepDetailsDrawerComponent, typeof i160.TemplateVariablesFormComponent, typeof i161.AdvancedVariablesFormComponent, typeof i164.QuestionnaireListComponent, typeof i165.ChangeHistoryComponent, typeof i167.VersionHistoryListComponent, typeof i168.VersionHistoryCompareComponent, typeof i169.VersionHistoryDetailComponent, typeof i170.VersionHistoryRestoreConfirmComponent, typeof i171.NewVersionHistoryDetailComponent]>;
200
+ 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.ViewportSelectorComponent, typeof i8.DialogComponent, typeof i9.DynamicTableComponent, typeof i10.DynamicCellTemplateDirective, typeof i10.DynamicHeaderTemplateDirective, typeof i11.DynamicCellContainerDirective, typeof i12.PaginationComponent, typeof i13.ActionMenuButtonComponent, typeof i14.OtherButtonComponent, typeof i15.DynamicFilterComponent, typeof i16.DaterangepickerDirective, typeof i17.DaterangepickerComponent, typeof i18.ColumnVisibilityComponent, typeof i19.TableActionToolbarComponent, typeof i20.MetricsCardComponent, typeof i21.MetricsBlockComponent, typeof i22.ChartCardComponent, typeof i23.ProgressTextCardComponent, typeof i24.DashboardHeaderComponent, typeof i25.WorkspaceSelectorComponent, typeof i26.CoverageModuleCardComponent, typeof i27.TestDistributionCardComponent, typeof i28.FailedTestCasesCardComponent, typeof i29.DynamicSelectFieldComponent, typeof i30.AddPrerequisiteCasesSectionComponent, typeof i31.SelectedFiltersComponent, typeof i32.InsightCardComponent, typeof i33.BadgeComponent, typeof i34.DropdownButtonComponent, typeof i35.HeatErrorMapCellComponent, typeof i36.EmptyStateComponent, typeof i37.TableTemplateComponent, typeof i38.ModularTableTemplateComponent, typeof i39.FolderSidebarComponent, typeof i40.MoveToFolderDialogComponent, typeof i41.NewFolderDialogComponent, typeof i42.DeleteFolderDialogComponent, typeof i43.RowDragDirective, typeof i44.FolderDropDirective, typeof i45.FolderDragDirective, typeof i46.NamePromptModalComponent, typeof i47.FullTableLoaderComponent, typeof i48.TableDataLoaderComponent, typeof i49.BasicStepComponent, typeof i50.StepRendererComponent, typeof i51.StepGroupComponent, typeof i52.LoopStepComponent, typeof i53.ConditionStepComponent, typeof i54.ConditionDebugStepComponent, typeof i55.ConditionBranchEditorComponent, typeof i56.FailedStepComponent, typeof i57.UpdatedFailedStepComponent, typeof i58.ViewMoreFailedStepButtonComponent, typeof i59.SelfHealAnalysisComponent, typeof i60.AIAgentStepComponent, typeof i61.AIActionStepComponent, typeof i62.ApiStepComponent, typeof i63.FileDownloadStepComponent, typeof i64.DocumentVerificationStepComponent, typeof i65.LiveExecutionStepComponent, typeof i66.AiLogsWithReasoningComponent, typeof i67.JumpToStepModalComponent, typeof i68.BreakpointsModalComponent, typeof i69.RecordingBannerComponent, typeof i70.ReviewRecordedStepsModalComponent, typeof i71.MainStepCollapseComponent, typeof i72.VisualComparisonComponent, typeof i73.SimulatorComponent, typeof i74.ConsoleAlertComponent, typeof i75.AiDebugAlertComponent, typeof i76.NetworkRequestComponent, typeof i77.RunHistoryCardComponent, typeof i78.AiPromptCardComponent, typeof i79.VisualDifferenceModalComponent, typeof i80.ConfigurationCardComponent, typeof i81.CompareRunsComponent, typeof i82.ViewCompareButtonComponent, typeof i83.TestCaseLinkCellComponent, typeof i84.IterationsLoopComponent, typeof i85.FailedStepCardComponent, typeof i86.CustomInputComponent, typeof i87.MixedVariableInputComponent, typeof i88.CustomTextareaComponent, typeof i89.CodeEditorComponent, typeof i90.CustomToggleComponent, typeof i91.FileUploadComponent, typeof i92.AiReasoningComponent, typeof i93.ExecutionResultModalComponent, typeof i94.SessionChangesModalComponent, typeof i95.ErrorModalComponent, typeof i96.SessionRestorationDialogComponent, typeof i97.CaptureVideoDialogComponent, typeof i98.SubStepsConfirmationDialogComponent, typeof i99.NewGlobalVariableDialogComponent, typeof i100.NewEnvironmentDialogComponent, typeof i101.NewEnvironmentVariableDialogComponent, typeof i102.NewDbConfigDialogComponent, typeof i103.NewTestDataProfileDialogComponent, typeof i104.ManageColumnsDialogComponent, typeof i105.AuditLogDrawerComponent, typeof i106.AuditLogEntryCardComponent, typeof i107.AssignEnvironmentsDialogComponent, typeof i108.PermissionToggleComponent, typeof i109.ExportCodeModalComponent, typeof i110.ProgressIndicatorComponent, typeof i111.StepProgressCardComponent, typeof i112.StepStatusCardComponent, typeof i113.DbVerificationStepComponent, typeof i114.DbQueryExecutionItemComponent, typeof i115.TestCaseNormalStepComponent, typeof i116.TestCaseLoopStepComponent, typeof i117.TestCaseConditionStepComponent, typeof i118.TestCaseStepGroupComponent, typeof i119.TestCaseDetailsRendererComponent, typeof i120.TestCaseApiStepComponent, typeof i121.TestCaseDatabaseStepComponent, typeof i122.TestCaseAiAgentStepComponent, typeof i123.TestCaseAiVerifyStepComponent, typeof i124.TestCaseUploadStepComponent, typeof i125.TestCaseScreenshotStepComponent, typeof i126.TestCaseScrollStepComponent, typeof i127.TestCaseVerifyUrlStepComponent, typeof i128.TestCaseRestoreSessionStepComponent, typeof i129.TestCaseCustomCodeStepComponent, typeof i130.CustomEditStepComponent, typeof i131.ItemListComponent, typeof i132.TestDataModalComponent, typeof i133.CreateStepGroupComponent, typeof i134.DeleteStepsComponent, typeof i135.RunExecutionAlertComponent, typeof i136.ApiEditStepComponent, typeof i137.LiveConversationComponent, typeof i138.StepBuilderActionComponent, typeof i139.StepBuilderLoopComponent, typeof i140.ElementPopupComponent, typeof i141.ElementFormComponent, typeof i142.StepBuilderConditionComponent, typeof i143.StepBuilderDatabaseComponent, typeof i144.StepBuilderAiAgentComponent, typeof i89.CodeEditorComponent, typeof i145.StepBuilderCustomCodeComponent, typeof i146.StepBuilderRecordStepComponent, typeof i147.StepBuilderDocumentGenerationTemplateStepComponent, typeof i148.ElementListComponent, typeof i149.StepBuilderDocumentComponent, typeof i150.DetailSidePanelComponent, typeof i151.DetailDrawerComponent, typeof i152.DetailDrawerTabComponent, typeof i153.DetailDrawerTabContentDirective, typeof i154.TestCaseDetailsComponent, typeof i155.TestCaseDetailsEditComponent, typeof i156.ApiMockingCardComponent, typeof i157.StepBuilderGroupComponent, typeof i158.StepDetailsDrawerComponent, typeof i159.TemplateVariablesFormComponent, typeof i160.AdvancedVariablesFormComponent, typeof i161.StepDetailsModalComponent, typeof i162.SafeHtmlPipe, typeof i163.QuestionnaireListComponent, typeof i164.ChangeHistoryComponent, typeof i165.CamelToTitlePipe, typeof i166.VersionHistoryListComponent, typeof i167.VersionHistoryCompareComponent, typeof i168.VersionHistoryDetailComponent, typeof i169.VersionHistoryRestoreConfirmComponent, typeof i170.NewVersionHistoryDetailComponent], [typeof i171.CommonModule, typeof i172.FormsModule, typeof i172.ReactiveFormsModule, typeof i173.NoopAnimationsModule, typeof i174.MatIconModule, typeof i175.MatMenuModule, typeof i176.MatButtonModule, typeof i177.MatFormFieldModule, typeof i178.MatSelectModule, typeof i179.MatOptionModule, typeof i180.MatCheckboxModule, typeof i181.MatRadioModule, typeof i182.MatSlideToggleModule, typeof i183.MatDatepickerModule, typeof i179.MatNativeDateModule, typeof i184.MatProgressSpinnerModule, typeof i185.MatTooltipModule, typeof i186.MatDialogModule, typeof i187.MatTableModule, typeof i188.MatInputModule, typeof i189.OverlayModule, typeof i190.PortalModule, typeof i191.ScrollingModule, typeof i192.NgxTypedJsModule, typeof i193.DndModule, typeof i194.MonacoEditorModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.ViewportSelectorComponent, typeof i8.DialogComponent, typeof i9.DynamicTableComponent, typeof i10.DynamicCellTemplateDirective, typeof i10.DynamicHeaderTemplateDirective, typeof i11.DynamicCellContainerDirective, typeof i12.PaginationComponent, typeof i13.ActionMenuButtonComponent, typeof i14.OtherButtonComponent, typeof i15.DynamicFilterComponent, typeof i16.DaterangepickerDirective, typeof i17.DaterangepickerComponent, typeof i18.ColumnVisibilityComponent, typeof i19.TableActionToolbarComponent, typeof i20.MetricsCardComponent, typeof i22.ChartCardComponent, typeof i23.ProgressTextCardComponent, typeof i24.DashboardHeaderComponent, typeof i25.WorkspaceSelectorComponent, typeof i26.CoverageModuleCardComponent, typeof i27.TestDistributionCardComponent, typeof i28.FailedTestCasesCardComponent, typeof i29.DynamicSelectFieldComponent, typeof i30.AddPrerequisiteCasesSectionComponent, typeof i31.SelectedFiltersComponent, typeof i32.InsightCardComponent, typeof i33.BadgeComponent, typeof i34.DropdownButtonComponent, typeof i35.HeatErrorMapCellComponent, typeof i36.EmptyStateComponent, typeof i37.TableTemplateComponent, typeof i38.ModularTableTemplateComponent, typeof i39.FolderSidebarComponent, typeof i41.NewFolderDialogComponent, typeof i42.DeleteFolderDialogComponent, typeof i40.MoveToFolderDialogComponent, typeof i43.RowDragDirective, typeof i44.FolderDropDirective, typeof i45.FolderDragDirective, typeof i46.NamePromptModalComponent, typeof i47.FullTableLoaderComponent, typeof i48.TableDataLoaderComponent, typeof i49.BasicStepComponent, typeof i50.StepRendererComponent, typeof i51.StepGroupComponent, typeof i52.LoopStepComponent, typeof i53.ConditionStepComponent, typeof i54.ConditionDebugStepComponent, typeof i55.ConditionBranchEditorComponent, typeof i56.FailedStepComponent, typeof i54.ConditionDebugStepComponent, typeof i57.UpdatedFailedStepComponent, typeof i58.ViewMoreFailedStepButtonComponent, typeof i59.SelfHealAnalysisComponent, typeof i60.AIAgentStepComponent, typeof i61.AIActionStepComponent, typeof i62.ApiStepComponent, typeof i63.FileDownloadStepComponent, typeof i64.DocumentVerificationStepComponent, typeof i65.LiveExecutionStepComponent, typeof i66.AiLogsWithReasoningComponent, typeof i67.JumpToStepModalComponent, typeof i68.BreakpointsModalComponent, typeof i69.RecordingBannerComponent, typeof i70.ReviewRecordedStepsModalComponent, typeof i71.MainStepCollapseComponent, typeof i72.VisualComparisonComponent, typeof i73.SimulatorComponent, typeof i74.ConsoleAlertComponent, typeof i75.AiDebugAlertComponent, typeof i76.NetworkRequestComponent, typeof i77.RunHistoryCardComponent, typeof i78.AiPromptCardComponent, typeof i79.VisualDifferenceModalComponent, typeof i80.ConfigurationCardComponent, typeof i81.CompareRunsComponent, typeof i82.ViewCompareButtonComponent, typeof i83.TestCaseLinkCellComponent, typeof i84.IterationsLoopComponent, typeof i85.FailedStepCardComponent, typeof i86.CustomInputComponent, typeof i87.MixedVariableInputComponent, typeof i88.CustomTextareaComponent, typeof i89.CodeEditorComponent, typeof i90.CustomToggleComponent, typeof i91.FileUploadComponent, typeof i92.AiReasoningComponent, typeof i93.ExecutionResultModalComponent, typeof i94.SessionChangesModalComponent, typeof i95.ErrorModalComponent, typeof i96.SessionRestorationDialogComponent, typeof i97.CaptureVideoDialogComponent, typeof i98.SubStepsConfirmationDialogComponent, typeof i99.NewGlobalVariableDialogComponent, typeof i100.NewEnvironmentDialogComponent, typeof i101.NewEnvironmentVariableDialogComponent, typeof i102.NewDbConfigDialogComponent, typeof i103.NewTestDataProfileDialogComponent, typeof i104.ManageColumnsDialogComponent, typeof i105.AuditLogDrawerComponent, typeof i106.AuditLogEntryCardComponent, typeof i107.AssignEnvironmentsDialogComponent, typeof i108.PermissionToggleComponent, typeof i109.ExportCodeModalComponent, typeof i110.ProgressIndicatorComponent, typeof i111.StepProgressCardComponent, typeof i112.StepStatusCardComponent, typeof i113.DbVerificationStepComponent, typeof i114.DbQueryExecutionItemComponent, typeof i115.TestCaseNormalStepComponent, typeof i116.TestCaseLoopStepComponent, typeof i117.TestCaseConditionStepComponent, typeof i118.TestCaseStepGroupComponent, typeof i119.TestCaseDetailsRendererComponent, typeof i120.TestCaseApiStepComponent, typeof i121.TestCaseDatabaseStepComponent, typeof i122.TestCaseAiAgentStepComponent, typeof i124.TestCaseUploadStepComponent, typeof i125.TestCaseScreenshotStepComponent, typeof i126.TestCaseScrollStepComponent, typeof i127.TestCaseVerifyUrlStepComponent, typeof i128.TestCaseRestoreSessionStepComponent, typeof i129.TestCaseCustomCodeStepComponent, typeof i130.CustomEditStepComponent, typeof i131.ItemListComponent, typeof i132.TestDataModalComponent, typeof i133.CreateStepGroupComponent, typeof i134.DeleteStepsComponent, typeof i135.RunExecutionAlertComponent, typeof i136.ApiEditStepComponent, typeof i137.LiveConversationComponent, typeof i138.StepBuilderActionComponent, typeof i139.StepBuilderLoopComponent, typeof i140.ElementPopupComponent, typeof i141.ElementFormComponent, typeof i142.StepBuilderConditionComponent, typeof i143.StepBuilderDatabaseComponent, typeof i144.StepBuilderAiAgentComponent, typeof i89.CodeEditorComponent, typeof i145.StepBuilderCustomCodeComponent, typeof i146.StepBuilderRecordStepComponent, typeof i147.StepBuilderDocumentGenerationTemplateStepComponent, typeof i148.ElementListComponent, typeof i149.StepBuilderDocumentComponent, typeof i150.DetailSidePanelComponent, typeof i151.DetailDrawerComponent, typeof i152.DetailDrawerTabComponent, typeof i153.DetailDrawerTabContentDirective, typeof i154.TestCaseDetailsComponent, typeof i155.TestCaseDetailsEditComponent, typeof i156.ApiMockingCardComponent, typeof i157.StepBuilderGroupComponent, typeof i158.StepDetailsDrawerComponent, typeof i159.TemplateVariablesFormComponent, typeof i160.AdvancedVariablesFormComponent, typeof i163.QuestionnaireListComponent, typeof i164.ChangeHistoryComponent, typeof i166.VersionHistoryListComponent, typeof i167.VersionHistoryCompareComponent, typeof i168.VersionHistoryDetailComponent, typeof i169.VersionHistoryRestoreConfirmComponent, typeof i170.NewVersionHistoryDetailComponent]>;
202
201
  static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
203
202
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cqa-lib/cqa-ui",
3
- "version": "1.1.549-delta.3",
3
+ "version": "1.1.550",
4
4
  "description": "UI Kit library for Angular 13.4",
5
5
  "keywords": [
6
6
  "angular",
package/public-api.d.ts CHANGED
@@ -166,7 +166,6 @@ export * from './lib/test-case-details/create-step-group/create-step-group.compo
166
166
  export * from './lib/test-case-details/delete-steps/delete-steps.component';
167
167
  export * from './lib/test-case-details/run-execution-alert/run-execution-alert.component';
168
168
  export * from './lib/test-case-details/api-edit-step/api-edit-step.component';
169
- export * from './lib/test-case-details/api-edit-step/graphql-operation-picker/graphql-operation-picker.component';
170
169
  export * from './lib/test-case-details/test-case-step.models';
171
170
  export * from './lib/live-conversation/live-conversation.component';
172
171
  export * from './lib/step-builder/step-builder-action/step-builder-action.component';