@cqa-lib/cqa-ui 1.1.0 → 1.1.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/ai-debug-alert/ai-debug-alert.component.mjs +20 -0
- package/esm2020/lib/badge/badge.component.mjs +13 -3
- package/esm2020/lib/configuration-card/configuration-card.component.mjs +93 -0
- package/esm2020/lib/console-alert/console-alert.component.mjs +59 -0
- package/esm2020/lib/dashboards/insight-card/insight-card.component.mjs +1 -1
- package/esm2020/lib/network-request/network-request.component.mjs +47 -0
- package/esm2020/lib/run-history-card/run-history-card.component.mjs +149 -0
- package/esm2020/lib/simulator/simulator.component.mjs +186 -0
- package/esm2020/lib/ui-kit.module.mjs +40 -5
- package/esm2020/lib/view-image-modal/view-image-modal.component.mjs +40 -0
- package/esm2020/public-api.mjs +8 -1
- package/fesm2015/cqa-lib-cqa-ui.mjs +625 -8
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +617 -8
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/ai-debug-alert/ai-debug-alert.component.d.ts +7 -0
- package/lib/badge/badge.component.d.ts +2 -1
- package/lib/configuration-card/configuration-card.component.d.ts +31 -0
- package/lib/console-alert/console-alert.component.d.ts +12 -0
- package/lib/network-request/network-request.component.d.ts +15 -0
- package/lib/run-history-card/run-history-card.component.d.ts +47 -0
- package/lib/simulator/simulator.component.d.ts +52 -0
- package/lib/ui-kit.module.d.ts +23 -16
- package/lib/view-image-modal/view-image-modal.component.d.ts +13 -0
- package/package.json +1 -1
- package/public-api.d.ts +7 -0
- package/styles.css +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class AiDebugAlertComponent {
|
|
3
|
+
message: string;
|
|
4
|
+
timestamp: string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AiDebugAlertComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AiDebugAlertComponent, "cqa-ai-debug-alert", never, { "message": "message"; "timestamp": "timestamp"; }, {}, never, never>;
|
|
7
|
+
}
|
|
@@ -9,6 +9,7 @@ export declare class BadgeComponent {
|
|
|
9
9
|
size: BadgeSize;
|
|
10
10
|
backgroundColor?: string;
|
|
11
11
|
textColor?: string;
|
|
12
|
+
borderColor?: string;
|
|
12
13
|
iconBackgroundColor?: string;
|
|
13
14
|
iconColor?: string;
|
|
14
15
|
get badgeClasses(): string;
|
|
@@ -24,5 +25,5 @@ export declare class BadgeComponent {
|
|
|
24
25
|
[key: string]: string;
|
|
25
26
|
};
|
|
26
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "cqa-badge", never, { "label": "label"; "icon": "icon"; "iconLibrary": "iconLibrary"; "variant": "variant"; "size": "size"; "backgroundColor": "backgroundColor"; "textColor": "textColor"; "iconBackgroundColor": "iconBackgroundColor"; "iconColor": "iconColor"; }, {}, never, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "cqa-badge", never, { "label": "label"; "icon": "icon"; "iconLibrary": "iconLibrary"; "variant": "variant"; "size": "size"; "backgroundColor": "backgroundColor"; "textColor": "textColor"; "borderColor": "borderColor"; "iconBackgroundColor": "iconBackgroundColor"; "iconColor": "iconColor"; }, {}, never, never>;
|
|
28
29
|
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
declare type ValueType = string | number | boolean | null | undefined;
|
|
3
|
+
export interface ConfigurationItem {
|
|
4
|
+
label: string;
|
|
5
|
+
value: ValueType;
|
|
6
|
+
icon?: string;
|
|
7
|
+
subLabel?: string;
|
|
8
|
+
}
|
|
9
|
+
export declare class ConfigurationCardComponent {
|
|
10
|
+
icon: string;
|
|
11
|
+
title: string;
|
|
12
|
+
data: ConfigurationItem[];
|
|
13
|
+
hasIcon(item: ConfigurationItem): boolean;
|
|
14
|
+
isEmptyValue(value: ValueType): boolean;
|
|
15
|
+
isBoolean(value: ValueType): boolean;
|
|
16
|
+
getDisplayValue(item: ConfigurationItem): string;
|
|
17
|
+
getValueColor(item: ConfigurationItem): string;
|
|
18
|
+
getStatusBadge(item: ConfigurationItem): string;
|
|
19
|
+
getIconBgColor(item: ConfigurationItem): string;
|
|
20
|
+
getIconColor(item: ConfigurationItem): string;
|
|
21
|
+
get headerIconStyles(): {
|
|
22
|
+
[key: string]: string;
|
|
23
|
+
};
|
|
24
|
+
getItemCardStyle(item: ConfigurationItem): {
|
|
25
|
+
border: string;
|
|
26
|
+
'background-color': string;
|
|
27
|
+
};
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfigurationCardComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConfigurationCardComponent, "cqa-configuration-card", never, { "icon": "icon"; "title": "title"; "data": "data"; }, {}, never, never>;
|
|
30
|
+
}
|
|
31
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare type ConsoleAlertType = 'error' | 'warn' | 'info';
|
|
3
|
+
export declare class ConsoleAlertComponent {
|
|
4
|
+
type: ConsoleAlertType;
|
|
5
|
+
message: string;
|
|
6
|
+
timestamp: string;
|
|
7
|
+
get iconName(): string;
|
|
8
|
+
get typeColor(): string;
|
|
9
|
+
get typeTextColor(): string;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConsoleAlertComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ConsoleAlertComponent, "cqa-console-alert", never, { "type": "type"; "message": "message"; "timestamp": "timestamp"; }, {}, never, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class NetworkRequestComponent {
|
|
3
|
+
statusCode: number;
|
|
4
|
+
requestType: string;
|
|
5
|
+
timestamp: string;
|
|
6
|
+
apiRoute: string;
|
|
7
|
+
duration: number;
|
|
8
|
+
progress: number;
|
|
9
|
+
private readonly MAX_DURATION;
|
|
10
|
+
get statusColor(): string;
|
|
11
|
+
get progressPercentage(): number;
|
|
12
|
+
get formattedDuration(): string;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NetworkRequestComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NetworkRequestComponent, "cqa-network-request", never, { "statusCode": "statusCode"; "requestType": "requestType"; "timestamp": "timestamp"; "apiRoute": "apiRoute"; "duration": "duration"; "progress": "progress"; }, {}, never, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare type RunStatus = 'passed' | 'failed' | 'aborted' | 'in-progress';
|
|
3
|
+
export declare type RunType = 'automated' | 'manual';
|
|
4
|
+
export declare type CardSize = 'normal' | 'small';
|
|
5
|
+
export interface RunHistoryData {
|
|
6
|
+
id: string | number;
|
|
7
|
+
status: RunStatus;
|
|
8
|
+
type: RunType;
|
|
9
|
+
timestamp: string;
|
|
10
|
+
duration: string;
|
|
11
|
+
runLabel?: string;
|
|
12
|
+
errorMessage?: string;
|
|
13
|
+
}
|
|
14
|
+
export declare class RunHistoryCardComponent {
|
|
15
|
+
id: string | number;
|
|
16
|
+
status: RunStatus;
|
|
17
|
+
type: RunType;
|
|
18
|
+
timestamp: string;
|
|
19
|
+
duration: string;
|
|
20
|
+
runLabel?: string;
|
|
21
|
+
errorMessage?: string;
|
|
22
|
+
size: CardSize;
|
|
23
|
+
get statusBadgeVariant(): 'success' | 'error' | 'warning' | 'info';
|
|
24
|
+
get statusLabel(): string;
|
|
25
|
+
get statusColor(): string;
|
|
26
|
+
get statusIconBgColor(): string;
|
|
27
|
+
get statusIcon(): string;
|
|
28
|
+
get typeIcon(): string;
|
|
29
|
+
get typeLabel(): string;
|
|
30
|
+
get isSmall(): boolean;
|
|
31
|
+
get statusIconContainerStyles(): {
|
|
32
|
+
[key: string]: string;
|
|
33
|
+
};
|
|
34
|
+
get statusIconStyles(): {
|
|
35
|
+
[key: string]: string;
|
|
36
|
+
};
|
|
37
|
+
get statusBadgeStyles(): {
|
|
38
|
+
[key: string]: string;
|
|
39
|
+
};
|
|
40
|
+
get runLabelStyles(): {
|
|
41
|
+
[key: string]: string;
|
|
42
|
+
};
|
|
43
|
+
get cardPadding(): string;
|
|
44
|
+
get borderLeftWidth(): string;
|
|
45
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RunHistoryCardComponent, never>;
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RunHistoryCardComponent, "cqa-run-history-card", never, { "id": "id"; "status": "status"; "type": "type"; "timestamp": "timestamp"; "duration": "duration"; "runLabel": "runLabel"; "errorMessage": "errorMessage"; "size": "size"; }, {}, never, never>;
|
|
47
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { EventEmitter, ElementRef, AfterViewInit, OnDestroy, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface StepMarker {
|
|
4
|
+
cumulativeDuration: number;
|
|
5
|
+
result: 'SUCCESS' | 'FAILURE';
|
|
6
|
+
}
|
|
7
|
+
declare type SegmentOption = {
|
|
8
|
+
label: string;
|
|
9
|
+
value: string;
|
|
10
|
+
icon?: string;
|
|
11
|
+
};
|
|
12
|
+
export declare class SimulatorComponent implements AfterViewInit, OnDestroy, OnChanges {
|
|
13
|
+
videoUrl: string;
|
|
14
|
+
videoCurrentDuration: number;
|
|
15
|
+
stepMarkers: StepMarker[];
|
|
16
|
+
screenShotUrl: string;
|
|
17
|
+
platformName: string;
|
|
18
|
+
platformType: 'browser' | 'device';
|
|
19
|
+
videoTimeUpdate: EventEmitter<number>;
|
|
20
|
+
videoPlay: EventEmitter<void>;
|
|
21
|
+
videoPause: EventEmitter<void>;
|
|
22
|
+
vplayer: ElementRef<HTMLVideoElement>;
|
|
23
|
+
timelineBar: ElementRef<HTMLDivElement>;
|
|
24
|
+
progress: number;
|
|
25
|
+
dragging: boolean;
|
|
26
|
+
isPlaying: boolean;
|
|
27
|
+
isFullScreen: boolean;
|
|
28
|
+
currentView: string;
|
|
29
|
+
segments: SegmentOption[];
|
|
30
|
+
private videoEventListenerCleanup;
|
|
31
|
+
private lastSetDuration;
|
|
32
|
+
ngAfterViewInit(): void;
|
|
33
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
34
|
+
ngOnDestroy(): void;
|
|
35
|
+
seekToTime(milliseconds: number): void;
|
|
36
|
+
togglePlay(): void;
|
|
37
|
+
onTimelineClick(event: MouseEvent): void;
|
|
38
|
+
startDrag(): void;
|
|
39
|
+
onDrag(event: MouseEvent): void;
|
|
40
|
+
stopDrag(): void;
|
|
41
|
+
onVideoMetadataLoaded(): void;
|
|
42
|
+
onVideoCanPlay(): void;
|
|
43
|
+
private attachVideoListeners;
|
|
44
|
+
getStepLeftPosition(step: StepMarker): number;
|
|
45
|
+
getStepColor(step: StepMarker): string;
|
|
46
|
+
toggleFullScreen(): void;
|
|
47
|
+
onSegmentChange(value: string): void;
|
|
48
|
+
formatTime(seconds: number): string;
|
|
49
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SimulatorComponent, never>;
|
|
50
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SimulatorComponent, "cqa-simulator", never, { "videoUrl": "videoUrl"; "videoCurrentDuration": "videoCurrentDuration"; "stepMarkers": "stepMarkers"; "screenShotUrl": "screenShotUrl"; "platformName": "platformName"; "platformType": "platformType"; }, { "videoTimeUpdate": "videoTimeUpdate"; "videoPlay": "videoPlay"; "videoPause": "videoPause"; }, never, never>;
|
|
51
|
+
}
|
|
52
|
+
export {};
|
package/lib/ui-kit.module.d.ts
CHANGED
|
@@ -33,24 +33,31 @@ import * as i30 from "./empty-state/empty-state.component";
|
|
|
33
33
|
import * as i31 from "./templates/table-template.component";
|
|
34
34
|
import * as i32 from "./full-table-loader/full-table-loader.component";
|
|
35
35
|
import * as i33 from "./table-data-loader/table-data-loader.component";
|
|
36
|
-
import * as i34 from "
|
|
37
|
-
import * as i35 from "
|
|
38
|
-
import * as i36 from "
|
|
39
|
-
import * as i37 from "
|
|
40
|
-
import * as i38 from "
|
|
41
|
-
import * as i39 from "
|
|
42
|
-
import * as i40 from "
|
|
43
|
-
import * as i41 from "@angular/
|
|
44
|
-
import * as i42 from "@angular/
|
|
45
|
-
import * as i43 from "@angular/material/
|
|
46
|
-
import * as i44 from "@angular/material/
|
|
47
|
-
import * as i45 from "@angular/material/
|
|
48
|
-
import * as i46 from "@angular/material/
|
|
49
|
-
import * as i47 from "@angular/
|
|
50
|
-
import * as i48 from "@angular/
|
|
36
|
+
import * as i34 from "./simulator/simulator.component";
|
|
37
|
+
import * as i35 from "./console-alert/console-alert.component";
|
|
38
|
+
import * as i36 from "./ai-debug-alert/ai-debug-alert.component";
|
|
39
|
+
import * as i37 from "./network-request/network-request.component";
|
|
40
|
+
import * as i38 from "./run-history-card/run-history-card.component";
|
|
41
|
+
import * as i39 from "./view-image-modal/view-image-modal.component";
|
|
42
|
+
import * as i40 from "./configuration-card/configuration-card.component";
|
|
43
|
+
import * as i41 from "@angular/common";
|
|
44
|
+
import * as i42 from "@angular/forms";
|
|
45
|
+
import * as i43 from "@angular/material/icon";
|
|
46
|
+
import * as i44 from "@angular/material/menu";
|
|
47
|
+
import * as i45 from "@angular/material/button";
|
|
48
|
+
import * as i46 from "@angular/material/form-field";
|
|
49
|
+
import * as i47 from "@angular/material/select";
|
|
50
|
+
import * as i48 from "@angular/material/core";
|
|
51
|
+
import * as i49 from "@angular/material/checkbox";
|
|
52
|
+
import * as i50 from "@angular/material/radio";
|
|
53
|
+
import * as i51 from "@angular/material/datepicker";
|
|
54
|
+
import * as i52 from "@angular/material/progress-spinner";
|
|
55
|
+
import * as i53 from "@angular/material/tooltip";
|
|
56
|
+
import * as i54 from "@angular/cdk/overlay";
|
|
57
|
+
import * as i55 from "@angular/cdk/portal";
|
|
51
58
|
export declare class UiKitModule {
|
|
52
59
|
constructor(iconRegistry: MatIconRegistry);
|
|
53
60
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
|
|
54
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.SegmentControlComponent, typeof i4.DialogComponent, typeof i5.DynamicTableComponent, typeof i6.DynamicCellTemplateDirective, typeof i6.DynamicHeaderTemplateDirective, typeof i7.DynamicCellContainerDirective, typeof i8.PaginationComponent, typeof i9.ActionMenuButtonComponent, typeof i10.OtherButtonComponent, typeof i11.DynamicFilterComponent, typeof i12.DaterangepickerDirective, typeof i13.DaterangepickerComponent, typeof i14.ColumnVisibilityComponent, typeof i15.TableActionToolbarComponent, typeof i16.MetricsCardComponent, typeof i17.MetricsBlockComponent, typeof i18.ChartCardComponent, typeof i19.ProgressTextCardComponent, typeof i20.DashboardHeaderComponent, typeof i21.CoverageModuleCardComponent, typeof i22.TestDistributionCardComponent, typeof i23.FailedTestCasesCardComponent, typeof i24.DynamicSelectFieldComponent, typeof i25.SelectedFiltersComponent, typeof i26.InsightCardComponent, typeof i27.BadgeComponent, typeof i28.DropdownButtonComponent, typeof i29.HeatErrorMapCellComponent, typeof i30.EmptyStateComponent, typeof i31.TableTemplateComponent, typeof i32.FullTableLoaderComponent, typeof i33.TableDataLoaderComponent], [typeof
|
|
61
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.SegmentControlComponent, typeof i4.DialogComponent, typeof i5.DynamicTableComponent, typeof i6.DynamicCellTemplateDirective, typeof i6.DynamicHeaderTemplateDirective, typeof i7.DynamicCellContainerDirective, typeof i8.PaginationComponent, typeof i9.ActionMenuButtonComponent, typeof i10.OtherButtonComponent, typeof i11.DynamicFilterComponent, typeof i12.DaterangepickerDirective, typeof i13.DaterangepickerComponent, typeof i14.ColumnVisibilityComponent, typeof i15.TableActionToolbarComponent, typeof i16.MetricsCardComponent, typeof i17.MetricsBlockComponent, typeof i18.ChartCardComponent, typeof i19.ProgressTextCardComponent, typeof i20.DashboardHeaderComponent, typeof i21.CoverageModuleCardComponent, typeof i22.TestDistributionCardComponent, typeof i23.FailedTestCasesCardComponent, typeof i24.DynamicSelectFieldComponent, typeof i25.SelectedFiltersComponent, typeof i26.InsightCardComponent, typeof i27.BadgeComponent, typeof i28.DropdownButtonComponent, typeof i29.HeatErrorMapCellComponent, typeof i30.EmptyStateComponent, typeof i31.TableTemplateComponent, typeof i32.FullTableLoaderComponent, typeof i33.TableDataLoaderComponent, typeof i34.SimulatorComponent, typeof i35.ConsoleAlertComponent, typeof i36.AiDebugAlertComponent, typeof i37.NetworkRequestComponent, typeof i38.RunHistoryCardComponent, typeof i39.ViewImageModalComponent, typeof i40.ConfigurationCardComponent], [typeof i41.CommonModule, typeof i42.FormsModule, typeof i42.ReactiveFormsModule, typeof i43.MatIconModule, typeof i44.MatMenuModule, typeof i45.MatButtonModule, typeof i46.MatFormFieldModule, typeof i47.MatSelectModule, typeof i48.MatOptionModule, typeof i49.MatCheckboxModule, typeof i50.MatRadioModule, typeof i51.MatDatepickerModule, typeof i48.MatNativeDateModule, typeof i52.MatProgressSpinnerModule, typeof i53.MatTooltipModule, typeof i54.OverlayModule, typeof i55.PortalModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.SegmentControlComponent, typeof i4.DialogComponent, typeof i5.DynamicTableComponent, typeof i6.DynamicCellTemplateDirective, typeof i6.DynamicHeaderTemplateDirective, typeof i7.DynamicCellContainerDirective, typeof i8.PaginationComponent, typeof i9.ActionMenuButtonComponent, typeof i10.OtherButtonComponent, typeof i11.DynamicFilterComponent, typeof i12.DaterangepickerDirective, typeof i13.DaterangepickerComponent, typeof i14.ColumnVisibilityComponent, typeof i15.TableActionToolbarComponent, typeof i16.MetricsCardComponent, typeof i18.ChartCardComponent, typeof i19.ProgressTextCardComponent, typeof i20.DashboardHeaderComponent, typeof i21.CoverageModuleCardComponent, typeof i22.TestDistributionCardComponent, typeof i23.FailedTestCasesCardComponent, typeof i24.DynamicSelectFieldComponent, typeof i25.SelectedFiltersComponent, typeof i26.InsightCardComponent, typeof i27.BadgeComponent, typeof i28.DropdownButtonComponent, typeof i29.HeatErrorMapCellComponent, typeof i30.EmptyStateComponent, typeof i31.TableTemplateComponent, typeof i32.FullTableLoaderComponent, typeof i33.TableDataLoaderComponent, typeof i34.SimulatorComponent, typeof i35.ConsoleAlertComponent, typeof i36.AiDebugAlertComponent, typeof i37.NetworkRequestComponent, typeof i38.RunHistoryCardComponent, typeof i39.ViewImageModalComponent, typeof i40.ConfigurationCardComponent]>;
|
|
55
62
|
static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
|
|
56
63
|
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ViewImageModalComponent {
|
|
4
|
+
imageUrl: string;
|
|
5
|
+
title: string;
|
|
6
|
+
isOpen: boolean;
|
|
7
|
+
close: EventEmitter<void>;
|
|
8
|
+
onClose(): void;
|
|
9
|
+
onBackdropClick(event: MouseEvent): void;
|
|
10
|
+
onImageError(event: Event): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ViewImageModalComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ViewImageModalComponent, "cqa-view-image-modal", never, { "imageUrl": "imageUrl"; "title": "title"; "isOpen": "isOpen"; }, { "close": "close"; }, never, never>;
|
|
13
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -41,3 +41,10 @@ export * from './lib/utils/metadata-colors.util';
|
|
|
41
41
|
export * from './lib/full-table-loader/full-table-loader.component';
|
|
42
42
|
export * from './lib/table-data-loader/table-data-loader.component';
|
|
43
43
|
export * from './lib/utils/tw-overlay-container';
|
|
44
|
+
export * from './lib/simulator/simulator.component';
|
|
45
|
+
export * from './lib/console-alert/console-alert.component';
|
|
46
|
+
export * from './lib/ai-debug-alert/ai-debug-alert.component';
|
|
47
|
+
export * from './lib/network-request/network-request.component';
|
|
48
|
+
export * from './lib/run-history-card/run-history-card.component';
|
|
49
|
+
export * from './lib/view-image-modal/view-image-modal.component';
|
|
50
|
+
export * from './lib/configuration-card/configuration-card.component';
|