@memberjunction/ng-dashboards 2.117.0 → 2.119.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/dist/Testing/components/testing-analytics.component.d.ts +56 -0
  2. package/dist/Testing/components/testing-analytics.component.d.ts.map +1 -0
  3. package/dist/Testing/components/testing-analytics.component.js +746 -0
  4. package/dist/Testing/components/testing-analytics.component.js.map +1 -0
  5. package/dist/Testing/components/testing-execution.component.d.ts +59 -0
  6. package/dist/Testing/components/testing-execution.component.d.ts.map +1 -0
  7. package/dist/Testing/components/testing-execution.component.js +647 -0
  8. package/dist/Testing/components/testing-execution.component.js.map +1 -0
  9. package/dist/Testing/components/testing-feedback.component.d.ts +55 -0
  10. package/dist/Testing/components/testing-feedback.component.d.ts.map +1 -0
  11. package/dist/Testing/components/testing-feedback.component.js +788 -0
  12. package/dist/Testing/components/testing-feedback.component.js.map +1 -0
  13. package/dist/Testing/components/testing-overview.component.d.ts +30 -0
  14. package/dist/Testing/components/testing-overview.component.d.ts.map +1 -0
  15. package/dist/Testing/components/testing-overview.component.js +341 -0
  16. package/dist/Testing/components/testing-overview.component.js.map +1 -0
  17. package/dist/Testing/components/testing-version-comparison.component.d.ts +58 -0
  18. package/dist/Testing/components/testing-version-comparison.component.d.ts.map +1 -0
  19. package/dist/Testing/components/testing-version-comparison.component.js +801 -0
  20. package/dist/Testing/components/testing-version-comparison.component.js.map +1 -0
  21. package/dist/Testing/components/widgets/oracle-breakdown-table.component.d.ts +20 -0
  22. package/dist/Testing/components/widgets/oracle-breakdown-table.component.d.ts.map +1 -0
  23. package/dist/Testing/components/widgets/oracle-breakdown-table.component.js +278 -0
  24. package/dist/Testing/components/widgets/oracle-breakdown-table.component.js.map +1 -0
  25. package/dist/Testing/components/widgets/suite-tree.component.d.ts +28 -0
  26. package/dist/Testing/components/widgets/suite-tree.component.d.ts.map +1 -0
  27. package/dist/Testing/components/widgets/suite-tree.component.js +275 -0
  28. package/dist/Testing/components/widgets/suite-tree.component.js.map +1 -0
  29. package/dist/Testing/components/widgets/test-run-detail-panel.component.d.ts +34 -0
  30. package/dist/Testing/components/widgets/test-run-detail-panel.component.d.ts.map +1 -0
  31. package/dist/Testing/components/widgets/test-run-detail-panel.component.js +371 -0
  32. package/dist/Testing/components/widgets/test-run-detail-panel.component.js.map +1 -0
  33. package/dist/Testing/services/testing-instrumentation.service.d.ts +152 -0
  34. package/dist/Testing/services/testing-instrumentation.service.d.ts.map +1 -0
  35. package/dist/Testing/services/testing-instrumentation.service.js +579 -0
  36. package/dist/Testing/services/testing-instrumentation.service.js.map +1 -0
  37. package/dist/Testing/testing-dashboard.component.d.ts +52 -0
  38. package/dist/Testing/testing-dashboard.component.d.ts.map +1 -0
  39. package/dist/Testing/testing-dashboard.component.js +271 -0
  40. package/dist/Testing/testing-dashboard.component.js.map +1 -0
  41. package/dist/module.d.ts +30 -20
  42. package/dist/module.d.ts.map +1 -1
  43. package/dist/module.js +50 -9
  44. package/dist/module.js.map +1 -1
  45. package/dist/public-api.d.ts +1 -0
  46. package/dist/public-api.d.ts.map +1 -1
  47. package/dist/public-api.js +3 -0
  48. package/dist/public-api.js.map +1 -1
  49. package/package.json +13 -10
@@ -0,0 +1,52 @@
1
+ import { AfterViewInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
2
+ import { BaseDashboard } from '../generic/base-dashboard';
3
+ import * as i0 from "@angular/core";
4
+ interface TestingDashboardState {
5
+ activeTab: string;
6
+ overviewState: any;
7
+ executionState: any;
8
+ analyticsState: any;
9
+ versionState: any;
10
+ feedbackState: any;
11
+ }
12
+ export declare class TestingDashboardComponent extends BaseDashboard implements AfterViewInit, OnDestroy {
13
+ private cdr;
14
+ isLoading: boolean;
15
+ activeTab: string;
16
+ selectedIndex: number;
17
+ overviewState: any;
18
+ executionState: any;
19
+ analyticsState: any;
20
+ versionState: any;
21
+ feedbackState: any;
22
+ private visitedTabs;
23
+ navigationItems: string[];
24
+ navigationConfig: {
25
+ text: string;
26
+ icon: string;
27
+ selected: boolean;
28
+ }[];
29
+ private stateChangeSubject;
30
+ constructor(cdr: ChangeDetectorRef);
31
+ ngAfterViewInit(): void;
32
+ ngOnDestroy(): void;
33
+ onTabChange(tabId: string): void;
34
+ hasVisited(tabId: string): boolean;
35
+ private setupStateManagement;
36
+ private emitStateChange;
37
+ onOverviewStateChange(state: any): void;
38
+ onExecutionStateChange(state: any): void;
39
+ onAnalyticsStateChange(state: any): void;
40
+ onVersionStateChange(state: any): void;
41
+ onFeedbackStateChange(state: any): void;
42
+ loadUserState(state: Partial<TestingDashboardState>): void;
43
+ initDashboard(): void;
44
+ loadData(): void;
45
+ getCurrentTabLabel(): string;
46
+ private updateNavigationSelection;
47
+ static ɵfac: i0.ɵɵFactoryDeclaration<TestingDashboardComponent, never>;
48
+ static ɵcmp: i0.ɵɵComponentDeclaration<TestingDashboardComponent, "mj-testing-dashboard", never, {}, {}, never, never, false, never>;
49
+ }
50
+ export declare function LoadTestingDashboard(): void;
51
+ export {};
52
+ //# sourceMappingURL=testing-dashboard.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"testing-dashboard.component.d.ts","sourceRoot":"","sources":["../../src/Testing/testing-dashboard.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,aAAa,EAAE,SAAS,EAAE,iBAAiB,EAA2B,MAAM,eAAe,CAAC;AAChH,OAAO,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;;AAK1D,UAAU,qBAAqB;IAC7B,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,GAAG,CAAC;IACnB,cAAc,EAAE,GAAG,CAAC;IACpB,cAAc,EAAE,GAAG,CAAC;IACpB,YAAY,EAAE,GAAG,CAAC;IAClB,aAAa,EAAE,GAAG,CAAC;CACpB;AAED,qBAOa,yBAA0B,SAAQ,aAAc,YAAW,aAAa,EAAE,SAAS;IA6BlF,OAAO,CAAC,GAAG;IA3BhB,SAAS,UAAS;IAClB,SAAS,SAAc;IACvB,aAAa,SAAK;IAGlB,aAAa,EAAE,GAAG,CAAQ;IAC1B,cAAc,EAAE,GAAG,CAAQ;IAC3B,cAAc,EAAE,GAAG,CAAQ;IAC3B,YAAY,EAAE,GAAG,CAAQ;IACzB,aAAa,EAAE,GAAG,CAAQ;IAGjC,OAAO,CAAC,WAAW,CAAqB;IAGjC,eAAe,EAAE,MAAM,EAAE,CAAiE;IAE1F,gBAAgB;;;;QAMrB;IAEF,OAAO,CAAC,kBAAkB,CAAwC;gBAE9C,GAAG,EAAE,iBAAiB;IAM1C,eAAe,IAAI,IAAI;IAOvB,WAAW,IAAI,IAAI;IAIZ,WAAW,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAUhC,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO;IAIzC,OAAO,CAAC,oBAAoB;IAQ5B,OAAO,CAAC,eAAe;IAahB,qBAAqB,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI;IAKvC,sBAAsB,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI;IAKxC,sBAAsB,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI;IAKxC,oBAAoB,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI;IAKtC,qBAAqB,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI;IAKvC,aAAa,CAAC,KAAK,EAAE,OAAO,CAAC,qBAAqB,CAAC,GAAG,IAAI;IAkBjE,aAAa,IAAI,IAAI;IAWrB,QAAQ,IAAI,IAAI;IAYT,kBAAkB,IAAI,MAAM;IAMnC,OAAO,CAAC,yBAAyB;yCAzJtB,yBAAyB;2CAAzB,yBAAyB;CA8JrC;AAED,wBAAgB,oBAAoB,SAEnC"}
@@ -0,0 +1,271 @@
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6
+ };
7
+ import { Component, ChangeDetectionStrategy } from '@angular/core';
8
+ import { BaseDashboard } from '../generic/base-dashboard';
9
+ import { RegisterClass } from '@memberjunction/global';
10
+ import { Subject } from 'rxjs';
11
+ import { debounceTime } from 'rxjs/operators';
12
+ import * as i0 from "@angular/core";
13
+ import * as i1 from "./components/testing-overview.component";
14
+ import * as i2 from "./components/testing-execution.component";
15
+ import * as i3 from "./components/testing-analytics.component";
16
+ import * as i4 from "./components/testing-version-comparison.component";
17
+ import * as i5 from "./components/testing-feedback.component";
18
+ function TestingDashboardComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
19
+ i0.ɵɵelementStart(0, "div", 1)(1, "div", 3)(2, "div", 4);
20
+ i0.ɵɵelement(3, "div", 5)(4, "div", 5)(5, "div", 5);
21
+ i0.ɵɵelementEnd();
22
+ i0.ɵɵelementStart(6, "div", 6);
23
+ i0.ɵɵtext(7, "Loading Testing Dashboard...");
24
+ i0.ɵɵelementEnd()()();
25
+ } }
26
+ function TestingDashboardComponent_Conditional_2_For_3_Template(rf, ctx) { if (rf & 1) {
27
+ const _r1 = i0.ɵɵgetCurrentView();
28
+ i0.ɵɵelementStart(0, "div", 11);
29
+ i0.ɵɵlistener("click", function TestingDashboardComponent_Conditional_2_For_3_Template_div_click_0_listener() { const $index_r2 = i0.ɵɵrestoreView(_r1).$index; const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.onTabChange(ctx_r2.navigationItems[$index_r2])); });
30
+ i0.ɵɵelement(1, "i");
31
+ i0.ɵɵelementStart(2, "span");
32
+ i0.ɵɵtext(3);
33
+ i0.ɵɵelementEnd()();
34
+ } if (rf & 2) {
35
+ const navItem_r4 = ctx.$implicit;
36
+ i0.ɵɵclassProp("active", navItem_r4.selected);
37
+ i0.ɵɵadvance();
38
+ i0.ɵɵclassMap(navItem_r4.icon);
39
+ i0.ɵɵadvance(2);
40
+ i0.ɵɵtextInterpolate(navItem_r4.text);
41
+ } }
42
+ function TestingDashboardComponent_Conditional_2_Conditional_5_Template(rf, ctx) { if (rf & 1) {
43
+ const _r5 = i0.ɵɵgetCurrentView();
44
+ i0.ɵɵelementStart(0, "app-testing-overview", 12);
45
+ i0.ɵɵlistener("stateChange", function TestingDashboardComponent_Conditional_2_Conditional_5_Template_app_testing_overview_stateChange_0_listener($event) { i0.ɵɵrestoreView(_r5); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.onOverviewStateChange($event)); });
46
+ i0.ɵɵelementEnd();
47
+ } if (rf & 2) {
48
+ const ctx_r2 = i0.ɵɵnextContext(2);
49
+ i0.ɵɵproperty("initialState", ctx_r2.overviewState);
50
+ } }
51
+ function TestingDashboardComponent_Conditional_2_Conditional_6_Template(rf, ctx) { if (rf & 1) {
52
+ const _r6 = i0.ɵɵgetCurrentView();
53
+ i0.ɵɵelementStart(0, "app-testing-execution", 12);
54
+ i0.ɵɵlistener("stateChange", function TestingDashboardComponent_Conditional_2_Conditional_6_Template_app_testing_execution_stateChange_0_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.onExecutionStateChange($event)); });
55
+ i0.ɵɵelementEnd();
56
+ } if (rf & 2) {
57
+ const ctx_r2 = i0.ɵɵnextContext(2);
58
+ i0.ɵɵproperty("initialState", ctx_r2.executionState);
59
+ } }
60
+ function TestingDashboardComponent_Conditional_2_Conditional_7_Template(rf, ctx) { if (rf & 1) {
61
+ const _r7 = i0.ɵɵgetCurrentView();
62
+ i0.ɵɵelementStart(0, "app-testing-analytics", 12);
63
+ i0.ɵɵlistener("stateChange", function TestingDashboardComponent_Conditional_2_Conditional_7_Template_app_testing_analytics_stateChange_0_listener($event) { i0.ɵɵrestoreView(_r7); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.onAnalyticsStateChange($event)); });
64
+ i0.ɵɵelementEnd();
65
+ } if (rf & 2) {
66
+ const ctx_r2 = i0.ɵɵnextContext(2);
67
+ i0.ɵɵproperty("initialState", ctx_r2.analyticsState);
68
+ } }
69
+ function TestingDashboardComponent_Conditional_2_Conditional_8_Template(rf, ctx) { if (rf & 1) {
70
+ const _r8 = i0.ɵɵgetCurrentView();
71
+ i0.ɵɵelementStart(0, "app-testing-version-comparison", 12);
72
+ i0.ɵɵlistener("stateChange", function TestingDashboardComponent_Conditional_2_Conditional_8_Template_app_testing_version_comparison_stateChange_0_listener($event) { i0.ɵɵrestoreView(_r8); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.onVersionStateChange($event)); });
73
+ i0.ɵɵelementEnd();
74
+ } if (rf & 2) {
75
+ const ctx_r2 = i0.ɵɵnextContext(2);
76
+ i0.ɵɵproperty("initialState", ctx_r2.versionState);
77
+ } }
78
+ function TestingDashboardComponent_Conditional_2_Conditional_9_Template(rf, ctx) { if (rf & 1) {
79
+ const _r9 = i0.ɵɵgetCurrentView();
80
+ i0.ɵɵelementStart(0, "app-testing-feedback", 12);
81
+ i0.ɵɵlistener("stateChange", function TestingDashboardComponent_Conditional_2_Conditional_9_Template_app_testing_feedback_stateChange_0_listener($event) { i0.ɵɵrestoreView(_r9); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.onFeedbackStateChange($event)); });
82
+ i0.ɵɵelementEnd();
83
+ } if (rf & 2) {
84
+ const ctx_r2 = i0.ɵɵnextContext(2);
85
+ i0.ɵɵproperty("initialState", ctx_r2.feedbackState);
86
+ } }
87
+ function TestingDashboardComponent_Conditional_2_Template(rf, ctx) { if (rf & 1) {
88
+ i0.ɵɵelementStart(0, "div", 2)(1, "div", 7);
89
+ i0.ɵɵrepeaterCreate(2, TestingDashboardComponent_Conditional_2_For_3_Template, 4, 5, "div", 8, i0.ɵɵrepeaterTrackByIndex);
90
+ i0.ɵɵelementEnd();
91
+ i0.ɵɵelementStart(4, "div", 9);
92
+ i0.ɵɵtemplate(5, TestingDashboardComponent_Conditional_2_Conditional_5_Template, 1, 1, "app-testing-overview", 10)(6, TestingDashboardComponent_Conditional_2_Conditional_6_Template, 1, 1, "app-testing-execution", 10)(7, TestingDashboardComponent_Conditional_2_Conditional_7_Template, 1, 1, "app-testing-analytics", 10)(8, TestingDashboardComponent_Conditional_2_Conditional_8_Template, 1, 1, "app-testing-version-comparison", 10)(9, TestingDashboardComponent_Conditional_2_Conditional_9_Template, 1, 1, "app-testing-feedback", 10);
93
+ i0.ɵɵelementEnd()();
94
+ } if (rf & 2) {
95
+ const ctx_r2 = i0.ɵɵnextContext();
96
+ i0.ɵɵadvance(2);
97
+ i0.ɵɵrepeater(ctx_r2.navigationConfig);
98
+ i0.ɵɵadvance(3);
99
+ i0.ɵɵconditional(ctx_r2.activeTab === "overview" && ctx_r2.hasVisited("overview") ? 5 : -1);
100
+ i0.ɵɵadvance();
101
+ i0.ɵɵconditional(ctx_r2.activeTab === "execution" && ctx_r2.hasVisited("execution") ? 6 : -1);
102
+ i0.ɵɵadvance();
103
+ i0.ɵɵconditional(ctx_r2.activeTab === "analytics" && ctx_r2.hasVisited("analytics") ? 7 : -1);
104
+ i0.ɵɵadvance();
105
+ i0.ɵɵconditional(ctx_r2.activeTab === "version" && ctx_r2.hasVisited("version") ? 8 : -1);
106
+ i0.ɵɵadvance();
107
+ i0.ɵɵconditional(ctx_r2.activeTab === "feedback" && ctx_r2.hasVisited("feedback") ? 9 : -1);
108
+ } }
109
+ let TestingDashboardComponent = class TestingDashboardComponent extends BaseDashboard {
110
+ cdr;
111
+ isLoading = false;
112
+ activeTab = 'overview';
113
+ selectedIndex = 0;
114
+ // Component states
115
+ overviewState = null;
116
+ executionState = null;
117
+ analyticsState = null;
118
+ versionState = null;
119
+ feedbackState = null;
120
+ // Track visited tabs for lazy loading
121
+ visitedTabs = new Set();
122
+ // Navigation items
123
+ navigationItems = ['overview', 'execution', 'analytics', 'version', 'feedback'];
124
+ navigationConfig = [
125
+ { text: 'Overview', icon: 'fa-solid fa-chart-line', selected: false },
126
+ { text: 'Execution', icon: 'fa-solid fa-play-circle', selected: false },
127
+ { text: 'Analytics', icon: 'fa-solid fa-chart-bar', selected: false },
128
+ { text: 'Version', icon: 'fa-solid fa-code-compare', selected: false },
129
+ { text: 'Feedback', icon: 'fa-solid fa-clipboard-check', selected: false }
130
+ ];
131
+ stateChangeSubject = new Subject();
132
+ constructor(cdr) {
133
+ super();
134
+ this.cdr = cdr;
135
+ this.setupStateManagement();
136
+ this.updateNavigationSelection();
137
+ }
138
+ ngAfterViewInit() {
139
+ this.visitedTabs.add(this.activeTab);
140
+ this.updateNavigationSelection();
141
+ this.emitStateChange();
142
+ this.cdr.detectChanges();
143
+ }
144
+ ngOnDestroy() {
145
+ this.stateChangeSubject.complete();
146
+ }
147
+ onTabChange(tabId) {
148
+ this.activeTab = tabId;
149
+ const index = this.navigationItems.indexOf(tabId);
150
+ this.selectedIndex = index >= 0 ? index : 0;
151
+ this.updateNavigationSelection();
152
+ this.visitedTabs.add(tabId);
153
+ this.emitStateChange();
154
+ this.cdr.markForCheck();
155
+ }
156
+ hasVisited(tabId) {
157
+ return this.visitedTabs.has(tabId);
158
+ }
159
+ setupStateManagement() {
160
+ this.stateChangeSubject.pipe(debounceTime(50)).subscribe(state => {
161
+ this.UserStateChanged.emit(state);
162
+ });
163
+ }
164
+ emitStateChange() {
165
+ const state = {
166
+ activeTab: this.activeTab,
167
+ overviewState: this.overviewState || {},
168
+ executionState: this.executionState || {},
169
+ analyticsState: this.analyticsState || {},
170
+ versionState: this.versionState || {},
171
+ feedbackState: this.feedbackState || {}
172
+ };
173
+ this.stateChangeSubject.next(state);
174
+ }
175
+ onOverviewStateChange(state) {
176
+ this.overviewState = state;
177
+ this.emitStateChange();
178
+ }
179
+ onExecutionStateChange(state) {
180
+ this.executionState = state;
181
+ this.emitStateChange();
182
+ }
183
+ onAnalyticsStateChange(state) {
184
+ this.analyticsState = state;
185
+ this.emitStateChange();
186
+ }
187
+ onVersionStateChange(state) {
188
+ this.versionState = state;
189
+ this.emitStateChange();
190
+ }
191
+ onFeedbackStateChange(state) {
192
+ this.feedbackState = state;
193
+ this.emitStateChange();
194
+ }
195
+ loadUserState(state) {
196
+ if (state.activeTab) {
197
+ this.activeTab = state.activeTab;
198
+ const index = this.navigationItems.indexOf(state.activeTab);
199
+ this.selectedIndex = index >= 0 ? index : 0;
200
+ this.visitedTabs.add(state.activeTab);
201
+ this.updateNavigationSelection();
202
+ }
203
+ if (state.overviewState)
204
+ this.overviewState = state.overviewState;
205
+ if (state.executionState)
206
+ this.executionState = state.executionState;
207
+ if (state.analyticsState)
208
+ this.analyticsState = state.analyticsState;
209
+ if (state.versionState)
210
+ this.versionState = state.versionState;
211
+ if (state.feedbackState)
212
+ this.feedbackState = state.feedbackState;
213
+ this.cdr.markForCheck();
214
+ }
215
+ initDashboard() {
216
+ try {
217
+ this.isLoading = true;
218
+ }
219
+ catch (error) {
220
+ console.error('Error initializing Testing dashboard:', error);
221
+ this.Error.emit(new Error('Failed to initialize Testing dashboard. Please try again.'));
222
+ }
223
+ finally {
224
+ this.isLoading = false;
225
+ }
226
+ }
227
+ loadData() {
228
+ if (this.Config?.userState) {
229
+ setTimeout(() => {
230
+ if (this.Config?.userState) {
231
+ this.loadUserState(this.Config.userState);
232
+ }
233
+ }, 0);
234
+ }
235
+ this.LoadingComplete.emit();
236
+ }
237
+ getCurrentTabLabel() {
238
+ const tabIndex = this.navigationItems.indexOf(this.activeTab);
239
+ const labels = ['Overview', 'Execution', 'Analytics', 'Version', 'Feedback'];
240
+ return tabIndex >= 0 ? labels[tabIndex] : 'Testing Dashboard';
241
+ }
242
+ updateNavigationSelection() {
243
+ this.navigationConfig.forEach((item, index) => {
244
+ item.selected = this.navigationItems[index] === this.activeTab;
245
+ });
246
+ }
247
+ static ɵfac = function TestingDashboardComponent_Factory(t) { return new (t || TestingDashboardComponent)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef)); };
248
+ static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: TestingDashboardComponent, selectors: [["mj-testing-dashboard"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 3, vars: 2, consts: [[1, "testing-dashboard-container"], [1, "loading-container"], [1, "dashboard-content-wrapper"], [1, "loading-content"], [1, "loading-spinner"], [1, "spinner-ring"], [1, "loading-text"], [1, "testing-dashboard-nav"], [1, "nav-item", 3, "active"], [1, "dashboard-content"], [3, "initialState"], [1, "nav-item", 3, "click"], [3, "stateChange", "initialState"]], template: function TestingDashboardComponent_Template(rf, ctx) { if (rf & 1) {
249
+ i0.ɵɵelementStart(0, "div", 0);
250
+ i0.ɵɵtemplate(1, TestingDashboardComponent_Conditional_1_Template, 8, 0, "div", 1)(2, TestingDashboardComponent_Conditional_2_Template, 10, 5, "div", 2);
251
+ i0.ɵɵelementEnd();
252
+ } if (rf & 2) {
253
+ i0.ɵɵadvance();
254
+ i0.ɵɵconditional(ctx.isLoading ? 1 : -1);
255
+ i0.ɵɵadvance();
256
+ i0.ɵɵconditional(!ctx.isLoading ? 2 : -1);
257
+ } }, dependencies: [i1.TestingOverviewComponent, i2.TestingExecutionComponent, i3.TestingAnalyticsComponent, i4.TestingVersionComparisonComponent, i5.TestingFeedbackComponent], styles: [".testing-dashboard-container[_ngcontent-%COMP%] {\n height: 100%;\n background: #f5f7fa;\n position: relative;\n overflow: hidden;\n}\n\n.loading-container[_ngcontent-%COMP%] {\n display: flex;\n align-items: center;\n justify-content: center;\n height: 100%;\n background: rgba(255, 255, 255, 0.9);\n}\n\n.loading-content[_ngcontent-%COMP%] {\n text-align: center;\n}\n\n.loading-spinner[_ngcontent-%COMP%] {\n display: inline-block;\n position: relative;\n width: 80px;\n height: 80px;\n}\n\n.spinner-ring[_ngcontent-%COMP%] {\n box-sizing: border-box;\n display: block;\n position: absolute;\n width: 64px;\n height: 64px;\n margin: 8px;\n border: 8px solid #2196f3;\n border-radius: 50%;\n animation: _ngcontent-%COMP%_spinner-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;\n border-color: #2196f3 transparent transparent transparent;\n}\n\n.spinner-ring[_ngcontent-%COMP%]:nth-child(1) {\n animation-delay: -0.45s;\n}\n\n.spinner-ring[_ngcontent-%COMP%]:nth-child(2) {\n animation-delay: -0.3s;\n}\n\n.spinner-ring[_ngcontent-%COMP%]:nth-child(3) {\n animation-delay: -0.15s;\n}\n\n@keyframes _ngcontent-%COMP%_spinner-ring {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n\n.loading-text[_ngcontent-%COMP%] {\n margin-top: 20px;\n font-size: 16px;\n color: #666;\n font-weight: 500;\n}\n\n.dashboard-content-wrapper[_ngcontent-%COMP%] {\n height: 100%;\n display: flex;\n flex-direction: column;\n}\n\n.dashboard-content[_ngcontent-%COMP%] {\n flex: 1;\n overflow: hidden;\n}\n\n.testing-dashboard-nav[_ngcontent-%COMP%] {\n display: flex;\n justify-content: flex-start;\n gap: 4px;\n background: white;\n border-bottom: 1px solid #e0e0e0;\n box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);\n padding: 0;\n}\n\n.nav-item[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n gap: 8px;\n padding: 14px 20px;\n cursor: pointer;\n color: #666;\n transition: all 0.2s ease;\n border-bottom: 2px solid transparent;\n white-space: nowrap;\n position: relative;\n}\n\n.nav-item[_ngcontent-%COMP%]:hover {\n background: rgba(33, 150, 243, 0.05);\n color: #2196f3;\n}\n\n.nav-item.active[_ngcontent-%COMP%] {\n color: #2196f3;\n border-bottom-color: #2196f3;\n background: rgba(33, 150, 243, 0.08);\n}\n\n.nav-item[_ngcontent-%COMP%] i[_ngcontent-%COMP%] {\n font-size: 16px;\n}\n\n.nav-item[_ngcontent-%COMP%] span[_ngcontent-%COMP%] {\n font-size: 13px;\n font-weight: 500;\n}\n\n@media (max-width: 768px) {\n .nav-item[_ngcontent-%COMP%] span[_ngcontent-%COMP%] {\n font-size: 9px;\n }\n\n .nav-item[_ngcontent-%COMP%] i[_ngcontent-%COMP%] {\n font-size: 18px;\n }\n}"], changeDetection: 0 });
258
+ };
259
+ TestingDashboardComponent = __decorate([
260
+ RegisterClass(BaseDashboard, 'TestingDashboard')
261
+ ], TestingDashboardComponent);
262
+ export { TestingDashboardComponent };
263
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TestingDashboardComponent, [{
264
+ type: Component,
265
+ args: [{ selector: 'mj-testing-dashboard', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"testing-dashboard-container\">\n @if (isLoading) {\n <div class=\"loading-container\">\n <div class=\"loading-content\">\n <div class=\"loading-spinner\">\n <div class=\"spinner-ring\"></div>\n <div class=\"spinner-ring\"></div>\n <div class=\"spinner-ring\"></div>\n </div>\n <div class=\"loading-text\">Loading Testing Dashboard...</div>\n </div>\n </div>\n }\n\n @if (!isLoading) {\n <div class=\"dashboard-content-wrapper\">\n <div class=\"testing-dashboard-nav\">\n @for (navItem of navigationConfig; track $index) {\n <div\n class=\"nav-item\"\n [class.active]=\"navItem.selected\"\n (click)=\"onTabChange(navigationItems[$index])\"\n >\n <i [class]=\"navItem.icon\"></i>\n <span>{{ navItem.text }}</span>\n </div>\n }\n </div>\n\n <div class=\"dashboard-content\">\n @if (activeTab === 'overview' && hasVisited('overview')) {\n <app-testing-overview\n [initialState]=\"overviewState\"\n (stateChange)=\"onOverviewStateChange($event)\"\n ></app-testing-overview>\n }\n\n @if (activeTab === 'execution' && hasVisited('execution')) {\n <app-testing-execution\n [initialState]=\"executionState\"\n (stateChange)=\"onExecutionStateChange($event)\"\n ></app-testing-execution>\n }\n\n @if (activeTab === 'analytics' && hasVisited('analytics')) {\n <app-testing-analytics\n [initialState]=\"analyticsState\"\n (stateChange)=\"onAnalyticsStateChange($event)\"\n ></app-testing-analytics>\n }\n\n @if (activeTab === 'version' && hasVisited('version')) {\n <app-testing-version-comparison\n [initialState]=\"versionState\"\n (stateChange)=\"onVersionStateChange($event)\"\n ></app-testing-version-comparison>\n }\n\n @if (activeTab === 'feedback' && hasVisited('feedback')) {\n <app-testing-feedback\n [initialState]=\"feedbackState\"\n (stateChange)=\"onFeedbackStateChange($event)\"\n ></app-testing-feedback>\n }\n </div>\n </div>\n }\n</div>\n", styles: [".testing-dashboard-container {\n height: 100%;\n background: #f5f7fa;\n position: relative;\n overflow: hidden;\n}\n\n.loading-container {\n display: flex;\n align-items: center;\n justify-content: center;\n height: 100%;\n background: rgba(255, 255, 255, 0.9);\n}\n\n.loading-content {\n text-align: center;\n}\n\n.loading-spinner {\n display: inline-block;\n position: relative;\n width: 80px;\n height: 80px;\n}\n\n.spinner-ring {\n box-sizing: border-box;\n display: block;\n position: absolute;\n width: 64px;\n height: 64px;\n margin: 8px;\n border: 8px solid #2196f3;\n border-radius: 50%;\n animation: spinner-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;\n border-color: #2196f3 transparent transparent transparent;\n}\n\n.spinner-ring:nth-child(1) {\n animation-delay: -0.45s;\n}\n\n.spinner-ring:nth-child(2) {\n animation-delay: -0.3s;\n}\n\n.spinner-ring:nth-child(3) {\n animation-delay: -0.15s;\n}\n\n@keyframes spinner-ring {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n\n.loading-text {\n margin-top: 20px;\n font-size: 16px;\n color: #666;\n font-weight: 500;\n}\n\n.dashboard-content-wrapper {\n height: 100%;\n display: flex;\n flex-direction: column;\n}\n\n.dashboard-content {\n flex: 1;\n overflow: hidden;\n}\n\n.testing-dashboard-nav {\n display: flex;\n justify-content: flex-start;\n gap: 4px;\n background: white;\n border-bottom: 1px solid #e0e0e0;\n box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);\n padding: 0;\n}\n\n.nav-item {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n gap: 8px;\n padding: 14px 20px;\n cursor: pointer;\n color: #666;\n transition: all 0.2s ease;\n border-bottom: 2px solid transparent;\n white-space: nowrap;\n position: relative;\n}\n\n.nav-item:hover {\n background: rgba(33, 150, 243, 0.05);\n color: #2196f3;\n}\n\n.nav-item.active {\n color: #2196f3;\n border-bottom-color: #2196f3;\n background: rgba(33, 150, 243, 0.08);\n}\n\n.nav-item i {\n font-size: 16px;\n}\n\n.nav-item span {\n font-size: 13px;\n font-weight: 500;\n}\n\n@media (max-width: 768px) {\n .nav-item span {\n font-size: 9px;\n }\n\n .nav-item i {\n font-size: 18px;\n }\n}\n"] }]
266
+ }], () => [{ type: i0.ChangeDetectorRef }], null); })();
267
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(TestingDashboardComponent, { className: "TestingDashboardComponent", filePath: "src/Testing/testing-dashboard.component.ts", lineNumber: 23 }); })();
268
+ export function LoadTestingDashboard() {
269
+ // Prevents tree-shaking
270
+ }
271
+ //# sourceMappingURL=testing-dashboard.component.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"testing-dashboard.component.js","sourceRoot":"","sources":["../../src/Testing/testing-dashboard.component.ts","../../src/Testing/testing-dashboard.component.html"],"names":[],"mappings":"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"}
package/dist/module.d.ts CHANGED
@@ -40,28 +40,38 @@ import * as i38 from "./Scheduling/components/scheduling-jobs.component";
40
40
  import * as i39 from "./Scheduling/components/scheduling-history.component";
41
41
  import * as i40 from "./Scheduling/components/scheduling-types.component";
42
42
  import * as i41 from "./Scheduling/components/scheduling-health.component";
43
- import * as i42 from "@angular/common";
44
- import * as i43 from "@angular/forms";
45
- import * as i44 from "@progress/kendo-angular-indicators";
46
- import * as i45 from "@progress/kendo-angular-dropdowns";
47
- import * as i46 from "@progress/kendo-angular-inputs";
48
- import * as i47 from "@progress/kendo-angular-dateinputs";
49
- import * as i48 from "@progress/kendo-angular-layout";
50
- import * as i49 from "@progress/kendo-angular-dialog";
51
- import * as i50 from "@memberjunction/ng-container-directives";
52
- import * as i51 from "@progress/kendo-angular-navigation";
53
- import * as i52 from "@memberjunction/ng-code-editor";
54
- import * as i53 from "@progress/kendo-angular-treeview";
55
- import * as i54 from "@progress/kendo-angular-buttons";
56
- import * as i55 from "@memberjunction/ng-action-gallery";
57
- import * as i56 from "@memberjunction/ng-ai-test-harness";
58
- import * as i57 from "@memberjunction/ng-core-entity-forms";
59
- import * as i58 from "@progress/kendo-angular-grid";
60
- import * as i59 from "@memberjunction/ng-react";
61
- import * as i60 from "@memberjunction/ng-notifications";
43
+ import * as i42 from "./Testing/testing-dashboard.component";
44
+ import * as i43 from "./Testing/components/testing-overview.component";
45
+ import * as i44 from "./Testing/components/testing-execution.component";
46
+ import * as i45 from "./Testing/components/testing-analytics.component";
47
+ import * as i46 from "./Testing/components/testing-version-comparison.component";
48
+ import * as i47 from "./Testing/components/testing-feedback.component";
49
+ import * as i48 from "./Testing/components/widgets/suite-tree.component";
50
+ import * as i49 from "./Testing/components/widgets/oracle-breakdown-table.component";
51
+ import * as i50 from "./Testing/components/widgets/test-run-detail-panel.component";
52
+ import * as i51 from "@angular/common";
53
+ import * as i52 from "@angular/forms";
54
+ import * as i53 from "@progress/kendo-angular-indicators";
55
+ import * as i54 from "@progress/kendo-angular-dropdowns";
56
+ import * as i55 from "@progress/kendo-angular-inputs";
57
+ import * as i56 from "@progress/kendo-angular-dateinputs";
58
+ import * as i57 from "@progress/kendo-angular-layout";
59
+ import * as i58 from "@progress/kendo-angular-dialog";
60
+ import * as i59 from "@memberjunction/ng-container-directives";
61
+ import * as i60 from "@progress/kendo-angular-navigation";
62
+ import * as i61 from "@memberjunction/ng-code-editor";
63
+ import * as i62 from "@progress/kendo-angular-treeview";
64
+ import * as i63 from "@progress/kendo-angular-buttons";
65
+ import * as i64 from "@memberjunction/ng-action-gallery";
66
+ import * as i65 from "@memberjunction/ng-ai-test-harness";
67
+ import * as i66 from "@memberjunction/ng-core-entity-forms";
68
+ import * as i67 from "@progress/kendo-angular-grid";
69
+ import * as i68 from "@memberjunction/ng-react";
70
+ import * as i69 from "@memberjunction/ng-notifications";
71
+ import * as i70 from "@memberjunction/ng-testing";
62
72
  export declare class DashboardsModule {
63
73
  static ɵfac: i0.ɵɵFactoryDeclaration<DashboardsModule, never>;
64
- static ɵmod: i0.ɵɵNgModuleDeclaration<DashboardsModule, [typeof i1.EntityAdminDashboardComponent, typeof i2.ERDCompositeComponent, typeof i3.EntityFilterPanelComponent, typeof i4.EntityDetailsComponent, typeof i5.ERDDiagramComponent, typeof i6.AIDashboardComponent, typeof i7.ModelManagementV2Component, typeof i8.PromptManagementV2Component, typeof i9.PromptFilterPanelComponent, typeof i10.AgentConfigurationComponent, typeof i11.AgentFilterPanelComponent, typeof i12.AgentEditorComponent, typeof i13.ExecutionMonitoringComponent, typeof i14.SystemConfigurationComponent, typeof i15.SystemConfigFilterPanelComponent, typeof i16.ActionsManagementDashboardComponent, typeof i17.ActionsOverviewComponent, typeof i18.ExecutionMonitoringComponent, typeof i19.ScheduledActionsComponent, typeof i20.CodeManagementComponent, typeof i21.EntityIntegrationComponent, typeof i22.SecurityPermissionsComponent, typeof i23.ActionsListViewComponent, typeof i24.ExecutionsListViewComponent, typeof i25.CategoriesListViewComponent, typeof i26.ModelPromptPriorityMatrixComponent, typeof i27.PromptVersionControlComponent, typeof i28.KPICardComponent, typeof i29.LiveExecutionWidgetComponent, typeof i30.TimeSeriesChartComponent, typeof i31.PerformanceHeatmapComponent, typeof i32.ComponentStudioDashboardComponent, typeof i33.TextImportDialogComponent, typeof i34.ArtifactSelectionDialogComponent, typeof i35.ArtifactLoadDialogComponent, typeof i36.SchedulingDashboardComponent, typeof i37.SchedulingMonitoringComponent, typeof i38.SchedulingJobsComponent, typeof i39.SchedulingHistoryComponent, typeof i40.SchedulingTypesComponent, typeof i41.SchedulingHealthComponent], [typeof i42.CommonModule, typeof i43.FormsModule, typeof i44.IndicatorsModule, typeof i45.DropDownsModule, typeof i46.InputsModule, typeof i47.DateInputsModule, typeof i48.LayoutModule, typeof i49.DialogsModule, typeof i49.WindowModule, typeof i50.ContainerDirectivesModule, typeof i51.NavigationModule, typeof i52.CodeEditorModule, typeof i53.TreeViewModule, typeof i54.ButtonsModule, typeof i55.ActionGalleryModule, typeof i56.AITestHarnessModule, typeof i57.MemberJunctionCoreEntityFormsModule, typeof i58.GridModule, typeof i59.MJReactModule, typeof i48.SplitterModule, typeof i48.TabStripModule, typeof i48.PanelBarModule, typeof i60.MJNotificationsModule], [typeof i1.EntityAdminDashboardComponent, typeof i6.AIDashboardComponent, typeof i16.ActionsManagementDashboardComponent, typeof i32.ComponentStudioDashboardComponent, typeof i36.SchedulingDashboardComponent]>;
74
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DashboardsModule, [typeof i1.EntityAdminDashboardComponent, typeof i2.ERDCompositeComponent, typeof i3.EntityFilterPanelComponent, typeof i4.EntityDetailsComponent, typeof i5.ERDDiagramComponent, typeof i6.AIDashboardComponent, typeof i7.ModelManagementV2Component, typeof i8.PromptManagementV2Component, typeof i9.PromptFilterPanelComponent, typeof i10.AgentConfigurationComponent, typeof i11.AgentFilterPanelComponent, typeof i12.AgentEditorComponent, typeof i13.ExecutionMonitoringComponent, typeof i14.SystemConfigurationComponent, typeof i15.SystemConfigFilterPanelComponent, typeof i16.ActionsManagementDashboardComponent, typeof i17.ActionsOverviewComponent, typeof i18.ExecutionMonitoringComponent, typeof i19.ScheduledActionsComponent, typeof i20.CodeManagementComponent, typeof i21.EntityIntegrationComponent, typeof i22.SecurityPermissionsComponent, typeof i23.ActionsListViewComponent, typeof i24.ExecutionsListViewComponent, typeof i25.CategoriesListViewComponent, typeof i26.ModelPromptPriorityMatrixComponent, typeof i27.PromptVersionControlComponent, typeof i28.KPICardComponent, typeof i29.LiveExecutionWidgetComponent, typeof i30.TimeSeriesChartComponent, typeof i31.PerformanceHeatmapComponent, typeof i32.ComponentStudioDashboardComponent, typeof i33.TextImportDialogComponent, typeof i34.ArtifactSelectionDialogComponent, typeof i35.ArtifactLoadDialogComponent, typeof i36.SchedulingDashboardComponent, typeof i37.SchedulingMonitoringComponent, typeof i38.SchedulingJobsComponent, typeof i39.SchedulingHistoryComponent, typeof i40.SchedulingTypesComponent, typeof i41.SchedulingHealthComponent, typeof i42.TestingDashboardComponent, typeof i43.TestingOverviewComponent, typeof i44.TestingExecutionComponent, typeof i45.TestingAnalyticsComponent, typeof i46.TestingVersionComparisonComponent, typeof i47.TestingFeedbackComponent, typeof i48.SuiteTreeComponent, typeof i48.SuiteTreeNodeComponent, typeof i49.OracleBreakdownTableComponent, typeof i50.TestRunDetailPanelComponent], [typeof i51.CommonModule, typeof i52.FormsModule, typeof i53.IndicatorsModule, typeof i54.DropDownsModule, typeof i55.InputsModule, typeof i56.DateInputsModule, typeof i57.LayoutModule, typeof i58.DialogsModule, typeof i58.WindowModule, typeof i59.ContainerDirectivesModule, typeof i60.NavigationModule, typeof i61.CodeEditorModule, typeof i62.TreeViewModule, typeof i63.ButtonsModule, typeof i64.ActionGalleryModule, typeof i65.AITestHarnessModule, typeof i66.MemberJunctionCoreEntityFormsModule, typeof i67.GridModule, typeof i68.MJReactModule, typeof i57.SplitterModule, typeof i57.TabStripModule, typeof i57.PanelBarModule, typeof i69.MJNotificationsModule, typeof i70.TestingModule], [typeof i1.EntityAdminDashboardComponent, typeof i6.AIDashboardComponent, typeof i16.ActionsManagementDashboardComponent, typeof i32.ComponentStudioDashboardComponent, typeof i36.SchedulingDashboardComponent, typeof i42.TestingDashboardComponent]>;
65
75
  static ɵinj: i0.ɵɵInjectorDeclaration<DashboardsModule>;
66
76
  }
67
77
  //# sourceMappingURL=module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../src/module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmEA,qBAoFa,gBAAgB;yCAAhB,gBAAgB;0CAAhB,gBAAgB;0CAAhB,gBAAgB;CAAI"}
1
+ {"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../src/module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+EA,qBAkGa,gBAAgB;yCAAhB,gBAAgB;0CAAhB,gBAAgB;0CAAhB,gBAAgB;CAAI"}
package/dist/module.js CHANGED
@@ -65,13 +65,26 @@ import { SchedulingHistoryComponent } from './Scheduling/components/scheduling-h
65
65
  import { SchedulingTypesComponent } from './Scheduling/components/scheduling-types.component';
66
66
  import { SchedulingHealthComponent } from './Scheduling/components/scheduling-health.component';
67
67
  import { SchedulingInstrumentationService } from './Scheduling/services/scheduling-instrumentation.service';
68
+ // Testing Dashboard Components
69
+ import { TestingDashboardComponent } from './Testing/testing-dashboard.component';
70
+ import { TestingOverviewComponent } from './Testing/components/testing-overview.component';
71
+ import { TestingExecutionComponent } from './Testing/components/testing-execution.component';
72
+ import { TestingAnalyticsComponent } from './Testing/components/testing-analytics.component';
73
+ import { TestingVersionComparisonComponent } from './Testing/components/testing-version-comparison.component';
74
+ import { TestingFeedbackComponent } from './Testing/components/testing-feedback.component';
75
+ import { SuiteTreeComponent, SuiteTreeNodeComponent } from './Testing/components/widgets/suite-tree.component';
76
+ import { OracleBreakdownTableComponent } from './Testing/components/widgets/oracle-breakdown-table.component';
77
+ import { TestRunDetailPanelComponent } from './Testing/components/widgets/test-run-detail-panel.component';
78
+ import { TestingInstrumentationService } from './Testing/services/testing-instrumentation.service';
79
+ import { TestingModule } from '@memberjunction/ng-testing';
68
80
  import * as i0 from "@angular/core";
69
81
  export class DashboardsModule {
70
82
  static ɵfac = function DashboardsModule_Factory(t) { return new (t || DashboardsModule)(); };
71
83
  static ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: DashboardsModule });
72
84
  static ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: [
73
85
  AIInstrumentationService,
74
- SchedulingInstrumentationService
86
+ SchedulingInstrumentationService,
87
+ TestingInstrumentationService
75
88
  ], imports: [CommonModule,
76
89
  FormsModule,
77
90
  IndicatorsModule,
@@ -94,7 +107,8 @@ export class DashboardsModule {
94
107
  SplitterModule,
95
108
  TabStripModule,
96
109
  PanelBarModule,
97
- MJNotificationsModule] });
110
+ MJNotificationsModule,
111
+ TestingModule] });
98
112
  }
99
113
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DashboardsModule, [{
100
114
  type: NgModule,
@@ -143,7 +157,18 @@ export class DashboardsModule {
143
157
  SchedulingJobsComponent,
144
158
  SchedulingHistoryComponent,
145
159
  SchedulingTypesComponent,
146
- SchedulingHealthComponent
160
+ SchedulingHealthComponent,
161
+ // Testing Dashboard Components
162
+ TestingDashboardComponent,
163
+ TestingOverviewComponent,
164
+ TestingExecutionComponent,
165
+ TestingAnalyticsComponent,
166
+ TestingVersionComparisonComponent,
167
+ TestingFeedbackComponent,
168
+ SuiteTreeComponent,
169
+ SuiteTreeNodeComponent,
170
+ OracleBreakdownTableComponent,
171
+ TestRunDetailPanelComponent
147
172
  ],
148
173
  imports: [
149
174
  CommonModule,
@@ -168,18 +193,21 @@ export class DashboardsModule {
168
193
  SplitterModule,
169
194
  TabStripModule,
170
195
  PanelBarModule,
171
- MJNotificationsModule
196
+ MJNotificationsModule,
197
+ TestingModule
172
198
  ],
173
199
  providers: [
174
200
  AIInstrumentationService,
175
- SchedulingInstrumentationService
201
+ SchedulingInstrumentationService,
202
+ TestingInstrumentationService
176
203
  ],
177
204
  exports: [
178
205
  EntityAdminDashboardComponent,
179
206
  AIDashboardComponent,
180
207
  ActionsManagementDashboardComponent,
181
208
  ComponentStudioDashboardComponent,
182
- SchedulingDashboardComponent
209
+ SchedulingDashboardComponent,
210
+ TestingDashboardComponent
183
211
  ]
184
212
  }]
185
213
  }], null, null); })();
@@ -226,7 +254,18 @@ export class DashboardsModule {
226
254
  SchedulingJobsComponent,
227
255
  SchedulingHistoryComponent,
228
256
  SchedulingTypesComponent,
229
- SchedulingHealthComponent], imports: [CommonModule,
257
+ SchedulingHealthComponent,
258
+ // Testing Dashboard Components
259
+ TestingDashboardComponent,
260
+ TestingOverviewComponent,
261
+ TestingExecutionComponent,
262
+ TestingAnalyticsComponent,
263
+ TestingVersionComparisonComponent,
264
+ TestingFeedbackComponent,
265
+ SuiteTreeComponent,
266
+ SuiteTreeNodeComponent,
267
+ OracleBreakdownTableComponent,
268
+ TestRunDetailPanelComponent], imports: [CommonModule,
230
269
  FormsModule,
231
270
  IndicatorsModule,
232
271
  DropDownsModule,
@@ -248,9 +287,11 @@ export class DashboardsModule {
248
287
  SplitterModule,
249
288
  TabStripModule,
250
289
  PanelBarModule,
251
- MJNotificationsModule], exports: [EntityAdminDashboardComponent,
290
+ MJNotificationsModule,
291
+ TestingModule], exports: [EntityAdminDashboardComponent,
252
292
  AIDashboardComponent,
253
293
  ActionsManagementDashboardComponent,
254
294
  ComponentStudioDashboardComponent,
255
- SchedulingDashboardComponent] }); })();
295
+ SchedulingDashboardComponent,
296
+ TestingDashboardComponent] }); })();
256
297
  //# sourceMappingURL=module.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"module.js","sourceRoot":"","sources":["../src/module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAE,gBAAgB,EAAE,MAAM,oCAAoC,CAAC;AACtE,OAAO,EAAE,eAAe,EAAE,MAAM,mCAAmC,CAAC;AACpE,OAAO,EAAE,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAC9D,OAAO,EAAE,gBAAgB,EAAE,MAAM,oCAAoC,CAAC;AACtE,OAAO,EAAE,YAAY,EAAE,cAAc,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAC;AAC9F,OAAO,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,6BAA6B,EAAE,MAAM,gDAAgD,CAAC;AAC/F,OAAO,EAAE,qBAAqB,EAAE,MAAM,kDAAkD,CAAC;AACzF,OAAO,EAAE,0BAA0B,EAAE,MAAM,wDAAwD,CAAC;AACpG,OAAO,EAAE,sBAAsB,EAAE,MAAM,mDAAmD,CAAC;AAC3F,OAAO,EAAE,mBAAmB,EAAE,MAAM,gDAAgD,CAAC;AACrF,OAAO,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AACnE,OAAO,EAAE,0BAA0B,EAAE,MAAM,sDAAsD,CAAC;AAClG,OAAO,EAAE,2BAA2B,EAAE,MAAM,wDAAwD,CAAC;AACrG,OAAO,EAAE,0BAA0B,EAAE,MAAM,uDAAuD,CAAC;AACnG,OAAO,EAAE,2BAA2B,EAAE,MAAM,sDAAsD,CAAC;AACnG,OAAO,EAAE,yBAAyB,EAAE,MAAM,qDAAqD,CAAC;AAChG,OAAO,EAAE,oBAAoB,EAAE,MAAM,+CAA+C,CAAC;AACrF,OAAO,EAAE,4BAA4B,EAAE,MAAM,gDAAgD,CAAC;AAC9F,OAAO,EAAE,4BAA4B,EAAE,MAAM,uDAAuD,CAAC;AACrG,OAAO,EAAE,gCAAgC,EAAE,MAAM,6DAA6D,CAAC;AAC/G,OAAO,EAAE,mCAAmC,EAAE,MAAM,kDAAkD,CAAC;AACvG,OAAO,EAAE,wBAAwB,EAAE,MAAM,iDAAiD,CAAC;AAC3F,OAAO,EAAE,4BAA4B,IAAI,mCAAmC,EAAE,MAAM,qDAAqD,CAAC;AAC1I,OAAO,EAAE,yBAAyB,EAAE,MAAM,kDAAkD,CAAC;AAC7F,OAAO,EAAE,uBAAuB,EAAE,MAAM,gDAAgD,CAAC;AACzF,OAAO,EAAE,0BAA0B,EAAE,MAAM,mDAAmD,CAAC;AAC/F,OAAO,EAAE,4BAA4B,EAAE,MAAM,qDAAqD,CAAC;AACnG,OAAO,EAAE,wBAAwB,EAAE,MAAM,kDAAkD,CAAC;AAC5F,OAAO,EAAE,2BAA2B,EAAE,MAAM,qDAAqD,CAAC;AAClG,OAAO,EAAE,2BAA2B,EAAE,MAAM,qDAAqD,CAAC;AAClG,OAAO,EAAE,yBAAyB,EAAE,MAAM,yCAAyC,CAAC;AACpF,OAAO,EAAE,gBAAgB,EAAE,MAAM,oCAAoC,CAAC;AACtE,OAAO,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAClE,OAAO,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AAClE,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAC;AAChE,OAAO,EAAE,kCAAkC,EAAE,MAAM,gEAAgE,CAAC;AACpH,OAAO,EAAE,6BAA6B,EAAE,MAAM,0DAA0D,CAAC;AACzG,OAAO,EAAE,mBAAmB,EAAE,MAAM,mCAAmC,CAAC;AACxE,OAAO,EAAE,mBAAmB,EAAE,MAAM,oCAAoC,CAAC;AACzE,OAAO,EAAE,mCAAmC,EAAE,MAAM,sCAAsC,CAAC;AAC3F,OAAO,EAAE,qBAAqB,EAAE,MAAM,kCAAkC,CAAC;AACzE,gCAAgC;AAChC,OAAO,EAAE,gBAAgB,EAAE,MAAM,4CAA4C,CAAC;AAC9E,OAAO,EAAE,4BAA4B,EAAE,MAAM,yDAAyD,CAAC;AACvG,OAAO,EAAE,wBAAwB,EAAE,MAAM,oDAAoD,CAAC;AAC9F,OAAO,EAAE,2BAA2B,EAAE,MAAM,sDAAsD,CAAC;AACnG,OAAO,EAAE,wBAAwB,EAAE,MAAM,0CAA0C,CAAC;AACpF,8BAA8B;AAC9B,OAAO,EAAE,iCAAiC,EAAE,MAAM,wDAAwD,CAAC;AAC3G,OAAO,EAAE,yBAAyB,EAAE,MAAM,2DAA2D,CAAC;AACtG,OAAO,EAAE,gCAAgC,EAAE,MAAM,kEAAkE,CAAC;AACpH,OAAO,EAAE,2BAA2B,EAAE,MAAM,6DAA6D,CAAC;AAC1G,OAAO,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAC1D,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAC;AAChE,kCAAkC;AAClC,OAAO,EAAE,4BAA4B,EAAE,MAAM,6CAA6C,CAAC;AAC3F,OAAO,EAAE,6BAA6B,EAAE,MAAM,yDAAyD,CAAC;AACxG,OAAO,EAAE,uBAAuB,EAAE,MAAM,mDAAmD,CAAC;AAC5F,OAAO,EAAE,0BAA0B,EAAE,MAAM,sDAAsD,CAAC;AAClG,OAAO,EAAE,wBAAwB,EAAE,MAAM,oDAAoD,CAAC;AAC9F,OAAO,EAAE,yBAAyB,EAAE,MAAM,qDAAqD,CAAC;AAChG,OAAO,EAAE,gCAAgC,EAAE,MAAM,0DAA0D,CAAC;;AAqF5G,MAAM,OAAO,gBAAgB;0EAAhB,gBAAgB;4DAAhB,gBAAgB;iEAZhB;YACT,wBAAwB;YACxB,gCAAgC;SACjC,YA3BC,YAAY;YACZ,WAAW;YACX,gBAAgB;YAChB,eAAe;YACf,YAAY;YACZ,gBAAgB;YAChB,YAAY;YACZ,aAAa;YACb,YAAY;YACZ,yBAAyB;YACzB,gBAAgB;YAChB,gBAAgB;YAChB,cAAc;YACd,aAAa;YACb,mBAAmB;YACnB,mBAAmB;YACnB,mCAAmC;YACnC,UAAU;YACV,aAAa;YACb,cAAc;YACd,cAAc;YACd,cAAc;YACd,qBAAqB;;iFAcZ,gBAAgB;cApF5B,QAAQ;eAAC;gBACR,YAAY,EAAE;oBACZ,6BAA6B;oBAC7B,qBAAqB;oBACrB,0BAA0B;oBAC1B,sBAAsB;oBACtB,mBAAmB;oBACnB,oBAAoB;oBACpB,0BAA0B;oBAC1B,2BAA2B;oBAC3B,0BAA0B;oBAC1B,2BAA2B;oBAC3B,yBAAyB;oBACzB,oBAAoB;oBACpB,4BAA4B;oBAC5B,4BAA4B;oBAC5B,gCAAgC;oBAChC,mCAAmC;oBACnC,wBAAwB;oBACxB,mCAAmC;oBACnC,yBAAyB;oBACzB,uBAAuB;oBACvB,0BAA0B;oBAC1B,4BAA4B;oBAC5B,wBAAwB;oBACxB,2BAA2B;oBAC3B,2BAA2B;oBAC3B,kCAAkC;oBAClC,6BAA6B;oBAC7B,gCAAgC;oBAChC,gBAAgB;oBAChB,4BAA4B;oBAC5B,wBAAwB;oBACxB,2BAA2B;oBAC3B,8BAA8B;oBAC9B,iCAAiC;oBACjC,yBAAyB;oBACzB,gCAAgC;oBAChC,2BAA2B;oBAC3B,kCAAkC;oBAClC,4BAA4B;oBAC5B,6BAA6B;oBAC7B,uBAAuB;oBACvB,0BAA0B;oBAC1B,wBAAwB;oBACxB,yBAAyB;iBAC1B;gBACD,OAAO,EAAE;oBACP,YAAY;oBACZ,WAAW;oBACX,gBAAgB;oBAChB,eAAe;oBACf,YAAY;oBACZ,gBAAgB;oBAChB,YAAY;oBACZ,aAAa;oBACb,YAAY;oBACZ,yBAAyB;oBACzB,gBAAgB;oBAChB,gBAAgB;oBAChB,cAAc;oBACd,aAAa;oBACb,mBAAmB;oBACnB,mBAAmB;oBACnB,mCAAmC;oBACnC,UAAU;oBACV,aAAa;oBACb,cAAc;oBACd,cAAc;oBACd,cAAc;oBACd,qBAAqB;iBACtB;gBACD,SAAS,EAAE;oBACT,wBAAwB;oBACxB,gCAAgC;iBACjC;gBACD,OAAO,EAAE;oBACP,6BAA6B;oBAC7B,oBAAoB;oBACpB,mCAAmC;oBACnC,iCAAiC;oBACjC,4BAA4B;iBAC7B;aACF;;wFACY,gBAAgB,mBAlFzB,6BAA6B;QAC7B,qBAAqB;QACrB,0BAA0B;QAC1B,sBAAsB;QACtB,mBAAmB;QACnB,oBAAoB;QACpB,0BAA0B;QAC1B,2BAA2B;QAC3B,0BAA0B;QAC1B,2BAA2B;QAC3B,yBAAyB;QACzB,oBAAoB;QACpB,4BAA4B;QAC5B,4BAA4B;QAC5B,gCAAgC;QAChC,mCAAmC;QACnC,wBAAwB;QACxB,mCAAmC;QACnC,yBAAyB;QACzB,uBAAuB;QACvB,0BAA0B;QAC1B,4BAA4B;QAC5B,wBAAwB;QACxB,2BAA2B;QAC3B,2BAA2B;QAC3B,kCAAkC;QAClC,6BAA6B;QAC7B,gCAAgC;QAChC,gBAAgB;QAChB,4BAA4B;QAC5B,wBAAwB;QACxB,2BAA2B;QAC3B,8BAA8B;QAC9B,iCAAiC;QACjC,yBAAyB;QACzB,gCAAgC;QAChC,2BAA2B;QAC3B,kCAAkC;QAClC,4BAA4B;QAC5B,6BAA6B;QAC7B,uBAAuB;QACvB,0BAA0B;QAC1B,wBAAwB;QACxB,yBAAyB,aAGzB,YAAY;QACZ,WAAW;QACX,gBAAgB;QAChB,eAAe;QACf,YAAY;QACZ,gBAAgB;QAChB,YAAY;QACZ,aAAa;QACb,YAAY;QACZ,yBAAyB;QACzB,gBAAgB;QAChB,gBAAgB;QAChB,cAAc;QACd,aAAa;QACb,mBAAmB;QACnB,mBAAmB;QACnB,mCAAmC;QACnC,UAAU;QACV,aAAa;QACb,cAAc;QACd,cAAc;QACd,cAAc;QACd,qBAAqB,aAOrB,6BAA6B;QAC7B,oBAAoB;QACpB,mCAAmC;QACnC,iCAAiC;QACjC,4BAA4B"}
1
+ {"version":3,"file":"module.js","sourceRoot":"","sources":["../src/module.ts"],"names":[],"mappings":"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"}
@@ -4,6 +4,7 @@ export * from './AI/ai-dashboard.component';
4
4
  export * from './Actions';
5
5
  export * from './ComponentStudio';
6
6
  export * from './Scheduling/scheduling-dashboard.component';
7
+ export * from './Testing/testing-dashboard.component';
7
8
  export * from './Actions/index';
8
9
  export * from './module';
9
10
  //# sourceMappingURL=public-api.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"AAWA,cAAc,0BAA0B,CAAC;AAGzC,cAAc,gDAAgD,CAAC;AAC/D,cAAc,6BAA6B,CAAC;AAC5C,cAAc,WAAW,CAAC;AAC1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,6CAA6C,CAAC;AAE5D,cAAc,iBAAiB,CAAC;AAGhC,cAAc,UAAU,CAAC"}
1
+ {"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"AAYA,cAAc,0BAA0B,CAAC;AAGzC,cAAc,gDAAgD,CAAC;AAC/D,cAAc,6BAA6B,CAAC;AAC5C,cAAc,WAAW,CAAC;AAC1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,6CAA6C,CAAC;AAC5D,cAAc,uCAAuC,CAAC;AAEtD,cAAc,iBAAiB,CAAC;AAGhC,cAAc,UAAU,CAAC"}
@@ -6,6 +6,7 @@ import { LoadAIDashboard } from './AI/ai-dashboard.component';
6
6
  import { LoadActionsManagementDashboard } from './Actions';
7
7
  import { LoadComponentStudioDashboard } from './ComponentStudio/component-studio-dashboard.component';
8
8
  import { LoadSchedulingDashboard } from './Scheduling/scheduling-dashboard.component';
9
+ import { LoadTestingDashboard } from './Testing/testing-dashboard.component';
9
10
  // Base Dashboard
10
11
  export * from './generic/base-dashboard';
11
12
  // Dashboards
@@ -14,6 +15,7 @@ export * from './AI/ai-dashboard.component';
14
15
  export * from './Actions';
15
16
  export * from './ComponentStudio';
16
17
  export * from './Scheduling/scheduling-dashboard.component';
18
+ export * from './Testing/testing-dashboard.component';
17
19
  export * from './Actions/index';
18
20
  // Module
19
21
  export * from './module';
@@ -22,4 +24,5 @@ LoadAIDashboard(); // call tree shaking function to prevent tree shaking
22
24
  LoadActionsManagementDashboard(); // call tree shaking function to prevent tree shaking
23
25
  LoadComponentStudioDashboard(); // call tree shaking function to prevent tree shaking
24
26
  LoadSchedulingDashboard(); // call tree shaking function to prevent tree shaking
27
+ LoadTestingDashboard(); // call tree shaking function to prevent tree shaking
25
28
  //# sourceMappingURL=public-api.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"public-api.js","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,wBAAwB,EAAE,MAAM,gDAAgD,CAAC;AAC1F,OAAO,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAC9D,OAAO,EAAE,8BAA8B,EAAE,MAAM,WAAW,CAAC;AAC3D,OAAO,EAAE,4BAA4B,EAAE,MAAM,wDAAwD,CAAC;AACtG,OAAO,EAAE,uBAAuB,EAAE,MAAM,6CAA6C,CAAC;AAEtF,iBAAiB;AACjB,cAAc,0BAA0B,CAAC;AAEzC,aAAa;AACb,cAAc,gDAAgD,CAAC;AAC/D,cAAc,6BAA6B,CAAC;AAC5C,cAAc,WAAW,CAAC;AAC1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,6CAA6C,CAAC;AAE5D,cAAc,iBAAiB,CAAC;AAEhC,SAAS;AACT,cAAc,UAAU,CAAC;AAEzB,wBAAwB,EAAE,CAAC,CAAC,qDAAqD;AACjF,eAAe,EAAE,CAAC,CAAC,qDAAqD;AACxE,8BAA8B,EAAE,CAAC,CAAC,qDAAqD;AACvF,4BAA4B,EAAE,CAAC,CAAC,qDAAqD;AACrF,uBAAuB,EAAE,CAAC,CAAC,qDAAqD"}
1
+ {"version":3,"file":"public-api.js","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,wBAAwB,EAAE,MAAM,gDAAgD,CAAC;AAC1F,OAAO,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAC9D,OAAO,EAAE,8BAA8B,EAAE,MAAM,WAAW,CAAC;AAC3D,OAAO,EAAE,4BAA4B,EAAE,MAAM,wDAAwD,CAAC;AACtG,OAAO,EAAE,uBAAuB,EAAE,MAAM,6CAA6C,CAAC;AACtF,OAAO,EAAE,oBAAoB,EAAE,MAAM,uCAAuC,CAAC;AAE7E,iBAAiB;AACjB,cAAc,0BAA0B,CAAC;AAEzC,aAAa;AACb,cAAc,gDAAgD,CAAC;AAC/D,cAAc,6BAA6B,CAAC;AAC5C,cAAc,WAAW,CAAC;AAC1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,6CAA6C,CAAC;AAC5D,cAAc,uCAAuC,CAAC;AAEtD,cAAc,iBAAiB,CAAC;AAEhC,SAAS;AACT,cAAc,UAAU,CAAC;AAEzB,wBAAwB,EAAE,CAAC,CAAC,qDAAqD;AACjF,eAAe,EAAE,CAAC,CAAC,qDAAqD;AACxE,8BAA8B,EAAE,CAAC,CAAC,qDAAqD;AACvF,4BAA4B,EAAE,CAAC,CAAC,qDAAqD;AACrF,uBAAuB,EAAE,CAAC,CAAC,qDAAqD;AAChF,oBAAoB,EAAE,CAAC,CAAC,qDAAqD"}