@cqa-lib/cqa-ui 1.1.495 → 1.1.497
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/mixed-variable-input/mixed-variable-input.component.mjs +18 -7
- package/esm2020/lib/test-case-details/api-mocking-card/api-mocking-card.component.mjs +129 -0
- package/esm2020/lib/test-case-details/test-case-details-edit/test-case-details-edit.component.mjs +66 -5
- package/esm2020/lib/test-case-details/test-case-details.component.mjs +58 -4
- package/esm2020/lib/ui-kit.module.mjs +6 -1
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/cqa-lib-cqa-ui.mjs +264 -11
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +264 -11
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/test-case-details/api-mocking-card/api-mocking-card.component.d.ts +78 -0
- package/lib/test-case-details/test-case-details-edit/test-case-details-edit.component.d.ts +36 -1
- package/lib/test-case-details/test-case-details.component.d.ts +25 -1
- package/lib/ui-kit.module.d.ts +40 -39
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/styles.css +1 -1
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* Legacy toggle-change payload kept for back-compat with consumers that haven't migrated
|
|
5
|
+
* to `restoreMockChange` yet. `key` identifies which row was toggled; `value` is the new
|
|
6
|
+
* checked state of that row. New code should listen to `restoreMockChange` instead.
|
|
7
|
+
*/
|
|
8
|
+
export interface ApiMockingCardToggleChange {
|
|
9
|
+
key: 'captureApiResponses' | 'renewApiResponses';
|
|
10
|
+
value: boolean;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Dual-mode card summarising the API mocking configuration of a test case.
|
|
14
|
+
*
|
|
15
|
+
* The card surfaces **one boolean choice** — `restoreMock` — as two mutually-exclusive rows
|
|
16
|
+
* labelled "Capture API responses" and "Renew API responses":
|
|
17
|
+
*
|
|
18
|
+
* restoreMock === true → Renew = ON, Capture = OFF
|
|
19
|
+
* restoreMock === false → Renew = OFF, Capture = ON
|
|
20
|
+
*
|
|
21
|
+
* In read-only mode both rows show a value text ("On"/"Off") derived from `restoreMock`.
|
|
22
|
+
* In edit mode both rows render a toggle; interacting with either one flips `restoreMock`
|
|
23
|
+
* and the card emits `restoreMockChange` so the parent can persist the new value.
|
|
24
|
+
*/
|
|
25
|
+
export declare class ApiMockingCardComponent {
|
|
26
|
+
title: string;
|
|
27
|
+
statusLabel: string;
|
|
28
|
+
captureLabel: string;
|
|
29
|
+
renewLabel: string;
|
|
30
|
+
/**
|
|
31
|
+
* Single source of truth for the card's dual-toggle state.
|
|
32
|
+
* Defaults to `false` → Capture is ON, Renew is OFF.
|
|
33
|
+
*/
|
|
34
|
+
restoreMock: boolean;
|
|
35
|
+
mockedApisCount: number;
|
|
36
|
+
totalApisCount: number;
|
|
37
|
+
progressPercent: number;
|
|
38
|
+
summaryText?: string;
|
|
39
|
+
percentText?: string;
|
|
40
|
+
configureButtonLabel: string;
|
|
41
|
+
editing: boolean;
|
|
42
|
+
/**
|
|
43
|
+
* Controls whether the "Mocked X of Y / progress bar / percent" block is shown.
|
|
44
|
+
* Hidden when the test case has no captured mock summary yet (and always hidden in
|
|
45
|
+
* edit mode regardless of this flag).
|
|
46
|
+
*/
|
|
47
|
+
showProgress: boolean;
|
|
48
|
+
configure: EventEmitter<void>;
|
|
49
|
+
/**
|
|
50
|
+
* Emitted whenever the effective `restoreMock` value changes (either row's toggle was
|
|
51
|
+
* interacted with in edit mode). Parent components should persist this value — e.g. under
|
|
52
|
+
* `testCase.mockApiSettings.restoreMock`.
|
|
53
|
+
*/
|
|
54
|
+
restoreMockChange: EventEmitter<boolean>;
|
|
55
|
+
get renewEnabled(): boolean;
|
|
56
|
+
get captureEnabled(): boolean;
|
|
57
|
+
get renewValueText(): string;
|
|
58
|
+
get captureValueText(): string;
|
|
59
|
+
get computedSummaryText(): string;
|
|
60
|
+
get computedPercentText(): string;
|
|
61
|
+
get progressWidth(): string;
|
|
62
|
+
onConfigureClick(): void;
|
|
63
|
+
/**
|
|
64
|
+
* User interacted with the "Renew API responses" toggle in edit mode.
|
|
65
|
+
* Renew ON → restoreMock = true (Capture OFF).
|
|
66
|
+
* Renew OFF → restoreMock = false (Capture ON — mutual exclusivity).
|
|
67
|
+
*/
|
|
68
|
+
onRenewToggle(value: boolean): void;
|
|
69
|
+
/**
|
|
70
|
+
* User interacted with the "Capture API responses" toggle in edit mode.
|
|
71
|
+
* Capture ON → restoreMock = false (Renew OFF).
|
|
72
|
+
* Capture OFF → restoreMock = true (Renew ON — mutual exclusivity).
|
|
73
|
+
*/
|
|
74
|
+
onCaptureToggle(value: boolean): void;
|
|
75
|
+
private setRestoreMock;
|
|
76
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApiMockingCardComponent, never>;
|
|
77
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ApiMockingCardComponent, "cqa-api-mocking-card", never, { "title": "title"; "statusLabel": "statusLabel"; "captureLabel": "captureLabel"; "renewLabel": "renewLabel"; "restoreMock": "restoreMock"; "mockedApisCount": "mockedApisCount"; "totalApisCount": "totalApisCount"; "progressPercent": "progressPercent"; "summaryText": "summaryText"; "percentText": "percentText"; "configureButtonLabel": "configureButtonLabel"; "editing": "editing"; "showProgress": "showProgress"; }, { "configure": "configure"; "restoreMockChange": "restoreMockChange"; }, never, never>;
|
|
78
|
+
}
|
|
@@ -53,6 +53,12 @@ export interface TestCaseDetailsEditFormData {
|
|
|
53
53
|
testDataSetIndex?: number | string | null;
|
|
54
54
|
configSections: TestCaseDetailsConfigSection[];
|
|
55
55
|
configSectionsRow2: TestCaseDetailsConfigSection[];
|
|
56
|
+
/**
|
|
57
|
+
* Mock API toggle state when the API Mocking card is shown in edit mode.
|
|
58
|
+
* true → Renew API responses ON, Capture API responses OFF
|
|
59
|
+
* false → Renew API responses OFF, Capture API responses ON
|
|
60
|
+
*/
|
|
61
|
+
apiMockingRestoreMock?: boolean;
|
|
56
62
|
}
|
|
57
63
|
export declare class TestCaseDetailsEditComponent implements OnInit, OnChanges {
|
|
58
64
|
private cdr;
|
|
@@ -83,6 +89,25 @@ export declare class TestCaseDetailsEditComponent implements OnInit, OnChanges {
|
|
|
83
89
|
* - Initial fetch on open: initialFetchOnOpen: true
|
|
84
90
|
*/
|
|
85
91
|
selectConfigOverrides: SelectConfigOverrides;
|
|
92
|
+
showApiMockingCard: boolean;
|
|
93
|
+
apiMockingTitle: string;
|
|
94
|
+
apiMockingStatusLabel: string;
|
|
95
|
+
apiMockingCaptureLabel: string;
|
|
96
|
+
apiMockingRenewLabel: string;
|
|
97
|
+
/**
|
|
98
|
+
* Single source of truth for the card's dual toggle state.
|
|
99
|
+
* true → Renew ON, Capture OFF
|
|
100
|
+
* false → Renew OFF, Capture ON
|
|
101
|
+
*/
|
|
102
|
+
apiMockingRestoreMock: boolean;
|
|
103
|
+
apiMockingMockedApisCount: number;
|
|
104
|
+
apiMockingTotalApisCount: number;
|
|
105
|
+
apiMockingProgressPercent: number;
|
|
106
|
+
/** Forwarded to `cqa-api-mocking-card`. In edit mode the card hides the block anyway, but
|
|
107
|
+
* we still pipe the input through for symmetry with the read-only component. */
|
|
108
|
+
apiMockingShowProgress: boolean;
|
|
109
|
+
apiMockingSummaryText?: string;
|
|
110
|
+
apiMockingPercentText?: string;
|
|
86
111
|
save: EventEmitter<TestCaseDetailsEditFormData>;
|
|
87
112
|
cancel: EventEmitter<void>;
|
|
88
113
|
/** Emitted when user searches in a select (serverSearch mode). Call API and update options via selectConfigOverrides. */
|
|
@@ -106,12 +131,16 @@ export declare class TestCaseDetailsEditComponent implements OnInit, OnChanges {
|
|
|
106
131
|
}>;
|
|
107
132
|
/** Emitted when user adds a new custom label via the "New" option. */
|
|
108
133
|
labelAdded: EventEmitter<string>;
|
|
134
|
+
/** Emitted when the user flips either API mocking toggle — emits new `restoreMock` value. */
|
|
135
|
+
apiMockingRestoreMockChange: EventEmitter<boolean>;
|
|
109
136
|
constructor(cdr: ChangeDetectorRef);
|
|
110
137
|
/** Form state */
|
|
111
138
|
editDescription: string;
|
|
112
139
|
editStatus: string;
|
|
113
140
|
editPriority: string;
|
|
114
141
|
editLabels: string[];
|
|
142
|
+
/** Local edit-mode mirror of the `restoreMock` boolean. Seeded from @Input() on init/changes. */
|
|
143
|
+
editApiMockingRestoreMock: boolean;
|
|
115
144
|
testCaseTimeout: string;
|
|
116
145
|
waitTimeoutLocators: string;
|
|
117
146
|
autoWaitEnabled: boolean;
|
|
@@ -196,6 +225,12 @@ export declare class TestCaseDetailsEditComponent implements OnInit, OnChanges {
|
|
|
196
225
|
ngOnInit(): void;
|
|
197
226
|
get hasUnsavedChanges(): boolean;
|
|
198
227
|
private buildSavePayload;
|
|
228
|
+
/**
|
|
229
|
+
* Handler bound to the embedded `<cqa-api-mocking-card>` `restoreMockChange` output.
|
|
230
|
+
* Keeps the local edit-mode mirror in sync and re-emits to the parent component so the
|
|
231
|
+
* save payload (and hasUnsavedChanges snapshot) reflects the new state.
|
|
232
|
+
*/
|
|
233
|
+
onApiMockingRestoreMockChange(value: boolean): void;
|
|
199
234
|
private resolveToOptionValue;
|
|
200
235
|
private normalizeBooleanSelectValue;
|
|
201
236
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -215,5 +250,5 @@ export declare class TestCaseDetailsEditComponent implements OnInit, OnChanges {
|
|
|
215
250
|
};
|
|
216
251
|
getLabelCloseIconColor(_label: string): string;
|
|
217
252
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseDetailsEditComponent, never>;
|
|
218
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseDetailsEditComponent, "cqa-test-case-details-edit", never, { "descriptionTitle": "descriptionTitle"; "descriptionContent": "descriptionContent"; "enableMarkdown": "enableMarkdown"; "metadataItems": "metadataItems"; "labels": "labels"; "configTitle": "configTitle"; "configSections": "configSections"; "configSectionsRow2": "configSectionsRow2"; "isSaving": "isSaving"; "prerequisiteCaseOptions": "prerequisiteCaseOptions"; "platform": "platform"; "isStepGroup": "isStepGroup"; "selectConfigOverrides": "selectConfigOverrides"; }, { "save": "save"; "cancel": "cancel"; "selectSearch": "selectSearch"; "selectLoadMore": "selectLoadMore"; "selectOpened": "selectOpened"; "selectionChange": "selectionChange"; "labelAdded": "labelAdded"; }, never, never>;
|
|
253
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseDetailsEditComponent, "cqa-test-case-details-edit", never, { "descriptionTitle": "descriptionTitle"; "descriptionContent": "descriptionContent"; "enableMarkdown": "enableMarkdown"; "metadataItems": "metadataItems"; "labels": "labels"; "configTitle": "configTitle"; "configSections": "configSections"; "configSectionsRow2": "configSectionsRow2"; "isSaving": "isSaving"; "prerequisiteCaseOptions": "prerequisiteCaseOptions"; "platform": "platform"; "isStepGroup": "isStepGroup"; "selectConfigOverrides": "selectConfigOverrides"; "showApiMockingCard": "showApiMockingCard"; "apiMockingTitle": "apiMockingTitle"; "apiMockingStatusLabel": "apiMockingStatusLabel"; "apiMockingCaptureLabel": "apiMockingCaptureLabel"; "apiMockingRenewLabel": "apiMockingRenewLabel"; "apiMockingRestoreMock": "apiMockingRestoreMock"; "apiMockingMockedApisCount": "apiMockingMockedApisCount"; "apiMockingTotalApisCount": "apiMockingTotalApisCount"; "apiMockingProgressPercent": "apiMockingProgressPercent"; "apiMockingShowProgress": "apiMockingShowProgress"; "apiMockingSummaryText": "apiMockingSummaryText"; "apiMockingPercentText": "apiMockingPercentText"; }, { "save": "save"; "cancel": "cancel"; "selectSearch": "selectSearch"; "selectLoadMore": "selectLoadMore"; "selectOpened": "selectOpened"; "selectionChange": "selectionChange"; "labelAdded": "labelAdded"; "apiMockingRestoreMockChange": "apiMockingRestoreMockChange"; }, never, never>;
|
|
219
254
|
}
|
|
@@ -41,6 +41,27 @@ export declare class TestCaseDetailsComponent implements OnInit, OnChanges {
|
|
|
41
41
|
selectConfigOverrides: SelectConfigOverrides;
|
|
42
42
|
/** True while parent is saving changes. */
|
|
43
43
|
isSaving: boolean;
|
|
44
|
+
/** When true, render the API Mocking card below the configuration section. */
|
|
45
|
+
showApiMockingCard: boolean;
|
|
46
|
+
apiMockingTitle: string;
|
|
47
|
+
apiMockingStatusLabel: string;
|
|
48
|
+
apiMockingCaptureLabel: string;
|
|
49
|
+
apiMockingRenewLabel: string;
|
|
50
|
+
/**
|
|
51
|
+
* Single source of truth for the API mocking card's dual toggle state.
|
|
52
|
+
* true → Renew API responses ON, Capture API responses OFF
|
|
53
|
+
* false → Renew API responses OFF, Capture API responses ON
|
|
54
|
+
* The two legacy `*CaptureEnabled` / `*RenewEnabled` inputs are no longer used.
|
|
55
|
+
*/
|
|
56
|
+
apiMockingRestoreMock: boolean;
|
|
57
|
+
apiMockingMockedApisCount: number;
|
|
58
|
+
apiMockingTotalApisCount: number;
|
|
59
|
+
apiMockingProgressPercent: number;
|
|
60
|
+
/** Forwarded to `cqa-api-mocking-card` — gates the "Mocked / progress / percent" block. */
|
|
61
|
+
apiMockingShowProgress: boolean;
|
|
62
|
+
apiMockingSummaryText?: string;
|
|
63
|
+
apiMockingPercentText?: string;
|
|
64
|
+
apiMockingConfigureButtonLabel: string;
|
|
44
65
|
/** Labels to filter out from metadata for step groups */
|
|
45
66
|
private readonly stepGroupExcludedMetadataLabels;
|
|
46
67
|
/** When true, description (view mode) is expanded; when false, clamped to 4 lines with Read more */
|
|
@@ -71,6 +92,9 @@ export declare class TestCaseDetailsComponent implements OnInit, OnChanges {
|
|
|
71
92
|
value: unknown;
|
|
72
93
|
}>;
|
|
73
94
|
labelAdded: EventEmitter<string>;
|
|
95
|
+
configureApiMocking: EventEmitter<void>;
|
|
96
|
+
/** Fired when the user flips either toggle — emits the new `restoreMock` value. */
|
|
97
|
+
apiMockingRestoreMockChange: EventEmitter<boolean>;
|
|
74
98
|
onEditClick(): void;
|
|
75
99
|
onSaveChanges(data: TestCaseDetailsEditFormData): void;
|
|
76
100
|
onCancelEdit(): void;
|
|
@@ -81,5 +105,5 @@ export declare class TestCaseDetailsComponent implements OnInit, OnChanges {
|
|
|
81
105
|
/** Text color for metadata value (e.g. red for critical priority) */
|
|
82
106
|
getValueTextClass(item: TestCaseDetailsMetadataItem): string;
|
|
83
107
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestCaseDetailsComponent, never>;
|
|
84
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseDetailsComponent, "cqa-test-case-details", never, { "editing": "editing"; "startInEditMode": "startInEditMode"; "descriptionTitle": "descriptionTitle"; "descriptionContent": "descriptionContent"; "enableMarkdown": "enableMarkdown"; "showEditButton": "showEditButton"; "metadataItems": "metadataItems"; "labels": "labels"; "configTitle": "configTitle"; "configSections": "configSections"; "configSectionsRow2": "configSectionsRow2"; "platform": "platform"; "isStepGroup": "isStepGroup"; "selectConfigOverrides": "selectConfigOverrides"; "isSaving": "isSaving"; }, { "editDescription": "editDescription"; "cancel": "cancel"; "saveChanges": "saveChanges"; "metadataLinkClick": "metadataLinkClick"; "selectSearch": "selectSearch"; "selectLoadMore": "selectLoadMore"; "selectOpened": "selectOpened"; "selectionChange": "selectionChange"; "labelAdded": "labelAdded"; }, never, never>;
|
|
108
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TestCaseDetailsComponent, "cqa-test-case-details", never, { "editing": "editing"; "startInEditMode": "startInEditMode"; "descriptionTitle": "descriptionTitle"; "descriptionContent": "descriptionContent"; "enableMarkdown": "enableMarkdown"; "showEditButton": "showEditButton"; "metadataItems": "metadataItems"; "labels": "labels"; "configTitle": "configTitle"; "configSections": "configSections"; "configSectionsRow2": "configSectionsRow2"; "platform": "platform"; "isStepGroup": "isStepGroup"; "selectConfigOverrides": "selectConfigOverrides"; "isSaving": "isSaving"; "showApiMockingCard": "showApiMockingCard"; "apiMockingTitle": "apiMockingTitle"; "apiMockingStatusLabel": "apiMockingStatusLabel"; "apiMockingCaptureLabel": "apiMockingCaptureLabel"; "apiMockingRenewLabel": "apiMockingRenewLabel"; "apiMockingRestoreMock": "apiMockingRestoreMock"; "apiMockingMockedApisCount": "apiMockingMockedApisCount"; "apiMockingTotalApisCount": "apiMockingTotalApisCount"; "apiMockingProgressPercent": "apiMockingProgressPercent"; "apiMockingShowProgress": "apiMockingShowProgress"; "apiMockingSummaryText": "apiMockingSummaryText"; "apiMockingPercentText": "apiMockingPercentText"; "apiMockingConfigureButtonLabel": "apiMockingConfigureButtonLabel"; }, { "editDescription": "editDescription"; "cancel": "cancel"; "saveChanges": "saveChanges"; "metadataLinkClick": "metadataLinkClick"; "selectSearch": "selectSearch"; "selectLoadMore": "selectLoadMore"; "selectOpened": "selectOpened"; "selectionChange": "selectionChange"; "labelAdded": "labelAdded"; "configureApiMocking": "configureApiMocking"; "apiMockingRestoreMockChange": "apiMockingRestoreMockChange"; }, never, never>;
|
|
85
109
|
}
|
package/lib/ui-kit.module.d.ts
CHANGED
|
@@ -132,47 +132,48 @@ import * as i129 from "./detail-drawer/detail-drawer-tab/detail-drawer-tab.compo
|
|
|
132
132
|
import * as i130 from "./detail-drawer/detail-drawer-tab-content.directive";
|
|
133
133
|
import * as i131 from "./test-case-details/test-case-details.component";
|
|
134
134
|
import * as i132 from "./test-case-details/test-case-details-edit/test-case-details-edit.component";
|
|
135
|
-
import * as i133 from "./
|
|
136
|
-
import * as i134 from "./
|
|
137
|
-
import * as i135 from "./
|
|
138
|
-
import * as i136 from "./step-builder/
|
|
139
|
-
import * as i137 from "./
|
|
140
|
-
import * as i138 from "./
|
|
141
|
-
import * as i139 from "./
|
|
142
|
-
import * as i140 from "./
|
|
143
|
-
import * as i141 from "./
|
|
144
|
-
import * as i142 from "./
|
|
145
|
-
import * as i143 from "./version-history/version-history-
|
|
146
|
-
import * as i144 from "./version-history/version-history-
|
|
147
|
-
import * as i145 from "./version-history/version-history-
|
|
148
|
-
import * as i146 from "./version-history/
|
|
149
|
-
import * as i147 from "
|
|
150
|
-
import * as i148 from "@angular/
|
|
151
|
-
import * as i149 from "@angular/
|
|
152
|
-
import * as i150 from "@angular/
|
|
153
|
-
import * as i151 from "@angular/material/
|
|
154
|
-
import * as i152 from "@angular/material/
|
|
155
|
-
import * as i153 from "@angular/material/
|
|
156
|
-
import * as i154 from "@angular/material/
|
|
157
|
-
import * as i155 from "@angular/material/
|
|
158
|
-
import * as i156 from "@angular/material/
|
|
159
|
-
import * as i157 from "@angular/material/
|
|
160
|
-
import * as i158 from "@angular/material/
|
|
161
|
-
import * as i159 from "@angular/material/
|
|
162
|
-
import * as i160 from "@angular/material/
|
|
163
|
-
import * as i161 from "@angular/material/
|
|
164
|
-
import * as i162 from "@angular/material/
|
|
165
|
-
import * as i163 from "@angular/material/
|
|
166
|
-
import * as i164 from "@angular/material/
|
|
167
|
-
import * as i165 from "@angular/
|
|
168
|
-
import * as i166 from "@angular/cdk/
|
|
169
|
-
import * as i167 from "@angular/cdk/
|
|
170
|
-
import * as i168 from "
|
|
171
|
-
import * as i169 from "ngx-
|
|
172
|
-
import * as i170 from "ngx-
|
|
135
|
+
import * as i133 from "./test-case-details/api-mocking-card/api-mocking-card.component";
|
|
136
|
+
import * as i134 from "./step-builder/step-builder-group/step-builder-group.component";
|
|
137
|
+
import * as i135 from "./test-case-details/step-details-drawer/step-details-drawer.component";
|
|
138
|
+
import * as i136 from "./step-builder/template-variables-form/template-variables-form.component";
|
|
139
|
+
import * as i137 from "./step-builder/advanced-variables-form/advanced-variables-form.component";
|
|
140
|
+
import * as i138 from "./test-case-details/step-details-modal/step-details-modal.component";
|
|
141
|
+
import * as i139 from "./pipes/safe-html.pipe";
|
|
142
|
+
import * as i140 from "./questionnaire-list/questionnaire-list.component";
|
|
143
|
+
import * as i141 from "./change-history/change-history.component";
|
|
144
|
+
import * as i142 from "./pipes/camel-to-title.pipe";
|
|
145
|
+
import * as i143 from "./version-history/version-history-list/version-history-list.component";
|
|
146
|
+
import * as i144 from "./version-history/version-history-compare/version-history-compare.component";
|
|
147
|
+
import * as i145 from "./version-history/version-history-detail/version-history-detail.component";
|
|
148
|
+
import * as i146 from "./version-history/version-history-restore-confirm/version-history-restore-confirm.component";
|
|
149
|
+
import * as i147 from "./version-history/new-version-history-detail/new-version-history-detail.component";
|
|
150
|
+
import * as i148 from "@angular/common";
|
|
151
|
+
import * as i149 from "@angular/forms";
|
|
152
|
+
import * as i150 from "@angular/platform-browser/animations";
|
|
153
|
+
import * as i151 from "@angular/material/icon";
|
|
154
|
+
import * as i152 from "@angular/material/menu";
|
|
155
|
+
import * as i153 from "@angular/material/button";
|
|
156
|
+
import * as i154 from "@angular/material/form-field";
|
|
157
|
+
import * as i155 from "@angular/material/select";
|
|
158
|
+
import * as i156 from "@angular/material/core";
|
|
159
|
+
import * as i157 from "@angular/material/checkbox";
|
|
160
|
+
import * as i158 from "@angular/material/radio";
|
|
161
|
+
import * as i159 from "@angular/material/slide-toggle";
|
|
162
|
+
import * as i160 from "@angular/material/datepicker";
|
|
163
|
+
import * as i161 from "@angular/material/progress-spinner";
|
|
164
|
+
import * as i162 from "@angular/material/tooltip";
|
|
165
|
+
import * as i163 from "@angular/material/dialog";
|
|
166
|
+
import * as i164 from "@angular/material/table";
|
|
167
|
+
import * as i165 from "@angular/material/input";
|
|
168
|
+
import * as i166 from "@angular/cdk/overlay";
|
|
169
|
+
import * as i167 from "@angular/cdk/portal";
|
|
170
|
+
import * as i168 from "@angular/cdk/scrolling";
|
|
171
|
+
import * as i169 from "ngx-typed-js";
|
|
172
|
+
import * as i170 from "ngx-drag-drop";
|
|
173
|
+
import * as i171 from "ngx-monaco-editor";
|
|
173
174
|
export declare class UiKitModule {
|
|
174
175
|
constructor(iconRegistry: MatIconRegistry);
|
|
175
176
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
|
|
176
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.DialogComponent, typeof i8.DynamicTableComponent, typeof i9.DynamicCellTemplateDirective, typeof i9.DynamicHeaderTemplateDirective, typeof i10.DynamicCellContainerDirective, typeof i11.PaginationComponent, typeof i12.ActionMenuButtonComponent, typeof i13.OtherButtonComponent, typeof i14.DynamicFilterComponent, typeof i15.DaterangepickerDirective, typeof i16.DaterangepickerComponent, typeof i17.ColumnVisibilityComponent, typeof i18.TableActionToolbarComponent, typeof i19.MetricsCardComponent, typeof i20.MetricsBlockComponent, typeof i21.ChartCardComponent, typeof i22.ProgressTextCardComponent, typeof i23.DashboardHeaderComponent, typeof i24.WorkspaceSelectorComponent, typeof i25.CoverageModuleCardComponent, typeof i26.TestDistributionCardComponent, typeof i27.FailedTestCasesCardComponent, typeof i28.DynamicSelectFieldComponent, typeof i29.AddPrerequisiteCasesSectionComponent, typeof i30.SelectedFiltersComponent, typeof i31.InsightCardComponent, typeof i32.BadgeComponent, typeof i33.DropdownButtonComponent, typeof i34.HeatErrorMapCellComponent, typeof i35.EmptyStateComponent, typeof i36.TableTemplateComponent, typeof i37.FullTableLoaderComponent, typeof i38.TableDataLoaderComponent, typeof i39.BasicStepComponent, typeof i40.StepRendererComponent, typeof i41.StepGroupComponent, typeof i42.LoopStepComponent, typeof i43.ConditionStepComponent, typeof i44.ConditionDebugStepComponent, typeof i45.ConditionBranchEditorComponent, typeof i46.FailedStepComponent, typeof i47.UpdatedFailedStepComponent, typeof i48.ViewMoreFailedStepButtonComponent, typeof i49.SelfHealAnalysisComponent, typeof i50.AIAgentStepComponent, typeof i51.AIActionStepComponent, typeof i52.ApiStepComponent, typeof i53.FileDownloadStepComponent, typeof i54.DocumentVerificationStepComponent, typeof i55.LiveExecutionStepComponent, typeof i56.AiLogsWithReasoningComponent, typeof i57.JumpToStepModalComponent, typeof i58.BreakpointsModalComponent, typeof i59.RecordingBannerComponent, typeof i60.ReviewRecordedStepsModalComponent, typeof i61.MainStepCollapseComponent, typeof i62.VisualComparisonComponent, typeof i63.SimulatorComponent, typeof i64.ConsoleAlertComponent, typeof i65.AiDebugAlertComponent, typeof i66.NetworkRequestComponent, typeof i67.RunHistoryCardComponent, typeof i68.AiPromptCardComponent, typeof i69.VisualDifferenceModalComponent, typeof i70.ConfigurationCardComponent, typeof i71.CompareRunsComponent, typeof i72.IterationsLoopComponent, typeof i73.FailedStepCardComponent, typeof i74.CustomInputComponent, typeof i75.MixedVariableInputComponent, typeof i76.CustomTextareaComponent, typeof i77.CodeEditorComponent, typeof i78.CustomToggleComponent, typeof i79.FileUploadComponent, typeof i80.AiReasoningComponent, typeof i81.ExecutionResultModalComponent, typeof i82.SessionChangesModalComponent, typeof i83.ErrorModalComponent, typeof i84.SessionRestorationDialogComponent, typeof i85.SubStepsConfirmationDialogComponent, typeof i86.ExportCodeModalComponent, typeof i87.ProgressIndicatorComponent, typeof i88.StepProgressCardComponent, typeof i89.StepStatusCardComponent, typeof i90.DbVerificationStepComponent, typeof i91.DbQueryExecutionItemComponent, typeof i92.TestCaseNormalStepComponent, typeof i93.TestCaseLoopStepComponent, typeof i94.TestCaseConditionStepComponent, typeof i95.TestCaseStepGroupComponent, typeof i96.TestCaseDetailsRendererComponent, typeof i97.TestCaseApiStepComponent, typeof i98.TestCaseDatabaseStepComponent, typeof i99.TestCaseAiAgentStepComponent, typeof i100.TestCaseAiVerifyStepComponent, typeof i101.TestCaseUploadStepComponent, typeof i102.TestCaseScreenshotStepComponent, typeof i103.TestCaseScrollStepComponent, typeof i104.TestCaseVerifyUrlStepComponent, typeof i105.TestCaseRestoreSessionStepComponent, typeof i106.TestCaseCustomCodeStepComponent, typeof i107.CustomEditStepComponent, typeof i108.ItemListComponent, typeof i109.TestDataModalComponent, typeof i110.CreateStepGroupComponent, typeof i111.DeleteStepsComponent, typeof i112.RunExecutionAlertComponent, typeof i113.ApiEditStepComponent, typeof i114.LiveConversationComponent, typeof i115.StepBuilderActionComponent, typeof i116.StepBuilderLoopComponent, typeof i117.ElementPopupComponent, typeof i118.ElementFormComponent, typeof i119.StepBuilderConditionComponent, typeof i120.StepBuilderDatabaseComponent, typeof i121.StepBuilderAiAgentComponent, typeof i77.CodeEditorComponent, typeof i122.StepBuilderCustomCodeComponent, typeof i123.StepBuilderRecordStepComponent, typeof i124.StepBuilderDocumentGenerationTemplateStepComponent, typeof i125.ElementListComponent, typeof i126.StepBuilderDocumentComponent, typeof i127.DetailSidePanelComponent, typeof i128.DetailDrawerComponent, typeof i129.DetailDrawerTabComponent, typeof i130.DetailDrawerTabContentDirective, typeof i131.TestCaseDetailsComponent, typeof i132.TestCaseDetailsEditComponent, typeof i133.StepBuilderGroupComponent, typeof i134.StepDetailsDrawerComponent, typeof i135.TemplateVariablesFormComponent, typeof i136.AdvancedVariablesFormComponent, typeof i137.StepDetailsModalComponent, typeof i138.SafeHtmlPipe, typeof i139.QuestionnaireListComponent, typeof i140.ChangeHistoryComponent, typeof i141.CamelToTitlePipe, typeof i142.VersionHistoryListComponent, typeof i143.VersionHistoryCompareComponent, typeof i144.VersionHistoryDetailComponent, typeof i145.VersionHistoryRestoreConfirmComponent, typeof i146.NewVersionHistoryDetailComponent], [typeof i147.CommonModule, typeof i148.FormsModule, typeof i148.ReactiveFormsModule, typeof i149.NoopAnimationsModule, typeof i150.MatIconModule, typeof i151.MatMenuModule, typeof i152.MatButtonModule, typeof i153.MatFormFieldModule, typeof i154.MatSelectModule, typeof i155.MatOptionModule, typeof i156.MatCheckboxModule, typeof i157.MatRadioModule, typeof i158.MatSlideToggleModule, typeof i159.MatDatepickerModule, typeof i155.MatNativeDateModule, typeof i160.MatProgressSpinnerModule, typeof i161.MatTooltipModule, typeof i162.MatDialogModule, typeof i163.MatTableModule, typeof i164.MatInputModule, typeof i165.OverlayModule, typeof i166.PortalModule, typeof i167.ScrollingModule, typeof i168.NgxTypedJsModule, typeof i169.DndModule, typeof i170.MonacoEditorModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.DialogComponent, typeof i8.DynamicTableComponent, typeof i9.DynamicCellTemplateDirective, typeof i9.DynamicHeaderTemplateDirective, typeof i10.DynamicCellContainerDirective, typeof i11.PaginationComponent, typeof i12.ActionMenuButtonComponent, typeof i13.OtherButtonComponent, typeof i14.DynamicFilterComponent, typeof i15.DaterangepickerDirective, typeof i16.DaterangepickerComponent, typeof i17.ColumnVisibilityComponent, typeof i18.TableActionToolbarComponent, typeof i19.MetricsCardComponent, typeof i21.ChartCardComponent, typeof i22.ProgressTextCardComponent, typeof i23.DashboardHeaderComponent, typeof i24.WorkspaceSelectorComponent, typeof i25.CoverageModuleCardComponent, typeof i26.TestDistributionCardComponent, typeof i27.FailedTestCasesCardComponent, typeof i28.DynamicSelectFieldComponent, typeof i29.AddPrerequisiteCasesSectionComponent, typeof i30.SelectedFiltersComponent, typeof i31.InsightCardComponent, typeof i32.BadgeComponent, typeof i33.DropdownButtonComponent, typeof i34.HeatErrorMapCellComponent, typeof i35.EmptyStateComponent, typeof i36.TableTemplateComponent, typeof i37.FullTableLoaderComponent, typeof i38.TableDataLoaderComponent, typeof i39.BasicStepComponent, typeof i40.StepRendererComponent, typeof i41.StepGroupComponent, typeof i42.LoopStepComponent, typeof i43.ConditionStepComponent, typeof i44.ConditionDebugStepComponent, typeof i45.ConditionBranchEditorComponent, typeof i46.FailedStepComponent, typeof i44.ConditionDebugStepComponent, typeof i47.UpdatedFailedStepComponent, typeof i48.ViewMoreFailedStepButtonComponent, typeof i49.SelfHealAnalysisComponent, typeof i50.AIAgentStepComponent, typeof i51.AIActionStepComponent, typeof i52.ApiStepComponent, typeof i53.FileDownloadStepComponent, typeof i54.DocumentVerificationStepComponent, typeof i55.LiveExecutionStepComponent, typeof i56.AiLogsWithReasoningComponent, typeof i57.JumpToStepModalComponent, typeof i58.BreakpointsModalComponent, typeof i59.RecordingBannerComponent, typeof i60.ReviewRecordedStepsModalComponent, typeof i61.MainStepCollapseComponent, typeof i62.VisualComparisonComponent, typeof i63.SimulatorComponent, typeof i64.ConsoleAlertComponent, typeof i65.AiDebugAlertComponent, typeof i66.NetworkRequestComponent, typeof i67.RunHistoryCardComponent, typeof i68.AiPromptCardComponent, typeof i69.VisualDifferenceModalComponent, typeof i70.ConfigurationCardComponent, typeof i71.CompareRunsComponent, typeof i72.IterationsLoopComponent, typeof i73.FailedStepCardComponent, typeof i74.CustomInputComponent, typeof i75.MixedVariableInputComponent, typeof i76.CustomTextareaComponent, typeof i77.CodeEditorComponent, typeof i78.CustomToggleComponent, typeof i79.FileUploadComponent, typeof i80.AiReasoningComponent, typeof i81.ExecutionResultModalComponent, typeof i82.SessionChangesModalComponent, typeof i83.ErrorModalComponent, typeof i84.SessionRestorationDialogComponent, typeof i85.SubStepsConfirmationDialogComponent, typeof i86.ExportCodeModalComponent, typeof i87.ProgressIndicatorComponent, typeof i88.StepProgressCardComponent, typeof i89.StepStatusCardComponent, typeof i90.DbVerificationStepComponent, typeof i91.DbQueryExecutionItemComponent, typeof i92.TestCaseNormalStepComponent, typeof i93.TestCaseLoopStepComponent, typeof i94.TestCaseConditionStepComponent, typeof i95.TestCaseStepGroupComponent, typeof i96.TestCaseDetailsRendererComponent, typeof i97.TestCaseApiStepComponent, typeof i98.TestCaseDatabaseStepComponent, typeof i99.TestCaseAiAgentStepComponent, typeof i101.TestCaseUploadStepComponent, typeof i102.TestCaseScreenshotStepComponent, typeof i103.TestCaseScrollStepComponent, typeof i104.TestCaseVerifyUrlStepComponent, typeof i105.TestCaseRestoreSessionStepComponent, typeof i106.TestCaseCustomCodeStepComponent, typeof i107.CustomEditStepComponent, typeof i108.ItemListComponent, typeof i109.TestDataModalComponent, typeof i110.CreateStepGroupComponent, typeof i111.DeleteStepsComponent, typeof i112.RunExecutionAlertComponent, typeof i113.ApiEditStepComponent, typeof i114.LiveConversationComponent, typeof i115.StepBuilderActionComponent, typeof i116.StepBuilderLoopComponent, typeof i117.ElementPopupComponent, typeof i118.ElementFormComponent, typeof i119.StepBuilderConditionComponent, typeof i120.StepBuilderDatabaseComponent, typeof i121.StepBuilderAiAgentComponent, typeof i77.CodeEditorComponent, typeof i122.StepBuilderCustomCodeComponent, typeof i123.StepBuilderRecordStepComponent, typeof i124.StepBuilderDocumentGenerationTemplateStepComponent, typeof i125.ElementListComponent, typeof i126.StepBuilderDocumentComponent, typeof i127.DetailSidePanelComponent, typeof i128.DetailDrawerComponent, typeof i129.DetailDrawerTabComponent, typeof i130.DetailDrawerTabContentDirective, typeof i131.TestCaseDetailsComponent, typeof i132.TestCaseDetailsEditComponent, typeof i133.StepBuilderGroupComponent, typeof i134.StepDetailsDrawerComponent, typeof i135.TemplateVariablesFormComponent, typeof i136.AdvancedVariablesFormComponent, typeof i139.QuestionnaireListComponent, typeof i140.ChangeHistoryComponent, typeof i142.VersionHistoryListComponent, typeof i143.VersionHistoryCompareComponent, typeof i144.VersionHistoryDetailComponent, typeof i145.VersionHistoryRestoreConfirmComponent, typeof i146.NewVersionHistoryDetailComponent]>;
|
|
177
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.DialogComponent, typeof i8.DynamicTableComponent, typeof i9.DynamicCellTemplateDirective, typeof i9.DynamicHeaderTemplateDirective, typeof i10.DynamicCellContainerDirective, typeof i11.PaginationComponent, typeof i12.ActionMenuButtonComponent, typeof i13.OtherButtonComponent, typeof i14.DynamicFilterComponent, typeof i15.DaterangepickerDirective, typeof i16.DaterangepickerComponent, typeof i17.ColumnVisibilityComponent, typeof i18.TableActionToolbarComponent, typeof i19.MetricsCardComponent, typeof i20.MetricsBlockComponent, typeof i21.ChartCardComponent, typeof i22.ProgressTextCardComponent, typeof i23.DashboardHeaderComponent, typeof i24.WorkspaceSelectorComponent, typeof i25.CoverageModuleCardComponent, typeof i26.TestDistributionCardComponent, typeof i27.FailedTestCasesCardComponent, typeof i28.DynamicSelectFieldComponent, typeof i29.AddPrerequisiteCasesSectionComponent, typeof i30.SelectedFiltersComponent, typeof i31.InsightCardComponent, typeof i32.BadgeComponent, typeof i33.DropdownButtonComponent, typeof i34.HeatErrorMapCellComponent, typeof i35.EmptyStateComponent, typeof i36.TableTemplateComponent, typeof i37.FullTableLoaderComponent, typeof i38.TableDataLoaderComponent, typeof i39.BasicStepComponent, typeof i40.StepRendererComponent, typeof i41.StepGroupComponent, typeof i42.LoopStepComponent, typeof i43.ConditionStepComponent, typeof i44.ConditionDebugStepComponent, typeof i45.ConditionBranchEditorComponent, typeof i46.FailedStepComponent, typeof i47.UpdatedFailedStepComponent, typeof i48.ViewMoreFailedStepButtonComponent, typeof i49.SelfHealAnalysisComponent, typeof i50.AIAgentStepComponent, typeof i51.AIActionStepComponent, typeof i52.ApiStepComponent, typeof i53.FileDownloadStepComponent, typeof i54.DocumentVerificationStepComponent, typeof i55.LiveExecutionStepComponent, typeof i56.AiLogsWithReasoningComponent, typeof i57.JumpToStepModalComponent, typeof i58.BreakpointsModalComponent, typeof i59.RecordingBannerComponent, typeof i60.ReviewRecordedStepsModalComponent, typeof i61.MainStepCollapseComponent, typeof i62.VisualComparisonComponent, typeof i63.SimulatorComponent, typeof i64.ConsoleAlertComponent, typeof i65.AiDebugAlertComponent, typeof i66.NetworkRequestComponent, typeof i67.RunHistoryCardComponent, typeof i68.AiPromptCardComponent, typeof i69.VisualDifferenceModalComponent, typeof i70.ConfigurationCardComponent, typeof i71.CompareRunsComponent, typeof i72.IterationsLoopComponent, typeof i73.FailedStepCardComponent, typeof i74.CustomInputComponent, typeof i75.MixedVariableInputComponent, typeof i76.CustomTextareaComponent, typeof i77.CodeEditorComponent, typeof i78.CustomToggleComponent, typeof i79.FileUploadComponent, typeof i80.AiReasoningComponent, typeof i81.ExecutionResultModalComponent, typeof i82.SessionChangesModalComponent, typeof i83.ErrorModalComponent, typeof i84.SessionRestorationDialogComponent, typeof i85.SubStepsConfirmationDialogComponent, typeof i86.ExportCodeModalComponent, typeof i87.ProgressIndicatorComponent, typeof i88.StepProgressCardComponent, typeof i89.StepStatusCardComponent, typeof i90.DbVerificationStepComponent, typeof i91.DbQueryExecutionItemComponent, typeof i92.TestCaseNormalStepComponent, typeof i93.TestCaseLoopStepComponent, typeof i94.TestCaseConditionStepComponent, typeof i95.TestCaseStepGroupComponent, typeof i96.TestCaseDetailsRendererComponent, typeof i97.TestCaseApiStepComponent, typeof i98.TestCaseDatabaseStepComponent, typeof i99.TestCaseAiAgentStepComponent, typeof i100.TestCaseAiVerifyStepComponent, typeof i101.TestCaseUploadStepComponent, typeof i102.TestCaseScreenshotStepComponent, typeof i103.TestCaseScrollStepComponent, typeof i104.TestCaseVerifyUrlStepComponent, typeof i105.TestCaseRestoreSessionStepComponent, typeof i106.TestCaseCustomCodeStepComponent, typeof i107.CustomEditStepComponent, typeof i108.ItemListComponent, typeof i109.TestDataModalComponent, typeof i110.CreateStepGroupComponent, typeof i111.DeleteStepsComponent, typeof i112.RunExecutionAlertComponent, typeof i113.ApiEditStepComponent, typeof i114.LiveConversationComponent, typeof i115.StepBuilderActionComponent, typeof i116.StepBuilderLoopComponent, typeof i117.ElementPopupComponent, typeof i118.ElementFormComponent, typeof i119.StepBuilderConditionComponent, typeof i120.StepBuilderDatabaseComponent, typeof i121.StepBuilderAiAgentComponent, typeof i77.CodeEditorComponent, typeof i122.StepBuilderCustomCodeComponent, typeof i123.StepBuilderRecordStepComponent, typeof i124.StepBuilderDocumentGenerationTemplateStepComponent, typeof i125.ElementListComponent, typeof i126.StepBuilderDocumentComponent, typeof i127.DetailSidePanelComponent, typeof i128.DetailDrawerComponent, typeof i129.DetailDrawerTabComponent, typeof i130.DetailDrawerTabContentDirective, typeof i131.TestCaseDetailsComponent, typeof i132.TestCaseDetailsEditComponent, typeof i133.ApiMockingCardComponent, typeof i134.StepBuilderGroupComponent, typeof i135.StepDetailsDrawerComponent, typeof i136.TemplateVariablesFormComponent, typeof i137.AdvancedVariablesFormComponent, typeof i138.StepDetailsModalComponent, typeof i139.SafeHtmlPipe, typeof i140.QuestionnaireListComponent, typeof i141.ChangeHistoryComponent, typeof i142.CamelToTitlePipe, typeof i143.VersionHistoryListComponent, typeof i144.VersionHistoryCompareComponent, typeof i145.VersionHistoryDetailComponent, typeof i146.VersionHistoryRestoreConfirmComponent, typeof i147.NewVersionHistoryDetailComponent], [typeof i148.CommonModule, typeof i149.FormsModule, typeof i149.ReactiveFormsModule, typeof i150.NoopAnimationsModule, typeof i151.MatIconModule, typeof i152.MatMenuModule, typeof i153.MatButtonModule, typeof i154.MatFormFieldModule, typeof i155.MatSelectModule, typeof i156.MatOptionModule, typeof i157.MatCheckboxModule, typeof i158.MatRadioModule, typeof i159.MatSlideToggleModule, typeof i160.MatDatepickerModule, typeof i156.MatNativeDateModule, typeof i161.MatProgressSpinnerModule, typeof i162.MatTooltipModule, typeof i163.MatDialogModule, typeof i164.MatTableModule, typeof i165.MatInputModule, typeof i166.OverlayModule, typeof i167.PortalModule, typeof i168.ScrollingModule, typeof i169.NgxTypedJsModule, typeof i170.DndModule, typeof i171.MonacoEditorModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.DialogComponent, typeof i8.DynamicTableComponent, typeof i9.DynamicCellTemplateDirective, typeof i9.DynamicHeaderTemplateDirective, typeof i10.DynamicCellContainerDirective, typeof i11.PaginationComponent, typeof i12.ActionMenuButtonComponent, typeof i13.OtherButtonComponent, typeof i14.DynamicFilterComponent, typeof i15.DaterangepickerDirective, typeof i16.DaterangepickerComponent, typeof i17.ColumnVisibilityComponent, typeof i18.TableActionToolbarComponent, typeof i19.MetricsCardComponent, typeof i21.ChartCardComponent, typeof i22.ProgressTextCardComponent, typeof i23.DashboardHeaderComponent, typeof i24.WorkspaceSelectorComponent, typeof i25.CoverageModuleCardComponent, typeof i26.TestDistributionCardComponent, typeof i27.FailedTestCasesCardComponent, typeof i28.DynamicSelectFieldComponent, typeof i29.AddPrerequisiteCasesSectionComponent, typeof i30.SelectedFiltersComponent, typeof i31.InsightCardComponent, typeof i32.BadgeComponent, typeof i33.DropdownButtonComponent, typeof i34.HeatErrorMapCellComponent, typeof i35.EmptyStateComponent, typeof i36.TableTemplateComponent, typeof i37.FullTableLoaderComponent, typeof i38.TableDataLoaderComponent, typeof i39.BasicStepComponent, typeof i40.StepRendererComponent, typeof i41.StepGroupComponent, typeof i42.LoopStepComponent, typeof i43.ConditionStepComponent, typeof i44.ConditionDebugStepComponent, typeof i45.ConditionBranchEditorComponent, typeof i46.FailedStepComponent, typeof i44.ConditionDebugStepComponent, typeof i47.UpdatedFailedStepComponent, typeof i48.ViewMoreFailedStepButtonComponent, typeof i49.SelfHealAnalysisComponent, typeof i50.AIAgentStepComponent, typeof i51.AIActionStepComponent, typeof i52.ApiStepComponent, typeof i53.FileDownloadStepComponent, typeof i54.DocumentVerificationStepComponent, typeof i55.LiveExecutionStepComponent, typeof i56.AiLogsWithReasoningComponent, typeof i57.JumpToStepModalComponent, typeof i58.BreakpointsModalComponent, typeof i59.RecordingBannerComponent, typeof i60.ReviewRecordedStepsModalComponent, typeof i61.MainStepCollapseComponent, typeof i62.VisualComparisonComponent, typeof i63.SimulatorComponent, typeof i64.ConsoleAlertComponent, typeof i65.AiDebugAlertComponent, typeof i66.NetworkRequestComponent, typeof i67.RunHistoryCardComponent, typeof i68.AiPromptCardComponent, typeof i69.VisualDifferenceModalComponent, typeof i70.ConfigurationCardComponent, typeof i71.CompareRunsComponent, typeof i72.IterationsLoopComponent, typeof i73.FailedStepCardComponent, typeof i74.CustomInputComponent, typeof i75.MixedVariableInputComponent, typeof i76.CustomTextareaComponent, typeof i77.CodeEditorComponent, typeof i78.CustomToggleComponent, typeof i79.FileUploadComponent, typeof i80.AiReasoningComponent, typeof i81.ExecutionResultModalComponent, typeof i82.SessionChangesModalComponent, typeof i83.ErrorModalComponent, typeof i84.SessionRestorationDialogComponent, typeof i85.SubStepsConfirmationDialogComponent, typeof i86.ExportCodeModalComponent, typeof i87.ProgressIndicatorComponent, typeof i88.StepProgressCardComponent, typeof i89.StepStatusCardComponent, typeof i90.DbVerificationStepComponent, typeof i91.DbQueryExecutionItemComponent, typeof i92.TestCaseNormalStepComponent, typeof i93.TestCaseLoopStepComponent, typeof i94.TestCaseConditionStepComponent, typeof i95.TestCaseStepGroupComponent, typeof i96.TestCaseDetailsRendererComponent, typeof i97.TestCaseApiStepComponent, typeof i98.TestCaseDatabaseStepComponent, typeof i99.TestCaseAiAgentStepComponent, typeof i101.TestCaseUploadStepComponent, typeof i102.TestCaseScreenshotStepComponent, typeof i103.TestCaseScrollStepComponent, typeof i104.TestCaseVerifyUrlStepComponent, typeof i105.TestCaseRestoreSessionStepComponent, typeof i106.TestCaseCustomCodeStepComponent, typeof i107.CustomEditStepComponent, typeof i108.ItemListComponent, typeof i109.TestDataModalComponent, typeof i110.CreateStepGroupComponent, typeof i111.DeleteStepsComponent, typeof i112.RunExecutionAlertComponent, typeof i113.ApiEditStepComponent, typeof i114.LiveConversationComponent, typeof i115.StepBuilderActionComponent, typeof i116.StepBuilderLoopComponent, typeof i117.ElementPopupComponent, typeof i118.ElementFormComponent, typeof i119.StepBuilderConditionComponent, typeof i120.StepBuilderDatabaseComponent, typeof i121.StepBuilderAiAgentComponent, typeof i77.CodeEditorComponent, typeof i122.StepBuilderCustomCodeComponent, typeof i123.StepBuilderRecordStepComponent, typeof i124.StepBuilderDocumentGenerationTemplateStepComponent, typeof i125.ElementListComponent, typeof i126.StepBuilderDocumentComponent, typeof i127.DetailSidePanelComponent, typeof i128.DetailDrawerComponent, typeof i129.DetailDrawerTabComponent, typeof i130.DetailDrawerTabContentDirective, typeof i131.TestCaseDetailsComponent, typeof i132.TestCaseDetailsEditComponent, typeof i133.ApiMockingCardComponent, typeof i134.StepBuilderGroupComponent, typeof i135.StepDetailsDrawerComponent, typeof i136.TemplateVariablesFormComponent, typeof i137.AdvancedVariablesFormComponent, typeof i140.QuestionnaireListComponent, typeof i141.ChangeHistoryComponent, typeof i143.VersionHistoryListComponent, typeof i144.VersionHistoryCompareComponent, typeof i145.VersionHistoryDetailComponent, typeof i146.VersionHistoryRestoreConfirmComponent, typeof i147.NewVersionHistoryDetailComponent]>;
|
|
177
178
|
static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
|
|
178
179
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -162,6 +162,7 @@ export * from './lib/detail-drawer/detail-drawer-tab-content.directive';
|
|
|
162
162
|
export * from './lib/test-case-details/test-case-details.component';
|
|
163
163
|
export * from './lib/test-case-details/test-case-details.models';
|
|
164
164
|
export * from './lib/test-case-details/test-case-details-edit/test-case-details-edit.component';
|
|
165
|
+
export * from './lib/test-case-details/api-mocking-card/api-mocking-card.component';
|
|
165
166
|
export * from './lib/step-builder/step-builder-group/step-builder-group.component';
|
|
166
167
|
export * from './lib/execution-screen/jump-to-step-modal/jump-to-step-modal.component';
|
|
167
168
|
export * from './lib/execution-screen/breakpoints-modal/breakpoints-modal.component';
|