@devtable/dashboard 10.34.7 → 10.35.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/panel-render/full-screen-render/use-panel-full-screen.d.ts +8 -0
- package/dist/components/plugins/plugin-context.d.ts +8 -0
- package/dist/contexts/panel-context.d.ts +16 -0
- package/dist/dashboard-editor/model/panels/panel.d.ts +4 -0
- package/dist/dashboard-editor/model/panels/panels.d.ts +32 -0
- package/dist/dashboard-editor/model/queries/index.d.ts +14 -0
- package/dist/dashboard.es.js +2836 -2812
- package/dist/dashboard.umd.js +66 -66
- package/dist/model/meta-model/dashboard/content/types.d.ts +4 -0
- package/dist/model/render-model/dashboard/content/panels/panel.d.ts +4 -0
- package/dist/model/render-model/dashboard/content/panels/panels.d.ts +28 -0
- package/dist/model/render-model/dashboard/content/queries/queries.d.ts +10 -0
- package/dist/model/render-model/dashboard/content/queries/query.d.ts +2 -0
- package/dist/stats.html +1 -1
- package/dist/utils/dashboard-state.d.ts +2 -0
- package/dist/utils/http-query.d.ts +2 -2
- package/dist/utils/sql.d.ts +2 -2
- package/package.json +1 -1
|
@@ -5,5 +5,9 @@ export declare type TPayloadForSQL = {
|
|
|
5
5
|
global_sql_snippets: AnyObject;
|
|
6
6
|
filters: AnyObject;
|
|
7
7
|
};
|
|
8
|
+
export declare type TDashboardState = {
|
|
9
|
+
filters: AnyObject;
|
|
10
|
+
context: AnyObject;
|
|
11
|
+
};
|
|
8
12
|
export declare type TPayloadForSQLSnippet = Omit<TPayloadForSQL, 'sql_snippets' | 'global_sql_snippets'>;
|
|
9
13
|
export declare type TPayloadForViz = Omit<TPayloadForSQL, 'sql_snippets' | 'global_sql_snippets'>;
|
|
@@ -1596,6 +1596,8 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
1596
1596
|
} & {
|
|
1597
1597
|
readonly rootModel: any;
|
|
1598
1598
|
readonly contentModel: any;
|
|
1599
|
+
readonly payload: any;
|
|
1600
|
+
readonly dashboardState: import("../../../..").TDashboardState;
|
|
1599
1601
|
readonly formattedSQL: any;
|
|
1600
1602
|
readonly typedAsSQL: boolean;
|
|
1601
1603
|
readonly typedAsHTTP: boolean;
|
|
@@ -1664,6 +1666,8 @@ export declare const PanelRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
1664
1666
|
} & {
|
|
1665
1667
|
readonly rootModel: any;
|
|
1666
1668
|
readonly contentModel: any;
|
|
1669
|
+
readonly payload: any;
|
|
1670
|
+
readonly dashboardState: import("../../../..").TDashboardState;
|
|
1667
1671
|
readonly formattedSQL: any;
|
|
1668
1672
|
readonly typedAsSQL: boolean;
|
|
1669
1673
|
readonly typedAsHTTP: boolean;
|
|
@@ -1597,6 +1597,8 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
1597
1597
|
} & {
|
|
1598
1598
|
readonly rootModel: any;
|
|
1599
1599
|
readonly contentModel: any;
|
|
1600
|
+
readonly payload: any;
|
|
1601
|
+
readonly dashboardState: import("../../../..").TDashboardState;
|
|
1600
1602
|
readonly formattedSQL: any;
|
|
1601
1603
|
readonly typedAsSQL: boolean;
|
|
1602
1604
|
readonly typedAsHTTP: boolean;
|
|
@@ -1665,6 +1667,8 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
1665
1667
|
} & {
|
|
1666
1668
|
readonly rootModel: any;
|
|
1667
1669
|
readonly contentModel: any;
|
|
1670
|
+
readonly payload: any;
|
|
1671
|
+
readonly dashboardState: import("../../../..").TDashboardState;
|
|
1668
1672
|
readonly formattedSQL: any;
|
|
1669
1673
|
readonly typedAsSQL: boolean;
|
|
1670
1674
|
readonly typedAsHTTP: boolean;
|
|
@@ -3934,6 +3938,8 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
3934
3938
|
} & {
|
|
3935
3939
|
readonly rootModel: any;
|
|
3936
3940
|
readonly contentModel: any;
|
|
3941
|
+
readonly payload: any;
|
|
3942
|
+
readonly dashboardState: import("../../../..").TDashboardState;
|
|
3937
3943
|
readonly formattedSQL: any;
|
|
3938
3944
|
readonly typedAsSQL: boolean;
|
|
3939
3945
|
readonly typedAsHTTP: boolean;
|
|
@@ -4002,6 +4008,8 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
4002
4008
|
} & {
|
|
4003
4009
|
readonly rootModel: any;
|
|
4004
4010
|
readonly contentModel: any;
|
|
4011
|
+
readonly payload: any;
|
|
4012
|
+
readonly dashboardState: import("../../../..").TDashboardState;
|
|
4005
4013
|
readonly formattedSQL: any;
|
|
4006
4014
|
readonly typedAsSQL: boolean;
|
|
4007
4015
|
readonly typedAsHTTP: boolean;
|
|
@@ -5625,6 +5633,8 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
5625
5633
|
} & {
|
|
5626
5634
|
readonly rootModel: any;
|
|
5627
5635
|
readonly contentModel: any;
|
|
5636
|
+
readonly payload: any;
|
|
5637
|
+
readonly dashboardState: import("../../../..").TDashboardState;
|
|
5628
5638
|
readonly formattedSQL: any;
|
|
5629
5639
|
readonly typedAsSQL: boolean;
|
|
5630
5640
|
readonly typedAsHTTP: boolean;
|
|
@@ -5693,6 +5703,8 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
5693
5703
|
} & {
|
|
5694
5704
|
readonly rootModel: any;
|
|
5695
5705
|
readonly contentModel: any;
|
|
5706
|
+
readonly payload: any;
|
|
5707
|
+
readonly dashboardState: import("../../../..").TDashboardState;
|
|
5696
5708
|
readonly formattedSQL: any;
|
|
5697
5709
|
readonly typedAsSQL: boolean;
|
|
5698
5710
|
readonly typedAsHTTP: boolean;
|
|
@@ -7695,6 +7707,8 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
7695
7707
|
} & {
|
|
7696
7708
|
readonly rootModel: any;
|
|
7697
7709
|
readonly contentModel: any;
|
|
7710
|
+
readonly payload: any;
|
|
7711
|
+
readonly dashboardState: import("../../../..").TDashboardState;
|
|
7698
7712
|
readonly formattedSQL: any;
|
|
7699
7713
|
readonly typedAsSQL: boolean;
|
|
7700
7714
|
readonly typedAsHTTP: boolean;
|
|
@@ -7763,6 +7777,8 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
7763
7777
|
} & {
|
|
7764
7778
|
readonly rootModel: any;
|
|
7765
7779
|
readonly contentModel: any;
|
|
7780
|
+
readonly payload: any;
|
|
7781
|
+
readonly dashboardState: import("../../../..").TDashboardState;
|
|
7766
7782
|
readonly formattedSQL: any;
|
|
7767
7783
|
readonly typedAsSQL: boolean;
|
|
7768
7784
|
readonly typedAsHTTP: boolean;
|
|
@@ -9386,6 +9402,8 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
9386
9402
|
} & {
|
|
9387
9403
|
readonly rootModel: any;
|
|
9388
9404
|
readonly contentModel: any;
|
|
9405
|
+
readonly payload: any;
|
|
9406
|
+
readonly dashboardState: import("../../../..").TDashboardState;
|
|
9389
9407
|
readonly formattedSQL: any;
|
|
9390
9408
|
readonly typedAsSQL: boolean;
|
|
9391
9409
|
readonly typedAsHTTP: boolean;
|
|
@@ -9454,6 +9472,8 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
9454
9472
|
} & {
|
|
9455
9473
|
readonly rootModel: any;
|
|
9456
9474
|
readonly contentModel: any;
|
|
9475
|
+
readonly payload: any;
|
|
9476
|
+
readonly dashboardState: import("../../../..").TDashboardState;
|
|
9457
9477
|
readonly formattedSQL: any;
|
|
9458
9478
|
readonly typedAsSQL: boolean;
|
|
9459
9479
|
readonly typedAsHTTP: boolean;
|
|
@@ -11458,6 +11478,8 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
11458
11478
|
} & {
|
|
11459
11479
|
readonly rootModel: any;
|
|
11460
11480
|
readonly contentModel: any;
|
|
11481
|
+
readonly payload: any;
|
|
11482
|
+
readonly dashboardState: import("../../../..").TDashboardState;
|
|
11461
11483
|
readonly formattedSQL: any;
|
|
11462
11484
|
readonly typedAsSQL: boolean;
|
|
11463
11485
|
readonly typedAsHTTP: boolean;
|
|
@@ -11526,6 +11548,8 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
11526
11548
|
} & {
|
|
11527
11549
|
readonly rootModel: any;
|
|
11528
11550
|
readonly contentModel: any;
|
|
11551
|
+
readonly payload: any;
|
|
11552
|
+
readonly dashboardState: import("../../../..").TDashboardState;
|
|
11529
11553
|
readonly formattedSQL: any;
|
|
11530
11554
|
readonly typedAsSQL: boolean;
|
|
11531
11555
|
readonly typedAsHTTP: boolean;
|
|
@@ -13149,6 +13173,8 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
13149
13173
|
} & {
|
|
13150
13174
|
readonly rootModel: any;
|
|
13151
13175
|
readonly contentModel: any;
|
|
13176
|
+
readonly payload: any;
|
|
13177
|
+
readonly dashboardState: import("../../../..").TDashboardState;
|
|
13152
13178
|
readonly formattedSQL: any;
|
|
13153
13179
|
readonly typedAsSQL: boolean;
|
|
13154
13180
|
readonly typedAsHTTP: boolean;
|
|
@@ -13217,6 +13243,8 @@ export declare const PanelsRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
13217
13243
|
} & {
|
|
13218
13244
|
readonly rootModel: any;
|
|
13219
13245
|
readonly contentModel: any;
|
|
13246
|
+
readonly payload: any;
|
|
13247
|
+
readonly dashboardState: import("../../../..").TDashboardState;
|
|
13220
13248
|
readonly formattedSQL: any;
|
|
13221
13249
|
readonly typedAsSQL: boolean;
|
|
13222
13250
|
readonly typedAsHTTP: boolean;
|
|
@@ -52,6 +52,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
52
52
|
} & {
|
|
53
53
|
readonly rootModel: any;
|
|
54
54
|
readonly contentModel: any;
|
|
55
|
+
readonly payload: any;
|
|
56
|
+
readonly dashboardState: import("~/model/meta-model").TDashboardState;
|
|
55
57
|
readonly formattedSQL: any;
|
|
56
58
|
readonly typedAsSQL: boolean;
|
|
57
59
|
readonly typedAsHTTP: boolean;
|
|
@@ -122,6 +124,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
122
124
|
} & {
|
|
123
125
|
readonly rootModel: any;
|
|
124
126
|
readonly contentModel: any;
|
|
127
|
+
readonly payload: any;
|
|
128
|
+
readonly dashboardState: import("~/model/meta-model").TDashboardState;
|
|
125
129
|
readonly formattedSQL: any;
|
|
126
130
|
readonly typedAsSQL: boolean;
|
|
127
131
|
readonly typedAsHTTP: boolean;
|
|
@@ -190,6 +194,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
190
194
|
} & {
|
|
191
195
|
readonly rootModel: any;
|
|
192
196
|
readonly contentModel: any;
|
|
197
|
+
readonly payload: any;
|
|
198
|
+
readonly dashboardState: import("~/model/meta-model").TDashboardState;
|
|
193
199
|
readonly formattedSQL: any;
|
|
194
200
|
readonly typedAsSQL: boolean;
|
|
195
201
|
readonly typedAsHTTP: boolean;
|
|
@@ -258,6 +264,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
258
264
|
} & {
|
|
259
265
|
readonly rootModel: any;
|
|
260
266
|
readonly contentModel: any;
|
|
267
|
+
readonly payload: any;
|
|
268
|
+
readonly dashboardState: import("~/model/meta-model").TDashboardState;
|
|
261
269
|
readonly formattedSQL: any;
|
|
262
270
|
readonly typedAsSQL: boolean;
|
|
263
271
|
readonly typedAsHTTP: boolean;
|
|
@@ -326,6 +334,8 @@ export declare const QueriesRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
326
334
|
} & {
|
|
327
335
|
readonly rootModel: any;
|
|
328
336
|
readonly contentModel: any;
|
|
337
|
+
readonly payload: any;
|
|
338
|
+
readonly dashboardState: import("~/model/meta-model").TDashboardState;
|
|
329
339
|
readonly formattedSQL: any;
|
|
330
340
|
readonly typedAsSQL: boolean;
|
|
331
341
|
readonly typedAsHTTP: boolean;
|
|
@@ -51,6 +51,8 @@ export declare const QueryRenderModel: import("mobx-state-tree").IModelType<{
|
|
|
51
51
|
} & {
|
|
52
52
|
readonly rootModel: any;
|
|
53
53
|
readonly contentModel: any;
|
|
54
|
+
readonly payload: any;
|
|
55
|
+
readonly dashboardState: import("~/model").TDashboardState;
|
|
54
56
|
readonly formattedSQL: any;
|
|
55
57
|
readonly typedAsSQL: boolean;
|
|
56
58
|
readonly typedAsHTTP: boolean;
|