@masterteam/dashboard-builder 0.0.37 → 0.0.38
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@masterteam/dashboard-builder",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.38",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"directory": "../../../dist/masterteam/dashboard-builder",
|
|
6
6
|
"linkDirectory": true,
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"primeng": "21.1.5",
|
|
22
22
|
"rxjs": "^7.8.2",
|
|
23
23
|
"tailwindcss": "^4.2.2",
|
|
24
|
-
"@masterteam/
|
|
25
|
-
"@masterteam/
|
|
24
|
+
"@masterteam/components": "^0.0.195",
|
|
25
|
+
"@masterteam/icons": "^0.0.16"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"tslib": "^2.8.1",
|
|
@@ -3905,6 +3905,9 @@ declare class TableCardComponent implements OnInit, OnDestroy {
|
|
|
3905
3905
|
* Build grouped table
|
|
3906
3906
|
*/
|
|
3907
3907
|
private buildGroupedTable;
|
|
3908
|
+
getLegendColor(label: any): string;
|
|
3909
|
+
getLegendText(label: any): string;
|
|
3910
|
+
private extractLabels;
|
|
3908
3911
|
/**
|
|
3909
3912
|
* Get cell data for entity-info component
|
|
3910
3913
|
* Returns the full entity data object { viewType, value, label }
|
|
@@ -5522,6 +5525,9 @@ declare class ChartSettingsDrawer {
|
|
|
5522
5525
|
private transloco;
|
|
5523
5526
|
private drawerConfig;
|
|
5524
5527
|
readonly modal: ModalService;
|
|
5528
|
+
private readonly chartDataService;
|
|
5529
|
+
private readonly itemStoreService;
|
|
5530
|
+
readonly previewDashboardId: string;
|
|
5525
5531
|
/** The chart item signal - reactive for proper change detection */
|
|
5526
5532
|
readonly item: _angular_core.WritableSignal<DashboardChartItem | null>;
|
|
5527
5533
|
constructor();
|
|
@@ -5563,6 +5569,10 @@ declare class ChartSettingsDrawer {
|
|
|
5563
5569
|
readonly resolvedChartType: _angular_core.Signal<ChartTypeConfig | null>;
|
|
5564
5570
|
/** ItemConfig computed for DisplaySettings input */
|
|
5565
5571
|
readonly itemConfig: _angular_core.Signal<ItemConfig | null>;
|
|
5572
|
+
/** Processed preview data based on the current local drawer config. */
|
|
5573
|
+
readonly previewChartData: _angular_core.Signal<ChartDataHandled | null>;
|
|
5574
|
+
/** True when the stored data can be rendered by the ECharts preview. */
|
|
5575
|
+
readonly canRenderChartPreview: _angular_core.Signal<boolean>;
|
|
5566
5576
|
/** Determine the type of manage UI to show */
|
|
5567
5577
|
readonly manageType: _angular_core.Signal<QuickManageType>;
|
|
5568
5578
|
/**
|
|
@@ -5602,6 +5612,7 @@ declare class ChartSettingsDrawer {
|
|
|
5602
5612
|
/** Close without changes */
|
|
5603
5613
|
close(): void;
|
|
5604
5614
|
private isLayoutComponent;
|
|
5615
|
+
private setWorkingItem;
|
|
5605
5616
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChartSettingsDrawer, never>;
|
|
5606
5617
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChartSettingsDrawer, "mt-chart-settings-drawer", never, {}, {}, never, never, true, never>;
|
|
5607
5618
|
}
|