@meshmakers/octo-meshboard 3.4.180 → 3.4.200
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/README.md +26 -0
- package/fesm2022/meshmakers-octo-meshboard.mjs +1180 -640
- package/fesm2022/meshmakers-octo-meshboard.mjs.map +1 -1
- package/package.json +16 -16
- package/types/meshmakers-octo-meshboard.d.ts +114 -17
package/package.json
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meshmakers/octo-meshboard",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.200",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "^
|
|
6
|
-
"@angular/core": "^
|
|
7
|
-
"@angular/forms": "^
|
|
8
|
-
"@angular/router": "^
|
|
5
|
+
"@angular/common": "^22.0.0",
|
|
6
|
+
"@angular/core": "^22.0.0",
|
|
7
|
+
"@angular/forms": "^22.0.0",
|
|
8
|
+
"@angular/router": "^22.0.0",
|
|
9
9
|
"@meshmakers/octo-process-diagrams": "*",
|
|
10
10
|
"@meshmakers/octo-services": "*",
|
|
11
11
|
"@meshmakers/octo-ui": "*",
|
|
12
12
|
"@meshmakers/shared-services": "*",
|
|
13
13
|
"@meshmakers/shared-ui": "*",
|
|
14
|
-
"@progress/kendo-angular-buttons": "^
|
|
15
|
-
"@progress/kendo-angular-charts": "^
|
|
16
|
-
"@progress/kendo-angular-dialog": "^
|
|
17
|
-
"@progress/kendo-angular-dropdowns": "^
|
|
18
|
-
"@progress/kendo-angular-gauges": "^
|
|
19
|
-
"@progress/kendo-angular-grid": "^
|
|
20
|
-
"@progress/kendo-angular-icons": "^
|
|
21
|
-
"@progress/kendo-angular-inputs": "^
|
|
22
|
-
"@progress/kendo-angular-label": "^
|
|
23
|
-
"@progress/kendo-angular-layout": "^
|
|
24
|
-
"apollo-angular": "^
|
|
14
|
+
"@progress/kendo-angular-buttons": "^24.1.0",
|
|
15
|
+
"@progress/kendo-angular-charts": "^24.1.0",
|
|
16
|
+
"@progress/kendo-angular-dialog": "^24.1.0",
|
|
17
|
+
"@progress/kendo-angular-dropdowns": "^24.1.0",
|
|
18
|
+
"@progress/kendo-angular-gauges": "^24.1.0",
|
|
19
|
+
"@progress/kendo-angular-grid": "^24.1.0",
|
|
20
|
+
"@progress/kendo-angular-icons": "^24.1.0",
|
|
21
|
+
"@progress/kendo-angular-inputs": "^24.1.0",
|
|
22
|
+
"@progress/kendo-angular-label": "^24.1.0",
|
|
23
|
+
"@progress/kendo-angular-layout": "^24.1.0",
|
|
24
|
+
"apollo-angular": "^14.0.0"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"tslib": "^2.8.1"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ProcessWidgetSpecificConfig } from '@meshmakers/octo-process-diagrams';
|
|
2
2
|
import * as _angular_core from '@angular/core';
|
|
3
|
-
import { Signal, AfterViewInit, OnChanges, EventEmitter, SimpleChanges, Type,
|
|
3
|
+
import { Signal, AfterViewInit, OnChanges, EventEmitter, SimpleChanges, Type, OnDestroy, OnInit, EnvironmentProviders, InjectionToken } from '@angular/core';
|
|
4
4
|
import { ControlValueAccessor } from '@angular/forms';
|
|
5
5
|
import * as i1 from '@meshmakers/shared-ui';
|
|
6
6
|
import { EntitySelectDialogDataSource, ColumnDefinition, DialogFetchOptions, DialogFetchResult, EntitySelectInputComponent, TimeRange, FetchDataOptions, FetchResultTyped, TableColumn as TableColumn$1, HasUnsavedChanges, TimeRangePickerLabels, TimeRangeSelection as TimeRangeSelection$1 } from '@meshmakers/shared-ui';
|
|
@@ -231,6 +231,13 @@ interface PersistentQueryDataSource extends WidgetDataSource {
|
|
|
231
231
|
queryName?: string;
|
|
232
232
|
/** Query family: 'runtime' or 'streamData'. Derived from queryCkTypeId when absent. */
|
|
233
233
|
queryFamily?: QueryFamily;
|
|
234
|
+
/**
|
|
235
|
+
* Stream-data opt-out: when `true`, the MeshBoard time filter is NOT bound to
|
|
236
|
+
* the query's `streamDataArgs.from/.to`, so the persistent query's intrinsic
|
|
237
|
+
* time bounds win. Default (`false`/absent) auto-binds the active time filter.
|
|
238
|
+
* Ignored for runtime queries (they don't consume `streamDataArgs`).
|
|
239
|
+
*/
|
|
240
|
+
ignoreTimeFilter?: boolean;
|
|
234
241
|
}
|
|
235
242
|
/**
|
|
236
243
|
* Aggregation types supported
|
|
@@ -1759,6 +1766,19 @@ declare class MeshBoardStateService {
|
|
|
1759
1766
|
* this helper currently returns UTC boundaries derived from the picker.
|
|
1760
1767
|
*/
|
|
1761
1768
|
resolveCurrentTimeRange(): TimeRange | null;
|
|
1769
|
+
/**
|
|
1770
|
+
* Resolves the active time filter into stream-data `{from, to}` arguments for
|
|
1771
|
+
* a persistent-query widget. Centralizes the per-widget binding so every
|
|
1772
|
+
* stream-data consumer shares one implementation.
|
|
1773
|
+
*
|
|
1774
|
+
* Returns `undefined` (so the query's intrinsic bounds apply) when either:
|
|
1775
|
+
* - the widget opted out via `ignoreTimeFilter`, or
|
|
1776
|
+
* - no time filter is active / the selection is incomplete.
|
|
1777
|
+
*/
|
|
1778
|
+
resolveStreamDataTimeArgs(ignoreTimeFilter?: boolean): {
|
|
1779
|
+
from: Date;
|
|
1780
|
+
to: Date;
|
|
1781
|
+
} | undefined;
|
|
1762
1782
|
/**
|
|
1763
1783
|
* Updates the time filter configuration.
|
|
1764
1784
|
*/
|
|
@@ -2475,6 +2495,46 @@ declare class QueryExecutorService {
|
|
|
2475
2495
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<QueryExecutorService>;
|
|
2476
2496
|
}
|
|
2477
2497
|
|
|
2498
|
+
/**
|
|
2499
|
+
* Manages a `setInterval` lifecycle for MeshBoard auto-refresh.
|
|
2500
|
+
*
|
|
2501
|
+
* Encapsulates the three things the consumer otherwise has to track manually:
|
|
2502
|
+
* - clearing the previous interval before starting a new one,
|
|
2503
|
+
* - skipping the restart when the same interval is already active, and
|
|
2504
|
+
* - pausing the timer on tab-hidden / resuming on visible.
|
|
2505
|
+
*
|
|
2506
|
+
* The service has no Angular signal or component dependency — it's a thin
|
|
2507
|
+
* stateful wrapper around `setInterval`, which lets it be unit-tested with
|
|
2508
|
+
* `jasmine.clock()` without standing up a TestBed.
|
|
2509
|
+
*
|
|
2510
|
+
* Provide at the component level (`providers: [AutoRefreshTimerService]`) so
|
|
2511
|
+
* each MeshBoard view gets its own timer instance; `ngOnDestroy` clears the
|
|
2512
|
+
* underlying interval automatically.
|
|
2513
|
+
*/
|
|
2514
|
+
declare class AutoRefreshTimerService implements OnDestroy {
|
|
2515
|
+
private timerId;
|
|
2516
|
+
private activeSeconds;
|
|
2517
|
+
/**
|
|
2518
|
+
* Reconcile the timer to the requested state.
|
|
2519
|
+
*
|
|
2520
|
+
* - `seconds <= 0` OR `!isVisible` → stop any active timer.
|
|
2521
|
+
* - Timer already running at the requested interval → no-op (avoids a
|
|
2522
|
+
* stop/start ping that would reset the countdown to the next tick).
|
|
2523
|
+
* - Otherwise → stop the old timer, start a new one that calls `onTick`
|
|
2524
|
+
* every `seconds` seconds.
|
|
2525
|
+
*/
|
|
2526
|
+
update(seconds: number, isVisible: boolean, onTick: () => void): void;
|
|
2527
|
+
/** Stops the active timer, if any. Safe to call when no timer is running. */
|
|
2528
|
+
stop(): void;
|
|
2529
|
+
/** True while an interval is active. */
|
|
2530
|
+
get isRunning(): boolean;
|
|
2531
|
+
/** The interval in seconds for the currently active timer (0 when stopped). */
|
|
2532
|
+
get intervalSeconds(): number;
|
|
2533
|
+
ngOnDestroy(): void;
|
|
2534
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AutoRefreshTimerService, never>;
|
|
2535
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<AutoRefreshTimerService>;
|
|
2536
|
+
}
|
|
2537
|
+
|
|
2478
2538
|
declare class EntityCardWidgetComponent implements DashboardWidget<EntityCardWidgetConfig, RuntimeEntityData>, OnInit, OnChanges {
|
|
2479
2539
|
private readonly dataService;
|
|
2480
2540
|
config: EntityCardWidgetConfig;
|
|
@@ -2630,6 +2690,7 @@ interface KpiConfigResult extends WidgetConfigResult {
|
|
|
2630
2690
|
queryRtId?: string;
|
|
2631
2691
|
queryName?: string;
|
|
2632
2692
|
queryFamily?: QueryFamily;
|
|
2693
|
+
ignoreTimeFilter?: boolean;
|
|
2633
2694
|
queryMode?: KpiQueryMode;
|
|
2634
2695
|
queryValueField?: string;
|
|
2635
2696
|
queryCategoryField?: string;
|
|
@@ -2677,6 +2738,7 @@ declare class KpiConfigDialogComponent implements OnInit {
|
|
|
2677
2738
|
initialQueryRtId?: string;
|
|
2678
2739
|
initialQueryName?: string;
|
|
2679
2740
|
initialQueryFamily?: QueryFamily;
|
|
2741
|
+
initialIgnoreTimeFilter?: boolean;
|
|
2680
2742
|
initialQueryMode?: KpiQueryMode;
|
|
2681
2743
|
initialQueryValueField?: string;
|
|
2682
2744
|
initialQueryCategoryField?: string;
|
|
@@ -2691,9 +2753,13 @@ declare class KpiConfigDialogComponent implements OnInit {
|
|
|
2691
2753
|
isLoadingInitial: boolean;
|
|
2692
2754
|
isCountMode: boolean;
|
|
2693
2755
|
selectedPersistentQuery: PersistentQueryItem | null;
|
|
2756
|
+
/** Stream-data opt-out: when true the MeshBoard time filter is not bound to the query. */
|
|
2757
|
+
ignoreTimeFilter: boolean;
|
|
2694
2758
|
queryColumns: QueryColumnItem[];
|
|
2695
2759
|
categoryValues: CategoryValueItem[];
|
|
2696
2760
|
queryMode: KpiQueryMode;
|
|
2761
|
+
/** Family of the currently selected query; drives the time-filter toggle's visibility. */
|
|
2762
|
+
get selectedQueryFamily(): QueryFamily | null;
|
|
2697
2763
|
isLoadingQueryColumns: boolean;
|
|
2698
2764
|
isLoadingCategoryValues: boolean;
|
|
2699
2765
|
readonly isLoadingAttributes: _angular_core.WritableSignal<boolean>;
|
|
@@ -2749,7 +2815,7 @@ declare class KpiConfigDialogComponent implements OnInit {
|
|
|
2749
2815
|
private loadCategoryValuesForField;
|
|
2750
2816
|
onFiltersChange(updatedFilters: FieldFilterItem[]): void;
|
|
2751
2817
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KpiConfigDialogComponent, never>;
|
|
2752
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KpiConfigDialogComponent, "mm-kpi-config-dialog", never, { "initialCkTypeId": { "alias": "initialCkTypeId"; "required": false; }; "initialRtId": { "alias": "initialRtId"; "required": false; }; "initialValueAttribute": { "alias": "initialValueAttribute"; "required": false; }; "initialLabelAttribute": { "alias": "initialLabelAttribute"; "required": false; }; "initialPrefix": { "alias": "initialPrefix"; "required": false; }; "initialSuffix": { "alias": "initialSuffix"; "required": false; }; "initialTrend": { "alias": "initialTrend"; "required": false; }; "initialComparisonText": { "alias": "initialComparisonText"; "required": false; }; "initialDataSourceType": { "alias": "initialDataSourceType"; "required": false; }; "initialQueryRtId": { "alias": "initialQueryRtId"; "required": false; }; "initialQueryName": { "alias": "initialQueryName"; "required": false; }; "initialQueryFamily": { "alias": "initialQueryFamily"; "required": false; }; "initialQueryMode": { "alias": "initialQueryMode"; "required": false; }; "initialQueryValueField": { "alias": "initialQueryValueField"; "required": false; }; "initialQueryCategoryField": { "alias": "initialQueryCategoryField"; "required": false; }; "initialQueryCategoryValue": { "alias": "initialQueryCategoryValue"; "required": false; }; "initialStaticValue": { "alias": "initialStaticValue"; "required": false; }; "initialFilters": { "alias": "initialFilters"; "required": false; }; }, {}, never, never, true, never>;
|
|
2818
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KpiConfigDialogComponent, "mm-kpi-config-dialog", never, { "initialCkTypeId": { "alias": "initialCkTypeId"; "required": false; }; "initialRtId": { "alias": "initialRtId"; "required": false; }; "initialValueAttribute": { "alias": "initialValueAttribute"; "required": false; }; "initialLabelAttribute": { "alias": "initialLabelAttribute"; "required": false; }; "initialPrefix": { "alias": "initialPrefix"; "required": false; }; "initialSuffix": { "alias": "initialSuffix"; "required": false; }; "initialTrend": { "alias": "initialTrend"; "required": false; }; "initialComparisonText": { "alias": "initialComparisonText"; "required": false; }; "initialDataSourceType": { "alias": "initialDataSourceType"; "required": false; }; "initialQueryRtId": { "alias": "initialQueryRtId"; "required": false; }; "initialQueryName": { "alias": "initialQueryName"; "required": false; }; "initialQueryFamily": { "alias": "initialQueryFamily"; "required": false; }; "initialIgnoreTimeFilter": { "alias": "initialIgnoreTimeFilter"; "required": false; }; "initialQueryMode": { "alias": "initialQueryMode"; "required": false; }; "initialQueryValueField": { "alias": "initialQueryValueField"; "required": false; }; "initialQueryCategoryField": { "alias": "initialQueryCategoryField"; "required": false; }; "initialQueryCategoryValue": { "alias": "initialQueryCategoryValue"; "required": false; }; "initialStaticValue": { "alias": "initialStaticValue"; "required": false; }; "initialFilters": { "alias": "initialFilters"; "required": false; }; }, {}, never, never, true, never>;
|
|
2753
2819
|
}
|
|
2754
2820
|
|
|
2755
2821
|
interface GroupedAssociation {
|
|
@@ -3087,8 +3153,8 @@ declare class TableWidgetDataSourceDirective extends OctoGraphQlDataSource<Recor
|
|
|
3087
3153
|
private convertFiltersToDto;
|
|
3088
3154
|
/**
|
|
3089
3155
|
* Builds `StreamDataExecutionArgs` from the MeshBoard's current time filter.
|
|
3090
|
-
* Returns `undefined` when no filter is active
|
|
3091
|
-
* own bounds apply.
|
|
3156
|
+
* Returns `undefined` when no filter is active, or when the widget opted out
|
|
3157
|
+
* via `ignoreTimeFilter`, so the persistent query's own bounds apply.
|
|
3092
3158
|
*/
|
|
3093
3159
|
private buildStreamDataArgs;
|
|
3094
3160
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TableWidgetDataSourceDirective, never>;
|
|
@@ -3151,6 +3217,8 @@ interface TableConfigResult {
|
|
|
3151
3217
|
queryName?: string;
|
|
3152
3218
|
/** Family of the selected persistent query — 'runtime' or 'streamData'. */
|
|
3153
3219
|
queryFamily?: QueryFamily;
|
|
3220
|
+
/** Stream-data opt-out: keep the query's own time bounds, ignore the MeshBoard time filter. */
|
|
3221
|
+
ignoreTimeFilter?: boolean;
|
|
3154
3222
|
pageSize: number;
|
|
3155
3223
|
sortable: boolean;
|
|
3156
3224
|
}
|
|
@@ -3186,6 +3254,7 @@ declare class TableConfigDialogComponent implements OnInit {
|
|
|
3186
3254
|
initialQueryRtId?: string;
|
|
3187
3255
|
initialQueryName?: string;
|
|
3188
3256
|
initialQueryFamily?: QueryFamily;
|
|
3257
|
+
initialIgnoreTimeFilter?: boolean;
|
|
3189
3258
|
protected readonly columnsIcon: _progress_kendo_svg_icons.SVGIcon;
|
|
3190
3259
|
protected readonly sortIcon: _progress_kendo_svg_icons.SVGIcon;
|
|
3191
3260
|
protected readonly filterIcon: _progress_kendo_svg_icons.SVGIcon;
|
|
@@ -3198,12 +3267,14 @@ declare class TableConfigDialogComponent implements OnInit {
|
|
|
3198
3267
|
filters: FieldFilterItem[];
|
|
3199
3268
|
availableAttributes: AttributeItem[];
|
|
3200
3269
|
selectedPersistentQuery: PersistentQueryItem | null;
|
|
3270
|
+
ignoreTimeFilter: boolean;
|
|
3201
3271
|
filterVariables: FilterVariable[];
|
|
3202
3272
|
form: {
|
|
3203
3273
|
pageSize: number;
|
|
3204
3274
|
sortable: boolean;
|
|
3205
3275
|
};
|
|
3206
3276
|
get isValid(): boolean;
|
|
3277
|
+
get selectedQueryFamily(): QueryFamily | null;
|
|
3207
3278
|
ngOnInit(): Promise<void>;
|
|
3208
3279
|
private loadInitialValues;
|
|
3209
3280
|
private loadAvailableAttributes;
|
|
@@ -3220,7 +3291,7 @@ declare class TableConfigDialogComponent implements OnInit {
|
|
|
3220
3291
|
private formatColumnTitle;
|
|
3221
3292
|
onCancel(): void;
|
|
3222
3293
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TableConfigDialogComponent, never>;
|
|
3223
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TableConfigDialogComponent, "mm-table-config-dialog", never, { "initialDataSourceType": { "alias": "initialDataSourceType"; "required": false; }; "initialCkTypeId": { "alias": "initialCkTypeId"; "required": false; }; "initialColumns": { "alias": "initialColumns"; "required": false; }; "initialSorting": { "alias": "initialSorting"; "required": false; }; "initialFilters": { "alias": "initialFilters"; "required": false; }; "initialPageSize": { "alias": "initialPageSize"; "required": false; }; "initialSortable": { "alias": "initialSortable"; "required": false; }; "initialQueryRtId": { "alias": "initialQueryRtId"; "required": false; }; "initialQueryName": { "alias": "initialQueryName"; "required": false; }; "initialQueryFamily": { "alias": "initialQueryFamily"; "required": false; }; }, {}, never, never, true, never>;
|
|
3294
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TableConfigDialogComponent, "mm-table-config-dialog", never, { "initialDataSourceType": { "alias": "initialDataSourceType"; "required": false; }; "initialCkTypeId": { "alias": "initialCkTypeId"; "required": false; }; "initialColumns": { "alias": "initialColumns"; "required": false; }; "initialSorting": { "alias": "initialSorting"; "required": false; }; "initialFilters": { "alias": "initialFilters"; "required": false; }; "initialPageSize": { "alias": "initialPageSize"; "required": false; }; "initialSortable": { "alias": "initialSortable"; "required": false; }; "initialQueryRtId": { "alias": "initialQueryRtId"; "required": false; }; "initialQueryName": { "alias": "initialQueryName"; "required": false; }; "initialQueryFamily": { "alias": "initialQueryFamily"; "required": false; }; "initialIgnoreTimeFilter": { "alias": "initialIgnoreTimeFilter"; "required": false; }; }, {}, never, never, true, never>;
|
|
3224
3295
|
}
|
|
3225
3296
|
|
|
3226
3297
|
declare class GaugeWidgetComponent implements DashboardWidget<GaugeWidgetConfig, RuntimeEntityData>, OnInit, OnChanges {
|
|
@@ -3282,6 +3353,7 @@ interface GaugeConfigResult extends WidgetConfigResult {
|
|
|
3282
3353
|
queryRtId?: string;
|
|
3283
3354
|
queryName?: string;
|
|
3284
3355
|
queryFamily?: QueryFamily;
|
|
3356
|
+
ignoreTimeFilter?: boolean;
|
|
3285
3357
|
queryMode?: KpiQueryMode;
|
|
3286
3358
|
queryValueField?: string;
|
|
3287
3359
|
queryCategoryField?: string;
|
|
@@ -3337,6 +3409,7 @@ declare class GaugeConfigDialogComponent implements OnInit {
|
|
|
3337
3409
|
initialQueryRtId?: string;
|
|
3338
3410
|
initialQueryName?: string;
|
|
3339
3411
|
initialQueryFamily?: QueryFamily;
|
|
3412
|
+
initialIgnoreTimeFilter?: boolean;
|
|
3340
3413
|
initialQueryMode?: KpiQueryMode;
|
|
3341
3414
|
initialQueryValueField?: string;
|
|
3342
3415
|
initialQueryCategoryField?: string;
|
|
@@ -3349,9 +3422,13 @@ declare class GaugeConfigDialogComponent implements OnInit {
|
|
|
3349
3422
|
entityDialogDataSource?: RuntimeEntityDialogDataSource$1;
|
|
3350
3423
|
isLoadingInitial: boolean;
|
|
3351
3424
|
selectedPersistentQuery: PersistentQueryItem | null;
|
|
3425
|
+
/** Stream-data opt-out: when true the MeshBoard time filter is not bound to the query. */
|
|
3426
|
+
ignoreTimeFilter: boolean;
|
|
3352
3427
|
queryColumns: QueryColumnItem[];
|
|
3353
3428
|
categoryValues: CategoryValueItem[];
|
|
3354
3429
|
queryMode: KpiQueryMode;
|
|
3430
|
+
/** Family of the currently selected query; drives the time-filter toggle's visibility. */
|
|
3431
|
+
get selectedQueryFamily(): QueryFamily | null;
|
|
3355
3432
|
isLoadingQueryColumns: boolean;
|
|
3356
3433
|
isLoadingCategoryValues: boolean;
|
|
3357
3434
|
readonly isLoadingAttributes: _angular_core.WritableSignal<boolean>;
|
|
@@ -3410,7 +3487,7 @@ declare class GaugeConfigDialogComponent implements OnInit {
|
|
|
3410
3487
|
private loadCategoryValuesForField;
|
|
3411
3488
|
onFiltersChange(updatedFilters: FieldFilterItem[]): void;
|
|
3412
3489
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaugeConfigDialogComponent, never>;
|
|
3413
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaugeConfigDialogComponent, "mm-gauge-config-dialog", never, { "initialCkTypeId": { "alias": "initialCkTypeId"; "required": false; }; "initialRtId": { "alias": "initialRtId"; "required": false; }; "initialGaugeType": { "alias": "initialGaugeType"; "required": false; }; "initialValueAttribute": { "alias": "initialValueAttribute"; "required": false; }; "initialLabelAttribute": { "alias": "initialLabelAttribute"; "required": false; }; "initialMin": { "alias": "initialMin"; "required": false; }; "initialMax": { "alias": "initialMax"; "required": false; }; "initialRanges": { "alias": "initialRanges"; "required": false; }; "initialShowLabel": { "alias": "initialShowLabel"; "required": false; }; "initialPrefix": { "alias": "initialPrefix"; "required": false; }; "initialSuffix": { "alias": "initialSuffix"; "required": false; }; "initialReverse": { "alias": "initialReverse"; "required": false; }; "initialDataSourceType": { "alias": "initialDataSourceType"; "required": false; }; "initialQueryRtId": { "alias": "initialQueryRtId"; "required": false; }; "initialQueryName": { "alias": "initialQueryName"; "required": false; }; "initialQueryFamily": { "alias": "initialQueryFamily"; "required": false; }; "initialQueryMode": { "alias": "initialQueryMode"; "required": false; }; "initialQueryValueField": { "alias": "initialQueryValueField"; "required": false; }; "initialQueryCategoryField": { "alias": "initialQueryCategoryField"; "required": false; }; "initialQueryCategoryValue": { "alias": "initialQueryCategoryValue"; "required": false; }; "initialFilters": { "alias": "initialFilters"; "required": false; }; }, {}, never, never, true, never>;
|
|
3490
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GaugeConfigDialogComponent, "mm-gauge-config-dialog", never, { "initialCkTypeId": { "alias": "initialCkTypeId"; "required": false; }; "initialRtId": { "alias": "initialRtId"; "required": false; }; "initialGaugeType": { "alias": "initialGaugeType"; "required": false; }; "initialValueAttribute": { "alias": "initialValueAttribute"; "required": false; }; "initialLabelAttribute": { "alias": "initialLabelAttribute"; "required": false; }; "initialMin": { "alias": "initialMin"; "required": false; }; "initialMax": { "alias": "initialMax"; "required": false; }; "initialRanges": { "alias": "initialRanges"; "required": false; }; "initialShowLabel": { "alias": "initialShowLabel"; "required": false; }; "initialPrefix": { "alias": "initialPrefix"; "required": false; }; "initialSuffix": { "alias": "initialSuffix"; "required": false; }; "initialReverse": { "alias": "initialReverse"; "required": false; }; "initialDataSourceType": { "alias": "initialDataSourceType"; "required": false; }; "initialQueryRtId": { "alias": "initialQueryRtId"; "required": false; }; "initialQueryName": { "alias": "initialQueryName"; "required": false; }; "initialQueryFamily": { "alias": "initialQueryFamily"; "required": false; }; "initialIgnoreTimeFilter": { "alias": "initialIgnoreTimeFilter"; "required": false; }; "initialQueryMode": { "alias": "initialQueryMode"; "required": false; }; "initialQueryValueField": { "alias": "initialQueryValueField"; "required": false; }; "initialQueryCategoryField": { "alias": "initialQueryCategoryField"; "required": false; }; "initialQueryCategoryValue": { "alias": "initialQueryCategoryValue"; "required": false; }; "initialFilters": { "alias": "initialFilters"; "required": false; }; }, {}, never, never, true, never>;
|
|
3414
3491
|
}
|
|
3415
3492
|
|
|
3416
3493
|
/**
|
|
@@ -3488,6 +3565,7 @@ interface PieChartConfigResult extends WidgetConfigResult {
|
|
|
3488
3565
|
queryRtId?: string;
|
|
3489
3566
|
queryName?: string;
|
|
3490
3567
|
queryFamily?: QueryFamily;
|
|
3568
|
+
ignoreTimeFilter?: boolean;
|
|
3491
3569
|
categoryField: string;
|
|
3492
3570
|
valueField: string;
|
|
3493
3571
|
ckQueryTarget?: CkQueryTarget;
|
|
@@ -3511,6 +3589,7 @@ declare class PieChartConfigDialogComponent implements OnInit, AfterViewInit {
|
|
|
3511
3589
|
initialQueryRtId?: string;
|
|
3512
3590
|
initialQueryName?: string;
|
|
3513
3591
|
initialQueryFamily?: QueryFamily;
|
|
3592
|
+
initialIgnoreTimeFilter?: boolean;
|
|
3514
3593
|
initialChartType?: PieChartType;
|
|
3515
3594
|
initialCategoryField?: string;
|
|
3516
3595
|
initialValueField?: string;
|
|
@@ -3537,6 +3616,8 @@ declare class PieChartConfigDialogComponent implements OnInit, AfterViewInit {
|
|
|
3537
3616
|
label: string;
|
|
3538
3617
|
}[];
|
|
3539
3618
|
selectedPersistentQuery: PersistentQueryItem | null;
|
|
3619
|
+
/** Stream-data opt-out: when true the MeshBoard time filter is not bound to the query. */
|
|
3620
|
+
ignoreTimeFilter: boolean;
|
|
3540
3621
|
queryColumns: QueryColumnItem[];
|
|
3541
3622
|
filters: FieldFilterItem[];
|
|
3542
3623
|
filterVariables: FilterVariable[];
|
|
@@ -3555,6 +3636,8 @@ declare class PieChartConfigDialogComponent implements OnInit, AfterViewInit {
|
|
|
3555
3636
|
ckGroupBy: string;
|
|
3556
3637
|
};
|
|
3557
3638
|
get isValid(): boolean;
|
|
3639
|
+
/** Family of the currently selected query; drives the time-filter toggle's visibility. */
|
|
3640
|
+
get selectedQueryFamily(): QueryFamily | null;
|
|
3558
3641
|
ngOnInit(): Promise<void>;
|
|
3559
3642
|
ngAfterViewInit(): Promise<void>;
|
|
3560
3643
|
onDataSourceTypeChange(dataSourceType: DataSourceType): void;
|
|
@@ -3572,7 +3655,7 @@ declare class PieChartConfigDialogComponent implements OnInit, AfterViewInit {
|
|
|
3572
3655
|
onSave(): void;
|
|
3573
3656
|
onCancel(): void;
|
|
3574
3657
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PieChartConfigDialogComponent, never>;
|
|
3575
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PieChartConfigDialogComponent, "mm-pie-chart-config-dialog", never, { "initialDataSourceType": { "alias": "initialDataSourceType"; "required": false; }; "initialQueryRtId": { "alias": "initialQueryRtId"; "required": false; }; "initialQueryName": { "alias": "initialQueryName"; "required": false; }; "initialQueryFamily": { "alias": "initialQueryFamily"; "required": false; }; "initialChartType": { "alias": "initialChartType"; "required": false; }; "initialCategoryField": { "alias": "initialCategoryField"; "required": false; }; "initialValueField": { "alias": "initialValueField"; "required": false; }; "initialShowLabels": { "alias": "initialShowLabels"; "required": false; }; "initialShowLegend": { "alias": "initialShowLegend"; "required": false; }; "initialLegendPosition": { "alias": "initialLegendPosition"; "required": false; }; "initialCkQueryTarget": { "alias": "initialCkQueryTarget"; "required": false; }; "initialCkGroupBy": { "alias": "initialCkGroupBy"; "required": false; }; "initialFilters": { "alias": "initialFilters"; "required": false; }; }, {}, never, never, true, never>;
|
|
3658
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PieChartConfigDialogComponent, "mm-pie-chart-config-dialog", never, { "initialDataSourceType": { "alias": "initialDataSourceType"; "required": false; }; "initialQueryRtId": { "alias": "initialQueryRtId"; "required": false; }; "initialQueryName": { "alias": "initialQueryName"; "required": false; }; "initialQueryFamily": { "alias": "initialQueryFamily"; "required": false; }; "initialIgnoreTimeFilter": { "alias": "initialIgnoreTimeFilter"; "required": false; }; "initialChartType": { "alias": "initialChartType"; "required": false; }; "initialCategoryField": { "alias": "initialCategoryField"; "required": false; }; "initialValueField": { "alias": "initialValueField"; "required": false; }; "initialShowLabels": { "alias": "initialShowLabels"; "required": false; }; "initialShowLegend": { "alias": "initialShowLegend"; "required": false; }; "initialLegendPosition": { "alias": "initialLegendPosition"; "required": false; }; "initialCkQueryTarget": { "alias": "initialCkQueryTarget"; "required": false; }; "initialCkGroupBy": { "alias": "initialCkGroupBy"; "required": false; }; "initialFilters": { "alias": "initialFilters"; "required": false; }; }, {}, never, never, true, never>;
|
|
3576
3659
|
}
|
|
3577
3660
|
|
|
3578
3661
|
/**
|
|
@@ -3678,6 +3761,7 @@ interface BarChartConfigResult extends WidgetConfigResult {
|
|
|
3678
3761
|
queryRtId: string;
|
|
3679
3762
|
queryName?: string;
|
|
3680
3763
|
queryFamily?: QueryFamily;
|
|
3764
|
+
ignoreTimeFilter?: boolean;
|
|
3681
3765
|
chartType: BarChartType;
|
|
3682
3766
|
categoryField: string;
|
|
3683
3767
|
series: BarChartSeries[];
|
|
@@ -3705,6 +3789,7 @@ declare class BarChartConfigDialogComponent implements OnInit {
|
|
|
3705
3789
|
initialQueryRtId?: string;
|
|
3706
3790
|
initialQueryName?: string;
|
|
3707
3791
|
initialQueryFamily?: QueryFamily;
|
|
3792
|
+
initialIgnoreTimeFilter?: boolean;
|
|
3708
3793
|
initialChartType?: BarChartType;
|
|
3709
3794
|
initialCategoryField?: string;
|
|
3710
3795
|
initialSeries?: BarChartSeries[];
|
|
@@ -3721,6 +3806,10 @@ declare class BarChartConfigDialogComponent implements OnInit {
|
|
|
3721
3806
|
selectedPersistentQuery: PersistentQueryItem | null;
|
|
3722
3807
|
queryColumns: QueryColumnItem[];
|
|
3723
3808
|
numericColumns: QueryColumnItem[];
|
|
3809
|
+
/** Per-widget opt-out of the MeshBoard time-filter → stream-data binding. */
|
|
3810
|
+
ignoreTimeFilter: boolean;
|
|
3811
|
+
/** Family of the currently selected query — gates the time-filter opt-out toggle. */
|
|
3812
|
+
get selectedQueryFamily(): QueryFamily | null;
|
|
3724
3813
|
filters: FieldFilterItem[];
|
|
3725
3814
|
filterVariables: FilterVariable[];
|
|
3726
3815
|
seriesMode: SeriesMode;
|
|
@@ -3762,7 +3851,7 @@ declare class BarChartConfigDialogComponent implements OnInit {
|
|
|
3762
3851
|
removeColorThreshold(index: number): void;
|
|
3763
3852
|
onCancel(): void;
|
|
3764
3853
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BarChartConfigDialogComponent, never>;
|
|
3765
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BarChartConfigDialogComponent, "mm-bar-chart-config-dialog", never, { "initialQueryRtId": { "alias": "initialQueryRtId"; "required": false; }; "initialQueryName": { "alias": "initialQueryName"; "required": false; }; "initialQueryFamily": { "alias": "initialQueryFamily"; "required": false; }; "initialChartType": { "alias": "initialChartType"; "required": false; }; "initialCategoryField": { "alias": "initialCategoryField"; "required": false; }; "initialSeries": { "alias": "initialSeries"; "required": false; }; "initialSeriesGroupField": { "alias": "initialSeriesGroupField"; "required": false; }; "initialValueField": { "alias": "initialValueField"; "required": false; }; "initialShowLegend": { "alias": "initialShowLegend"; "required": false; }; "initialLegendPosition": { "alias": "initialLegendPosition"; "required": false; }; "initialShowDataLabels": { "alias": "initialShowDataLabels"; "required": false; }; "initialColorThresholds": { "alias": "initialColorThresholds"; "required": false; }; "initialDefaultBarColor": { "alias": "initialDefaultBarColor"; "required": false; }; "initialFilters": { "alias": "initialFilters"; "required": false; }; }, {}, never, never, true, never>;
|
|
3854
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BarChartConfigDialogComponent, "mm-bar-chart-config-dialog", never, { "initialQueryRtId": { "alias": "initialQueryRtId"; "required": false; }; "initialQueryName": { "alias": "initialQueryName"; "required": false; }; "initialQueryFamily": { "alias": "initialQueryFamily"; "required": false; }; "initialIgnoreTimeFilter": { "alias": "initialIgnoreTimeFilter"; "required": false; }; "initialChartType": { "alias": "initialChartType"; "required": false; }; "initialCategoryField": { "alias": "initialCategoryField"; "required": false; }; "initialSeries": { "alias": "initialSeries"; "required": false; }; "initialSeriesGroupField": { "alias": "initialSeriesGroupField"; "required": false; }; "initialValueField": { "alias": "initialValueField"; "required": false; }; "initialShowLegend": { "alias": "initialShowLegend"; "required": false; }; "initialLegendPosition": { "alias": "initialLegendPosition"; "required": false; }; "initialShowDataLabels": { "alias": "initialShowDataLabels"; "required": false; }; "initialColorThresholds": { "alias": "initialColorThresholds"; "required": false; }; "initialDefaultBarColor": { "alias": "initialDefaultBarColor"; "required": false; }; "initialFilters": { "alias": "initialFilters"; "required": false; }; }, {}, never, never, true, never>;
|
|
3766
3855
|
}
|
|
3767
3856
|
|
|
3768
3857
|
/**
|
|
@@ -3864,6 +3953,7 @@ interface LineChartConfigResult extends WidgetConfigResult {
|
|
|
3864
3953
|
queryRtId: string;
|
|
3865
3954
|
queryName?: string;
|
|
3866
3955
|
queryFamily?: QueryFamily;
|
|
3956
|
+
ignoreTimeFilter?: boolean;
|
|
3867
3957
|
chartType: LineChartType;
|
|
3868
3958
|
categoryField: string;
|
|
3869
3959
|
seriesGroupField: string;
|
|
@@ -3888,6 +3978,7 @@ declare class LineChartConfigDialogComponent implements OnInit {
|
|
|
3888
3978
|
initialQueryRtId?: string;
|
|
3889
3979
|
initialQueryName?: string;
|
|
3890
3980
|
initialQueryFamily?: QueryFamily;
|
|
3981
|
+
initialIgnoreTimeFilter?: boolean;
|
|
3891
3982
|
initialChartType?: LineChartType;
|
|
3892
3983
|
initialCategoryField?: string;
|
|
3893
3984
|
initialSeriesGroupField?: string;
|
|
@@ -3904,6 +3995,10 @@ declare class LineChartConfigDialogComponent implements OnInit {
|
|
|
3904
3995
|
queryColumns: QueryColumnItem[];
|
|
3905
3996
|
numericColumns: QueryColumnItem[];
|
|
3906
3997
|
nonNumericColumns: QueryColumnItem[];
|
|
3998
|
+
/** Per-widget opt-out of the MeshBoard time-filter → stream-data binding. */
|
|
3999
|
+
ignoreTimeFilter: boolean;
|
|
4000
|
+
/** Family of the currently selected query — gates the time-filter opt-out toggle. */
|
|
4001
|
+
get selectedQueryFamily(): QueryFamily | null;
|
|
3907
4002
|
filters: FieldFilterItem[];
|
|
3908
4003
|
filterVariables: FilterVariable[];
|
|
3909
4004
|
legendPositions: {
|
|
@@ -3937,7 +4032,7 @@ declare class LineChartConfigDialogComponent implements OnInit {
|
|
|
3937
4032
|
removeReferenceLine(index: number): void;
|
|
3938
4033
|
onCancel(): void;
|
|
3939
4034
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LineChartConfigDialogComponent, never>;
|
|
3940
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LineChartConfigDialogComponent, "mm-line-chart-config-dialog", never, { "initialQueryRtId": { "alias": "initialQueryRtId"; "required": false; }; "initialQueryName": { "alias": "initialQueryName"; "required": false; }; "initialQueryFamily": { "alias": "initialQueryFamily"; "required": false; }; "initialChartType": { "alias": "initialChartType"; "required": false; }; "initialCategoryField": { "alias": "initialCategoryField"; "required": false; }; "initialSeriesGroupField": { "alias": "initialSeriesGroupField"; "required": false; }; "initialValueField": { "alias": "initialValueField"; "required": false; }; "initialUnitField": { "alias": "initialUnitField"; "required": false; }; "initialShowLegend": { "alias": "initialShowLegend"; "required": false; }; "initialLegendPosition": { "alias": "initialLegendPosition"; "required": false; }; "initialShowMarkers": { "alias": "initialShowMarkers"; "required": false; }; "initialReferenceLines": { "alias": "initialReferenceLines"; "required": false; }; "initialFilters": { "alias": "initialFilters"; "required": false; }; }, {}, never, never, true, never>;
|
|
4035
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LineChartConfigDialogComponent, "mm-line-chart-config-dialog", never, { "initialQueryRtId": { "alias": "initialQueryRtId"; "required": false; }; "initialQueryName": { "alias": "initialQueryName"; "required": false; }; "initialQueryFamily": { "alias": "initialQueryFamily"; "required": false; }; "initialIgnoreTimeFilter": { "alias": "initialIgnoreTimeFilter"; "required": false; }; "initialChartType": { "alias": "initialChartType"; "required": false; }; "initialCategoryField": { "alias": "initialCategoryField"; "required": false; }; "initialSeriesGroupField": { "alias": "initialSeriesGroupField"; "required": false; }; "initialValueField": { "alias": "initialValueField"; "required": false; }; "initialUnitField": { "alias": "initialUnitField"; "required": false; }; "initialShowLegend": { "alias": "initialShowLegend"; "required": false; }; "initialLegendPosition": { "alias": "initialLegendPosition"; "required": false; }; "initialShowMarkers": { "alias": "initialShowMarkers"; "required": false; }; "initialReferenceLines": { "alias": "initialReferenceLines"; "required": false; }; "initialFilters": { "alias": "initialFilters"; "required": false; }; }, {}, never, never, true, never>;
|
|
3941
4036
|
}
|
|
3942
4037
|
|
|
3943
4038
|
/**
|
|
@@ -4033,6 +4128,7 @@ interface HeatmapConfigResult extends WidgetConfigResult {
|
|
|
4033
4128
|
queryRtId: string;
|
|
4034
4129
|
queryName?: string;
|
|
4035
4130
|
queryFamily?: QueryFamily;
|
|
4131
|
+
ignoreTimeFilter?: boolean;
|
|
4036
4132
|
dateField: string;
|
|
4037
4133
|
dateEndField?: string;
|
|
4038
4134
|
valueField?: string;
|
|
@@ -4054,6 +4150,7 @@ declare class HeatmapConfigDialogComponent implements OnInit {
|
|
|
4054
4150
|
initialQueryRtId?: string;
|
|
4055
4151
|
initialQueryName?: string;
|
|
4056
4152
|
initialQueryFamily?: QueryFamily;
|
|
4153
|
+
initialIgnoreTimeFilter?: boolean;
|
|
4057
4154
|
initialDateField?: string;
|
|
4058
4155
|
initialDateEndField?: string;
|
|
4059
4156
|
initialValueField?: string;
|
|
@@ -4068,6 +4165,7 @@ declare class HeatmapConfigDialogComponent implements OnInit {
|
|
|
4068
4165
|
isLoadingInitial: boolean;
|
|
4069
4166
|
isLoadingColumns: boolean;
|
|
4070
4167
|
selectedPersistentQuery: PersistentQueryItem | null;
|
|
4168
|
+
ignoreTimeFilter: boolean;
|
|
4071
4169
|
queryColumns: QueryColumnItem[];
|
|
4072
4170
|
numericColumns: QueryColumnItem[];
|
|
4073
4171
|
dateTimeColumns: QueryColumnItem[];
|
|
@@ -4103,6 +4201,7 @@ declare class HeatmapConfigDialogComponent implements OnInit {
|
|
|
4103
4201
|
valueMultiplier: number;
|
|
4104
4202
|
};
|
|
4105
4203
|
get isValid(): boolean;
|
|
4204
|
+
get selectedQueryFamily(): QueryFamily | null;
|
|
4106
4205
|
ngOnInit(): Promise<void>;
|
|
4107
4206
|
onQuerySelected(query: PersistentQueryItem | null): Promise<void>;
|
|
4108
4207
|
private loadQueryColumns;
|
|
@@ -4116,7 +4215,7 @@ declare class HeatmapConfigDialogComponent implements OnInit {
|
|
|
4116
4215
|
onSave(): void;
|
|
4117
4216
|
onCancel(): void;
|
|
4118
4217
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeatmapConfigDialogComponent, never>;
|
|
4119
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeatmapConfigDialogComponent, "mm-heatmap-config-dialog", never, { "initialQueryRtId": { "alias": "initialQueryRtId"; "required": false; }; "initialQueryName": { "alias": "initialQueryName"; "required": false; }; "initialQueryFamily": { "alias": "initialQueryFamily"; "required": false; }; "initialDateField": { "alias": "initialDateField"; "required": false; }; "initialDateEndField": { "alias": "initialDateEndField"; "required": false; }; "initialValueField": { "alias": "initialValueField"; "required": false; }; "initialAggregation": { "alias": "initialAggregation"; "required": false; }; "initialColorScheme": { "alias": "initialColorScheme"; "required": false; }; "initialShowLegend": { "alias": "initialShowLegend"; "required": false; }; "initialLegendPosition": { "alias": "initialLegendPosition"; "required": false; }; "initialDecimalPlaces": { "alias": "initialDecimalPlaces"; "required": false; }; "initialCompactNumbers": { "alias": "initialCompactNumbers"; "required": false; }; "initialValueMultiplier": { "alias": "initialValueMultiplier"; "required": false; }; "initialFilters": { "alias": "initialFilters"; "required": false; }; }, {}, never, never, true, never>;
|
|
4218
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeatmapConfigDialogComponent, "mm-heatmap-config-dialog", never, { "initialQueryRtId": { "alias": "initialQueryRtId"; "required": false; }; "initialQueryName": { "alias": "initialQueryName"; "required": false; }; "initialQueryFamily": { "alias": "initialQueryFamily"; "required": false; }; "initialIgnoreTimeFilter": { "alias": "initialIgnoreTimeFilter"; "required": false; }; "initialDateField": { "alias": "initialDateField"; "required": false; }; "initialDateEndField": { "alias": "initialDateEndField"; "required": false; }; "initialValueField": { "alias": "initialValueField"; "required": false; }; "initialAggregation": { "alias": "initialAggregation"; "required": false; }; "initialColorScheme": { "alias": "initialColorScheme"; "required": false; }; "initialShowLegend": { "alias": "initialShowLegend"; "required": false; }; "initialLegendPosition": { "alias": "initialLegendPosition"; "required": false; }; "initialDecimalPlaces": { "alias": "initialDecimalPlaces"; "required": false; }; "initialCompactNumbers": { "alias": "initialCompactNumbers"; "required": false; }; "initialValueMultiplier": { "alias": "initialValueMultiplier"; "required": false; }; "initialFilters": { "alias": "initialFilters"; "required": false; }; }, {}, never, never, true, never>;
|
|
4120
4219
|
}
|
|
4121
4220
|
|
|
4122
4221
|
interface StatValue {
|
|
@@ -5252,6 +5351,7 @@ declare class MeshBoardViewComponent implements OnInit, OnDestroy, HasUnsavedCha
|
|
|
5252
5351
|
private readonly router;
|
|
5253
5352
|
private readonly route;
|
|
5254
5353
|
protected readonly gridService: MeshBoardGridService;
|
|
5354
|
+
private readonly autoRefreshTimer;
|
|
5255
5355
|
private readonly tenantIdProvider;
|
|
5256
5356
|
private readonly breadCrumbService;
|
|
5257
5357
|
private lastNavigatedRtId;
|
|
@@ -5275,8 +5375,6 @@ declare class MeshBoardViewComponent implements OnInit, OnDestroy, HasUnsavedCha
|
|
|
5275
5375
|
protected editingWidget: AnyWidgetConfig | null;
|
|
5276
5376
|
private configDialogSubscription;
|
|
5277
5377
|
private navigationSubscription;
|
|
5278
|
-
private autoRefreshTimerId;
|
|
5279
|
-
private autoRefreshActiveSeconds;
|
|
5280
5378
|
private readonly visibilityListener;
|
|
5281
5379
|
protected readonly config: _angular_core.Signal<MeshBoardConfig>;
|
|
5282
5380
|
protected readonly isEditMode: _angular_core.Signal<boolean>;
|
|
@@ -5327,15 +5425,14 @@ declare class MeshBoardViewComponent implements OnInit, OnDestroy, HasUnsavedCha
|
|
|
5327
5425
|
private loadMeshBoardById;
|
|
5328
5426
|
ngOnDestroy(): void;
|
|
5329
5427
|
/**
|
|
5330
|
-
*
|
|
5331
|
-
*
|
|
5332
|
-
* and whenever
|
|
5428
|
+
* Reconciles the auto-refresh timer to the current MeshBoard config and
|
|
5429
|
+
* document visibility. Called on init, whenever config changes (via the
|
|
5430
|
+
* constructor effect), and whenever tab visibility changes.
|
|
5333
5431
|
*
|
|
5334
5432
|
* Pause-on-hidden saves bandwidth and avoids Apollo cache thrashing when
|
|
5335
5433
|
* the user has the tab in the background.
|
|
5336
5434
|
*/
|
|
5337
5435
|
private evaluateAutoRefresh;
|
|
5338
|
-
private stopAutoRefresh;
|
|
5339
5436
|
/**
|
|
5340
5437
|
* Preloads data for all widgets to improve initial rendering performance.
|
|
5341
5438
|
*/
|
|
@@ -5806,5 +5903,5 @@ declare class MeshBoardManagerDialogComponent implements OnInit {
|
|
|
5806
5903
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MeshBoardManagerDialogComponent, "mm-meshboard-manager-dialog", never, {}, {}, never, never, true, never>;
|
|
5807
5904
|
}
|
|
5808
5905
|
|
|
5809
|
-
export { AddWidgetDialogComponent, AiInsightsConfigDialogComponent, AiInsightsService, AiInsightsWidgetComponent, AlertBannerConfigDialogComponent, AlertBannerWidgetComponent, AlertListConfigDialogComponent, AlertListWidgetComponent, AssociationsConfigDialogComponent, BarChartConfigDialogComponent, BarChartWidgetComponent, DashboardDataService, DashboardGridService, EditModeStateService, EditWidgetDialogComponent, EntityAssociationsWidgetComponent, EntityCardConfigDialogComponent, EntityCardWidgetComponent, EntityDetailDialogComponent, EntitySelectorEditorComponent, EntitySelectorToolbarComponent, GaugeConfigDialogComponent, GaugeWidgetComponent, HeatmapConfigDialogComponent, HeatmapWidgetComponent, KpiConfigDialogComponent, KpiWidgetComponent, LineChartConfigDialogComponent, LineChartWidgetComponent, MESHBOARD_OPTIONS, MESHBOARD_TENANT_ID_PROVIDER, MarkdownConfigDialogComponent, MarkdownWidgetComponent, MeshBoardDataService, MeshBoardGridService, MeshBoardManagerDialogComponent, MeshBoardPersistenceService, MeshBoardSettingsDialogComponent, MeshBoardSettingsResult, MeshBoardStateService, MeshBoardViewComponent, PieChartConfigDialogComponent, PieChartWidgetComponent, QueryExecutorService, QuerySelectorComponent, RuntimeEntitySelectorComponent, ServiceHealthConfigDialogComponent, ServiceHealthWidgetComponent, StatsGridConfigDialogComponent, StatsGridWidgetComponent, StatusIndicatorConfigDialogComponent, StatusIndicatorWidgetComponent, StatusListConfigDialogComponent, StatusListWidgetComponent, SummaryCardConfigDialogComponent, SummaryCardWidgetComponent, TableConfigDialogComponent, TableWidgetComponent, TableWidgetDataSourceDirective, WidgetFactoryService, WidgetGroupComponent, WidgetGroupConfigDialogComponent, WidgetNotConfiguredComponent, WidgetRegistryService, classifyQuery, provideDefaultWidgets, provideMeshBoard, provideProcessWidget, provideWidgetRegistrations, queryFamily, registerDefaultWidgets, registerProcessWidget };
|
|
5906
|
+
export { AddWidgetDialogComponent, AiInsightsConfigDialogComponent, AiInsightsService, AiInsightsWidgetComponent, AlertBannerConfigDialogComponent, AlertBannerWidgetComponent, AlertListConfigDialogComponent, AlertListWidgetComponent, AssociationsConfigDialogComponent, AutoRefreshTimerService, BarChartConfigDialogComponent, BarChartWidgetComponent, DashboardDataService, DashboardGridService, EditModeStateService, EditWidgetDialogComponent, EntityAssociationsWidgetComponent, EntityCardConfigDialogComponent, EntityCardWidgetComponent, EntityDetailDialogComponent, EntitySelectorEditorComponent, EntitySelectorToolbarComponent, GaugeConfigDialogComponent, GaugeWidgetComponent, HeatmapConfigDialogComponent, HeatmapWidgetComponent, KpiConfigDialogComponent, KpiWidgetComponent, LineChartConfigDialogComponent, LineChartWidgetComponent, MESHBOARD_OPTIONS, MESHBOARD_TENANT_ID_PROVIDER, MarkdownConfigDialogComponent, MarkdownWidgetComponent, MeshBoardDataService, MeshBoardGridService, MeshBoardManagerDialogComponent, MeshBoardPersistenceService, MeshBoardSettingsDialogComponent, MeshBoardSettingsResult, MeshBoardStateService, MeshBoardViewComponent, PieChartConfigDialogComponent, PieChartWidgetComponent, QueryExecutorService, QuerySelectorComponent, RuntimeEntitySelectorComponent, ServiceHealthConfigDialogComponent, ServiceHealthWidgetComponent, StatsGridConfigDialogComponent, StatsGridWidgetComponent, StatusIndicatorConfigDialogComponent, StatusIndicatorWidgetComponent, StatusListConfigDialogComponent, StatusListWidgetComponent, SummaryCardConfigDialogComponent, SummaryCardWidgetComponent, TableConfigDialogComponent, TableWidgetComponent, TableWidgetDataSourceDirective, WidgetFactoryService, WidgetGroupComponent, WidgetGroupConfigDialogComponent, WidgetNotConfiguredComponent, WidgetRegistryService, classifyQuery, provideDefaultWidgets, provideMeshBoard, provideProcessWidget, provideWidgetRegistrations, queryFamily, registerDefaultWidgets, registerProcessWidget };
|
|
5810
5907
|
export type { AggregationDataSource, AggregationQuery, AggregationType, AiInsightsConfigResult, AiInsightsWidgetConfig, AlertBannerConfigResult, AlertBannerWidgetConfig, AlertListConfigResult, AlertListWidgetConfig, AnyWidgetConfig, AssociationsConfigResult, BarChartColorThreshold, BarChartConfigResult, BarChartSeries, BarChartType, BarChartWidgetConfig, BaseWidgetConfig, CategoryValueItem, ChartReferenceLine, CkQueryResult, CkQueryTarget, CkTypeAttributeInfo, ConfigDialogResult, ConfigResultApplier, ConstructionKitQueryDataSource, DashboardConfig, DashboardWidget, DataSource, DataSourceType, DiagramPropertyMapping, EntityAssociation, EntityAttribute, EntityCardConfigResult, EntityCardWidgetConfig, EntityListWidget, EntitySelectorAttributeMapping, EntitySelectorClearEvent, EntitySelectorConfig, EntitySelectorEvent, EntityWidget, EntityWithAssociationsWidgetConfig, GaugeConfigResult, GaugeRange, GaugeType, GaugeWidgetConfig, GridCell, GridPosition, GroupChildWidgetType, GroupedDataItem, HeatmapAggregation, HeatmapColorScheme, HeatmapConfigResult, HeatmapWidgetConfig, KpiConfigResult, KpiDataSourceType, KpiQueryMode, KpiWidgetConfig, LineChartConfigResult, LineChartType, LineChartWidgetConfig, MarkdownConfigResult, MarkdownTextAlign, MarkdownWidgetConfig, MeshBoardConfig, MeshBoardOptions, MeshBoardTimeFilterConfig, MeshBoardVariable, MeshBoardVariableSource, MeshBoardVariableType, ParentAssociationMode, PersistedDashboard, PersistedMeshBoard, PersistedWidget, PersistedWidgetData, PersistentQueryDataSource, PersistentQueryItem, PieChartConfigResult, PieChartType, PieChartWidgetConfig, ProcessWidgetConfig, Quarter, QueryCell, QueryClassification, QueryColumn, QueryColumnInfo, QueryColumnItem, QueryExecutionOptions, QueryExecutionResult, QueryFamily, QueryKind, QueryResultRow, RelativeTimeUnit, RepeaterDataItem, RepeaterQueryDataSource, RuntimeEntityData, RuntimeEntityDataSource, RuntimeEntitySelectorValue, ServiceCallDataSource, ServiceCallType, ServiceHealthConfigResult, ServiceHealthWidgetConfig, StatColor, StatItem, StaticDataSource, StatsGridConfigResult, StatsGridWidgetConfig, StatusIndicatorConfigResult, StatusIndicatorWidgetConfig, StatusListConfigResult, StatusListWidgetConfig, StreamDataExecutionArgs, SummaryCardConfigResult, SummaryCardTile, SummaryCardWidgetConfig, TableColumn, TableColumnStatusIconMapping, TableConfigResult, TableFilterConfig, TableSortConfig, TableWidgetConfig, TargetEntityWithAttributes, TimeRangePickerConfig, TimeRangeSelection, TimeRangeType, UpdateDashboardResult, VariableResolutionError, WidgetConfig, WidgetConfigDialog, WidgetConfigDialogSize, WidgetConfigResult, WidgetCreationOptions, WidgetDataSource, WidgetFilterConfig, WidgetGroupAttributeMappings, WidgetGroupChildTemplate, WidgetGroupConfig, WidgetGroupConfigResult, WidgetGroupLayout, WidgetPersistenceData, WidgetPositionUpdate, WidgetRegistration, WidgetType, WidgetZone };
|