@cqa-lib/cqa-ui 1.1.204 → 1.1.205

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 (26) hide show
  1. package/esm2020/lib/detail-drawer/detail-drawer-tab/detail-drawer-tab.component.mjs +38 -0
  2. package/esm2020/lib/detail-drawer/detail-drawer-tab-content.directive.mjs +16 -0
  3. package/esm2020/lib/detail-drawer/detail-drawer.component.mjs +121 -0
  4. package/esm2020/lib/detail-side-panel/detail-side-panel.component.mjs +211 -0
  5. package/esm2020/lib/detail-side-panel/detail-side-panel.models.mjs +2 -0
  6. package/esm2020/lib/test-case-details/test-case-details-edit/test-case-details-edit.component.mjs +634 -0
  7. package/esm2020/lib/test-case-details/test-case-details.component.mjs +138 -0
  8. package/esm2020/lib/test-case-details/test-case-details.models.mjs +167 -0
  9. package/esm2020/lib/ui-kit.module.mjs +31 -1
  10. package/esm2020/public-api.mjs +9 -1
  11. package/fesm2015/cqa-lib-cqa-ui.mjs +1322 -2
  12. package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
  13. package/fesm2020/cqa-lib-cqa-ui.mjs +1315 -2
  14. package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
  15. package/lib/detail-drawer/detail-drawer-tab/detail-drawer-tab.component.d.ts +15 -0
  16. package/lib/detail-drawer/detail-drawer-tab-content.directive.d.ts +8 -0
  17. package/lib/detail-drawer/detail-drawer.component.d.ts +39 -0
  18. package/lib/detail-side-panel/detail-side-panel.component.d.ts +86 -0
  19. package/lib/detail-side-panel/detail-side-panel.models.d.ts +20 -0
  20. package/lib/test-case-details/test-case-details-edit/test-case-details-edit.component.d.ts +175 -0
  21. package/lib/test-case-details/test-case-details.component.d.ts +62 -0
  22. package/lib/test-case-details/test-case-details.models.d.ts +118 -0
  23. package/lib/ui-kit.module.d.ts +32 -26
  24. package/package.json +1 -1
  25. package/public-api.d.ts +8 -0
  26. package/styles.css +1 -1
@@ -0,0 +1,15 @@
1
+ import { DetailDrawerTabContentDirective } from '../detail-drawer-tab-content.directive';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DetailDrawerTabComponent {
4
+ /** Tab label (shown in tooltip on icon button) */
5
+ label: string;
6
+ /** Tab value (unique identifier) */
7
+ value: string;
8
+ /** Material icon name for the tab button */
9
+ icon: string;
10
+ /** Template for tab content - use with ng-template cqaTabContent */
11
+ contentDirective?: DetailDrawerTabContentDirective;
12
+ get contentTemplate(): import("@angular/core").TemplateRef<unknown>;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<DetailDrawerTabComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<DetailDrawerTabComponent, "cqa-detail-drawer-tab", never, { "label": "label"; "value": "value"; "icon": "icon"; }, {}, ["contentDirective"], never>;
15
+ }
@@ -0,0 +1,8 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DetailDrawerTabContentDirective {
4
+ templateRef: TemplateRef<unknown>;
5
+ constructor(templateRef: TemplateRef<unknown>);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<DetailDrawerTabContentDirective, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DetailDrawerTabContentDirective, "[cqaTabContent]", never, {}, {}, never>;
8
+ }
@@ -0,0 +1,39 @@
1
+ import { EventEmitter, QueryList, AfterContentInit, AfterContentChecked } from '@angular/core';
2
+ import { DetailDrawerTabComponent } from './detail-drawer-tab/detail-drawer-tab.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DetailDrawerComponent implements AfterContentInit, AfterContentChecked {
5
+ tabComponents: QueryList<DetailDrawerTabComponent>;
6
+ /** Currently active tab value */
7
+ activeTab: string;
8
+ /** Whether to show the close button */
9
+ showCloseButton: boolean;
10
+ /** Whether the drawer is expanded */
11
+ expanded: boolean;
12
+ /** Panel width when expanded */
13
+ expandedWidth: string;
14
+ /** Minimum width when expanded (e.g. '280px') */
15
+ minExpandedWidth?: string;
16
+ /** Maximum width when expanded (e.g. '600px', '30vw'). Default: 30% of viewport */
17
+ maxExpandedWidth: string;
18
+ /** Panel width when collapsed */
19
+ collapsedWidth: string;
20
+ get hostWidth(): string;
21
+ get hostMinWidth(): string | null;
22
+ get hostMaxWidth(): string | null;
23
+ expandTooltip: string;
24
+ collapseTooltip: string;
25
+ closeTooltip: string;
26
+ activeTabChange: EventEmitter<string>;
27
+ expandToggle: EventEmitter<void>;
28
+ close: EventEmitter<void>;
29
+ ngAfterContentInit(): void;
30
+ ngAfterContentChecked(): void;
31
+ private ensureActiveTab;
32
+ onTabClick(tab: DetailDrawerTabComponent): void;
33
+ onExpandToggle(): void;
34
+ onClose(): void;
35
+ trackByValue(_i: number, tab: DetailDrawerTabComponent): string;
36
+ isTabActive(tab: DetailDrawerTabComponent): boolean;
37
+ static ɵfac: i0.ɵɵFactoryDeclaration<DetailDrawerComponent, never>;
38
+ static ɵcmp: i0.ɵɵComponentDeclaration<DetailDrawerComponent, "cqa-detail-drawer", never, { "activeTab": "activeTab"; "showCloseButton": "showCloseButton"; "expanded": "expanded"; "expandedWidth": "expandedWidth"; "minExpandedWidth": "minExpandedWidth"; "maxExpandedWidth": "maxExpandedWidth"; "collapsedWidth": "collapsedWidth"; "expandTooltip": "expandTooltip"; "collapseTooltip": "collapseTooltip"; "closeTooltip": "closeTooltip"; }, { "activeTabChange": "activeTabChange"; "expandToggle": "expandToggle"; "close": "close"; }, ["tabComponents"], never>;
39
+ }
@@ -0,0 +1,86 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { DetailSidePanelTab, DetailSidePanelMetadataItem, DetailSidePanelConfigSection } from './detail-side-panel.models';
3
+ import { TestCaseDetailsEditFormData, SelectConfigOverrides } from '../test-case-details/test-case-details-edit/test-case-details-edit.component';
4
+ import * as i0 from "@angular/core";
5
+ export type { DetailSidePanelTab, DetailSidePanelMetadataItem, DetailSidePanelConfigSection } from './detail-side-panel.models';
6
+ export declare class DetailSidePanelComponent {
7
+ /** Tabs - each tab has a side panel icon button; tabs and buttons are 1:1 */
8
+ tabs: DetailSidePanelTab[];
9
+ /** Currently active tab value */
10
+ activeTab: string;
11
+ /** Description section title */
12
+ descriptionTitle: string;
13
+ /** Description text content */
14
+ descriptionContent: string;
15
+ /** Whether to show the Edit button in the Description header */
16
+ showEditButton: boolean;
17
+ /** Metadata items (Created on, Status, Priority, etc.) */
18
+ metadataItems: DetailSidePanelMetadataItem[];
19
+ /** Labels/tags (e.g. Automation, API, SDK, UI/UX) */
20
+ labels: string[];
21
+ /** Configuration sections - full width (e.g. Execution, AI Configuration) */
22
+ configSections: DetailSidePanelConfigSection[];
23
+ /** Optional config sections displayed in a 2-column row (e.g. Waits & Retries, Device) */
24
+ configSectionsRow2: DetailSidePanelConfigSection[];
25
+ /** Platform: 'web' or 'mobile'. Defaults to 'web'. Used for Device Settings. */
26
+ platform: 'web' | 'mobile';
27
+ /** Configuration section title */
28
+ configTitle: string;
29
+ /** Whether to show the close button in the side menu */
30
+ showCloseButton: boolean;
31
+ /** When true, test case details start in edit mode (useful for Storybook). */
32
+ startInEditMode: boolean;
33
+ /** Override config per select for API-driven options, server search, load more. */
34
+ selectConfigOverrides: SelectConfigOverrides;
35
+ /** Whether the panel is expanded (affects expand button icon and panel width) */
36
+ expanded: boolean;
37
+ /** Panel width when expanded (e.g. '480px', '25%') */
38
+ expandedWidth: string;
39
+ /** Panel width when collapsed (e.g. '56px' - fits icon bar + back button) */
40
+ collapsedWidth: string;
41
+ get hostWidth(): string;
42
+ get hostMinWidth(): string;
43
+ get hostMaxWidth(): string;
44
+ hostOverflow: string;
45
+ /** Tooltip for expand button when panel is collapsed */
46
+ expandTooltip: string;
47
+ /** Tooltip for expand button when panel is expanded (collapse) */
48
+ collapseTooltip: string;
49
+ /** Tooltip for close button */
50
+ closeTooltip: string;
51
+ back: EventEmitter<void>;
52
+ tabChange: EventEmitter<string>;
53
+ editDescription: EventEmitter<void>;
54
+ saveChanges: EventEmitter<TestCaseDetailsEditFormData>;
55
+ metadataLinkClick: EventEmitter<DetailSidePanelMetadataItem>;
56
+ selectSearch: EventEmitter<{
57
+ key: string;
58
+ query: string;
59
+ }>;
60
+ selectLoadMore: EventEmitter<{
61
+ key: string;
62
+ query: string;
63
+ }>;
64
+ selectOpened: EventEmitter<{
65
+ key: string;
66
+ }>;
67
+ selectionChange: EventEmitter<{
68
+ key: string;
69
+ value: unknown;
70
+ }>;
71
+ expandToggle: EventEmitter<void>;
72
+ close: EventEmitter<void>;
73
+ trackByTabValue(_i: number, tab: DetailSidePanelTab): string;
74
+ trackByMetadataLabel(_i: number, item: DetailSidePanelMetadataItem): string;
75
+ trackByConfigTitle(_i: number, section: DetailSidePanelConfigSection): string;
76
+ onBack(): void;
77
+ onTabClick(tab: DetailSidePanelTab): void;
78
+ onEditDescription(): void;
79
+ onSaveChanges(data: TestCaseDetailsEditFormData): void;
80
+ onExpandToggle(): void;
81
+ onClose(): void;
82
+ onMetadataLinkClick(item: DetailSidePanelMetadataItem): void;
83
+ getStatusDotClass(item: DetailSidePanelMetadataItem): string;
84
+ static ɵfac: i0.ɵɵFactoryDeclaration<DetailSidePanelComponent, never>;
85
+ static ɵcmp: i0.ɵɵComponentDeclaration<DetailSidePanelComponent, "cqa-detail-side-panel", never, { "tabs": "tabs"; "activeTab": "activeTab"; "descriptionTitle": "descriptionTitle"; "descriptionContent": "descriptionContent"; "showEditButton": "showEditButton"; "metadataItems": "metadataItems"; "labels": "labels"; "configSections": "configSections"; "configSectionsRow2": "configSectionsRow2"; "platform": "platform"; "configTitle": "configTitle"; "showCloseButton": "showCloseButton"; "startInEditMode": "startInEditMode"; "selectConfigOverrides": "selectConfigOverrides"; "expanded": "expanded"; "expandedWidth": "expandedWidth"; "collapsedWidth": "collapsedWidth"; "expandTooltip": "expandTooltip"; "collapseTooltip": "collapseTooltip"; "closeTooltip": "closeTooltip"; }, { "back": "back"; "tabChange": "tabChange"; "editDescription": "editDescription"; "saveChanges": "saveChanges"; "metadataLinkClick": "metadataLinkClick"; "selectSearch": "selectSearch"; "selectLoadMore": "selectLoadMore"; "selectOpened": "selectOpened"; "selectionChange": "selectionChange"; "expandToggle": "expandToggle"; "close": "close"; }, never, never>;
86
+ }
@@ -0,0 +1,20 @@
1
+ import { ConfigurationItem } from '../configuration-card/configuration-card.component';
2
+ export interface DetailSidePanelTab {
3
+ label: string;
4
+ value: string;
5
+ /** Material icon name for the side panel button */
6
+ icon?: string;
7
+ }
8
+ export interface DetailSidePanelMetadataItem {
9
+ label: string;
10
+ value: string;
11
+ icon?: string;
12
+ iconLibrary?: 'mat' | 'fa';
13
+ link?: string;
14
+ statusColor?: 'yellow' | 'red' | 'green' | 'gray';
15
+ }
16
+ export interface DetailSidePanelConfigSection {
17
+ title: string;
18
+ icon?: string;
19
+ items: ConfigurationItem[];
20
+ }
@@ -0,0 +1,175 @@
1
+ import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core';
2
+ import { FormGroup } from '@angular/forms';
3
+ import { TestCaseDetailsConfigSection, TestCaseDetailsMetadataItem } from '../test-case-details.models';
4
+ import { DynamicSelectFieldConfig, SelectOption } from '../../dynamic-select/dynamic-select-field.component';
5
+ import * as i0 from "@angular/core";
6
+ /** Override config for a specific select. Use for server-side search, load more, custom options. */
7
+ export interface SelectConfigOverride {
8
+ /** Replace options (e.g. from API). Update when API returns. */
9
+ options?: SelectOption[];
10
+ /** Enable server-side search; component emits selectSearch instead of local filtering. */
11
+ serverSearch?: boolean;
12
+ /** Indicates more results available for infinite scroll. */
13
+ hasMore?: boolean;
14
+ /** Loading state (e.g. during API call). */
15
+ isLoading?: boolean;
16
+ /** Enable search input in the select. */
17
+ searchable?: boolean;
18
+ /** When true, triggers initial search on panel open (serverSearch mode). */
19
+ initialFetchOnOpen?: boolean;
20
+ /** Callback when user types in search. Call API, then update options via selectConfigOverrides. */
21
+ onSearch?: (query: string) => void;
22
+ /** Callback when user scrolls to load more. Call API, append options via selectConfigOverrides. */
23
+ onLoadMore?: (query?: string) => void;
24
+ }
25
+ /** Map of select key -> config override. Enables API-driven options, infinite search, load more. */
26
+ export declare type SelectConfigOverrides = Partial<Record<string, SelectConfigOverride>>;
27
+ /** Keys for each dynamic select in test-case-details-edit. Use these with selectConfigOverrides. */
28
+ export declare const TEST_CASE_DETAILS_SELECT_KEYS: {
29
+ readonly status: "status";
30
+ readonly priority: "priority";
31
+ readonly prerequisiteCases: "prerequisiteCases";
32
+ readonly videoRecording: "videoRecording";
33
+ readonly enableAiSmartness: "enableAiSmartness";
34
+ readonly defaultAiAction: "defaultAiAction";
35
+ readonly knowledgeBaseDefaultTestCase: "knowledgeBaseDefaultTestCase";
36
+ readonly useAiMetadata: "useAiMetadata";
37
+ readonly defaultBrowser: "defaultBrowser";
38
+ readonly defaultViewport: "defaultViewport";
39
+ readonly deviceType: "deviceType";
40
+ readonly deviceOS: "deviceOS";
41
+ };
42
+ export interface TestCaseDetailsEditFormData {
43
+ descriptionContent: string;
44
+ status: string;
45
+ priority: string;
46
+ labels: string[];
47
+ configSections: TestCaseDetailsConfigSection[];
48
+ configSectionsRow2: TestCaseDetailsConfigSection[];
49
+ }
50
+ export declare class TestCaseDetailsEditComponent implements OnInit, OnChanges {
51
+ descriptionTitle: string;
52
+ descriptionContent: string;
53
+ metadataItems: TestCaseDetailsMetadataItem[];
54
+ labels: string[];
55
+ configTitle: string;
56
+ configSections: TestCaseDetailsConfigSection[];
57
+ configSectionsRow2: TestCaseDetailsConfigSection[];
58
+ /** Optional list of prerequisite test case options for the multi-select. If not provided, uses default sample options. */
59
+ prerequisiteCaseOptions: {
60
+ value: string;
61
+ name: string;
62
+ }[];
63
+ /** Platform: 'web' shows Default Browser + Viewport; 'mobile' shows Device Type + OS. Defaults to 'web'. */
64
+ platform: 'web' | 'mobile';
65
+ /**
66
+ * Override config per select key. Use for:
67
+ * - API-driven options: pass options array (update when API returns)
68
+ * - Server-side search: serverSearch: true, onSearch in override or listen to selectSearch
69
+ * - Infinite scroll: hasMore: true, onLoadMore in override or listen to selectLoadMore
70
+ * - Initial fetch on open: initialFetchOnOpen: true
71
+ */
72
+ selectConfigOverrides: SelectConfigOverrides;
73
+ save: EventEmitter<TestCaseDetailsEditFormData>;
74
+ cancel: EventEmitter<void>;
75
+ /** Emitted when user searches in a select (serverSearch mode). Call API and update options via selectConfigOverrides. */
76
+ selectSearch: EventEmitter<{
77
+ key: string;
78
+ query: string;
79
+ }>;
80
+ /** Emitted when user scrolls to load more. Call API, append to options via selectConfigOverrides. */
81
+ selectLoadMore: EventEmitter<{
82
+ key: string;
83
+ query: string;
84
+ }>;
85
+ /** Emitted when a select panel is opened. Use to call API for initial load (e.g. when initialFetchOnOpen). */
86
+ selectOpened: EventEmitter<{
87
+ key: string;
88
+ }>;
89
+ /** Emitted when selection changes in any select. */
90
+ selectionChange: EventEmitter<{
91
+ key: string;
92
+ value: unknown;
93
+ }>;
94
+ /** Form state */
95
+ editDescription: string;
96
+ editStatus: string;
97
+ editPriority: string;
98
+ editLabels: string[];
99
+ labelSearch: string;
100
+ testCaseTimeout: string;
101
+ waitTimeoutLocators: string;
102
+ autoWaitEnabled: boolean;
103
+ retryFailedSteps: string;
104
+ configExpanded: boolean;
105
+ executionExpanded: boolean;
106
+ aiConfigExpanded: boolean;
107
+ waitsRetriesExpanded: boolean;
108
+ deviceExpanded: boolean;
109
+ keyFlagsExpanded: boolean;
110
+ mobileTestingEnabled: boolean;
111
+ extensionUseEnabled: boolean;
112
+ dataDrivenEnabled: boolean;
113
+ readonly frequentlyUsedLabels: string[];
114
+ /** FormGroup for cqa-dynamic-select bindings */
115
+ editForm: FormGroup;
116
+ get statusItem(): TestCaseDetailsMetadataItem | undefined;
117
+ get priorityItem(): TestCaseDetailsMetadataItem | undefined;
118
+ get statusOptions(): string[];
119
+ get priorityOptions(): string[];
120
+ /** Cached configs to avoid new object refs each change detection (prevents infinite loops) */
121
+ readonly statusSelectConfig: DynamicSelectFieldConfig;
122
+ private readonly defaultPrerequisiteCaseOptions;
123
+ readonly videoRecordingSelectConfig: DynamicSelectFieldConfig;
124
+ readonly aiMetadataCollectionSelectConfig: DynamicSelectFieldConfig;
125
+ prerequisiteCaseSelectConfig: DynamicSelectFieldConfig;
126
+ readonly defaultViewportSelectConfig: DynamicSelectFieldConfig;
127
+ readonly deviceTypeSelectConfig: DynamicSelectFieldConfig;
128
+ readonly deviceOSSelectConfig: DynamicSelectFieldConfig;
129
+ readonly defaultBrowserSelectConfig: DynamicSelectFieldConfig;
130
+ readonly prioritySelectConfig: DynamicSelectFieldConfig;
131
+ readonly enableAiSmartnessSelectConfig: DynamicSelectFieldConfig;
132
+ readonly defaultAiActionSelectConfig: DynamicSelectFieldConfig;
133
+ readonly knowledgeBaseDefaultTestCaseSelectConfig: DynamicSelectFieldConfig;
134
+ /**
135
+ * Returns merged config for a select: base config + override.
136
+ * Wires onSearch, onLoadMore to both override callbacks and output events.
137
+ */
138
+ getConfigForSelect(key: string, baseConfig: DynamicSelectFieldConfig): DynamicSelectFieldConfig;
139
+ onSelectOpened(key: string): void;
140
+ onSelectSearch(event: {
141
+ key: string;
142
+ query: string;
143
+ }): void;
144
+ onSelectLoadMore(event: {
145
+ key: string;
146
+ query: string;
147
+ }): void;
148
+ onSelectionChange(event: {
149
+ key: string;
150
+ value: unknown;
151
+ }): void;
152
+ private getConfigItemValue;
153
+ private getPrerequisiteCasesFromConfig;
154
+ ngOnInit(): void;
155
+ private normalizeBooleanSelectValue;
156
+ ngOnChanges(changes: SimpleChanges): void;
157
+ onRemoveLabel(label: string): void;
158
+ onClearAllLabels(): void;
159
+ onAddFrequentLabel(label: string): void;
160
+ onAddSearchedLabel(): void;
161
+ onSave(): void;
162
+ private mergeConfigSections;
163
+ private mergeConfigSectionsRow2;
164
+ onCancel(): void;
165
+ trackByLabel(_i: number, label: string): string;
166
+ trackByConfigTitle(_i: number, section: TestCaseDetailsConfigSection): string;
167
+ /** Current labels use consistent indigo style */
168
+ private readonly LABEL_CHIP_STYLE;
169
+ getCurrentLabelChipStyle(_label: string): {
170
+ [key: string]: string;
171
+ };
172
+ getLabelCloseIconColor(_label: string): string;
173
+ static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseDetailsEditComponent, never>;
174
+ static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseDetailsEditComponent, "cqa-test-case-details-edit", never, { "descriptionTitle": "descriptionTitle"; "descriptionContent": "descriptionContent"; "metadataItems": "metadataItems"; "labels": "labels"; "configTitle": "configTitle"; "configSections": "configSections"; "configSectionsRow2": "configSectionsRow2"; "prerequisiteCaseOptions": "prerequisiteCaseOptions"; "platform": "platform"; "selectConfigOverrides": "selectConfigOverrides"; }, { "save": "save"; "cancel": "cancel"; "selectSearch": "selectSearch"; "selectLoadMore": "selectLoadMore"; "selectOpened": "selectOpened"; "selectionChange": "selectionChange"; }, never, never>;
175
+ }
@@ -0,0 +1,62 @@
1
+ import { EventEmitter, ChangeDetectorRef, OnInit } from '@angular/core';
2
+ import { TestCaseDetailsConfigSection, TestCaseDetailsMetadataItem } from './test-case-details.models';
3
+ import { TestCaseDetailsEditFormData, SelectConfigOverrides } from './test-case-details-edit/test-case-details-edit.component';
4
+ import * as i0 from "@angular/core";
5
+ export declare class TestCaseDetailsComponent implements OnInit {
6
+ private cdr;
7
+ /** Whether the component is in edit mode */
8
+ editing: boolean;
9
+ /** When true, start in edit mode (useful for Storybook). */
10
+ startInEditMode: boolean;
11
+ constructor(cdr: ChangeDetectorRef);
12
+ ngOnInit(): void;
13
+ /** Description section title */
14
+ descriptionTitle: string;
15
+ /** Description text content */
16
+ descriptionContent: string;
17
+ /** Whether to show the Edit button in the Description header */
18
+ showEditButton: boolean;
19
+ /** Metadata items (createdOn, status, priority, environment, version, testPlanName, etc.) */
20
+ metadataItems: TestCaseDetailsMetadataItem[];
21
+ /** Labels/tags (e.g. Automation, API, SDK, UI/UX) */
22
+ labels: string[];
23
+ /** Configuration section title */
24
+ configTitle: string;
25
+ /** Configuration sections (e.g. Execution, AI Configuration) */
26
+ configSections: TestCaseDetailsConfigSection[];
27
+ /** Optional config sections displayed in a 2-column row (e.g. Waits & Retries, Device) */
28
+ configSectionsRow2: TestCaseDetailsConfigSection[];
29
+ /** Platform: 'web' or 'mobile'. Defaults to 'web'. Used for Device Settings fields. */
30
+ platform: 'web' | 'mobile';
31
+ /** Override config per select for API-driven options, server search, load more. */
32
+ selectConfigOverrides: SelectConfigOverrides;
33
+ editDescription: EventEmitter<void>;
34
+ saveChanges: EventEmitter<TestCaseDetailsEditFormData>;
35
+ metadataLinkClick: EventEmitter<TestCaseDetailsMetadataItem>;
36
+ selectSearch: EventEmitter<{
37
+ key: string;
38
+ query: string;
39
+ }>;
40
+ selectLoadMore: EventEmitter<{
41
+ key: string;
42
+ query: string;
43
+ }>;
44
+ selectOpened: EventEmitter<{
45
+ key: string;
46
+ }>;
47
+ selectionChange: EventEmitter<{
48
+ key: string;
49
+ value: unknown;
50
+ }>;
51
+ onEditClick(): void;
52
+ onSaveChanges(data: TestCaseDetailsEditFormData): void;
53
+ onCancelEdit(): void;
54
+ trackByConfigTitle(_i: number, section: TestCaseDetailsConfigSection): string;
55
+ trackByMetadataLabel(_i: number, item: TestCaseDetailsMetadataItem): string;
56
+ onMetadataLinkClick(item: TestCaseDetailsMetadataItem): void;
57
+ getStatusDotClass(item: TestCaseDetailsMetadataItem): string;
58
+ /** Text color for metadata value (e.g. red for critical priority) */
59
+ getValueTextClass(item: TestCaseDetailsMetadataItem): string;
60
+ static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseDetailsComponent, never>;
61
+ static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseDetailsComponent, "cqa-test-case-details", never, { "startInEditMode": "startInEditMode"; "descriptionTitle": "descriptionTitle"; "descriptionContent": "descriptionContent"; "showEditButton": "showEditButton"; "metadataItems": "metadataItems"; "labels": "labels"; "configTitle": "configTitle"; "configSections": "configSections"; "configSectionsRow2": "configSectionsRow2"; "platform": "platform"; "selectConfigOverrides": "selectConfigOverrides"; }, { "editDescription": "editDescription"; "saveChanges": "saveChanges"; "metadataLinkClick": "metadataLinkClick"; "selectSearch": "selectSearch"; "selectLoadMore": "selectLoadMore"; "selectOpened": "selectOpened"; "selectionChange": "selectionChange"; }, never, never>;
62
+ }
@@ -0,0 +1,118 @@
1
+ import { ConfigurationItem } from '../configuration-card/configuration-card.component';
2
+ export interface TestCaseDetailsConfigSection {
3
+ title: string;
4
+ icon?: string;
5
+ items: ConfigurationItem[];
6
+ }
7
+ export declare type StatusDotColor = 'yellow' | 'red' | 'green' | 'gray';
8
+ export interface TestCaseDetailsMetadataItem {
9
+ label: string;
10
+ value: string;
11
+ icon?: string;
12
+ iconLibrary?: 'mat' | 'fa';
13
+ link?: string;
14
+ statusColor?: StatusDotColor;
15
+ }
16
+ /** Maps status/priority value (lowercase) to dot color. Override to customize. */
17
+ export declare type StatusColorConfig = Partial<Record<string, StatusDotColor>>;
18
+ /** Default status value -> dot color. Override via BuildTestCaseDetailsOptions. */
19
+ export declare const DEFAULT_STATUS_COLOR_CONFIG: Record<string, StatusDotColor>;
20
+ /** Default priority value -> dot color. Override via BuildTestCaseDetailsOptions. */
21
+ export declare const DEFAULT_PRIORITY_COLOR_CONFIG: Record<string, StatusDotColor>;
22
+ /**
23
+ * API field names for mapping test case data to cqa-test-case-details.
24
+ * Use these when building metadataItems and configSections from your API response.
25
+ */
26
+ export declare const TEST_CASE_DETAILS_FIELD_MAP: {
27
+ /** Metadata (description section) */
28
+ readonly metadata: {
29
+ readonly createdOn: "createdOn";
30
+ readonly status: "status";
31
+ readonly priority: "priority";
32
+ readonly environment: "environment";
33
+ readonly version: "version";
34
+ readonly platform: "platform";
35
+ readonly labels: "labels";
36
+ };
37
+ /** Execution config */
38
+ readonly execution: {
39
+ readonly prerequisiteCase: "prerequisiteCase";
40
+ readonly defaultBrowser: "defaultBrowser";
41
+ readonly videoRecording: "videoRecording";
42
+ readonly testCaseTimeout: "testCaseTimeout";
43
+ readonly waitTimeoutForLocators: "waitTimeoutForLocators";
44
+ readonly webBrowser: "webBrowser";
45
+ readonly viewport: "viewport";
46
+ };
47
+ /** AI Configuration */
48
+ readonly aiConfig: {
49
+ readonly enableAiSmartness: "enableAiSmartness";
50
+ readonly defaultAiAction: "defaultAiAction";
51
+ readonly knowledgeBaseDefaultTestCase: "knowledgeBaseDefaultTestCase";
52
+ readonly useAiMetadata: "useAiMetadata";
53
+ };
54
+ /** Waits & Retries */
55
+ readonly waitsRetries: {
56
+ readonly autoWait: "autoWait";
57
+ readonly retryFailedSteps: "retryFailedSteps";
58
+ };
59
+ /** Device */
60
+ readonly device: {
61
+ readonly platform: "platform";
62
+ readonly deviceType: "deviceType";
63
+ readonly deviceOS: "deviceOS";
64
+ readonly defaultBrowser: "defaultBrowser";
65
+ readonly defaultViewport: "defaultViewport";
66
+ readonly viewport: "viewport";
67
+ };
68
+ };
69
+ /** API response shape for test case details. Map your API fields to this structure. */
70
+ export interface TestCaseDetailsApiData {
71
+ createdOn?: string | Date;
72
+ status?: string;
73
+ priority?: string;
74
+ environment?: string;
75
+ version?: string;
76
+ testPlanName?: string;
77
+ testPlanRedirectUrl?: string;
78
+ labels?: string[];
79
+ prerequisiteCase?: string | null;
80
+ defaultBrowser?: string;
81
+ videoRecording?: boolean | string;
82
+ testCaseTimeout?: string;
83
+ waitTimeoutForLocators?: string;
84
+ webBrowser?: string;
85
+ viewport?: string;
86
+ enableAiSmartness?: string;
87
+ defaultAiAction?: string;
88
+ knowledgeBaseDefaultTestCase?: string | null;
89
+ useAiMetadata?: string;
90
+ autoWait?: string;
91
+ autoWaitEnabled?: boolean;
92
+ retryFailedSteps?: string;
93
+ platform?: 'web' | 'mobile';
94
+ deviceType?: string;
95
+ deviceOS?: string;
96
+ defaultViewport?: string;
97
+ /** Key Flags */
98
+ mobileTesting?: string | boolean;
99
+ extensionUse?: string | boolean;
100
+ dataDriven?: string | boolean;
101
+ }
102
+ /** Options for buildTestCaseDetailsFromApi */
103
+ export interface BuildTestCaseDetailsOptions {
104
+ /** Override status value -> dot color. Merged with defaults. */
105
+ statusColorConfig?: StatusColorConfig;
106
+ /** Override priority value -> dot color. Merged with defaults. */
107
+ priorityColorConfig?: StatusColorConfig;
108
+ }
109
+ /**
110
+ * Build metadataItems and configSections from API data for cqa-test-case-details.
111
+ * Use in ts-portal when mapping test case API response to component inputs.
112
+ */
113
+ export declare function buildTestCaseDetailsFromApi(data: TestCaseDetailsApiData, options?: BuildTestCaseDetailsOptions): {
114
+ metadataItems: TestCaseDetailsMetadataItem[];
115
+ labels: string[];
116
+ configSections: TestCaseDetailsConfigSection[];
117
+ configSectionsRow2: TestCaseDetailsConfigSection[];
118
+ };
@@ -107,34 +107,40 @@ import * as i104 from "./step-builder/step-builder-record-step/step-builder-reco
107
107
  import * as i105 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
108
108
  import * as i106 from "./test-case-details/element-list/element-list.component";
109
109
  import * as i107 from "./step-builder/step-builder-document/step-builder-document.component";
110
- import * as i108 from "./step-builder/step-builder-group/step-builder-group.component";
111
- import * as i109 from "./test-case-details/step-details-drawer/step-details-drawer.component";
112
- import * as i110 from "./step-builder/template-variables-form/template-variables-form.component";
113
- import * as i111 from "@angular/common";
114
- import * as i112 from "@angular/forms";
115
- import * as i113 from "@angular/platform-browser/animations";
116
- import * as i114 from "@angular/material/icon";
117
- import * as i115 from "@angular/material/menu";
118
- import * as i116 from "@angular/material/button";
119
- import * as i117 from "@angular/material/form-field";
120
- import * as i118 from "@angular/material/select";
121
- import * as i119 from "@angular/material/core";
122
- import * as i120 from "@angular/material/checkbox";
123
- import * as i121 from "@angular/material/radio";
124
- import * as i122 from "@angular/material/slide-toggle";
125
- import * as i123 from "@angular/material/datepicker";
126
- import * as i124 from "@angular/material/progress-spinner";
127
- import * as i125 from "@angular/material/tooltip";
128
- import * as i126 from "@angular/material/dialog";
129
- import * as i127 from "@angular/material/table";
130
- import * as i128 from "@angular/material/input";
131
- import * as i129 from "@angular/cdk/overlay";
132
- import * as i130 from "@angular/cdk/portal";
133
- import * as i131 from "ngx-typed-js";
134
- import * as i132 from "ngx-drag-drop";
110
+ import * as i108 from "./detail-side-panel/detail-side-panel.component";
111
+ import * as i109 from "./detail-drawer/detail-drawer.component";
112
+ import * as i110 from "./detail-drawer/detail-drawer-tab/detail-drawer-tab.component";
113
+ import * as i111 from "./detail-drawer/detail-drawer-tab-content.directive";
114
+ import * as i112 from "./test-case-details/test-case-details.component";
115
+ import * as i113 from "./test-case-details/test-case-details-edit/test-case-details-edit.component";
116
+ import * as i114 from "./step-builder/step-builder-group/step-builder-group.component";
117
+ import * as i115 from "./test-case-details/step-details-drawer/step-details-drawer.component";
118
+ import * as i116 from "./step-builder/template-variables-form/template-variables-form.component";
119
+ import * as i117 from "@angular/common";
120
+ import * as i118 from "@angular/forms";
121
+ import * as i119 from "@angular/platform-browser/animations";
122
+ import * as i120 from "@angular/material/icon";
123
+ import * as i121 from "@angular/material/menu";
124
+ import * as i122 from "@angular/material/button";
125
+ import * as i123 from "@angular/material/form-field";
126
+ import * as i124 from "@angular/material/select";
127
+ import * as i125 from "@angular/material/core";
128
+ import * as i126 from "@angular/material/checkbox";
129
+ import * as i127 from "@angular/material/radio";
130
+ import * as i128 from "@angular/material/slide-toggle";
131
+ import * as i129 from "@angular/material/datepicker";
132
+ import * as i130 from "@angular/material/progress-spinner";
133
+ import * as i131 from "@angular/material/tooltip";
134
+ import * as i132 from "@angular/material/dialog";
135
+ import * as i133 from "@angular/material/table";
136
+ import * as i134 from "@angular/material/input";
137
+ import * as i135 from "@angular/cdk/overlay";
138
+ import * as i136 from "@angular/cdk/portal";
139
+ import * as i137 from "ngx-typed-js";
140
+ import * as i138 from "ngx-drag-drop";
135
141
  export declare class UiKitModule {
136
142
  constructor(iconRegistry: MatIconRegistry);
137
143
  static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
138
- static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.DialogComponent, typeof i6.DynamicTableComponent, typeof i7.DynamicCellTemplateDirective, typeof i7.DynamicHeaderTemplateDirective, typeof i8.DynamicCellContainerDirective, typeof i9.PaginationComponent, typeof i10.ActionMenuButtonComponent, typeof i11.OtherButtonComponent, typeof i12.DynamicFilterComponent, typeof i13.DaterangepickerDirective, typeof i14.DaterangepickerComponent, typeof i15.ColumnVisibilityComponent, typeof i16.TableActionToolbarComponent, typeof i17.MetricsCardComponent, typeof i18.MetricsBlockComponent, typeof i19.ChartCardComponent, typeof i20.ProgressTextCardComponent, typeof i21.DashboardHeaderComponent, typeof i22.CoverageModuleCardComponent, typeof i23.TestDistributionCardComponent, typeof i24.FailedTestCasesCardComponent, typeof i25.DynamicSelectFieldComponent, typeof i26.AddPrerequisiteCasesSectionComponent, typeof i27.SelectedFiltersComponent, typeof i28.InsightCardComponent, typeof i29.BadgeComponent, typeof i30.DropdownButtonComponent, typeof i31.HeatErrorMapCellComponent, typeof i32.EmptyStateComponent, typeof i33.TableTemplateComponent, typeof i34.FullTableLoaderComponent, typeof i35.TableDataLoaderComponent, typeof i36.BasicStepComponent, typeof i37.StepRendererComponent, typeof i38.StepGroupComponent, typeof i39.LoopStepComponent, typeof i40.ConditionStepComponent, typeof i41.FailedStepComponent, typeof i42.UpdatedFailedStepComponent, typeof i43.ViewMoreFailedStepButtonComponent, typeof i44.SelfHealAnalysisComponent, typeof i45.AIAgentStepComponent, typeof i46.AIActionStepComponent, typeof i47.ApiStepComponent, typeof i48.FileDownloadStepComponent, typeof i49.DocumentVerificationStepComponent, typeof i50.LiveExecutionStepComponent, typeof i51.MainStepCollapseComponent, typeof i52.VisualComparisonComponent, typeof i53.SimulatorComponent, typeof i54.ConsoleAlertComponent, typeof i55.AiDebugAlertComponent, typeof i56.NetworkRequestComponent, typeof i57.RunHistoryCardComponent, typeof i58.VisualDifferenceModalComponent, typeof i59.ConfigurationCardComponent, typeof i60.CompareRunsComponent, typeof i61.IterationsLoopComponent, typeof i62.FailedStepCardComponent, typeof i63.CustomInputComponent, typeof i64.CustomTextareaComponent, typeof i65.CustomToggleComponent, typeof i66.FileUploadComponent, typeof i67.AiReasoningComponent, typeof i68.ExecutionResultModalComponent, typeof i69.ErrorModalComponent, typeof i70.ProgressIndicatorComponent, typeof i71.StepProgressCardComponent, typeof i72.StepStatusCardComponent, typeof i73.DbVerificationStepComponent, typeof i74.DbQueryExecutionItemComponent, typeof i75.TestCaseNormalStepComponent, typeof i76.TestCaseLoopStepComponent, typeof i77.TestCaseConditionStepComponent, typeof i78.TestCaseStepGroupComponent, typeof i79.TestCaseDetailsRendererComponent, typeof i80.TestCaseApiStepComponent, typeof i81.TestCaseDatabaseStepComponent, typeof i82.TestCaseAiAgentStepComponent, typeof i83.TestCaseAiVerifyStepComponent, typeof i84.TestCaseUploadStepComponent, typeof i85.TestCaseScreenshotStepComponent, typeof i86.TestCaseScrollStepComponent, typeof i87.TestCaseVerifyUrlStepComponent, typeof i88.TestCaseRestoreSessionStepComponent, typeof i89.TestCaseCustomCodeStepComponent, typeof i90.CustomEditStepComponent, typeof i91.ItemListComponent, typeof i92.TestDataModalComponent, typeof i93.CreateStepGroupComponent, typeof i94.DeleteStepsComponent, typeof i95.ApiEditStepComponent, typeof i96.LiveConversationComponent, typeof i97.StepBuilderActionComponent, typeof i98.StepBuilderLoopComponent, typeof i99.ElementPopupComponent, typeof i100.StepBuilderConditionComponent, typeof i101.StepBuilderDatabaseComponent, typeof i102.StepBuilderAiAgentComponent, typeof i103.StepBuilderCustomCodeComponent, typeof i104.StepBuilderRecordStepComponent, typeof i105.StepBuilderDocumentGenerationTemplateStepComponent, typeof i106.ElementListComponent, typeof i107.StepBuilderDocumentComponent, typeof i108.StepBuilderGroupComponent, typeof i109.StepDetailsDrawerComponent, typeof i110.TemplateVariablesFormComponent], [typeof i111.CommonModule, typeof i112.FormsModule, typeof i112.ReactiveFormsModule, typeof i113.NoopAnimationsModule, typeof i114.MatIconModule, typeof i115.MatMenuModule, typeof i116.MatButtonModule, typeof i117.MatFormFieldModule, typeof i118.MatSelectModule, typeof i119.MatOptionModule, typeof i120.MatCheckboxModule, typeof i121.MatRadioModule, typeof i122.MatSlideToggleModule, typeof i123.MatDatepickerModule, typeof i119.MatNativeDateModule, typeof i124.MatProgressSpinnerModule, typeof i125.MatTooltipModule, typeof i126.MatDialogModule, typeof i127.MatTableModule, typeof i128.MatInputModule, typeof i129.OverlayModule, typeof i130.PortalModule, typeof i131.NgxTypedJsModule, typeof i132.DndModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.DialogComponent, typeof i6.DynamicTableComponent, typeof i7.DynamicCellTemplateDirective, typeof i7.DynamicHeaderTemplateDirective, typeof i8.DynamicCellContainerDirective, typeof i9.PaginationComponent, typeof i10.ActionMenuButtonComponent, typeof i11.OtherButtonComponent, typeof i12.DynamicFilterComponent, typeof i13.DaterangepickerDirective, typeof i14.DaterangepickerComponent, typeof i15.ColumnVisibilityComponent, typeof i16.TableActionToolbarComponent, typeof i17.MetricsCardComponent, typeof i19.ChartCardComponent, typeof i20.ProgressTextCardComponent, typeof i21.DashboardHeaderComponent, typeof i22.CoverageModuleCardComponent, typeof i23.TestDistributionCardComponent, typeof i24.FailedTestCasesCardComponent, typeof i25.DynamicSelectFieldComponent, typeof i26.AddPrerequisiteCasesSectionComponent, typeof i27.SelectedFiltersComponent, typeof i28.InsightCardComponent, typeof i29.BadgeComponent, typeof i30.DropdownButtonComponent, typeof i31.HeatErrorMapCellComponent, typeof i32.EmptyStateComponent, typeof i33.TableTemplateComponent, typeof i34.FullTableLoaderComponent, typeof i35.TableDataLoaderComponent, typeof i36.BasicStepComponent, typeof i37.StepRendererComponent, typeof i38.StepGroupComponent, typeof i39.LoopStepComponent, typeof i40.ConditionStepComponent, typeof i41.FailedStepComponent, typeof i42.UpdatedFailedStepComponent, typeof i43.ViewMoreFailedStepButtonComponent, typeof i44.SelfHealAnalysisComponent, typeof i45.AIAgentStepComponent, typeof i46.AIActionStepComponent, typeof i47.ApiStepComponent, typeof i48.FileDownloadStepComponent, typeof i49.DocumentVerificationStepComponent, typeof i50.LiveExecutionStepComponent, typeof i51.MainStepCollapseComponent, typeof i52.VisualComparisonComponent, typeof i53.SimulatorComponent, typeof i54.ConsoleAlertComponent, typeof i55.AiDebugAlertComponent, typeof i56.NetworkRequestComponent, typeof i57.RunHistoryCardComponent, typeof i58.VisualDifferenceModalComponent, typeof i59.ConfigurationCardComponent, typeof i60.CompareRunsComponent, typeof i61.IterationsLoopComponent, typeof i62.FailedStepCardComponent, typeof i63.CustomInputComponent, typeof i64.CustomTextareaComponent, typeof i65.CustomToggleComponent, typeof i66.FileUploadComponent, typeof i67.AiReasoningComponent, typeof i68.ExecutionResultModalComponent, typeof i69.ErrorModalComponent, typeof i70.ProgressIndicatorComponent, typeof i71.StepProgressCardComponent, typeof i72.StepStatusCardComponent, typeof i73.DbVerificationStepComponent, typeof i74.DbQueryExecutionItemComponent, typeof i75.TestCaseNormalStepComponent, typeof i76.TestCaseLoopStepComponent, typeof i77.TestCaseConditionStepComponent, typeof i78.TestCaseStepGroupComponent, typeof i79.TestCaseDetailsRendererComponent, typeof i80.TestCaseApiStepComponent, typeof i81.TestCaseDatabaseStepComponent, typeof i82.TestCaseAiAgentStepComponent, typeof i84.TestCaseUploadStepComponent, typeof i85.TestCaseScreenshotStepComponent, typeof i86.TestCaseScrollStepComponent, typeof i87.TestCaseVerifyUrlStepComponent, typeof i88.TestCaseRestoreSessionStepComponent, typeof i89.TestCaseCustomCodeStepComponent, typeof i90.CustomEditStepComponent, typeof i91.ItemListComponent, typeof i92.TestDataModalComponent, typeof i93.CreateStepGroupComponent, typeof i94.DeleteStepsComponent, typeof i95.ApiEditStepComponent, typeof i96.LiveConversationComponent, typeof i97.StepBuilderActionComponent, typeof i98.StepBuilderLoopComponent, typeof i99.ElementPopupComponent, typeof i100.StepBuilderConditionComponent, typeof i101.StepBuilderDatabaseComponent, typeof i102.StepBuilderAiAgentComponent, typeof i103.StepBuilderCustomCodeComponent, typeof i104.StepBuilderRecordStepComponent, typeof i105.StepBuilderDocumentGenerationTemplateStepComponent, typeof i106.ElementListComponent, typeof i107.StepBuilderDocumentComponent, typeof i108.StepBuilderGroupComponent, typeof i109.StepDetailsDrawerComponent, typeof i110.TemplateVariablesFormComponent]>;
144
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.DialogComponent, typeof i6.DynamicTableComponent, typeof i7.DynamicCellTemplateDirective, typeof i7.DynamicHeaderTemplateDirective, typeof i8.DynamicCellContainerDirective, typeof i9.PaginationComponent, typeof i10.ActionMenuButtonComponent, typeof i11.OtherButtonComponent, typeof i12.DynamicFilterComponent, typeof i13.DaterangepickerDirective, typeof i14.DaterangepickerComponent, typeof i15.ColumnVisibilityComponent, typeof i16.TableActionToolbarComponent, typeof i17.MetricsCardComponent, typeof i18.MetricsBlockComponent, typeof i19.ChartCardComponent, typeof i20.ProgressTextCardComponent, typeof i21.DashboardHeaderComponent, typeof i22.CoverageModuleCardComponent, typeof i23.TestDistributionCardComponent, typeof i24.FailedTestCasesCardComponent, typeof i25.DynamicSelectFieldComponent, typeof i26.AddPrerequisiteCasesSectionComponent, typeof i27.SelectedFiltersComponent, typeof i28.InsightCardComponent, typeof i29.BadgeComponent, typeof i30.DropdownButtonComponent, typeof i31.HeatErrorMapCellComponent, typeof i32.EmptyStateComponent, typeof i33.TableTemplateComponent, typeof i34.FullTableLoaderComponent, typeof i35.TableDataLoaderComponent, typeof i36.BasicStepComponent, typeof i37.StepRendererComponent, typeof i38.StepGroupComponent, typeof i39.LoopStepComponent, typeof i40.ConditionStepComponent, typeof i41.FailedStepComponent, typeof i42.UpdatedFailedStepComponent, typeof i43.ViewMoreFailedStepButtonComponent, typeof i44.SelfHealAnalysisComponent, typeof i45.AIAgentStepComponent, typeof i46.AIActionStepComponent, typeof i47.ApiStepComponent, typeof i48.FileDownloadStepComponent, typeof i49.DocumentVerificationStepComponent, typeof i50.LiveExecutionStepComponent, typeof i51.MainStepCollapseComponent, typeof i52.VisualComparisonComponent, typeof i53.SimulatorComponent, typeof i54.ConsoleAlertComponent, typeof i55.AiDebugAlertComponent, typeof i56.NetworkRequestComponent, typeof i57.RunHistoryCardComponent, typeof i58.VisualDifferenceModalComponent, typeof i59.ConfigurationCardComponent, typeof i60.CompareRunsComponent, typeof i61.IterationsLoopComponent, typeof i62.FailedStepCardComponent, typeof i63.CustomInputComponent, typeof i64.CustomTextareaComponent, typeof i65.CustomToggleComponent, typeof i66.FileUploadComponent, typeof i67.AiReasoningComponent, typeof i68.ExecutionResultModalComponent, typeof i69.ErrorModalComponent, typeof i70.ProgressIndicatorComponent, typeof i71.StepProgressCardComponent, typeof i72.StepStatusCardComponent, typeof i73.DbVerificationStepComponent, typeof i74.DbQueryExecutionItemComponent, typeof i75.TestCaseNormalStepComponent, typeof i76.TestCaseLoopStepComponent, typeof i77.TestCaseConditionStepComponent, typeof i78.TestCaseStepGroupComponent, typeof i79.TestCaseDetailsRendererComponent, typeof i80.TestCaseApiStepComponent, typeof i81.TestCaseDatabaseStepComponent, typeof i82.TestCaseAiAgentStepComponent, typeof i83.TestCaseAiVerifyStepComponent, typeof i84.TestCaseUploadStepComponent, typeof i85.TestCaseScreenshotStepComponent, typeof i86.TestCaseScrollStepComponent, typeof i87.TestCaseVerifyUrlStepComponent, typeof i88.TestCaseRestoreSessionStepComponent, typeof i89.TestCaseCustomCodeStepComponent, typeof i90.CustomEditStepComponent, typeof i91.ItemListComponent, typeof i92.TestDataModalComponent, typeof i93.CreateStepGroupComponent, typeof i94.DeleteStepsComponent, typeof i95.ApiEditStepComponent, typeof i96.LiveConversationComponent, typeof i97.StepBuilderActionComponent, typeof i98.StepBuilderLoopComponent, typeof i99.ElementPopupComponent, typeof i100.StepBuilderConditionComponent, typeof i101.StepBuilderDatabaseComponent, typeof i102.StepBuilderAiAgentComponent, typeof i103.StepBuilderCustomCodeComponent, typeof i104.StepBuilderRecordStepComponent, typeof i105.StepBuilderDocumentGenerationTemplateStepComponent, typeof i106.ElementListComponent, typeof i107.StepBuilderDocumentComponent, typeof i108.DetailSidePanelComponent, typeof i109.DetailDrawerComponent, typeof i110.DetailDrawerTabComponent, typeof i111.DetailDrawerTabContentDirective, typeof i112.TestCaseDetailsComponent, typeof i113.TestCaseDetailsEditComponent, typeof i114.StepBuilderGroupComponent, typeof i115.StepDetailsDrawerComponent, typeof i116.TemplateVariablesFormComponent], [typeof i117.CommonModule, typeof i118.FormsModule, typeof i118.ReactiveFormsModule, typeof i119.NoopAnimationsModule, typeof i120.MatIconModule, typeof i121.MatMenuModule, typeof i122.MatButtonModule, typeof i123.MatFormFieldModule, typeof i124.MatSelectModule, typeof i125.MatOptionModule, typeof i126.MatCheckboxModule, typeof i127.MatRadioModule, typeof i128.MatSlideToggleModule, typeof i129.MatDatepickerModule, typeof i125.MatNativeDateModule, typeof i130.MatProgressSpinnerModule, typeof i131.MatTooltipModule, typeof i132.MatDialogModule, typeof i133.MatTableModule, typeof i134.MatInputModule, typeof i135.OverlayModule, typeof i136.PortalModule, typeof i137.NgxTypedJsModule, typeof i138.DndModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.DialogComponent, typeof i6.DynamicTableComponent, typeof i7.DynamicCellTemplateDirective, typeof i7.DynamicHeaderTemplateDirective, typeof i8.DynamicCellContainerDirective, typeof i9.PaginationComponent, typeof i10.ActionMenuButtonComponent, typeof i11.OtherButtonComponent, typeof i12.DynamicFilterComponent, typeof i13.DaterangepickerDirective, typeof i14.DaterangepickerComponent, typeof i15.ColumnVisibilityComponent, typeof i16.TableActionToolbarComponent, typeof i17.MetricsCardComponent, typeof i19.ChartCardComponent, typeof i20.ProgressTextCardComponent, typeof i21.DashboardHeaderComponent, typeof i22.CoverageModuleCardComponent, typeof i23.TestDistributionCardComponent, typeof i24.FailedTestCasesCardComponent, typeof i25.DynamicSelectFieldComponent, typeof i26.AddPrerequisiteCasesSectionComponent, typeof i27.SelectedFiltersComponent, typeof i28.InsightCardComponent, typeof i29.BadgeComponent, typeof i30.DropdownButtonComponent, typeof i31.HeatErrorMapCellComponent, typeof i32.EmptyStateComponent, typeof i33.TableTemplateComponent, typeof i34.FullTableLoaderComponent, typeof i35.TableDataLoaderComponent, typeof i36.BasicStepComponent, typeof i37.StepRendererComponent, typeof i38.StepGroupComponent, typeof i39.LoopStepComponent, typeof i40.ConditionStepComponent, typeof i41.FailedStepComponent, typeof i42.UpdatedFailedStepComponent, typeof i43.ViewMoreFailedStepButtonComponent, typeof i44.SelfHealAnalysisComponent, typeof i45.AIAgentStepComponent, typeof i46.AIActionStepComponent, typeof i47.ApiStepComponent, typeof i48.FileDownloadStepComponent, typeof i49.DocumentVerificationStepComponent, typeof i50.LiveExecutionStepComponent, typeof i51.MainStepCollapseComponent, typeof i52.VisualComparisonComponent, typeof i53.SimulatorComponent, typeof i54.ConsoleAlertComponent, typeof i55.AiDebugAlertComponent, typeof i56.NetworkRequestComponent, typeof i57.RunHistoryCardComponent, typeof i58.VisualDifferenceModalComponent, typeof i59.ConfigurationCardComponent, typeof i60.CompareRunsComponent, typeof i61.IterationsLoopComponent, typeof i62.FailedStepCardComponent, typeof i63.CustomInputComponent, typeof i64.CustomTextareaComponent, typeof i65.CustomToggleComponent, typeof i66.FileUploadComponent, typeof i67.AiReasoningComponent, typeof i68.ExecutionResultModalComponent, typeof i69.ErrorModalComponent, typeof i70.ProgressIndicatorComponent, typeof i71.StepProgressCardComponent, typeof i72.StepStatusCardComponent, typeof i73.DbVerificationStepComponent, typeof i74.DbQueryExecutionItemComponent, typeof i75.TestCaseNormalStepComponent, typeof i76.TestCaseLoopStepComponent, typeof i77.TestCaseConditionStepComponent, typeof i78.TestCaseStepGroupComponent, typeof i79.TestCaseDetailsRendererComponent, typeof i80.TestCaseApiStepComponent, typeof i81.TestCaseDatabaseStepComponent, typeof i82.TestCaseAiAgentStepComponent, typeof i84.TestCaseUploadStepComponent, typeof i85.TestCaseScreenshotStepComponent, typeof i86.TestCaseScrollStepComponent, typeof i87.TestCaseVerifyUrlStepComponent, typeof i88.TestCaseRestoreSessionStepComponent, typeof i89.TestCaseCustomCodeStepComponent, typeof i90.CustomEditStepComponent, typeof i91.ItemListComponent, typeof i92.TestDataModalComponent, typeof i93.CreateStepGroupComponent, typeof i94.DeleteStepsComponent, typeof i95.ApiEditStepComponent, typeof i96.LiveConversationComponent, typeof i97.StepBuilderActionComponent, typeof i98.StepBuilderLoopComponent, typeof i99.ElementPopupComponent, typeof i100.StepBuilderConditionComponent, typeof i101.StepBuilderDatabaseComponent, typeof i102.StepBuilderAiAgentComponent, typeof i103.StepBuilderCustomCodeComponent, typeof i104.StepBuilderRecordStepComponent, typeof i105.StepBuilderDocumentGenerationTemplateStepComponent, typeof i106.ElementListComponent, typeof i107.StepBuilderDocumentComponent, typeof i108.DetailSidePanelComponent, typeof i109.DetailDrawerComponent, typeof i110.DetailDrawerTabComponent, typeof i111.DetailDrawerTabContentDirective, typeof i112.TestCaseDetailsComponent, typeof i113.TestCaseDetailsEditComponent, typeof i114.StepBuilderGroupComponent, typeof i115.StepDetailsDrawerComponent, typeof i116.TemplateVariablesFormComponent]>;
139
145
  static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
140
146
  }