@cqa-lib/cqa-ui 1.1.528 → 1.1.530
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/audit-log-drawer/audit-log-drawer.component.mjs +146 -0
- package/esm2020/lib/audit-log-drawer/audit-log-drawer.models.mjs +2 -0
- package/esm2020/lib/audit-log-drawer/audit-log-drawer.service.mjs +84 -0
- package/esm2020/lib/audit-log-drawer/audit-log-entry-card.component.mjs +30 -0
- package/esm2020/lib/dialog/dialog.component.mjs +15 -3
- package/esm2020/lib/dialog/dialog.models.mjs +1 -1
- package/esm2020/lib/manage-columns-dialog/manage-columns-dialog.component.mjs +133 -0
- package/esm2020/lib/manage-columns-dialog/manage-columns-dialog.models.mjs +2 -0
- package/esm2020/lib/templates/modular-table-template/dialogs/move-to-folder-dialog.component.mjs +38 -13
- package/esm2020/lib/templates/modular-table-template/dialogs/new-folder-dialog.component.mjs +79 -87
- package/esm2020/lib/templates/modular-table-template/folder-sidebar/folder-sidebar.component.mjs +21 -4
- package/esm2020/lib/templates/modular-table-template/modular-table-template.component.mjs +3 -1
- package/esm2020/lib/templates/modular-table-template/modular-table-template.models.mjs +3 -1
- package/esm2020/lib/ui-kit.module.mjs +16 -1
- package/esm2020/public-api.mjs +7 -1
- package/fesm2015/cqa-lib-cqa-ui.mjs +536 -105
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +531 -103
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/audit-log-drawer/audit-log-drawer.component.d.ts +34 -0
- package/lib/audit-log-drawer/audit-log-drawer.models.d.ts +43 -0
- package/lib/audit-log-drawer/audit-log-drawer.service.d.ts +13 -0
- package/lib/audit-log-drawer/audit-log-entry-card.component.d.ts +10 -0
- package/lib/dialog/dialog.component.d.ts +1 -0
- package/lib/dialog/dialog.models.d.ts +4 -0
- package/lib/manage-columns-dialog/manage-columns-dialog.component.d.ts +32 -0
- package/lib/manage-columns-dialog/manage-columns-dialog.models.d.ts +11 -0
- package/lib/templates/modular-table-template/dialogs/move-to-folder-dialog.component.d.ts +12 -2
- package/lib/templates/modular-table-template/dialogs/new-folder-dialog.component.d.ts +23 -30
- package/lib/templates/modular-table-template/folder-sidebar/folder-sidebar.component.d.ts +4 -0
- package/lib/templates/modular-table-template/modular-table-template.models.d.ts +2 -0
- package/lib/ui-kit.module.d.ts +92 -89
- package/package.json +1 -1
- package/public-api.d.ts +6 -0
- package/styles.css +1 -1
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { DynamicSelectFieldConfig } from '../dynamic-select/dynamic-select-field.component';
|
|
4
|
+
import { AuditDateRange, AuditEntry, AuditFilterOption, AuditLogFilterState } from './audit-log-drawer.models';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class AuditLogDrawerComponent implements OnInit, OnDestroy {
|
|
7
|
+
entries: AuditEntry[];
|
|
8
|
+
entityTypeOptions: AuditFilterOption[];
|
|
9
|
+
envOptions: AuditFilterOption[];
|
|
10
|
+
userOptions: AuditFilterOption[];
|
|
11
|
+
defaultRange: AuditDateRange;
|
|
12
|
+
isLoading: boolean;
|
|
13
|
+
filterChange: EventEmitter<AuditLogFilterState>;
|
|
14
|
+
close: EventEmitter<void>;
|
|
15
|
+
readonly ALL = "__all__";
|
|
16
|
+
readonly filtersForm: FormGroup;
|
|
17
|
+
entityConfig: DynamicSelectFieldConfig;
|
|
18
|
+
envConfig: DynamicSelectFieldConfig;
|
|
19
|
+
userConfig: DynamicSelectFieldConfig;
|
|
20
|
+
rangeConfig: DynamicSelectFieldConfig;
|
|
21
|
+
trackById: (_: number, e: AuditEntry) => string;
|
|
22
|
+
private readonly destroy$;
|
|
23
|
+
private readonly rangeMs;
|
|
24
|
+
ngOnInit(): void;
|
|
25
|
+
ngOnDestroy(): void;
|
|
26
|
+
get filteredEntries(): AuditEntry[];
|
|
27
|
+
onClose(): void;
|
|
28
|
+
private entryMatchesEnv;
|
|
29
|
+
private parseTs;
|
|
30
|
+
private currentFilterState;
|
|
31
|
+
private buildSelectConfig;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuditLogDrawerComponent, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AuditLogDrawerComponent, "cqa-audit-log-drawer", never, { "entries": "entries"; "entityTypeOptions": "entityTypeOptions"; "envOptions": "envOptions"; "userOptions": "userOptions"; "defaultRange": "defaultRange"; "isLoading": "isLoading"; }, { "filterChange": "filterChange"; "close": "close"; }, never, never>;
|
|
34
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { Observable, Subject } from 'rxjs';
|
|
2
|
+
export declare type AuditEntityType = 'Environment Variable' | 'Test Data Profile' | 'Global Data';
|
|
3
|
+
export declare type AuditDateRange = '24h' | '7d' | '30d' | 'all';
|
|
4
|
+
export interface AuditEntry {
|
|
5
|
+
id: string;
|
|
6
|
+
ts: string;
|
|
7
|
+
user: string;
|
|
8
|
+
entityType: AuditEntityType;
|
|
9
|
+
entityName: string;
|
|
10
|
+
change: string;
|
|
11
|
+
before?: string | null;
|
|
12
|
+
after?: string | null;
|
|
13
|
+
}
|
|
14
|
+
export interface AuditFilterOption {
|
|
15
|
+
value: string;
|
|
16
|
+
label: string;
|
|
17
|
+
}
|
|
18
|
+
export interface AuditLogDrawerInputs {
|
|
19
|
+
entries: AuditEntry[];
|
|
20
|
+
entityTypeOptions?: AuditFilterOption[];
|
|
21
|
+
envOptions?: AuditFilterOption[];
|
|
22
|
+
userOptions?: AuditFilterOption[];
|
|
23
|
+
defaultRange?: AuditDateRange;
|
|
24
|
+
isLoading?: boolean;
|
|
25
|
+
}
|
|
26
|
+
export interface AuditLogFilterState {
|
|
27
|
+
entityType: string;
|
|
28
|
+
env: string;
|
|
29
|
+
user: string;
|
|
30
|
+
range: AuditDateRange;
|
|
31
|
+
}
|
|
32
|
+
export interface AuditLogDrawerRef {
|
|
33
|
+
filterChange$: Observable<AuditLogFilterState>;
|
|
34
|
+
afterClosed$: Observable<void>;
|
|
35
|
+
close(): void;
|
|
36
|
+
updateEntries(entries: AuditEntry[]): void;
|
|
37
|
+
updateLoading(isLoading: boolean): void;
|
|
38
|
+
}
|
|
39
|
+
export declare const ALL_FILTER_VALUE = "__all__";
|
|
40
|
+
export interface AuditLogDrawerInternalRef extends AuditLogDrawerRef {
|
|
41
|
+
readonly filterChange: Subject<AuditLogFilterState>;
|
|
42
|
+
readonly afterClosed: Subject<void>;
|
|
43
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { Overlay } from '@angular/cdk/overlay';
|
|
3
|
+
import { AuditLogDrawerInputs, AuditLogDrawerRef } from './audit-log-drawer.models';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AuditLogDrawerService {
|
|
6
|
+
private readonly overlay;
|
|
7
|
+
private readonly injector;
|
|
8
|
+
private currentOverlayRef;
|
|
9
|
+
constructor(overlay: Overlay, injector: Injector);
|
|
10
|
+
open(inputs: AuditLogDrawerInputs): AuditLogDrawerRef;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuditLogDrawerService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuditLogDrawerService>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { AuditEntry } from './audit-log-drawer.models';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AuditLogEntryCardComponent {
|
|
4
|
+
entry: AuditEntry;
|
|
5
|
+
get userShortName(): string;
|
|
6
|
+
get etypeClass(): string;
|
|
7
|
+
get hasDiff(): boolean;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuditLogEntryCardComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AuditLogEntryCardComponent, "cqa-audit-log-entry-card", never, { "entry": "entry"; }, {}, never, never>;
|
|
10
|
+
}
|
|
@@ -19,6 +19,7 @@ export declare class DialogComponent<TResult = unknown> {
|
|
|
19
19
|
get panelClassList(): string[];
|
|
20
20
|
get panelStyles(): Record<string, string | undefined>;
|
|
21
21
|
buttonVariant(button: DialogButtonConfig<TResult>): ButtonVariant;
|
|
22
|
+
isButtonDisabled(button: DialogButtonConfig<TResult>): boolean;
|
|
22
23
|
buttonHostClasses(button: DialogButtonConfig<TResult>): string[];
|
|
23
24
|
private mapAlignmentToClass;
|
|
24
25
|
private markContentAttached;
|
|
@@ -7,6 +7,10 @@ export interface DialogButtonConfig<TResult = unknown> {
|
|
|
7
7
|
role?: DialogButtonRole;
|
|
8
8
|
handler?: (dialogRef: DialogRef<TResult>) => TResult | void | Promise<TResult | void>;
|
|
9
9
|
closeOnClick?: boolean;
|
|
10
|
+
/** Static or dynamic disabled state. When a function, it receives the dialog ref
|
|
11
|
+
* (so consumers can read the rendered component instance via `getComponentInstance`)
|
|
12
|
+
* and is re-evaluated on every change-detection pass. */
|
|
13
|
+
disabled?: boolean | ((dialogRef: DialogRef<TResult>) => boolean);
|
|
10
14
|
}
|
|
11
15
|
export declare type DialogButtonAlignment = 'left' | 'right' | 'center';
|
|
12
16
|
export interface TemplateDialogContent<TContext = any> {
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DndDropEvent } from 'ngx-drag-drop';
|
|
3
|
+
import { ManageColumnsDialogValue } from './manage-columns-dialog.models';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
interface ManageColumnsItem {
|
|
6
|
+
uid: number;
|
|
7
|
+
originalName: string | null;
|
|
8
|
+
name: string;
|
|
9
|
+
}
|
|
10
|
+
export declare class ManageColumnsDialogComponent implements OnInit {
|
|
11
|
+
columns: string[];
|
|
12
|
+
lockedColumns: string[];
|
|
13
|
+
items: ManageColumnsItem[];
|
|
14
|
+
newColName: string;
|
|
15
|
+
columnsError: string | null;
|
|
16
|
+
trackByUid: (_: number, item: ManageColumnsItem) => number;
|
|
17
|
+
private nextUid;
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
isLocked(item: ManageColumnsItem): boolean;
|
|
20
|
+
onDndDrop(event: DndDropEvent): void;
|
|
21
|
+
onMove(index: number, dir: -1 | 1): void;
|
|
22
|
+
onRename(index: number, value: string): void;
|
|
23
|
+
onRemove(index: number): void;
|
|
24
|
+
onNewColNameChange(value: string): void;
|
|
25
|
+
onAdd(): void;
|
|
26
|
+
get canAdd(): boolean;
|
|
27
|
+
getValue(): ManageColumnsDialogValue | null;
|
|
28
|
+
private itemsHasName;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ManageColumnsDialogComponent, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ManageColumnsDialogComponent, "cqa-manage-columns-dialog", never, { "columns": "columns"; "lockedColumns": "lockedColumns"; }, {}, never, never>;
|
|
31
|
+
}
|
|
32
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export interface ManageColumnsDialogColumn {
|
|
2
|
+
originalName: string | null;
|
|
3
|
+
name: string;
|
|
4
|
+
}
|
|
5
|
+
export interface ManageColumnsDialogValue {
|
|
6
|
+
columns: ManageColumnsDialogColumn[];
|
|
7
|
+
}
|
|
8
|
+
export interface ManageColumnsDialogInputs {
|
|
9
|
+
columns?: string[];
|
|
10
|
+
lockedColumns?: string[];
|
|
11
|
+
}
|
|
@@ -34,8 +34,17 @@ export declare class MoveToFolderDialogComponent implements OnInit, OnChanges {
|
|
|
34
34
|
currentFolderId: number | null;
|
|
35
35
|
/** Controls which folder is visually selected. Two-way-bind friendly via `pickedFolderIdChange`. */
|
|
36
36
|
pickedFolderId: number | null;
|
|
37
|
-
/** Folder ids to expand by default. If not provided, ancestors of `currentFolderId`
|
|
37
|
+
/** Folder ids to expand by default. If not provided, ancestors of `currentFolderId` (or
|
|
38
|
+
* `pickedFolderId`, when no current context exists) are expanded. */
|
|
38
39
|
initialExpandedIds?: number[];
|
|
40
|
+
/** Disables the top-level "Unorganised / no folder" row. Decoupled from `currentFolderId`
|
|
41
|
+
* so consumers that reuse this picker for non-move flows (e.g. parent-folder selection
|
|
42
|
+
* inside the New Folder dialog) can keep the root option clickable. The move flows wire
|
|
43
|
+
* this to `currentFolderId == null`. */
|
|
44
|
+
rootDisabled: boolean;
|
|
45
|
+
/** CSS height for the scrollable picker container. Lets embedders shrink the picker when
|
|
46
|
+
* it shares space with other fields (e.g. inside the New Folder dialog). */
|
|
47
|
+
pickerHeight: string;
|
|
39
48
|
/** Fires whenever the user picks a destination. */
|
|
40
49
|
folderPicked: EventEmitter<number>;
|
|
41
50
|
/** Companion output for banana-in-the-box `[(pickedFolderId)]` binding. */
|
|
@@ -48,10 +57,11 @@ export declare class MoveToFolderDialogComponent implements OnInit, OnChanges {
|
|
|
48
57
|
private collectAncestors;
|
|
49
58
|
get flatRows(): FlatFolderRow[];
|
|
50
59
|
isPicked(id: number | null): boolean;
|
|
60
|
+
get isUnorganisedDisabled(): boolean;
|
|
51
61
|
pick(id: number | null): void;
|
|
52
62
|
toggleExpanded(id: number, event: Event): void;
|
|
53
63
|
trackById: (_: number, row: FlatFolderRow) => number;
|
|
54
64
|
static ɵfac: i0.ɵɵFactoryDeclaration<MoveToFolderDialogComponent, never>;
|
|
55
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MoveToFolderDialogComponent, "cqa-move-to-folder-dialog", never, { "folders": "folders"; "labels": "labels"; "currentFolderId": "currentFolderId"; "pickedFolderId": "pickedFolderId"; "initialExpandedIds": "initialExpandedIds"; }, { "folderPicked": "folderPicked"; "pickedFolderIdChange": "pickedFolderIdChange"; }, never, never>;
|
|
65
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MoveToFolderDialogComponent, "cqa-move-to-folder-dialog", never, { "folders": "folders"; "labels": "labels"; "currentFolderId": "currentFolderId"; "pickedFolderId": "pickedFolderId"; "initialExpandedIds": "initialExpandedIds"; "rootDisabled": "rootDisabled"; "pickerHeight": "pickerHeight"; }, { "folderPicked": "folderPicked"; "pickedFolderIdChange": "pickedFolderIdChange"; }, never, never>;
|
|
56
66
|
}
|
|
57
67
|
export {};
|
|
@@ -1,15 +1,16 @@
|
|
|
1
|
-
import { ChangeDetectorRef, EventEmitter
|
|
2
|
-
import { FormGroup } from '@angular/forms';
|
|
3
|
-
import { DynamicSelectFieldConfig } from '../../../dynamic-select/dynamic-select-field.component';
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
4
2
|
import { FolderNode, ModularLabels } from '../modular-table-template.models';
|
|
5
3
|
import * as i0 from "@angular/core";
|
|
6
4
|
export declare const DEFAULT_FOLDER_COLOR = "#99999E";
|
|
5
|
+
export declare const FOLDER_NAME_MAX_LENGTH = 20;
|
|
7
6
|
/**
|
|
8
7
|
* Body of the "New Folder" dialog.
|
|
9
8
|
*
|
|
10
9
|
* Uses reusable library components (`cqa-custom-input` for the name field,
|
|
11
|
-
* `cqa-
|
|
12
|
-
* into their own modal shell without worrying
|
|
10
|
+
* `cqa-move-to-folder-dialog` as an embedded tree picker for the parent folder)
|
|
11
|
+
* so hosts can drop this dialog into their own modal shell without worrying
|
|
12
|
+
* about styling drift. The tree picker handles arbitrarily deep nesting via
|
|
13
|
+
* expand/collapse rather than a flat dropdown of "A › B › C ›…" paths.
|
|
13
14
|
*
|
|
14
15
|
* Two integration paths:
|
|
15
16
|
*
|
|
@@ -21,7 +22,7 @@ export declare const DEFAULT_FOLDER_COLOR = "#99999E";
|
|
|
21
22
|
* modal and listens to `(submitted)` / `(cancelled)` / `(nameChange)` /
|
|
22
23
|
* `(parentIdChange)`.
|
|
23
24
|
*/
|
|
24
|
-
export declare class NewFolderDialogComponent
|
|
25
|
+
export declare class NewFolderDialogComponent {
|
|
25
26
|
private cdr;
|
|
26
27
|
private _folders;
|
|
27
28
|
set folders(value: FolderNode[]);
|
|
@@ -30,9 +31,11 @@ export declare class NewFolderDialogComponent implements OnInit {
|
|
|
30
31
|
set labels(value: ModularLabels);
|
|
31
32
|
get labels(): ModularLabels;
|
|
32
33
|
name: string;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
34
|
+
/** Tracks whether the user has interacted with the name field, so we don't surface
|
|
35
|
+
* the "required" error on first paint when the dialog opens with an empty name. */
|
|
36
|
+
private nameTouched;
|
|
37
|
+
readonly maxNameLength = 20;
|
|
38
|
+
parentId: number | null;
|
|
36
39
|
color: string;
|
|
37
40
|
readonly presetColors: string[];
|
|
38
41
|
readonly rainbowBorder: string;
|
|
@@ -45,33 +48,23 @@ export declare class NewFolderDialogComponent implements OnInit {
|
|
|
45
48
|
color: string;
|
|
46
49
|
}>;
|
|
47
50
|
cancelled: EventEmitter<void>;
|
|
48
|
-
/**
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
* the object reference is stable across change-detection passes — a getter
|
|
53
|
-
* returns a fresh object every CD tick and causes
|
|
54
|
-
* `ExpressionChangedAfterItHasBeenCheckedError` + repeated `ngOnChanges` on
|
|
55
|
-
* the child select. Other consumers in this lib (e.g. `loop-step`) follow
|
|
56
|
-
* the same pattern.
|
|
57
|
-
*/
|
|
58
|
-
parentSelectConfig: DynamicSelectFieldConfig;
|
|
59
|
-
private parentOptions;
|
|
51
|
+
/** Labels passed to the embedded tree picker. Re-uses the move-dialog surface but
|
|
52
|
+
* rewrites the root row's label so it reads "(no parent)" instead of "Unorganised"
|
|
53
|
+
* for the create-folder context. */
|
|
54
|
+
parentPickerLabels: ModularLabels;
|
|
60
55
|
constructor(cdr: ChangeDetectorRef);
|
|
61
|
-
|
|
62
|
-
private rebuildSelectConfig;
|
|
63
|
-
private rebuildOptions;
|
|
64
|
-
private syncParentControl;
|
|
56
|
+
private buildParentPickerLabels;
|
|
65
57
|
onNameChange(value: string): void;
|
|
66
|
-
|
|
67
|
-
key: string;
|
|
68
|
-
value: any;
|
|
69
|
-
}): void;
|
|
58
|
+
onParentPicked(id: number | null): void;
|
|
70
59
|
isColor(c: string): boolean;
|
|
71
60
|
get isCustomColor(): boolean;
|
|
72
61
|
onColorChange(value: string): void;
|
|
73
62
|
onColorInputEvent(event: Event): void;
|
|
74
|
-
/**
|
|
63
|
+
/** Errors surfaced under the name field. Only computed once the user has touched
|
|
64
|
+
* the input so the dialog doesn't open with a "required" error already showing. */
|
|
65
|
+
get nameErrors(): string[];
|
|
66
|
+
/** Returns true when the current state is a valid submission (non-empty trimmed name
|
|
67
|
+
* within the max length). Used by the host to gate the dialog's Create button. */
|
|
75
68
|
get isValid(): boolean;
|
|
76
69
|
submit(): void;
|
|
77
70
|
static ɵfac: i0.ɵɵFactoryDeclaration<NewFolderDialogComponent, never>;
|
|
@@ -62,6 +62,8 @@ export declare class FolderSidebarComponent implements OnDestroy {
|
|
|
62
62
|
searchValue: string;
|
|
63
63
|
renamingId: number | null;
|
|
64
64
|
renameDraft: string;
|
|
65
|
+
/** Inline rename uses the same name rules as the New Folder dialog. */
|
|
66
|
+
readonly renameMaxLength: number;
|
|
65
67
|
/** Id of the folder whose context menu is open, or null when closed. */
|
|
66
68
|
contextMenuFolderId: number | null;
|
|
67
69
|
/** Viewport-anchored position (client coordinates) for the floating menu. */
|
|
@@ -84,6 +86,8 @@ export declare class FolderSidebarComponent implements OnDestroy {
|
|
|
84
86
|
onSelect(n: FolderNode | null): void;
|
|
85
87
|
onSelectUnorganised(): void;
|
|
86
88
|
beginRename(n: FolderNode, event: Event): void;
|
|
89
|
+
/** True when the active rename draft passes the name rules (non-empty, within max length). */
|
|
90
|
+
get isRenameDraftValid(): boolean;
|
|
87
91
|
commitRename(n: FolderNode): void;
|
|
88
92
|
cancelRename(): void;
|
|
89
93
|
onRenameKey(event: KeyboardEvent, n: FolderNode): void;
|
|
@@ -60,6 +60,8 @@ export interface ModularLabels {
|
|
|
60
60
|
newFolderDialogColorLabel: string;
|
|
61
61
|
newFolderDialogCancel: string;
|
|
62
62
|
newFolderDialogConfirm: string;
|
|
63
|
+
newFolderDialogNameRequiredError: string;
|
|
64
|
+
newFolderDialogNameMaxLengthError: string;
|
|
63
65
|
folderMenuCreateSubfolder: string;
|
|
64
66
|
folderMenuRename: string;
|
|
65
67
|
folderMenuMove: string;
|
package/lib/ui-kit.module.d.ts
CHANGED
|
@@ -100,97 +100,100 @@ import * as i97 from "./new-global-variable-dialog/new-global-variable-dialog.co
|
|
|
100
100
|
import * as i98 from "./new-environment-dialog/new-environment-dialog.component";
|
|
101
101
|
import * as i99 from "./new-environment-variable-dialog/new-environment-variable-dialog.component";
|
|
102
102
|
import * as i100 from "./new-test-data-profile-dialog/new-test-data-profile-dialog.component";
|
|
103
|
-
import * as i101 from "./
|
|
104
|
-
import * as i102 from "./
|
|
105
|
-
import * as i103 from "./
|
|
106
|
-
import * as i104 from "./
|
|
107
|
-
import * as i105 from "./
|
|
108
|
-
import * as i106 from "./
|
|
109
|
-
import * as i107 from "./
|
|
110
|
-
import * as i108 from "./
|
|
111
|
-
import * as i109 from "./
|
|
112
|
-
import * as i110 from "./
|
|
113
|
-
import * as i111 from "./
|
|
114
|
-
import * as i112 from "./test-case-details/step-
|
|
115
|
-
import * as i113 from "./test-case-details/
|
|
116
|
-
import * as i114 from "./test-case-details/
|
|
117
|
-
import * as i115 from "./test-case-details/
|
|
118
|
-
import * as i116 from "./test-case-details/
|
|
119
|
-
import * as i117 from "./test-case-details/
|
|
120
|
-
import * as i118 from "./test-case-details/
|
|
121
|
-
import * as i119 from "./test-case-details/
|
|
122
|
-
import * as i120 from "./test-case-details/
|
|
123
|
-
import * as i121 from "./test-case-details/
|
|
124
|
-
import * as i122 from "./test-case-details/
|
|
125
|
-
import * as i123 from "./test-case-details/
|
|
126
|
-
import * as i124 from "./test-case-details/
|
|
127
|
-
import * as i125 from "./
|
|
128
|
-
import * as i126 from "./test-case-details/
|
|
129
|
-
import * as i127 from "./test-case-details/
|
|
130
|
-
import * as i128 from "./
|
|
131
|
-
import * as i129 from "./test-case-details/
|
|
132
|
-
import * as i130 from "./test-case-details/
|
|
133
|
-
import * as i131 from "./
|
|
134
|
-
import * as i132 from "./
|
|
135
|
-
import * as i133 from "./
|
|
136
|
-
import * as i134 from "./
|
|
137
|
-
import * as i135 from "./
|
|
138
|
-
import * as i136 from "./step-builder/step-builder-
|
|
139
|
-
import * as i137 from "./
|
|
140
|
-
import * as i138 from "./
|
|
141
|
-
import * as i139 from "./step-builder/step-builder-
|
|
142
|
-
import * as i140 from "./step-builder/step-builder-
|
|
143
|
-
import * as i141 from "./step-builder/step-builder-
|
|
144
|
-
import * as i142 from "./
|
|
145
|
-
import * as i143 from "./step-builder/step-builder-
|
|
146
|
-
import * as i144 from "./
|
|
147
|
-
import * as i145 from "./
|
|
148
|
-
import * as i146 from "./
|
|
149
|
-
import * as i147 from "./detail-
|
|
150
|
-
import * as i148 from "./
|
|
151
|
-
import * as i149 from "./
|
|
152
|
-
import * as i150 from "./
|
|
153
|
-
import * as i151 from "./
|
|
154
|
-
import * as i152 from "./test-case-details/
|
|
155
|
-
import * as i153 from "./
|
|
156
|
-
import * as i154 from "./step-builder/
|
|
157
|
-
import * as i155 from "./test-case-details/step-details-
|
|
158
|
-
import * as i156 from "./
|
|
159
|
-
import * as i157 from "./
|
|
160
|
-
import * as i158 from "./
|
|
161
|
-
import * as i159 from "./pipes/
|
|
162
|
-
import * as i160 from "./
|
|
163
|
-
import * as i161 from "./
|
|
164
|
-
import * as i162 from "./
|
|
165
|
-
import * as i163 from "./version-history/version-history-
|
|
166
|
-
import * as i164 from "./version-history/
|
|
167
|
-
import * as i165 from "
|
|
168
|
-
import * as i166 from "
|
|
169
|
-
import * as i167 from "
|
|
170
|
-
import * as i168 from "@angular/
|
|
171
|
-
import * as i169 from "@angular/
|
|
172
|
-
import * as i170 from "@angular/
|
|
173
|
-
import * as i171 from "@angular/material/
|
|
174
|
-
import * as i172 from "@angular/material/
|
|
175
|
-
import * as i173 from "@angular/material/
|
|
176
|
-
import * as i174 from "@angular/material/
|
|
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/
|
|
186
|
-
import * as i184 from "@angular/
|
|
187
|
-
import * as i185 from "@angular/
|
|
188
|
-
import * as i186 from "
|
|
189
|
-
import * as i187 from "
|
|
190
|
-
import * as i188 from "
|
|
103
|
+
import * as i101 from "./manage-columns-dialog/manage-columns-dialog.component";
|
|
104
|
+
import * as i102 from "./audit-log-drawer/audit-log-drawer.component";
|
|
105
|
+
import * as i103 from "./audit-log-drawer/audit-log-entry-card.component";
|
|
106
|
+
import * as i104 from "./assign-environments-dialog/assign-environments-dialog.component";
|
|
107
|
+
import * as i105 from "./permission-toggle/permission-toggle.component";
|
|
108
|
+
import * as i106 from "./export-code-modal/export-code-modal.component";
|
|
109
|
+
import * as i107 from "./progress-indicator/progress-indicator.component";
|
|
110
|
+
import * as i108 from "./step-progress-card/step-progress-card.component";
|
|
111
|
+
import * as i109 from "./step-status-card/step-status-card.component";
|
|
112
|
+
import * as i110 from "./execution-screen/db-verification-step/db-verification-step.component";
|
|
113
|
+
import * as i111 from "./execution-screen/db-query-execution-item/db-query-execution-item.component";
|
|
114
|
+
import * as i112 from "./test-case-details/normal-step/normal-step.component";
|
|
115
|
+
import * as i113 from "./test-case-details/loop-step/loop-step.component";
|
|
116
|
+
import * as i114 from "./test-case-details/condition-step/condition-step.component";
|
|
117
|
+
import * as i115 from "./test-case-details/step-group/step-group.component";
|
|
118
|
+
import * as i116 from "./test-case-details/test-case-details-renderer/test-case-details-renderer.component";
|
|
119
|
+
import * as i117 from "./test-case-details/api-step/api-step.component";
|
|
120
|
+
import * as i118 from "./test-case-details/database-step/database-step.component";
|
|
121
|
+
import * as i119 from "./test-case-details/ai-agent-step/ai-agent-step.component";
|
|
122
|
+
import * as i120 from "./test-case-details/ai-verify-step/ai-verify-step.component";
|
|
123
|
+
import * as i121 from "./test-case-details/upload-step/upload-step.component";
|
|
124
|
+
import * as i122 from "./test-case-details/screenshot-step/screenshot-step.component";
|
|
125
|
+
import * as i123 from "./test-case-details/scroll-step/scroll-step.component";
|
|
126
|
+
import * as i124 from "./test-case-details/verify-url-step/verify-url-step.component";
|
|
127
|
+
import * as i125 from "./test-case-details/restore-session-step/restore-session-step.component";
|
|
128
|
+
import * as i126 from "./test-case-details/custom-code-step/custom-code-step.component";
|
|
129
|
+
import * as i127 from "./test-case-details/custom-edit-step/custom-edit-step.component";
|
|
130
|
+
import * as i128 from "./item-list/item-list.component";
|
|
131
|
+
import * as i129 from "./test-case-details/test-data-modal/test-data-modal.component";
|
|
132
|
+
import * as i130 from "./test-case-details/create-step-group/create-step-group.component";
|
|
133
|
+
import * as i131 from "./test-case-details/delete-steps/delete-steps.component";
|
|
134
|
+
import * as i132 from "./test-case-details/run-execution-alert/run-execution-alert.component";
|
|
135
|
+
import * as i133 from "./test-case-details/api-edit-step/api-edit-step.component";
|
|
136
|
+
import * as i134 from "./live-conversation/live-conversation.component";
|
|
137
|
+
import * as i135 from "./step-builder/step-builder-action/step-builder-action.component";
|
|
138
|
+
import * as i136 from "./step-builder/step-builder-loop/step-builder-loop.component";
|
|
139
|
+
import * as i137 from "./test-case-details/element-popup/element-popup.component";
|
|
140
|
+
import * as i138 from "./test-case-details/element-popup/element-form/element-form.component";
|
|
141
|
+
import * as i139 from "./step-builder/step-builder-condition/step-builder-condition.component";
|
|
142
|
+
import * as i140 from "./step-builder/step-builder-database/step-builder-database.component";
|
|
143
|
+
import * as i141 from "./step-builder/step-builder-ai-agent/step-builder-ai-agent.component";
|
|
144
|
+
import * as i142 from "./step-builder/step-builder-custom-code/step-builder-custom-code.component";
|
|
145
|
+
import * as i143 from "./step-builder/step-builder-record-step/step-builder-record-step.component";
|
|
146
|
+
import * as i144 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
|
|
147
|
+
import * as i145 from "./test-case-details/element-list/element-list.component";
|
|
148
|
+
import * as i146 from "./step-builder/step-builder-document/step-builder-document.component";
|
|
149
|
+
import * as i147 from "./detail-side-panel/detail-side-panel.component";
|
|
150
|
+
import * as i148 from "./detail-drawer/detail-drawer.component";
|
|
151
|
+
import * as i149 from "./detail-drawer/detail-drawer-tab/detail-drawer-tab.component";
|
|
152
|
+
import * as i150 from "./detail-drawer/detail-drawer-tab-content.directive";
|
|
153
|
+
import * as i151 from "./test-case-details/test-case-details.component";
|
|
154
|
+
import * as i152 from "./test-case-details/test-case-details-edit/test-case-details-edit.component";
|
|
155
|
+
import * as i153 from "./test-case-details/api-mocking-card/api-mocking-card.component";
|
|
156
|
+
import * as i154 from "./step-builder/step-builder-group/step-builder-group.component";
|
|
157
|
+
import * as i155 from "./test-case-details/step-details-drawer/step-details-drawer.component";
|
|
158
|
+
import * as i156 from "./step-builder/template-variables-form/template-variables-form.component";
|
|
159
|
+
import * as i157 from "./step-builder/advanced-variables-form/advanced-variables-form.component";
|
|
160
|
+
import * as i158 from "./test-case-details/step-details-modal/step-details-modal.component";
|
|
161
|
+
import * as i159 from "./pipes/safe-html.pipe";
|
|
162
|
+
import * as i160 from "./questionnaire-list/questionnaire-list.component";
|
|
163
|
+
import * as i161 from "./change-history/change-history.component";
|
|
164
|
+
import * as i162 from "./pipes/camel-to-title.pipe";
|
|
165
|
+
import * as i163 from "./version-history/version-history-list/version-history-list.component";
|
|
166
|
+
import * as i164 from "./version-history/version-history-compare/version-history-compare.component";
|
|
167
|
+
import * as i165 from "./version-history/version-history-detail/version-history-detail.component";
|
|
168
|
+
import * as i166 from "./version-history/version-history-restore-confirm/version-history-restore-confirm.component";
|
|
169
|
+
import * as i167 from "./version-history/new-version-history-detail/new-version-history-detail.component";
|
|
170
|
+
import * as i168 from "@angular/common";
|
|
171
|
+
import * as i169 from "@angular/forms";
|
|
172
|
+
import * as i170 from "@angular/platform-browser/animations";
|
|
173
|
+
import * as i171 from "@angular/material/icon";
|
|
174
|
+
import * as i172 from "@angular/material/menu";
|
|
175
|
+
import * as i173 from "@angular/material/button";
|
|
176
|
+
import * as i174 from "@angular/material/form-field";
|
|
177
|
+
import * as i175 from "@angular/material/select";
|
|
178
|
+
import * as i176 from "@angular/material/core";
|
|
179
|
+
import * as i177 from "@angular/material/checkbox";
|
|
180
|
+
import * as i178 from "@angular/material/radio";
|
|
181
|
+
import * as i179 from "@angular/material/slide-toggle";
|
|
182
|
+
import * as i180 from "@angular/material/datepicker";
|
|
183
|
+
import * as i181 from "@angular/material/progress-spinner";
|
|
184
|
+
import * as i182 from "@angular/material/tooltip";
|
|
185
|
+
import * as i183 from "@angular/material/dialog";
|
|
186
|
+
import * as i184 from "@angular/material/table";
|
|
187
|
+
import * as i185 from "@angular/material/input";
|
|
188
|
+
import * as i186 from "@angular/cdk/overlay";
|
|
189
|
+
import * as i187 from "@angular/cdk/portal";
|
|
190
|
+
import * as i188 from "@angular/cdk/scrolling";
|
|
191
|
+
import * as i189 from "ngx-typed-js";
|
|
192
|
+
import * as i190 from "ngx-drag-drop";
|
|
193
|
+
import * as i191 from "ngx-monaco-editor";
|
|
191
194
|
export declare class UiKitModule {
|
|
192
195
|
constructor(iconRegistry: MatIconRegistry);
|
|
193
196
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
|
|
194
|
-
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.ModularTableTemplateComponent, typeof i38.FolderSidebarComponent, typeof i39.MoveToFolderDialogComponent, typeof i40.NewFolderDialogComponent, typeof i41.DeleteFolderDialogComponent, typeof i42.RowDragDirective, typeof i43.FolderDropDirective, typeof i44.FolderDragDirective, typeof i45.FullTableLoaderComponent, typeof i46.TableDataLoaderComponent, typeof i47.BasicStepComponent, typeof i48.StepRendererComponent, typeof i49.StepGroupComponent, typeof i50.LoopStepComponent, typeof i51.ConditionStepComponent, typeof i52.ConditionDebugStepComponent, typeof i53.ConditionBranchEditorComponent, typeof i54.FailedStepComponent, typeof i55.UpdatedFailedStepComponent, typeof i56.ViewMoreFailedStepButtonComponent, typeof i57.SelfHealAnalysisComponent, typeof i58.AIAgentStepComponent, typeof i59.AIActionStepComponent, typeof i60.ApiStepComponent, typeof i61.FileDownloadStepComponent, typeof i62.DocumentVerificationStepComponent, typeof i63.LiveExecutionStepComponent, typeof i64.AiLogsWithReasoningComponent, typeof i65.JumpToStepModalComponent, typeof i66.BreakpointsModalComponent, typeof i67.RecordingBannerComponent, typeof i68.ReviewRecordedStepsModalComponent, typeof i69.MainStepCollapseComponent, typeof i70.VisualComparisonComponent, typeof i71.SimulatorComponent, typeof i72.ConsoleAlertComponent, typeof i73.AiDebugAlertComponent, typeof i74.NetworkRequestComponent, typeof i75.RunHistoryCardComponent, typeof i76.AiPromptCardComponent, typeof i77.VisualDifferenceModalComponent, typeof i78.ConfigurationCardComponent, typeof i79.CompareRunsComponent, typeof i80.ViewCompareButtonComponent, typeof i81.TestCaseLinkCellComponent, typeof i82.IterationsLoopComponent, typeof i83.FailedStepCardComponent, typeof i84.CustomInputComponent, typeof i85.MixedVariableInputComponent, typeof i86.CustomTextareaComponent, typeof i87.CodeEditorComponent, typeof i88.CustomToggleComponent, typeof i89.FileUploadComponent, typeof i90.AiReasoningComponent, typeof i91.ExecutionResultModalComponent, typeof i92.SessionChangesModalComponent, typeof i93.ErrorModalComponent, typeof i94.SessionRestorationDialogComponent, typeof i95.CaptureVideoDialogComponent, typeof i96.SubStepsConfirmationDialogComponent, typeof i97.NewGlobalVariableDialogComponent, typeof i98.NewEnvironmentDialogComponent, typeof i99.NewEnvironmentVariableDialogComponent, typeof i100.NewTestDataProfileDialogComponent, typeof i101.AssignEnvironmentsDialogComponent, typeof i102.PermissionToggleComponent, typeof i103.ExportCodeModalComponent, typeof i104.ProgressIndicatorComponent, typeof i105.StepProgressCardComponent, typeof i106.StepStatusCardComponent, typeof i107.DbVerificationStepComponent, typeof i108.DbQueryExecutionItemComponent, typeof i109.TestCaseNormalStepComponent, typeof i110.TestCaseLoopStepComponent, typeof i111.TestCaseConditionStepComponent, typeof i112.TestCaseStepGroupComponent, typeof i113.TestCaseDetailsRendererComponent, typeof i114.TestCaseApiStepComponent, typeof i115.TestCaseDatabaseStepComponent, typeof i116.TestCaseAiAgentStepComponent, typeof i117.TestCaseAiVerifyStepComponent, typeof i118.TestCaseUploadStepComponent, typeof i119.TestCaseScreenshotStepComponent, typeof i120.TestCaseScrollStepComponent, typeof i121.TestCaseVerifyUrlStepComponent, typeof i122.TestCaseRestoreSessionStepComponent, typeof i123.TestCaseCustomCodeStepComponent, typeof i124.CustomEditStepComponent, typeof i125.ItemListComponent, typeof i126.TestDataModalComponent, typeof i127.CreateStepGroupComponent, typeof i128.DeleteStepsComponent, typeof i129.RunExecutionAlertComponent, typeof i130.ApiEditStepComponent, typeof i131.LiveConversationComponent, typeof i132.StepBuilderActionComponent, typeof i133.StepBuilderLoopComponent, typeof i134.ElementPopupComponent, typeof i135.ElementFormComponent, typeof i136.StepBuilderConditionComponent, typeof i137.StepBuilderDatabaseComponent, typeof i138.StepBuilderAiAgentComponent, typeof i87.CodeEditorComponent, typeof i139.StepBuilderCustomCodeComponent, typeof i140.StepBuilderRecordStepComponent, typeof i141.StepBuilderDocumentGenerationTemplateStepComponent, typeof i142.ElementListComponent, typeof i143.StepBuilderDocumentComponent, typeof i144.DetailSidePanelComponent, typeof i145.DetailDrawerComponent, typeof i146.DetailDrawerTabComponent, typeof i147.DetailDrawerTabContentDirective, typeof i148.TestCaseDetailsComponent, typeof i149.TestCaseDetailsEditComponent, typeof i150.ApiMockingCardComponent, typeof i151.StepBuilderGroupComponent, typeof i152.StepDetailsDrawerComponent, typeof i153.TemplateVariablesFormComponent, typeof i154.AdvancedVariablesFormComponent, typeof i155.StepDetailsModalComponent, typeof i156.SafeHtmlPipe, typeof i157.QuestionnaireListComponent, typeof i158.ChangeHistoryComponent, typeof i159.CamelToTitlePipe, typeof i160.VersionHistoryListComponent, typeof i161.VersionHistoryCompareComponent, typeof i162.VersionHistoryDetailComponent, typeof i163.VersionHistoryRestoreConfirmComponent, typeof i164.NewVersionHistoryDetailComponent], [typeof i165.CommonModule, typeof i166.FormsModule, typeof i166.ReactiveFormsModule, typeof i167.NoopAnimationsModule, typeof i168.MatIconModule, typeof i169.MatMenuModule, typeof i170.MatButtonModule, typeof i171.MatFormFieldModule, typeof i172.MatSelectModule, typeof i173.MatOptionModule, typeof i174.MatCheckboxModule, typeof i175.MatRadioModule, typeof i176.MatSlideToggleModule, typeof i177.MatDatepickerModule, typeof i173.MatNativeDateModule, typeof i178.MatProgressSpinnerModule, typeof i179.MatTooltipModule, typeof i180.MatDialogModule, typeof i181.MatTableModule, typeof i182.MatInputModule, typeof i183.OverlayModule, typeof i184.PortalModule, typeof i185.ScrollingModule, typeof i186.NgxTypedJsModule, typeof i187.DndModule, typeof i188.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.ModularTableTemplateComponent, typeof i38.FolderSidebarComponent, typeof i40.NewFolderDialogComponent, typeof i41.DeleteFolderDialogComponent, typeof i39.MoveToFolderDialogComponent, typeof i42.RowDragDirective, typeof i43.FolderDropDirective, typeof i44.FolderDragDirective, typeof i45.FullTableLoaderComponent, typeof i46.TableDataLoaderComponent, typeof i47.BasicStepComponent, typeof i48.StepRendererComponent, typeof i49.StepGroupComponent, typeof i50.LoopStepComponent, typeof i51.ConditionStepComponent, typeof i52.ConditionDebugStepComponent, typeof i53.ConditionBranchEditorComponent, typeof i54.FailedStepComponent, typeof i52.ConditionDebugStepComponent, typeof i55.UpdatedFailedStepComponent, typeof i56.ViewMoreFailedStepButtonComponent, typeof i57.SelfHealAnalysisComponent, typeof i58.AIAgentStepComponent, typeof i59.AIActionStepComponent, typeof i60.ApiStepComponent, typeof i61.FileDownloadStepComponent, typeof i62.DocumentVerificationStepComponent, typeof i63.LiveExecutionStepComponent, typeof i64.AiLogsWithReasoningComponent, typeof i65.JumpToStepModalComponent, typeof i66.BreakpointsModalComponent, typeof i67.RecordingBannerComponent, typeof i68.ReviewRecordedStepsModalComponent, typeof i69.MainStepCollapseComponent, typeof i70.VisualComparisonComponent, typeof i71.SimulatorComponent, typeof i72.ConsoleAlertComponent, typeof i73.AiDebugAlertComponent, typeof i74.NetworkRequestComponent, typeof i75.RunHistoryCardComponent, typeof i76.AiPromptCardComponent, typeof i77.VisualDifferenceModalComponent, typeof i78.ConfigurationCardComponent, typeof i79.CompareRunsComponent, typeof i80.ViewCompareButtonComponent, typeof i81.TestCaseLinkCellComponent, typeof i82.IterationsLoopComponent, typeof i83.FailedStepCardComponent, typeof i84.CustomInputComponent, typeof i85.MixedVariableInputComponent, typeof i86.CustomTextareaComponent, typeof i87.CodeEditorComponent, typeof i88.CustomToggleComponent, typeof i89.FileUploadComponent, typeof i90.AiReasoningComponent, typeof i91.ExecutionResultModalComponent, typeof i92.SessionChangesModalComponent, typeof i93.ErrorModalComponent, typeof i94.SessionRestorationDialogComponent, typeof i95.CaptureVideoDialogComponent, typeof i96.SubStepsConfirmationDialogComponent, typeof i97.NewGlobalVariableDialogComponent, typeof i98.NewEnvironmentDialogComponent, typeof i99.NewEnvironmentVariableDialogComponent, typeof i100.NewTestDataProfileDialogComponent, typeof i101.AssignEnvironmentsDialogComponent, typeof i102.PermissionToggleComponent, typeof i103.ExportCodeModalComponent, typeof i104.ProgressIndicatorComponent, typeof i105.StepProgressCardComponent, typeof i106.StepStatusCardComponent, typeof i107.DbVerificationStepComponent, typeof i108.DbQueryExecutionItemComponent, typeof i109.TestCaseNormalStepComponent, typeof i110.TestCaseLoopStepComponent, typeof i111.TestCaseConditionStepComponent, typeof i112.TestCaseStepGroupComponent, typeof i113.TestCaseDetailsRendererComponent, typeof i114.TestCaseApiStepComponent, typeof i115.TestCaseDatabaseStepComponent, typeof i116.TestCaseAiAgentStepComponent, typeof i118.TestCaseUploadStepComponent, typeof i119.TestCaseScreenshotStepComponent, typeof i120.TestCaseScrollStepComponent, typeof i121.TestCaseVerifyUrlStepComponent, typeof i122.TestCaseRestoreSessionStepComponent, typeof i123.TestCaseCustomCodeStepComponent, typeof i124.CustomEditStepComponent, typeof i125.ItemListComponent, typeof i126.TestDataModalComponent, typeof i127.CreateStepGroupComponent, typeof i128.DeleteStepsComponent, typeof i129.RunExecutionAlertComponent, typeof i130.ApiEditStepComponent, typeof i131.LiveConversationComponent, typeof i132.StepBuilderActionComponent, typeof i133.StepBuilderLoopComponent, typeof i134.ElementPopupComponent, typeof i135.ElementFormComponent, typeof i136.StepBuilderConditionComponent, typeof i137.StepBuilderDatabaseComponent, typeof i138.StepBuilderAiAgentComponent, typeof i87.CodeEditorComponent, typeof i139.StepBuilderCustomCodeComponent, typeof i140.StepBuilderRecordStepComponent, typeof i141.StepBuilderDocumentGenerationTemplateStepComponent, typeof i142.ElementListComponent, typeof i143.StepBuilderDocumentComponent, typeof i144.DetailSidePanelComponent, typeof i145.DetailDrawerComponent, typeof i146.DetailDrawerTabComponent, typeof i147.DetailDrawerTabContentDirective, typeof i148.TestCaseDetailsComponent, typeof i149.TestCaseDetailsEditComponent, typeof i150.ApiMockingCardComponent, typeof i151.StepBuilderGroupComponent, typeof i152.StepDetailsDrawerComponent, typeof i153.TemplateVariablesFormComponent, typeof i154.AdvancedVariablesFormComponent, typeof i157.QuestionnaireListComponent, typeof i158.ChangeHistoryComponent, typeof i160.VersionHistoryListComponent, typeof i161.VersionHistoryCompareComponent, typeof i162.VersionHistoryDetailComponent, typeof i163.VersionHistoryRestoreConfirmComponent, typeof i164.NewVersionHistoryDetailComponent]>;
|
|
197
|
+
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.ModularTableTemplateComponent, typeof i38.FolderSidebarComponent, typeof i39.MoveToFolderDialogComponent, typeof i40.NewFolderDialogComponent, typeof i41.DeleteFolderDialogComponent, typeof i42.RowDragDirective, typeof i43.FolderDropDirective, typeof i44.FolderDragDirective, typeof i45.FullTableLoaderComponent, typeof i46.TableDataLoaderComponent, typeof i47.BasicStepComponent, typeof i48.StepRendererComponent, typeof i49.StepGroupComponent, typeof i50.LoopStepComponent, typeof i51.ConditionStepComponent, typeof i52.ConditionDebugStepComponent, typeof i53.ConditionBranchEditorComponent, typeof i54.FailedStepComponent, typeof i55.UpdatedFailedStepComponent, typeof i56.ViewMoreFailedStepButtonComponent, typeof i57.SelfHealAnalysisComponent, typeof i58.AIAgentStepComponent, typeof i59.AIActionStepComponent, typeof i60.ApiStepComponent, typeof i61.FileDownloadStepComponent, typeof i62.DocumentVerificationStepComponent, typeof i63.LiveExecutionStepComponent, typeof i64.AiLogsWithReasoningComponent, typeof i65.JumpToStepModalComponent, typeof i66.BreakpointsModalComponent, typeof i67.RecordingBannerComponent, typeof i68.ReviewRecordedStepsModalComponent, typeof i69.MainStepCollapseComponent, typeof i70.VisualComparisonComponent, typeof i71.SimulatorComponent, typeof i72.ConsoleAlertComponent, typeof i73.AiDebugAlertComponent, typeof i74.NetworkRequestComponent, typeof i75.RunHistoryCardComponent, typeof i76.AiPromptCardComponent, typeof i77.VisualDifferenceModalComponent, typeof i78.ConfigurationCardComponent, typeof i79.CompareRunsComponent, typeof i80.ViewCompareButtonComponent, typeof i81.TestCaseLinkCellComponent, typeof i82.IterationsLoopComponent, typeof i83.FailedStepCardComponent, typeof i84.CustomInputComponent, typeof i85.MixedVariableInputComponent, typeof i86.CustomTextareaComponent, typeof i87.CodeEditorComponent, typeof i88.CustomToggleComponent, typeof i89.FileUploadComponent, typeof i90.AiReasoningComponent, typeof i91.ExecutionResultModalComponent, typeof i92.SessionChangesModalComponent, typeof i93.ErrorModalComponent, typeof i94.SessionRestorationDialogComponent, typeof i95.CaptureVideoDialogComponent, typeof i96.SubStepsConfirmationDialogComponent, typeof i97.NewGlobalVariableDialogComponent, typeof i98.NewEnvironmentDialogComponent, typeof i99.NewEnvironmentVariableDialogComponent, typeof i100.NewTestDataProfileDialogComponent, typeof i101.ManageColumnsDialogComponent, typeof i102.AuditLogDrawerComponent, typeof i103.AuditLogEntryCardComponent, typeof i104.AssignEnvironmentsDialogComponent, typeof i105.PermissionToggleComponent, typeof i106.ExportCodeModalComponent, typeof i107.ProgressIndicatorComponent, typeof i108.StepProgressCardComponent, typeof i109.StepStatusCardComponent, typeof i110.DbVerificationStepComponent, typeof i111.DbQueryExecutionItemComponent, typeof i112.TestCaseNormalStepComponent, typeof i113.TestCaseLoopStepComponent, typeof i114.TestCaseConditionStepComponent, typeof i115.TestCaseStepGroupComponent, typeof i116.TestCaseDetailsRendererComponent, typeof i117.TestCaseApiStepComponent, typeof i118.TestCaseDatabaseStepComponent, typeof i119.TestCaseAiAgentStepComponent, typeof i120.TestCaseAiVerifyStepComponent, typeof i121.TestCaseUploadStepComponent, typeof i122.TestCaseScreenshotStepComponent, typeof i123.TestCaseScrollStepComponent, typeof i124.TestCaseVerifyUrlStepComponent, typeof i125.TestCaseRestoreSessionStepComponent, typeof i126.TestCaseCustomCodeStepComponent, typeof i127.CustomEditStepComponent, typeof i128.ItemListComponent, typeof i129.TestDataModalComponent, typeof i130.CreateStepGroupComponent, typeof i131.DeleteStepsComponent, typeof i132.RunExecutionAlertComponent, typeof i133.ApiEditStepComponent, typeof i134.LiveConversationComponent, typeof i135.StepBuilderActionComponent, typeof i136.StepBuilderLoopComponent, typeof i137.ElementPopupComponent, typeof i138.ElementFormComponent, typeof i139.StepBuilderConditionComponent, typeof i140.StepBuilderDatabaseComponent, typeof i141.StepBuilderAiAgentComponent, typeof i87.CodeEditorComponent, typeof i142.StepBuilderCustomCodeComponent, typeof i143.StepBuilderRecordStepComponent, typeof i144.StepBuilderDocumentGenerationTemplateStepComponent, typeof i145.ElementListComponent, typeof i146.StepBuilderDocumentComponent, typeof i147.DetailSidePanelComponent, typeof i148.DetailDrawerComponent, typeof i149.DetailDrawerTabComponent, typeof i150.DetailDrawerTabContentDirective, typeof i151.TestCaseDetailsComponent, typeof i152.TestCaseDetailsEditComponent, typeof i153.ApiMockingCardComponent, typeof i154.StepBuilderGroupComponent, typeof i155.StepDetailsDrawerComponent, typeof i156.TemplateVariablesFormComponent, typeof i157.AdvancedVariablesFormComponent, typeof i158.StepDetailsModalComponent, typeof i159.SafeHtmlPipe, typeof i160.QuestionnaireListComponent, typeof i161.ChangeHistoryComponent, typeof i162.CamelToTitlePipe, typeof i163.VersionHistoryListComponent, typeof i164.VersionHistoryCompareComponent, typeof i165.VersionHistoryDetailComponent, typeof i166.VersionHistoryRestoreConfirmComponent, typeof i167.NewVersionHistoryDetailComponent], [typeof i168.CommonModule, typeof i169.FormsModule, typeof i169.ReactiveFormsModule, typeof i170.NoopAnimationsModule, typeof i171.MatIconModule, typeof i172.MatMenuModule, typeof i173.MatButtonModule, typeof i174.MatFormFieldModule, typeof i175.MatSelectModule, typeof i176.MatOptionModule, typeof i177.MatCheckboxModule, typeof i178.MatRadioModule, typeof i179.MatSlideToggleModule, typeof i180.MatDatepickerModule, typeof i176.MatNativeDateModule, typeof i181.MatProgressSpinnerModule, typeof i182.MatTooltipModule, typeof i183.MatDialogModule, typeof i184.MatTableModule, typeof i185.MatInputModule, typeof i186.OverlayModule, typeof i187.PortalModule, typeof i188.ScrollingModule, typeof i189.NgxTypedJsModule, typeof i190.DndModule, typeof i191.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.ModularTableTemplateComponent, typeof i38.FolderSidebarComponent, typeof i40.NewFolderDialogComponent, typeof i41.DeleteFolderDialogComponent, typeof i39.MoveToFolderDialogComponent, typeof i42.RowDragDirective, typeof i43.FolderDropDirective, typeof i44.FolderDragDirective, typeof i45.FullTableLoaderComponent, typeof i46.TableDataLoaderComponent, typeof i47.BasicStepComponent, typeof i48.StepRendererComponent, typeof i49.StepGroupComponent, typeof i50.LoopStepComponent, typeof i51.ConditionStepComponent, typeof i52.ConditionDebugStepComponent, typeof i53.ConditionBranchEditorComponent, typeof i54.FailedStepComponent, typeof i52.ConditionDebugStepComponent, typeof i55.UpdatedFailedStepComponent, typeof i56.ViewMoreFailedStepButtonComponent, typeof i57.SelfHealAnalysisComponent, typeof i58.AIAgentStepComponent, typeof i59.AIActionStepComponent, typeof i60.ApiStepComponent, typeof i61.FileDownloadStepComponent, typeof i62.DocumentVerificationStepComponent, typeof i63.LiveExecutionStepComponent, typeof i64.AiLogsWithReasoningComponent, typeof i65.JumpToStepModalComponent, typeof i66.BreakpointsModalComponent, typeof i67.RecordingBannerComponent, typeof i68.ReviewRecordedStepsModalComponent, typeof i69.MainStepCollapseComponent, typeof i70.VisualComparisonComponent, typeof i71.SimulatorComponent, typeof i72.ConsoleAlertComponent, typeof i73.AiDebugAlertComponent, typeof i74.NetworkRequestComponent, typeof i75.RunHistoryCardComponent, typeof i76.AiPromptCardComponent, typeof i77.VisualDifferenceModalComponent, typeof i78.ConfigurationCardComponent, typeof i79.CompareRunsComponent, typeof i80.ViewCompareButtonComponent, typeof i81.TestCaseLinkCellComponent, typeof i82.IterationsLoopComponent, typeof i83.FailedStepCardComponent, typeof i84.CustomInputComponent, typeof i85.MixedVariableInputComponent, typeof i86.CustomTextareaComponent, typeof i87.CodeEditorComponent, typeof i88.CustomToggleComponent, typeof i89.FileUploadComponent, typeof i90.AiReasoningComponent, typeof i91.ExecutionResultModalComponent, typeof i92.SessionChangesModalComponent, typeof i93.ErrorModalComponent, typeof i94.SessionRestorationDialogComponent, typeof i95.CaptureVideoDialogComponent, typeof i96.SubStepsConfirmationDialogComponent, typeof i97.NewGlobalVariableDialogComponent, typeof i98.NewEnvironmentDialogComponent, typeof i99.NewEnvironmentVariableDialogComponent, typeof i100.NewTestDataProfileDialogComponent, typeof i101.ManageColumnsDialogComponent, typeof i102.AuditLogDrawerComponent, typeof i103.AuditLogEntryCardComponent, typeof i104.AssignEnvironmentsDialogComponent, typeof i105.PermissionToggleComponent, typeof i106.ExportCodeModalComponent, typeof i107.ProgressIndicatorComponent, typeof i108.StepProgressCardComponent, typeof i109.StepStatusCardComponent, typeof i110.DbVerificationStepComponent, typeof i111.DbQueryExecutionItemComponent, typeof i112.TestCaseNormalStepComponent, typeof i113.TestCaseLoopStepComponent, typeof i114.TestCaseConditionStepComponent, typeof i115.TestCaseStepGroupComponent, typeof i116.TestCaseDetailsRendererComponent, typeof i117.TestCaseApiStepComponent, typeof i118.TestCaseDatabaseStepComponent, typeof i119.TestCaseAiAgentStepComponent, typeof i121.TestCaseUploadStepComponent, typeof i122.TestCaseScreenshotStepComponent, typeof i123.TestCaseScrollStepComponent, typeof i124.TestCaseVerifyUrlStepComponent, typeof i125.TestCaseRestoreSessionStepComponent, typeof i126.TestCaseCustomCodeStepComponent, typeof i127.CustomEditStepComponent, typeof i128.ItemListComponent, typeof i129.TestDataModalComponent, typeof i130.CreateStepGroupComponent, typeof i131.DeleteStepsComponent, typeof i132.RunExecutionAlertComponent, typeof i133.ApiEditStepComponent, typeof i134.LiveConversationComponent, typeof i135.StepBuilderActionComponent, typeof i136.StepBuilderLoopComponent, typeof i137.ElementPopupComponent, typeof i138.ElementFormComponent, typeof i139.StepBuilderConditionComponent, typeof i140.StepBuilderDatabaseComponent, typeof i141.StepBuilderAiAgentComponent, typeof i87.CodeEditorComponent, typeof i142.StepBuilderCustomCodeComponent, typeof i143.StepBuilderRecordStepComponent, typeof i144.StepBuilderDocumentGenerationTemplateStepComponent, typeof i145.ElementListComponent, typeof i146.StepBuilderDocumentComponent, typeof i147.DetailSidePanelComponent, typeof i148.DetailDrawerComponent, typeof i149.DetailDrawerTabComponent, typeof i150.DetailDrawerTabContentDirective, typeof i151.TestCaseDetailsComponent, typeof i152.TestCaseDetailsEditComponent, typeof i153.ApiMockingCardComponent, typeof i154.StepBuilderGroupComponent, typeof i155.StepDetailsDrawerComponent, typeof i156.TemplateVariablesFormComponent, typeof i157.AdvancedVariablesFormComponent, typeof i160.QuestionnaireListComponent, typeof i161.ChangeHistoryComponent, typeof i163.VersionHistoryListComponent, typeof i164.VersionHistoryCompareComponent, typeof i165.VersionHistoryDetailComponent, typeof i166.VersionHistoryRestoreConfirmComponent, typeof i167.NewVersionHistoryDetailComponent]>;
|
|
195
198
|
static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
|
|
196
199
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -109,6 +109,12 @@ export * from './lib/new-environment-variable-dialog/new-environment-variable-di
|
|
|
109
109
|
export * from './lib/new-environment-variable-dialog/new-environment-variable-dialog.models';
|
|
110
110
|
export * from './lib/new-test-data-profile-dialog/new-test-data-profile-dialog.component';
|
|
111
111
|
export * from './lib/new-test-data-profile-dialog/new-test-data-profile-dialog.models';
|
|
112
|
+
export * from './lib/manage-columns-dialog/manage-columns-dialog.component';
|
|
113
|
+
export * from './lib/manage-columns-dialog/manage-columns-dialog.models';
|
|
114
|
+
export * from './lib/audit-log-drawer/audit-log-drawer.component';
|
|
115
|
+
export * from './lib/audit-log-drawer/audit-log-entry-card.component';
|
|
116
|
+
export * from './lib/audit-log-drawer/audit-log-drawer.service';
|
|
117
|
+
export * from './lib/audit-log-drawer/audit-log-drawer.models';
|
|
112
118
|
export * from './lib/assign-environments-dialog/assign-environments-dialog.component';
|
|
113
119
|
export * from './lib/assign-environments-dialog/assign-environments-dialog.models';
|
|
114
120
|
export * from './lib/permission-toggle/permission-toggle.component';
|