@devtable/dashboard 10.55.1 → 10.56.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.
- package/dist/components/panel/settings/common/data-field-selector.d.ts +1 -1
- package/dist/components/plugins/plugin-context.d.ts +18 -0
- package/dist/contexts/panel-context.d.ts +18 -0
- package/dist/dashboard-editor/model/panels/panel.d.ts +9 -0
- package/dist/dashboard.es.js +483 -451
- package/dist/dashboard.umd.js +49 -49
- package/dist/stats.html +1 -1
- package/package.json +1 -1
|
@@ -8,5 +8,5 @@ interface IDataFieldSelector {
|
|
|
8
8
|
clearable?: boolean;
|
|
9
9
|
sx?: Sx;
|
|
10
10
|
}
|
|
11
|
-
export declare const DataFieldSelector: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<IDataFieldSelector & React.RefAttributes<
|
|
11
|
+
export declare const DataFieldSelector: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<IDataFieldSelector & React.RefAttributes<HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>>>;
|
|
12
12
|
export {};
|
|
@@ -2651,6 +2651,15 @@ export declare const tokens: {
|
|
|
2651
2651
|
value: string;
|
|
2652
2652
|
group: string;
|
|
2653
2653
|
}[];
|
|
2654
|
+
explainDataKey(dataKey: string): {
|
|
2655
|
+
queryID: string;
|
|
2656
|
+
queryName: null;
|
|
2657
|
+
columnKey: string;
|
|
2658
|
+
} | {
|
|
2659
|
+
queryID: string;
|
|
2660
|
+
queryName: string;
|
|
2661
|
+
columnKey: string;
|
|
2662
|
+
};
|
|
2654
2663
|
} & {
|
|
2655
2664
|
removeSelf(): void;
|
|
2656
2665
|
} & {
|
|
@@ -4861,6 +4870,15 @@ export declare const tokens: {
|
|
|
4861
4870
|
value: string;
|
|
4862
4871
|
group: string;
|
|
4863
4872
|
}[];
|
|
4873
|
+
explainDataKey(dataKey: string): {
|
|
4874
|
+
queryID: string;
|
|
4875
|
+
queryName: null;
|
|
4876
|
+
columnKey: string;
|
|
4877
|
+
} | {
|
|
4878
|
+
queryID: string;
|
|
4879
|
+
queryName: string;
|
|
4880
|
+
columnKey: string;
|
|
4881
|
+
};
|
|
4864
4882
|
} & {
|
|
4865
4883
|
removeSelf(): void;
|
|
4866
4884
|
} & {
|
|
@@ -7473,6 +7473,15 @@ export declare const useEditPanelContext: () => {
|
|
|
7473
7473
|
value: string;
|
|
7474
7474
|
group: string;
|
|
7475
7475
|
}[];
|
|
7476
|
+
explainDataKey(dataKey: string): {
|
|
7477
|
+
queryID: string;
|
|
7478
|
+
queryName: null;
|
|
7479
|
+
columnKey: string;
|
|
7480
|
+
} | {
|
|
7481
|
+
queryID: string;
|
|
7482
|
+
queryName: string;
|
|
7483
|
+
columnKey: string;
|
|
7484
|
+
};
|
|
7476
7485
|
} & {
|
|
7477
7486
|
removeSelf(): void;
|
|
7478
7487
|
} & {
|
|
@@ -9683,6 +9692,15 @@ export declare const useEditPanelContext: () => {
|
|
|
9683
9692
|
value: string;
|
|
9684
9693
|
group: string;
|
|
9685
9694
|
}[];
|
|
9695
|
+
explainDataKey(dataKey: string): {
|
|
9696
|
+
queryID: string;
|
|
9697
|
+
queryName: null;
|
|
9698
|
+
columnKey: string;
|
|
9699
|
+
} | {
|
|
9700
|
+
queryID: string;
|
|
9701
|
+
queryName: string;
|
|
9702
|
+
columnKey: string;
|
|
9703
|
+
};
|
|
9686
9704
|
} & {
|
|
9687
9705
|
removeSelf(): void;
|
|
9688
9706
|
} & {
|
|
@@ -2207,6 +2207,15 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
|
|
|
2207
2207
|
value: string;
|
|
2208
2208
|
group: string;
|
|
2209
2209
|
}[];
|
|
2210
|
+
explainDataKey(dataKey: TDataKey): {
|
|
2211
|
+
queryID: string;
|
|
2212
|
+
queryName: null;
|
|
2213
|
+
columnKey: string;
|
|
2214
|
+
} | {
|
|
2215
|
+
queryID: string;
|
|
2216
|
+
queryName: string;
|
|
2217
|
+
columnKey: string;
|
|
2218
|
+
};
|
|
2210
2219
|
} & {
|
|
2211
2220
|
removeSelf(): void;
|
|
2212
2221
|
} & {
|