@cqa-lib/cqa-ui 1.1.548 → 1.1.549-delta.2
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/step-builder/step-builder-document/step-builder-document.component.mjs +3 -3
- package/esm2020/lib/test-case-details/api-edit-step/api-edit-step.component.mjs +298 -19
- package/esm2020/lib/test-case-details/api-edit-step/graphql-operation-picker/graphql-operation-picker.component.mjs +121 -0
- package/esm2020/lib/ui-kit.module.mjs +6 -1
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/cqa-lib-cqa-ui.mjs +415 -32
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +410 -13
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/test-case-details/api-edit-step/api-edit-step.component.d.ts +108 -5
- package/lib/test-case-details/api-edit-step/graphql-operation-picker/graphql-operation-picker.component.d.ts +83 -0
- package/lib/ui-kit.module.d.ts +60 -59
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/styles.css +1 -1
|
@@ -2,15 +2,25 @@ import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnChanges,
|
|
|
2
2
|
import { FormArray, FormBuilder, FormControl, FormGroup } from '@angular/forms';
|
|
3
3
|
import { DynamicSelectFieldConfig, SelectOption } from '../../dynamic-select/dynamic-select-field.component';
|
|
4
4
|
import { CqaAutocompleteOption } from '../../autocomplete/autocomplete.model';
|
|
5
|
+
import { GraphQLOperationOption, GraphQLSchemaSource } from './graphql-operation-picker/graphql-operation-picker.component';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare const API_EDIT_STEP_LABELS: {
|
|
7
8
|
readonly REQUEST_DETAILS: "Request Details";
|
|
8
9
|
readonly STORE_RESPONSE: "Store Response";
|
|
9
10
|
readonly VALIDATION: "Validation";
|
|
10
11
|
};
|
|
11
|
-
export declare type ApiEditPayloadTab = 'headers' | 'body' | 'params' | 'authorization';
|
|
12
|
-
/**
|
|
13
|
-
export declare type
|
|
12
|
+
export declare type ApiEditPayloadTab = 'headers' | 'body' | 'params' | 'authorization' | 'graphql';
|
|
13
|
+
/** Top-level API type the step targets. New types beyond REST/GraphQL are intentionally a string union (not enum) so adding "soap"/"websocket"/"grpc" later is a one-line change. */
|
|
14
|
+
export declare type ApiEditApiType = 'rest' | 'graphql' | 'soap' | 'websocket' | 'grpc';
|
|
15
|
+
/** GraphQL request body emitted to the parent (variables already parsed when valid JSON; raw string otherwise). */
|
|
16
|
+
export interface ApiEditGraphQLPayload {
|
|
17
|
+
query: string;
|
|
18
|
+
/** Object when the user typed valid JSON, raw string otherwise. Engine accepts both. */
|
|
19
|
+
variables?: Record<string, unknown> | string;
|
|
20
|
+
operationName?: string;
|
|
21
|
+
}
|
|
22
|
+
/** Which body content block is visible: headers (tabs), import cURL textarea, or the GraphQL operation picker. */
|
|
23
|
+
export declare type ApiEditBodyView = 'headers' | 'import-curl' | 'graphql-schema';
|
|
14
24
|
export interface ApiEditHeaderRow {
|
|
15
25
|
name: string;
|
|
16
26
|
type: string;
|
|
@@ -42,6 +52,10 @@ export interface ApiEditSendRequestPayload {
|
|
|
42
52
|
key: string;
|
|
43
53
|
value: string;
|
|
44
54
|
}[];
|
|
55
|
+
/** API type (REST or GraphQL). Absent on legacy callers; consumer treats undefined as 'rest'. */
|
|
56
|
+
apiType?: ApiEditApiType;
|
|
57
|
+
/** GraphQL body when `apiType === 'graphql'`. */
|
|
58
|
+
graphQL?: ApiEditGraphQLPayload;
|
|
45
59
|
}
|
|
46
60
|
/** OAuth 2.0 auth fields (when auth type is OAuth 2.0). */
|
|
47
61
|
export interface ApiEditOAuth2Payload {
|
|
@@ -82,6 +96,10 @@ export interface ApiEditStep1Payload {
|
|
|
82
96
|
key: string;
|
|
83
97
|
value: string;
|
|
84
98
|
}[];
|
|
99
|
+
/** API type (REST or GraphQL). Defaults to 'rest' when absent. */
|
|
100
|
+
apiType?: ApiEditApiType;
|
|
101
|
+
/** GraphQL body when `apiType === 'graphql'`. Always emitted as a complete object so the engine's Object.assign merge doesn't lose unsent keys. */
|
|
102
|
+
graphQL?: ApiEditGraphQLPayload;
|
|
85
103
|
}
|
|
86
104
|
/** Step 2 store-response payload. */
|
|
87
105
|
export interface ApiEditStep2Payload {
|
|
@@ -154,6 +172,16 @@ export declare class ApiEditStepComponent implements OnChanges, OnInit, AfterVie
|
|
|
154
172
|
editMode?: boolean;
|
|
155
173
|
/** True while parent is creating the step (API in progress); show loader on Create/Update button */
|
|
156
174
|
isCreatingStep: boolean;
|
|
175
|
+
/** Initial API type ('rest' default, 'graphql' for GraphQL steps). Comes from `event.type` on the saved step. */
|
|
176
|
+
initialApiType?: ApiEditApiType;
|
|
177
|
+
/** Initial GraphQL body when editing a GraphQL step. `variables` may be an object (preferred) or a JSON string. */
|
|
178
|
+
initialGraphQL?: ApiEditGraphQLPayload;
|
|
179
|
+
/** Schema source for the GraphQL operation picker (URL + counts). Parent provides this after `loadSchema` resolves. */
|
|
180
|
+
graphQLSchemaSource?: GraphQLSchemaSource;
|
|
181
|
+
/** Operations list for the picker. Empty until parent loads/introspects the schema. */
|
|
182
|
+
graphQLOperations: GraphQLOperationOption[];
|
|
183
|
+
/** True while the parent is introspecting; the picker swaps its empty state for a spinner. */
|
|
184
|
+
isLoadingGraphQLSchema: boolean;
|
|
157
185
|
/** Emits the cURL string when user clicks Import (value from the textarea control). */
|
|
158
186
|
importCurl: EventEmitter<string>;
|
|
159
187
|
/** Emits when user cancels the Import cURL panel (clicks Cancel). */
|
|
@@ -229,6 +257,11 @@ export declare class ApiEditStepComponent implements OnChanges, OnInit, AfterVie
|
|
|
229
257
|
environmentSearch: EventEmitter<string>;
|
|
230
258
|
/** Emit when user scrolls to load more environments. */
|
|
231
259
|
environmentLoadMore: EventEmitter<void>;
|
|
260
|
+
/** Emit when user clicks "Load Schema" in GraphQL mode. Parent handles the schema fetch (or shows a "coming soon" toast for now). */
|
|
261
|
+
loadSchema: EventEmitter<{
|
|
262
|
+
url: string;
|
|
263
|
+
headers: ApiEditHeaderRow[];
|
|
264
|
+
}>;
|
|
232
265
|
/** Form for Auth Type select (Authorization tab) */
|
|
233
266
|
authTypeForm: FormGroup;
|
|
234
267
|
/** Auth type options: array of strings or objects with id, name, value, label (passed from parent). Falls back to built-in list when empty. */
|
|
@@ -290,11 +323,41 @@ export declare class ApiEditStepComponent implements OnChanges, OnInit, AfterVie
|
|
|
290
323
|
private paramsSyncingFromUrl;
|
|
291
324
|
/** Placeholder for the URL field: show "Enter URL or select Parameter *" when urlOptions are available (environment selected). */
|
|
292
325
|
get urlPlaceholder(): string;
|
|
293
|
-
|
|
326
|
+
/**
|
|
327
|
+
* The two tab arrangements. REST keeps the legacy four-tab layout. GraphQL drops Body & Params
|
|
328
|
+
* because the body is a single { query, variables, operationName } object (rendered in the new
|
|
329
|
+
* GraphQL tab below) and query params have no meaning for a GraphQL POST.
|
|
330
|
+
*/
|
|
331
|
+
private static readonly REST_PAYLOAD_TABS;
|
|
332
|
+
private static readonly GRAPHQL_PAYLOAD_TABS;
|
|
333
|
+
/** Tabs visible under the request row, swapped based on `activeApiType`. */
|
|
334
|
+
get payloadTabs(): {
|
|
294
335
|
value: ApiEditPayloadTab;
|
|
295
336
|
label: string;
|
|
296
337
|
}[];
|
|
297
338
|
activePayloadTab: ApiEditPayloadTab;
|
|
339
|
+
/** Currently selected API type. REST is the default and matches today's behaviour exactly. */
|
|
340
|
+
activeApiType: ApiEditApiType;
|
|
341
|
+
/** Segments rendered above the Method/URL row. SOAP/WebSocket/gRPC are intentionally `disabled` for now. */
|
|
342
|
+
readonly apiTypeSegments: ({
|
|
343
|
+
label: string;
|
|
344
|
+
value: ApiEditApiType;
|
|
345
|
+
disabled?: undefined;
|
|
346
|
+
tooltip?: undefined;
|
|
347
|
+
} | {
|
|
348
|
+
label: string;
|
|
349
|
+
value: ApiEditApiType;
|
|
350
|
+
disabled: boolean;
|
|
351
|
+
tooltip: string;
|
|
352
|
+
})[];
|
|
353
|
+
/** GraphQL fields backing the new tab content. Variables are stored as a JSON string in the form for the textarea round-trip; parsed on emit. */
|
|
354
|
+
graphQLForm: FormGroup;
|
|
355
|
+
/** Inline error displayed under the Query textarea when empty/blank on Save. Cleared as the user types. */
|
|
356
|
+
graphQLQueryError: string;
|
|
357
|
+
/** Inline error displayed under the Variables textarea when JSON is malformed. */
|
|
358
|
+
graphQLVariablesError: string;
|
|
359
|
+
/** Non-blocking warning shown under the Operation Name field when the query declares 2+ operations. */
|
|
360
|
+
graphQLOperationWarning: string;
|
|
298
361
|
/** Step 3: Response verification tabs */
|
|
299
362
|
readonly responseVerificationTabs: {
|
|
300
363
|
value: 'response-body' | 'status';
|
|
@@ -480,6 +543,46 @@ export declare class ApiEditStepComponent implements OnChanges, OnInit, AfterVie
|
|
|
480
543
|
onCancel(): void;
|
|
481
544
|
onNext(): void;
|
|
482
545
|
setPayloadTab(value: ApiEditPayloadTab): void;
|
|
546
|
+
/**
|
|
547
|
+
* Handle API Type segment toggle (REST ↔ GraphQL). When switching to GraphQL we
|
|
548
|
+
* jump to the GraphQL tab so the Query / Variables / Operation Name fields are
|
|
549
|
+
* immediately visible. When switching back to REST we land on Headers (REST default).
|
|
550
|
+
* Disabled segments (SOAP/WebSocket/gRPC) cannot fire here — `cqa-segment-control`
|
|
551
|
+
* blocks the click — but we guard anyway in case a future caller bypasses that.
|
|
552
|
+
*/
|
|
553
|
+
onApiTypeChange(value: string): void;
|
|
554
|
+
/**
|
|
555
|
+
* Parse the Variables textarea as JSON. Empty string is valid (= no variables).
|
|
556
|
+
* Sets `graphQLVariablesError` for inline display; returns the parsed object or
|
|
557
|
+
* the raw string when the user typed something non-empty that didn't parse.
|
|
558
|
+
*
|
|
559
|
+
* @param strict When true (called from `onCreate`), an invalid JSON blocks save
|
|
560
|
+
* — we leave the error visible and return `null` to signal abort.
|
|
561
|
+
*/
|
|
562
|
+
private validateGraphQLVariables;
|
|
563
|
+
/**
|
|
564
|
+
* Detect when the GraphQL query declares 2+ named operations. GraphQL requires the
|
|
565
|
+
* client to specify `operationName` in that case; absence is a runtime error, not a
|
|
566
|
+
* syntax one, so we surface it as a non-blocking warning.
|
|
567
|
+
*/
|
|
568
|
+
private recomputeGraphQLOperationWarning;
|
|
569
|
+
/**
|
|
570
|
+
* Click handler for the "Load Schema" button (GraphQL mode only). Switches the body view
|
|
571
|
+
* to the operation picker AND emits `loadSchema` so the parent can fetch / refresh the
|
|
572
|
+
* schema in the background. The picker renders whatever `graphQLSchemaSource` /
|
|
573
|
+
* `graphQLOperations` the parent has supplied at any given time — empty state by default.
|
|
574
|
+
*/
|
|
575
|
+
onLoadSchema(): void;
|
|
576
|
+
/** Picker → back: drop the picker view and return to the headers/tabs panel. */
|
|
577
|
+
onGraphQLPickerBack(): void;
|
|
578
|
+
/** Picker → re-introspect: forward to parent so it can refetch the schema. */
|
|
579
|
+
onGraphQLPickerReIntrospect(): void;
|
|
580
|
+
/**
|
|
581
|
+
* Picker → operation selected: patch the GraphQL form (query / variables / operationName)
|
|
582
|
+
* and pop back to the main view with the GraphQL tab active so the user can see the
|
|
583
|
+
* filled-in fields.
|
|
584
|
+
*/
|
|
585
|
+
onGraphQLPickerOperationSelected(op: GraphQLOperationOption): void;
|
|
483
586
|
setResponseVerificationTab(value: 'response-body' | 'status'): void;
|
|
484
587
|
addHeader(): void;
|
|
485
588
|
removeHeader(index: number): void;
|
|
@@ -538,5 +641,5 @@ export declare class ApiEditStepComponent implements OnChanges, OnInit, AfterVie
|
|
|
538
641
|
*/
|
|
539
642
|
private scrollPreviewIntoView;
|
|
540
643
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiEditStepComponent, never>;
|
|
541
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ApiEditStepComponent, "cqa-api-edit-step", never, { "initialMethod": "initialMethod"; "initialEnvironment": "initialEnvironment"; "initialStep": "initialStep"; "initialUrl": "initialUrl"; "initialPayloadTab": "initialPayloadTab"; "initialPayloadType": "initialPayloadType"; "initialPayloadText": "initialPayloadText"; "initialSummary": "initialSummary"; "initialHeaders": "initialHeaders"; "initialResponsePreview": "initialResponsePreview"; "initialVariableName": "initialVariableName"; "initialResponseBodyVerifications": "initialResponseBodyVerifications"; "initialStatusVerifications": "initialStatusVerifications"; "initialActiveResponseVerificationTab": "initialActiveResponseVerificationTab"; "editMode": "editMode"; "isCreatingStep": "isCreatingStep"; "httpMethodOptions": "httpMethodOptions"; "environmentOptions": "environmentOptions"; "hasMoreEnvironments": "hasMoreEnvironments"; "isLoadingEnvironments": "isLoadingEnvironments"; "urlOptions": "urlOptions"; "authTypeOptions": "authTypeOptions"; "initialAuthType": "initialAuthType"; "formatOptions": "formatOptions"; "initialFormat": "initialFormat"; "headerNameOptions": "headerNameOptions"; "verificationOptions": "verificationOptions"; "verificationDataTypeOptions": "verificationDataTypeOptions"; "statusVerificationOptions": "statusVerificationOptions"; "advancedSettingsVariables": "advancedSettingsVariables"; }, { "importCurl": "importCurl"; "importCurlCancel": "importCurlCancel"; "sendRequest": "sendRequest"; "back": "back"; "cancel": "cancel"; "next": "next"; "create": "create"; "headersChange": "headersChange"; "environmentChange": "environmentChange"; "environmentSearch": "environmentSearch"; "environmentLoadMore": "environmentLoadMore"; }, never, never>;
|
|
644
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ApiEditStepComponent, "cqa-api-edit-step", never, { "initialMethod": "initialMethod"; "initialEnvironment": "initialEnvironment"; "initialStep": "initialStep"; "initialUrl": "initialUrl"; "initialPayloadTab": "initialPayloadTab"; "initialPayloadType": "initialPayloadType"; "initialPayloadText": "initialPayloadText"; "initialSummary": "initialSummary"; "initialHeaders": "initialHeaders"; "initialResponsePreview": "initialResponsePreview"; "initialVariableName": "initialVariableName"; "initialResponseBodyVerifications": "initialResponseBodyVerifications"; "initialStatusVerifications": "initialStatusVerifications"; "initialActiveResponseVerificationTab": "initialActiveResponseVerificationTab"; "editMode": "editMode"; "isCreatingStep": "isCreatingStep"; "initialApiType": "initialApiType"; "initialGraphQL": "initialGraphQL"; "graphQLSchemaSource": "graphQLSchemaSource"; "graphQLOperations": "graphQLOperations"; "isLoadingGraphQLSchema": "isLoadingGraphQLSchema"; "httpMethodOptions": "httpMethodOptions"; "environmentOptions": "environmentOptions"; "hasMoreEnvironments": "hasMoreEnvironments"; "isLoadingEnvironments": "isLoadingEnvironments"; "urlOptions": "urlOptions"; "authTypeOptions": "authTypeOptions"; "initialAuthType": "initialAuthType"; "formatOptions": "formatOptions"; "initialFormat": "initialFormat"; "headerNameOptions": "headerNameOptions"; "verificationOptions": "verificationOptions"; "verificationDataTypeOptions": "verificationDataTypeOptions"; "statusVerificationOptions": "statusVerificationOptions"; "advancedSettingsVariables": "advancedSettingsVariables"; }, { "importCurl": "importCurl"; "importCurlCancel": "importCurlCancel"; "sendRequest": "sendRequest"; "back": "back"; "cancel": "cancel"; "next": "next"; "create": "create"; "headersChange": "headersChange"; "environmentChange": "environmentChange"; "environmentSearch": "environmentSearch"; "environmentLoadMore": "environmentLoadMore"; "loadSchema": "loadSchema"; }, never, never>;
|
|
542
645
|
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* Where the operations list came from. The header bar renders the URL plus
|
|
5
|
+
* type / query / mutation counts so the user can sanity-check the schema
|
|
6
|
+
* source before picking an operation.
|
|
7
|
+
*/
|
|
8
|
+
export interface GraphQLSchemaSource {
|
|
9
|
+
url: string;
|
|
10
|
+
typeCount?: number;
|
|
11
|
+
queryCount?: number;
|
|
12
|
+
mutationCount?: number;
|
|
13
|
+
subscriptionCount?: number;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* One row in the picker. The parent (api-edit-step) builds this list from
|
|
17
|
+
* the introspected schema and passes it via `[operations]`. On select, the
|
|
18
|
+
* picker emits the whole option object so the caller can patch the GraphQL
|
|
19
|
+
* editor with `query`, `variables`, and `operationName` in one shot.
|
|
20
|
+
*/
|
|
21
|
+
export interface GraphQLOperationOption {
|
|
22
|
+
/** Stable identifier used as *ngFor trackBy and the radio's [value]. Typically the operation name. */
|
|
23
|
+
id: string;
|
|
24
|
+
/** Display name (e.g. 'getBooking'). */
|
|
25
|
+
name: string;
|
|
26
|
+
/** Section grouping + colour-coding of the return type pill. */
|
|
27
|
+
kind: 'query' | 'mutation' | 'subscription';
|
|
28
|
+
/** Inline argument list, e.g. `[{ name: 'id', type: 'ID!' }]`. Used for the signature line. */
|
|
29
|
+
args?: Array<{
|
|
30
|
+
name: string;
|
|
31
|
+
type: string;
|
|
32
|
+
}>;
|
|
33
|
+
/** Return type displayed after the arrow. Coloured by `kind`. */
|
|
34
|
+
returnType?: string;
|
|
35
|
+
/** Optional human description rendered below the signature line. */
|
|
36
|
+
description?: string;
|
|
37
|
+
/** Pre-built operation text the parent drops into the GraphQL Query editor. */
|
|
38
|
+
query: string;
|
|
39
|
+
/** Initial variables; parent JSON-stringifies into the Variables editor. */
|
|
40
|
+
variables?: Record<string, unknown>;
|
|
41
|
+
/** Operation name written into the Operation Name field (typically same as `name`). */
|
|
42
|
+
operationName: string;
|
|
43
|
+
}
|
|
44
|
+
export declare class GraphQLOperationPickerComponent {
|
|
45
|
+
/** Schema source descriptor (URL + counts). When omitted the header shows an empty placeholder. */
|
|
46
|
+
schemaSource?: GraphQLSchemaSource;
|
|
47
|
+
/** Flat operations list. Picker partitions by `kind` for the section headers. */
|
|
48
|
+
operations: GraphQLOperationOption[];
|
|
49
|
+
/** Display state for the "Introspected" / "Pending" badge in the title row. */
|
|
50
|
+
introspected: boolean;
|
|
51
|
+
/** True while the parent is fetching/introspecting a schema. Renders a spinner instead of the empty state. */
|
|
52
|
+
isLoading: boolean;
|
|
53
|
+
/** Emitted when the user clicks the back arrow above the title (returns to the main step 1 view). */
|
|
54
|
+
back: EventEmitter<void>;
|
|
55
|
+
/** Emitted when the user clicks an operation row. Parent patches graphQLForm and pops the picker. */
|
|
56
|
+
operationSelected: EventEmitter<GraphQLOperationOption>;
|
|
57
|
+
/** Emitted when the user clicks Re-introspect — parent re-fetches the schema. */
|
|
58
|
+
reIntrospect: EventEmitter<GraphQLSchemaSource>;
|
|
59
|
+
/** Emitted when the user clicks Change — parent shows a URL/auth picker (deferred for now). */
|
|
60
|
+
change: EventEmitter<void>;
|
|
61
|
+
/** Emitted when the user clicks Preview on a row — parent shows a preview popover (deferred). */
|
|
62
|
+
preview: EventEmitter<GraphQLOperationOption>;
|
|
63
|
+
/** Filter input value. Plain substring match across name / description / returnType. */
|
|
64
|
+
filterTerm: string;
|
|
65
|
+
/** Operations currently shown after applying `filterTerm`. */
|
|
66
|
+
get filteredOperations(): GraphQLOperationOption[];
|
|
67
|
+
get queryOperations(): GraphQLOperationOption[];
|
|
68
|
+
get mutationOperations(): GraphQLOperationOption[];
|
|
69
|
+
get subscriptionOperations(): GraphQLOperationOption[];
|
|
70
|
+
/** Convenience: total schema-source count line, e.g. "38 types · 4 queries · 3 mutations". */
|
|
71
|
+
get headerCounts(): string;
|
|
72
|
+
onBack(): void;
|
|
73
|
+
onSelect(op: GraphQLOperationOption): void;
|
|
74
|
+
onPreview(op: GraphQLOperationOption, event: Event): void;
|
|
75
|
+
onReIntrospect(): void;
|
|
76
|
+
onChange(): void;
|
|
77
|
+
onFilterChange(value: string): void;
|
|
78
|
+
trackByOperation(_index: number, op: GraphQLOperationOption): string;
|
|
79
|
+
/** Tailwind text colour for the return-type pill, keyed by operation kind. */
|
|
80
|
+
returnTypeColorClass(kind: GraphQLOperationOption['kind']): string;
|
|
81
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GraphQLOperationPickerComponent, never>;
|
|
82
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GraphQLOperationPickerComponent, "cqa-graphql-operation-picker", never, { "schemaSource": "schemaSource"; "operations": "operations"; "introspected": "introspected"; "isLoading": "isLoading"; }, { "back": "back"; "operationSelected": "operationSelected"; "reIntrospect": "reIntrospect"; "change": "change"; "preview": "preview"; }, never, never>;
|
|
83
|
+
}
|
package/lib/ui-kit.module.d.ts
CHANGED
|
@@ -136,67 +136,68 @@ import * as i133 from "./test-case-details/create-step-group/create-step-group.c
|
|
|
136
136
|
import * as i134 from "./test-case-details/delete-steps/delete-steps.component";
|
|
137
137
|
import * as i135 from "./test-case-details/run-execution-alert/run-execution-alert.component";
|
|
138
138
|
import * as i136 from "./test-case-details/api-edit-step/api-edit-step.component";
|
|
139
|
-
import * as i137 from "./
|
|
140
|
-
import * as i138 from "./
|
|
141
|
-
import * as i139 from "./step-builder/step-builder-
|
|
142
|
-
import * as i140 from "./
|
|
143
|
-
import * as i141 from "./test-case-details/element-popup/element-
|
|
144
|
-
import * as i142 from "./
|
|
145
|
-
import * as i143 from "./step-builder/step-builder-
|
|
146
|
-
import * as i144 from "./step-builder/step-builder-
|
|
147
|
-
import * as i145 from "./step-builder/step-builder-
|
|
148
|
-
import * as i146 from "./step-builder/step-builder-
|
|
149
|
-
import * as i147 from "./step-builder/step-builder-
|
|
150
|
-
import * as i148 from "./
|
|
151
|
-
import * as i149 from "./
|
|
152
|
-
import * as i150 from "./
|
|
153
|
-
import * as i151 from "./detail-
|
|
154
|
-
import * as i152 from "./detail-drawer/detail-drawer
|
|
155
|
-
import * as i153 from "./detail-drawer/detail-drawer-tab-
|
|
156
|
-
import * as i154 from "./
|
|
157
|
-
import * as i155 from "./test-case-details/test-case-details
|
|
158
|
-
import * as i156 from "./test-case-details/
|
|
159
|
-
import * as i157 from "./
|
|
160
|
-
import * as i158 from "./
|
|
161
|
-
import * as i159 from "./
|
|
162
|
-
import * as i160 from "./step-builder/
|
|
163
|
-
import * as i161 from "./
|
|
164
|
-
import * as i162 from "./
|
|
165
|
-
import * as i163 from "./
|
|
166
|
-
import * as i164 from "./
|
|
167
|
-
import * as i165 from "./
|
|
168
|
-
import * as i166 from "./
|
|
169
|
-
import * as i167 from "./version-history/version-history-
|
|
170
|
-
import * as i168 from "./version-history/version-history-
|
|
171
|
-
import * as i169 from "./version-history/version-history-
|
|
172
|
-
import * as i170 from "./version-history/
|
|
173
|
-
import * as i171 from "
|
|
174
|
-
import * as i172 from "@angular/
|
|
175
|
-
import * as i173 from "@angular/
|
|
176
|
-
import * as i174 from "@angular/
|
|
177
|
-
import * as i175 from "@angular/material/
|
|
178
|
-
import * as i176 from "@angular/material/
|
|
179
|
-
import * as i177 from "@angular/material/
|
|
180
|
-
import * as i178 from "@angular/material/
|
|
181
|
-
import * as i179 from "@angular/material/
|
|
182
|
-
import * as i180 from "@angular/material/
|
|
183
|
-
import * as i181 from "@angular/material/
|
|
184
|
-
import * as i182 from "@angular/material/
|
|
185
|
-
import * as i183 from "@angular/material/
|
|
186
|
-
import * as i184 from "@angular/material/
|
|
187
|
-
import * as i185 from "@angular/material/
|
|
188
|
-
import * as i186 from "@angular/material/
|
|
189
|
-
import * as i187 from "@angular/material/
|
|
190
|
-
import * as i188 from "@angular/material/
|
|
191
|
-
import * as i189 from "@angular/
|
|
192
|
-
import * as i190 from "@angular/cdk/
|
|
193
|
-
import * as i191 from "@angular/cdk/
|
|
194
|
-
import * as i192 from "
|
|
195
|
-
import * as i193 from "ngx-
|
|
196
|
-
import * as i194 from "ngx-
|
|
139
|
+
import * as i137 from "./test-case-details/api-edit-step/graphql-operation-picker/graphql-operation-picker.component";
|
|
140
|
+
import * as i138 from "./live-conversation/live-conversation.component";
|
|
141
|
+
import * as i139 from "./step-builder/step-builder-action/step-builder-action.component";
|
|
142
|
+
import * as i140 from "./step-builder/step-builder-loop/step-builder-loop.component";
|
|
143
|
+
import * as i141 from "./test-case-details/element-popup/element-popup.component";
|
|
144
|
+
import * as i142 from "./test-case-details/element-popup/element-form/element-form.component";
|
|
145
|
+
import * as i143 from "./step-builder/step-builder-condition/step-builder-condition.component";
|
|
146
|
+
import * as i144 from "./step-builder/step-builder-database/step-builder-database.component";
|
|
147
|
+
import * as i145 from "./step-builder/step-builder-ai-agent/step-builder-ai-agent.component";
|
|
148
|
+
import * as i146 from "./step-builder/step-builder-custom-code/step-builder-custom-code.component";
|
|
149
|
+
import * as i147 from "./step-builder/step-builder-record-step/step-builder-record-step.component";
|
|
150
|
+
import * as i148 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
|
|
151
|
+
import * as i149 from "./test-case-details/element-list/element-list.component";
|
|
152
|
+
import * as i150 from "./step-builder/step-builder-document/step-builder-document.component";
|
|
153
|
+
import * as i151 from "./detail-side-panel/detail-side-panel.component";
|
|
154
|
+
import * as i152 from "./detail-drawer/detail-drawer.component";
|
|
155
|
+
import * as i153 from "./detail-drawer/detail-drawer-tab/detail-drawer-tab.component";
|
|
156
|
+
import * as i154 from "./detail-drawer/detail-drawer-tab-content.directive";
|
|
157
|
+
import * as i155 from "./test-case-details/test-case-details.component";
|
|
158
|
+
import * as i156 from "./test-case-details/test-case-details-edit/test-case-details-edit.component";
|
|
159
|
+
import * as i157 from "./test-case-details/api-mocking-card/api-mocking-card.component";
|
|
160
|
+
import * as i158 from "./step-builder/step-builder-group/step-builder-group.component";
|
|
161
|
+
import * as i159 from "./test-case-details/step-details-drawer/step-details-drawer.component";
|
|
162
|
+
import * as i160 from "./step-builder/template-variables-form/template-variables-form.component";
|
|
163
|
+
import * as i161 from "./step-builder/advanced-variables-form/advanced-variables-form.component";
|
|
164
|
+
import * as i162 from "./test-case-details/step-details-modal/step-details-modal.component";
|
|
165
|
+
import * as i163 from "./pipes/safe-html.pipe";
|
|
166
|
+
import * as i164 from "./questionnaire-list/questionnaire-list.component";
|
|
167
|
+
import * as i165 from "./change-history/change-history.component";
|
|
168
|
+
import * as i166 from "./pipes/camel-to-title.pipe";
|
|
169
|
+
import * as i167 from "./version-history/version-history-list/version-history-list.component";
|
|
170
|
+
import * as i168 from "./version-history/version-history-compare/version-history-compare.component";
|
|
171
|
+
import * as i169 from "./version-history/version-history-detail/version-history-detail.component";
|
|
172
|
+
import * as i170 from "./version-history/version-history-restore-confirm/version-history-restore-confirm.component";
|
|
173
|
+
import * as i171 from "./version-history/new-version-history-detail/new-version-history-detail.component";
|
|
174
|
+
import * as i172 from "@angular/common";
|
|
175
|
+
import * as i173 from "@angular/forms";
|
|
176
|
+
import * as i174 from "@angular/platform-browser/animations";
|
|
177
|
+
import * as i175 from "@angular/material/icon";
|
|
178
|
+
import * as i176 from "@angular/material/menu";
|
|
179
|
+
import * as i177 from "@angular/material/button";
|
|
180
|
+
import * as i178 from "@angular/material/form-field";
|
|
181
|
+
import * as i179 from "@angular/material/select";
|
|
182
|
+
import * as i180 from "@angular/material/core";
|
|
183
|
+
import * as i181 from "@angular/material/checkbox";
|
|
184
|
+
import * as i182 from "@angular/material/radio";
|
|
185
|
+
import * as i183 from "@angular/material/slide-toggle";
|
|
186
|
+
import * as i184 from "@angular/material/datepicker";
|
|
187
|
+
import * as i185 from "@angular/material/progress-spinner";
|
|
188
|
+
import * as i186 from "@angular/material/tooltip";
|
|
189
|
+
import * as i187 from "@angular/material/dialog";
|
|
190
|
+
import * as i188 from "@angular/material/table";
|
|
191
|
+
import * as i189 from "@angular/material/input";
|
|
192
|
+
import * as i190 from "@angular/cdk/overlay";
|
|
193
|
+
import * as i191 from "@angular/cdk/portal";
|
|
194
|
+
import * as i192 from "@angular/cdk/scrolling";
|
|
195
|
+
import * as i193 from "ngx-typed-js";
|
|
196
|
+
import * as i194 from "ngx-drag-drop";
|
|
197
|
+
import * as i195 from "ngx-monaco-editor";
|
|
197
198
|
export declare class UiKitModule {
|
|
198
199
|
constructor(iconRegistry: MatIconRegistry);
|
|
199
200
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
|
|
200
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.ViewportSelectorComponent, typeof i8.DialogComponent, typeof i9.DynamicTableComponent, typeof i10.DynamicCellTemplateDirective, typeof i10.DynamicHeaderTemplateDirective, typeof i11.DynamicCellContainerDirective, typeof i12.PaginationComponent, typeof i13.ActionMenuButtonComponent, typeof i14.OtherButtonComponent, typeof i15.DynamicFilterComponent, typeof i16.DaterangepickerDirective, typeof i17.DaterangepickerComponent, typeof i18.ColumnVisibilityComponent, typeof i19.TableActionToolbarComponent, typeof i20.MetricsCardComponent, typeof i21.MetricsBlockComponent, typeof i22.ChartCardComponent, typeof i23.ProgressTextCardComponent, typeof i24.DashboardHeaderComponent, typeof i25.WorkspaceSelectorComponent, typeof i26.CoverageModuleCardComponent, typeof i27.TestDistributionCardComponent, typeof i28.FailedTestCasesCardComponent, typeof i29.DynamicSelectFieldComponent, typeof i30.AddPrerequisiteCasesSectionComponent, typeof i31.SelectedFiltersComponent, typeof i32.InsightCardComponent, typeof i33.BadgeComponent, typeof i34.DropdownButtonComponent, typeof i35.HeatErrorMapCellComponent, typeof i36.EmptyStateComponent, typeof i37.TableTemplateComponent, typeof i38.ModularTableTemplateComponent, typeof i39.FolderSidebarComponent, typeof i40.MoveToFolderDialogComponent, typeof i41.NewFolderDialogComponent, typeof i42.DeleteFolderDialogComponent, typeof i43.RowDragDirective, typeof i44.FolderDropDirective, typeof i45.FolderDragDirective, typeof i46.NamePromptModalComponent, typeof i47.FullTableLoaderComponent, typeof i48.TableDataLoaderComponent, typeof i49.BasicStepComponent, typeof i50.StepRendererComponent, typeof i51.StepGroupComponent, typeof i52.LoopStepComponent, typeof i53.ConditionStepComponent, typeof i54.ConditionDebugStepComponent, typeof i55.ConditionBranchEditorComponent, typeof i56.FailedStepComponent, typeof i57.UpdatedFailedStepComponent, typeof i58.ViewMoreFailedStepButtonComponent, typeof i59.SelfHealAnalysisComponent, typeof i60.AIAgentStepComponent, typeof i61.AIActionStepComponent, typeof i62.ApiStepComponent, typeof i63.FileDownloadStepComponent, typeof i64.DocumentVerificationStepComponent, typeof i65.LiveExecutionStepComponent, typeof i66.AiLogsWithReasoningComponent, typeof i67.JumpToStepModalComponent, typeof i68.BreakpointsModalComponent, typeof i69.RecordingBannerComponent, typeof i70.ReviewRecordedStepsModalComponent, typeof i71.MainStepCollapseComponent, typeof i72.VisualComparisonComponent, typeof i73.SimulatorComponent, typeof i74.ConsoleAlertComponent, typeof i75.AiDebugAlertComponent, typeof i76.NetworkRequestComponent, typeof i77.RunHistoryCardComponent, typeof i78.AiPromptCardComponent, typeof i79.VisualDifferenceModalComponent, typeof i80.ConfigurationCardComponent, typeof i81.CompareRunsComponent, typeof i82.ViewCompareButtonComponent, typeof i83.TestCaseLinkCellComponent, typeof i84.IterationsLoopComponent, typeof i85.FailedStepCardComponent, typeof i86.CustomInputComponent, typeof i87.MixedVariableInputComponent, typeof i88.CustomTextareaComponent, typeof i89.CodeEditorComponent, typeof i90.CustomToggleComponent, typeof i91.FileUploadComponent, typeof i92.AiReasoningComponent, typeof i93.ExecutionResultModalComponent, typeof i94.SessionChangesModalComponent, typeof i95.ErrorModalComponent, typeof i96.SessionRestorationDialogComponent, typeof i97.CaptureVideoDialogComponent, typeof i98.SubStepsConfirmationDialogComponent, typeof i99.NewGlobalVariableDialogComponent, typeof i100.NewEnvironmentDialogComponent, typeof i101.NewEnvironmentVariableDialogComponent, typeof i102.NewDbConfigDialogComponent, typeof i103.NewTestDataProfileDialogComponent, typeof i104.ManageColumnsDialogComponent, typeof i105.AuditLogDrawerComponent, typeof i106.AuditLogEntryCardComponent, typeof i107.AssignEnvironmentsDialogComponent, typeof i108.PermissionToggleComponent, typeof i109.ExportCodeModalComponent, typeof i110.ProgressIndicatorComponent, typeof i111.StepProgressCardComponent, typeof i112.StepStatusCardComponent, typeof i113.DbVerificationStepComponent, typeof i114.DbQueryExecutionItemComponent, typeof i115.TestCaseNormalStepComponent, typeof i116.TestCaseLoopStepComponent, typeof i117.TestCaseConditionStepComponent, typeof i118.TestCaseStepGroupComponent, typeof i119.TestCaseDetailsRendererComponent, typeof i120.TestCaseApiStepComponent, typeof i121.TestCaseDatabaseStepComponent, typeof i122.TestCaseAiAgentStepComponent, typeof i123.TestCaseAiVerifyStepComponent, typeof i124.TestCaseUploadStepComponent, typeof i125.TestCaseScreenshotStepComponent, typeof i126.TestCaseScrollStepComponent, typeof i127.TestCaseVerifyUrlStepComponent, typeof i128.TestCaseRestoreSessionStepComponent, typeof i129.TestCaseCustomCodeStepComponent, typeof i130.CustomEditStepComponent, typeof i131.ItemListComponent, typeof i132.TestDataModalComponent, typeof i133.CreateStepGroupComponent, typeof i134.DeleteStepsComponent, typeof i135.RunExecutionAlertComponent, typeof i136.ApiEditStepComponent, typeof i137.LiveConversationComponent, typeof i138.StepBuilderActionComponent, typeof i139.StepBuilderLoopComponent, typeof i140.ElementPopupComponent, typeof i141.ElementFormComponent, typeof i142.StepBuilderConditionComponent, typeof i143.StepBuilderDatabaseComponent, typeof i144.StepBuilderAiAgentComponent, typeof i89.CodeEditorComponent, typeof i145.StepBuilderCustomCodeComponent, typeof i146.StepBuilderRecordStepComponent, typeof i147.StepBuilderDocumentGenerationTemplateStepComponent, typeof i148.ElementListComponent, typeof i149.StepBuilderDocumentComponent, typeof i150.DetailSidePanelComponent, typeof i151.DetailDrawerComponent, typeof i152.DetailDrawerTabComponent, typeof i153.DetailDrawerTabContentDirective, typeof i154.TestCaseDetailsComponent, typeof i155.TestCaseDetailsEditComponent, typeof i156.ApiMockingCardComponent, typeof i157.StepBuilderGroupComponent, typeof i158.StepDetailsDrawerComponent, typeof i159.TemplateVariablesFormComponent, typeof i160.AdvancedVariablesFormComponent, typeof i161.StepDetailsModalComponent, typeof i162.SafeHtmlPipe, typeof i163.QuestionnaireListComponent, typeof i164.ChangeHistoryComponent, typeof i165.CamelToTitlePipe, typeof i166.VersionHistoryListComponent, typeof i167.VersionHistoryCompareComponent, typeof i168.VersionHistoryDetailComponent, typeof i169.VersionHistoryRestoreConfirmComponent, typeof i170.NewVersionHistoryDetailComponent], [typeof i171.CommonModule, typeof i172.FormsModule, typeof i172.ReactiveFormsModule, typeof i173.NoopAnimationsModule, typeof i174.MatIconModule, typeof i175.MatMenuModule, typeof i176.MatButtonModule, typeof i177.MatFormFieldModule, typeof i178.MatSelectModule, typeof i179.MatOptionModule, typeof i180.MatCheckboxModule, typeof i181.MatRadioModule, typeof i182.MatSlideToggleModule, typeof i183.MatDatepickerModule, typeof i179.MatNativeDateModule, typeof i184.MatProgressSpinnerModule, typeof i185.MatTooltipModule, typeof i186.MatDialogModule, typeof i187.MatTableModule, typeof i188.MatInputModule, typeof i189.OverlayModule, typeof i190.PortalModule, typeof i191.ScrollingModule, typeof i192.NgxTypedJsModule, typeof i193.DndModule, typeof i194.MonacoEditorModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.ViewportSelectorComponent, typeof i8.DialogComponent, typeof i9.DynamicTableComponent, typeof i10.DynamicCellTemplateDirective, typeof i10.DynamicHeaderTemplateDirective, typeof i11.DynamicCellContainerDirective, typeof i12.PaginationComponent, typeof i13.ActionMenuButtonComponent, typeof i14.OtherButtonComponent, typeof i15.DynamicFilterComponent, typeof i16.DaterangepickerDirective, typeof i17.DaterangepickerComponent, typeof i18.ColumnVisibilityComponent, typeof i19.TableActionToolbarComponent, typeof i20.MetricsCardComponent, typeof i22.ChartCardComponent, typeof i23.ProgressTextCardComponent, typeof i24.DashboardHeaderComponent, typeof i25.WorkspaceSelectorComponent, typeof i26.CoverageModuleCardComponent, typeof i27.TestDistributionCardComponent, typeof i28.FailedTestCasesCardComponent, typeof i29.DynamicSelectFieldComponent, typeof i30.AddPrerequisiteCasesSectionComponent, typeof i31.SelectedFiltersComponent, typeof i32.InsightCardComponent, typeof i33.BadgeComponent, typeof i34.DropdownButtonComponent, typeof i35.HeatErrorMapCellComponent, typeof i36.EmptyStateComponent, typeof i37.TableTemplateComponent, typeof i38.ModularTableTemplateComponent, typeof i39.FolderSidebarComponent, typeof i41.NewFolderDialogComponent, typeof i42.DeleteFolderDialogComponent, typeof i40.MoveToFolderDialogComponent, typeof i43.RowDragDirective, typeof i44.FolderDropDirective, typeof i45.FolderDragDirective, typeof i46.NamePromptModalComponent, typeof i47.FullTableLoaderComponent, typeof i48.TableDataLoaderComponent, typeof i49.BasicStepComponent, typeof i50.StepRendererComponent, typeof i51.StepGroupComponent, typeof i52.LoopStepComponent, typeof i53.ConditionStepComponent, typeof i54.ConditionDebugStepComponent, typeof i55.ConditionBranchEditorComponent, typeof i56.FailedStepComponent, typeof i54.ConditionDebugStepComponent, typeof i57.UpdatedFailedStepComponent, typeof i58.ViewMoreFailedStepButtonComponent, typeof i59.SelfHealAnalysisComponent, typeof i60.AIAgentStepComponent, typeof i61.AIActionStepComponent, typeof i62.ApiStepComponent, typeof i63.FileDownloadStepComponent, typeof i64.DocumentVerificationStepComponent, typeof i65.LiveExecutionStepComponent, typeof i66.AiLogsWithReasoningComponent, typeof i67.JumpToStepModalComponent, typeof i68.BreakpointsModalComponent, typeof i69.RecordingBannerComponent, typeof i70.ReviewRecordedStepsModalComponent, typeof i71.MainStepCollapseComponent, typeof i72.VisualComparisonComponent, typeof i73.SimulatorComponent, typeof i74.ConsoleAlertComponent, typeof i75.AiDebugAlertComponent, typeof i76.NetworkRequestComponent, typeof i77.RunHistoryCardComponent, typeof i78.AiPromptCardComponent, typeof i79.VisualDifferenceModalComponent, typeof i80.ConfigurationCardComponent, typeof i81.CompareRunsComponent, typeof i82.ViewCompareButtonComponent, typeof i83.TestCaseLinkCellComponent, typeof i84.IterationsLoopComponent, typeof i85.FailedStepCardComponent, typeof i86.CustomInputComponent, typeof i87.MixedVariableInputComponent, typeof i88.CustomTextareaComponent, typeof i89.CodeEditorComponent, typeof i90.CustomToggleComponent, typeof i91.FileUploadComponent, typeof i92.AiReasoningComponent, typeof i93.ExecutionResultModalComponent, typeof i94.SessionChangesModalComponent, typeof i95.ErrorModalComponent, typeof i96.SessionRestorationDialogComponent, typeof i97.CaptureVideoDialogComponent, typeof i98.SubStepsConfirmationDialogComponent, typeof i99.NewGlobalVariableDialogComponent, typeof i100.NewEnvironmentDialogComponent, typeof i101.NewEnvironmentVariableDialogComponent, typeof i102.NewDbConfigDialogComponent, typeof i103.NewTestDataProfileDialogComponent, typeof i104.ManageColumnsDialogComponent, typeof i105.AuditLogDrawerComponent, typeof i106.AuditLogEntryCardComponent, typeof i107.AssignEnvironmentsDialogComponent, typeof i108.PermissionToggleComponent, typeof i109.ExportCodeModalComponent, typeof i110.ProgressIndicatorComponent, typeof i111.StepProgressCardComponent, typeof i112.StepStatusCardComponent, typeof i113.DbVerificationStepComponent, typeof i114.DbQueryExecutionItemComponent, typeof i115.TestCaseNormalStepComponent, typeof i116.TestCaseLoopStepComponent, typeof i117.TestCaseConditionStepComponent, typeof i118.TestCaseStepGroupComponent, typeof i119.TestCaseDetailsRendererComponent, typeof i120.TestCaseApiStepComponent, typeof i121.TestCaseDatabaseStepComponent, typeof i122.TestCaseAiAgentStepComponent, typeof i124.TestCaseUploadStepComponent, typeof i125.TestCaseScreenshotStepComponent, typeof i126.TestCaseScrollStepComponent, typeof i127.TestCaseVerifyUrlStepComponent, typeof i128.TestCaseRestoreSessionStepComponent, typeof i129.TestCaseCustomCodeStepComponent, typeof i130.CustomEditStepComponent, typeof i131.ItemListComponent, typeof i132.TestDataModalComponent, typeof i133.CreateStepGroupComponent, typeof i134.DeleteStepsComponent, typeof i135.RunExecutionAlertComponent, typeof i136.ApiEditStepComponent, typeof i137.LiveConversationComponent, typeof i138.StepBuilderActionComponent, typeof i139.StepBuilderLoopComponent, typeof i140.ElementPopupComponent, typeof i141.ElementFormComponent, typeof i142.StepBuilderConditionComponent, typeof i143.StepBuilderDatabaseComponent, typeof i144.StepBuilderAiAgentComponent, typeof i89.CodeEditorComponent, typeof i145.StepBuilderCustomCodeComponent, typeof i146.StepBuilderRecordStepComponent, typeof i147.StepBuilderDocumentGenerationTemplateStepComponent, typeof i148.ElementListComponent, typeof i149.StepBuilderDocumentComponent, typeof i150.DetailSidePanelComponent, typeof i151.DetailDrawerComponent, typeof i152.DetailDrawerTabComponent, typeof i153.DetailDrawerTabContentDirective, typeof i154.TestCaseDetailsComponent, typeof i155.TestCaseDetailsEditComponent, typeof i156.ApiMockingCardComponent, typeof i157.StepBuilderGroupComponent, typeof i158.StepDetailsDrawerComponent, typeof i159.TemplateVariablesFormComponent, typeof i160.AdvancedVariablesFormComponent, typeof i163.QuestionnaireListComponent, typeof i164.ChangeHistoryComponent, typeof i166.VersionHistoryListComponent, typeof i167.VersionHistoryCompareComponent, typeof i168.VersionHistoryDetailComponent, typeof i169.VersionHistoryRestoreConfirmComponent, typeof i170.NewVersionHistoryDetailComponent]>;
|
|
201
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.ViewportSelectorComponent, typeof i8.DialogComponent, typeof i9.DynamicTableComponent, typeof i10.DynamicCellTemplateDirective, typeof i10.DynamicHeaderTemplateDirective, typeof i11.DynamicCellContainerDirective, typeof i12.PaginationComponent, typeof i13.ActionMenuButtonComponent, typeof i14.OtherButtonComponent, typeof i15.DynamicFilterComponent, typeof i16.DaterangepickerDirective, typeof i17.DaterangepickerComponent, typeof i18.ColumnVisibilityComponent, typeof i19.TableActionToolbarComponent, typeof i20.MetricsCardComponent, typeof i21.MetricsBlockComponent, typeof i22.ChartCardComponent, typeof i23.ProgressTextCardComponent, typeof i24.DashboardHeaderComponent, typeof i25.WorkspaceSelectorComponent, typeof i26.CoverageModuleCardComponent, typeof i27.TestDistributionCardComponent, typeof i28.FailedTestCasesCardComponent, typeof i29.DynamicSelectFieldComponent, typeof i30.AddPrerequisiteCasesSectionComponent, typeof i31.SelectedFiltersComponent, typeof i32.InsightCardComponent, typeof i33.BadgeComponent, typeof i34.DropdownButtonComponent, typeof i35.HeatErrorMapCellComponent, typeof i36.EmptyStateComponent, typeof i37.TableTemplateComponent, typeof i38.ModularTableTemplateComponent, typeof i39.FolderSidebarComponent, typeof i40.MoveToFolderDialogComponent, typeof i41.NewFolderDialogComponent, typeof i42.DeleteFolderDialogComponent, typeof i43.RowDragDirective, typeof i44.FolderDropDirective, typeof i45.FolderDragDirective, typeof i46.NamePromptModalComponent, typeof i47.FullTableLoaderComponent, typeof i48.TableDataLoaderComponent, typeof i49.BasicStepComponent, typeof i50.StepRendererComponent, typeof i51.StepGroupComponent, typeof i52.LoopStepComponent, typeof i53.ConditionStepComponent, typeof i54.ConditionDebugStepComponent, typeof i55.ConditionBranchEditorComponent, typeof i56.FailedStepComponent, typeof i57.UpdatedFailedStepComponent, typeof i58.ViewMoreFailedStepButtonComponent, typeof i59.SelfHealAnalysisComponent, typeof i60.AIAgentStepComponent, typeof i61.AIActionStepComponent, typeof i62.ApiStepComponent, typeof i63.FileDownloadStepComponent, typeof i64.DocumentVerificationStepComponent, typeof i65.LiveExecutionStepComponent, typeof i66.AiLogsWithReasoningComponent, typeof i67.JumpToStepModalComponent, typeof i68.BreakpointsModalComponent, typeof i69.RecordingBannerComponent, typeof i70.ReviewRecordedStepsModalComponent, typeof i71.MainStepCollapseComponent, typeof i72.VisualComparisonComponent, typeof i73.SimulatorComponent, typeof i74.ConsoleAlertComponent, typeof i75.AiDebugAlertComponent, typeof i76.NetworkRequestComponent, typeof i77.RunHistoryCardComponent, typeof i78.AiPromptCardComponent, typeof i79.VisualDifferenceModalComponent, typeof i80.ConfigurationCardComponent, typeof i81.CompareRunsComponent, typeof i82.ViewCompareButtonComponent, typeof i83.TestCaseLinkCellComponent, typeof i84.IterationsLoopComponent, typeof i85.FailedStepCardComponent, typeof i86.CustomInputComponent, typeof i87.MixedVariableInputComponent, typeof i88.CustomTextareaComponent, typeof i89.CodeEditorComponent, typeof i90.CustomToggleComponent, typeof i91.FileUploadComponent, typeof i92.AiReasoningComponent, typeof i93.ExecutionResultModalComponent, typeof i94.SessionChangesModalComponent, typeof i95.ErrorModalComponent, typeof i96.SessionRestorationDialogComponent, typeof i97.CaptureVideoDialogComponent, typeof i98.SubStepsConfirmationDialogComponent, typeof i99.NewGlobalVariableDialogComponent, typeof i100.NewEnvironmentDialogComponent, typeof i101.NewEnvironmentVariableDialogComponent, typeof i102.NewDbConfigDialogComponent, typeof i103.NewTestDataProfileDialogComponent, typeof i104.ManageColumnsDialogComponent, typeof i105.AuditLogDrawerComponent, typeof i106.AuditLogEntryCardComponent, typeof i107.AssignEnvironmentsDialogComponent, typeof i108.PermissionToggleComponent, typeof i109.ExportCodeModalComponent, typeof i110.ProgressIndicatorComponent, typeof i111.StepProgressCardComponent, typeof i112.StepStatusCardComponent, typeof i113.DbVerificationStepComponent, typeof i114.DbQueryExecutionItemComponent, typeof i115.TestCaseNormalStepComponent, typeof i116.TestCaseLoopStepComponent, typeof i117.TestCaseConditionStepComponent, typeof i118.TestCaseStepGroupComponent, typeof i119.TestCaseDetailsRendererComponent, typeof i120.TestCaseApiStepComponent, typeof i121.TestCaseDatabaseStepComponent, typeof i122.TestCaseAiAgentStepComponent, typeof i123.TestCaseAiVerifyStepComponent, typeof i124.TestCaseUploadStepComponent, typeof i125.TestCaseScreenshotStepComponent, typeof i126.TestCaseScrollStepComponent, typeof i127.TestCaseVerifyUrlStepComponent, typeof i128.TestCaseRestoreSessionStepComponent, typeof i129.TestCaseCustomCodeStepComponent, typeof i130.CustomEditStepComponent, typeof i131.ItemListComponent, typeof i132.TestDataModalComponent, typeof i133.CreateStepGroupComponent, typeof i134.DeleteStepsComponent, typeof i135.RunExecutionAlertComponent, typeof i136.ApiEditStepComponent, typeof i137.GraphQLOperationPickerComponent, typeof i138.LiveConversationComponent, typeof i139.StepBuilderActionComponent, typeof i140.StepBuilderLoopComponent, typeof i141.ElementPopupComponent, typeof i142.ElementFormComponent, typeof i143.StepBuilderConditionComponent, typeof i144.StepBuilderDatabaseComponent, typeof i145.StepBuilderAiAgentComponent, typeof i89.CodeEditorComponent, typeof i146.StepBuilderCustomCodeComponent, typeof i147.StepBuilderRecordStepComponent, typeof i148.StepBuilderDocumentGenerationTemplateStepComponent, typeof i149.ElementListComponent, typeof i150.StepBuilderDocumentComponent, typeof i151.DetailSidePanelComponent, typeof i152.DetailDrawerComponent, typeof i153.DetailDrawerTabComponent, typeof i154.DetailDrawerTabContentDirective, typeof i155.TestCaseDetailsComponent, typeof i156.TestCaseDetailsEditComponent, typeof i157.ApiMockingCardComponent, typeof i158.StepBuilderGroupComponent, typeof i159.StepDetailsDrawerComponent, typeof i160.TemplateVariablesFormComponent, typeof i161.AdvancedVariablesFormComponent, typeof i162.StepDetailsModalComponent, typeof i163.SafeHtmlPipe, typeof i164.QuestionnaireListComponent, typeof i165.ChangeHistoryComponent, typeof i166.CamelToTitlePipe, typeof i167.VersionHistoryListComponent, typeof i168.VersionHistoryCompareComponent, typeof i169.VersionHistoryDetailComponent, typeof i170.VersionHistoryRestoreConfirmComponent, typeof i171.NewVersionHistoryDetailComponent], [typeof i172.CommonModule, typeof i173.FormsModule, typeof i173.ReactiveFormsModule, typeof i174.NoopAnimationsModule, typeof i175.MatIconModule, typeof i176.MatMenuModule, typeof i177.MatButtonModule, typeof i178.MatFormFieldModule, typeof i179.MatSelectModule, typeof i180.MatOptionModule, typeof i181.MatCheckboxModule, typeof i182.MatRadioModule, typeof i183.MatSlideToggleModule, typeof i184.MatDatepickerModule, typeof i180.MatNativeDateModule, typeof i185.MatProgressSpinnerModule, typeof i186.MatTooltipModule, typeof i187.MatDialogModule, typeof i188.MatTableModule, typeof i189.MatInputModule, typeof i190.OverlayModule, typeof i191.PortalModule, typeof i192.ScrollingModule, typeof i193.NgxTypedJsModule, typeof i194.DndModule, typeof i195.MonacoEditorModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.ViewportSelectorComponent, typeof i8.DialogComponent, typeof i9.DynamicTableComponent, typeof i10.DynamicCellTemplateDirective, typeof i10.DynamicHeaderTemplateDirective, typeof i11.DynamicCellContainerDirective, typeof i12.PaginationComponent, typeof i13.ActionMenuButtonComponent, typeof i14.OtherButtonComponent, typeof i15.DynamicFilterComponent, typeof i16.DaterangepickerDirective, typeof i17.DaterangepickerComponent, typeof i18.ColumnVisibilityComponent, typeof i19.TableActionToolbarComponent, typeof i20.MetricsCardComponent, typeof i22.ChartCardComponent, typeof i23.ProgressTextCardComponent, typeof i24.DashboardHeaderComponent, typeof i25.WorkspaceSelectorComponent, typeof i26.CoverageModuleCardComponent, typeof i27.TestDistributionCardComponent, typeof i28.FailedTestCasesCardComponent, typeof i29.DynamicSelectFieldComponent, typeof i30.AddPrerequisiteCasesSectionComponent, typeof i31.SelectedFiltersComponent, typeof i32.InsightCardComponent, typeof i33.BadgeComponent, typeof i34.DropdownButtonComponent, typeof i35.HeatErrorMapCellComponent, typeof i36.EmptyStateComponent, typeof i37.TableTemplateComponent, typeof i38.ModularTableTemplateComponent, typeof i39.FolderSidebarComponent, typeof i41.NewFolderDialogComponent, typeof i42.DeleteFolderDialogComponent, typeof i40.MoveToFolderDialogComponent, typeof i43.RowDragDirective, typeof i44.FolderDropDirective, typeof i45.FolderDragDirective, typeof i46.NamePromptModalComponent, typeof i47.FullTableLoaderComponent, typeof i48.TableDataLoaderComponent, typeof i49.BasicStepComponent, typeof i50.StepRendererComponent, typeof i51.StepGroupComponent, typeof i52.LoopStepComponent, typeof i53.ConditionStepComponent, typeof i54.ConditionDebugStepComponent, typeof i55.ConditionBranchEditorComponent, typeof i56.FailedStepComponent, typeof i54.ConditionDebugStepComponent, typeof i57.UpdatedFailedStepComponent, typeof i58.ViewMoreFailedStepButtonComponent, typeof i59.SelfHealAnalysisComponent, typeof i60.AIAgentStepComponent, typeof i61.AIActionStepComponent, typeof i62.ApiStepComponent, typeof i63.FileDownloadStepComponent, typeof i64.DocumentVerificationStepComponent, typeof i65.LiveExecutionStepComponent, typeof i66.AiLogsWithReasoningComponent, typeof i67.JumpToStepModalComponent, typeof i68.BreakpointsModalComponent, typeof i69.RecordingBannerComponent, typeof i70.ReviewRecordedStepsModalComponent, typeof i71.MainStepCollapseComponent, typeof i72.VisualComparisonComponent, typeof i73.SimulatorComponent, typeof i74.ConsoleAlertComponent, typeof i75.AiDebugAlertComponent, typeof i76.NetworkRequestComponent, typeof i77.RunHistoryCardComponent, typeof i78.AiPromptCardComponent, typeof i79.VisualDifferenceModalComponent, typeof i80.ConfigurationCardComponent, typeof i81.CompareRunsComponent, typeof i82.ViewCompareButtonComponent, typeof i83.TestCaseLinkCellComponent, typeof i84.IterationsLoopComponent, typeof i85.FailedStepCardComponent, typeof i86.CustomInputComponent, typeof i87.MixedVariableInputComponent, typeof i88.CustomTextareaComponent, typeof i89.CodeEditorComponent, typeof i90.CustomToggleComponent, typeof i91.FileUploadComponent, typeof i92.AiReasoningComponent, typeof i93.ExecutionResultModalComponent, typeof i94.SessionChangesModalComponent, typeof i95.ErrorModalComponent, typeof i96.SessionRestorationDialogComponent, typeof i97.CaptureVideoDialogComponent, typeof i98.SubStepsConfirmationDialogComponent, typeof i99.NewGlobalVariableDialogComponent, typeof i100.NewEnvironmentDialogComponent, typeof i101.NewEnvironmentVariableDialogComponent, typeof i102.NewDbConfigDialogComponent, typeof i103.NewTestDataProfileDialogComponent, typeof i104.ManageColumnsDialogComponent, typeof i105.AuditLogDrawerComponent, typeof i106.AuditLogEntryCardComponent, typeof i107.AssignEnvironmentsDialogComponent, typeof i108.PermissionToggleComponent, typeof i109.ExportCodeModalComponent, typeof i110.ProgressIndicatorComponent, typeof i111.StepProgressCardComponent, typeof i112.StepStatusCardComponent, typeof i113.DbVerificationStepComponent, typeof i114.DbQueryExecutionItemComponent, typeof i115.TestCaseNormalStepComponent, typeof i116.TestCaseLoopStepComponent, typeof i117.TestCaseConditionStepComponent, typeof i118.TestCaseStepGroupComponent, typeof i119.TestCaseDetailsRendererComponent, typeof i120.TestCaseApiStepComponent, typeof i121.TestCaseDatabaseStepComponent, typeof i122.TestCaseAiAgentStepComponent, typeof i124.TestCaseUploadStepComponent, typeof i125.TestCaseScreenshotStepComponent, typeof i126.TestCaseScrollStepComponent, typeof i127.TestCaseVerifyUrlStepComponent, typeof i128.TestCaseRestoreSessionStepComponent, typeof i129.TestCaseCustomCodeStepComponent, typeof i130.CustomEditStepComponent, typeof i131.ItemListComponent, typeof i132.TestDataModalComponent, typeof i133.CreateStepGroupComponent, typeof i134.DeleteStepsComponent, typeof i135.RunExecutionAlertComponent, typeof i136.ApiEditStepComponent, typeof i137.GraphQLOperationPickerComponent, typeof i138.LiveConversationComponent, typeof i139.StepBuilderActionComponent, typeof i140.StepBuilderLoopComponent, typeof i141.ElementPopupComponent, typeof i142.ElementFormComponent, typeof i143.StepBuilderConditionComponent, typeof i144.StepBuilderDatabaseComponent, typeof i145.StepBuilderAiAgentComponent, typeof i89.CodeEditorComponent, typeof i146.StepBuilderCustomCodeComponent, typeof i147.StepBuilderRecordStepComponent, typeof i148.StepBuilderDocumentGenerationTemplateStepComponent, typeof i149.ElementListComponent, typeof i150.StepBuilderDocumentComponent, typeof i151.DetailSidePanelComponent, typeof i152.DetailDrawerComponent, typeof i153.DetailDrawerTabComponent, typeof i154.DetailDrawerTabContentDirective, typeof i155.TestCaseDetailsComponent, typeof i156.TestCaseDetailsEditComponent, typeof i157.ApiMockingCardComponent, typeof i158.StepBuilderGroupComponent, typeof i159.StepDetailsDrawerComponent, typeof i160.TemplateVariablesFormComponent, typeof i161.AdvancedVariablesFormComponent, typeof i164.QuestionnaireListComponent, typeof i165.ChangeHistoryComponent, typeof i167.VersionHistoryListComponent, typeof i168.VersionHistoryCompareComponent, typeof i169.VersionHistoryDetailComponent, typeof i170.VersionHistoryRestoreConfirmComponent, typeof i171.NewVersionHistoryDetailComponent]>;
|
|
201
202
|
static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
|
|
202
203
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -166,6 +166,7 @@ export * from './lib/test-case-details/create-step-group/create-step-group.compo
|
|
|
166
166
|
export * from './lib/test-case-details/delete-steps/delete-steps.component';
|
|
167
167
|
export * from './lib/test-case-details/run-execution-alert/run-execution-alert.component';
|
|
168
168
|
export * from './lib/test-case-details/api-edit-step/api-edit-step.component';
|
|
169
|
+
export * from './lib/test-case-details/api-edit-step/graphql-operation-picker/graphql-operation-picker.component';
|
|
169
170
|
export * from './lib/test-case-details/test-case-step.models';
|
|
170
171
|
export * from './lib/live-conversation/live-conversation.component';
|
|
171
172
|
export * from './lib/step-builder/step-builder-action/step-builder-action.component';
|