@devtable/dashboard 10.16.0 → 10.18.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.
@@ -1444,11 +1444,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
1444
1444
  setPreProcess(v: string): void;
1445
1445
  setPostProcess(v: string): void;
1446
1446
  } & {
1447
- readonly conditionOptions: {
1448
- label: string;
1449
- value: string;
1450
- group: string;
1451
- }[];
1447
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
1452
1448
  readonly unmetRunByConditions: string[];
1453
1449
  } & {
1454
1450
  readonly reQueryKey: string;
@@ -1512,11 +1508,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
1512
1508
  setPreProcess(v: string): void;
1513
1509
  setPostProcess(v: string): void;
1514
1510
  } & {
1515
- readonly conditionOptions: {
1516
- label: string;
1517
- value: string;
1518
- group: string;
1519
- }[];
1511
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
1520
1512
  readonly unmetRunByConditions: string[];
1521
1513
  } & {
1522
1514
  readonly reQueryKey: string;
@@ -2708,11 +2700,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
2708
2700
  setPreProcess(v: string): void;
2709
2701
  setPostProcess(v: string): void;
2710
2702
  } & {
2711
- readonly conditionOptions: {
2712
- label: string;
2713
- value: string;
2714
- group: string;
2715
- }[];
2703
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
2716
2704
  readonly unmetRunByConditions: string[];
2717
2705
  } & {
2718
2706
  readonly reQueryKey: string;
@@ -2776,11 +2764,7 @@ export declare function usePanelFullScreen(view: ViewMetaInstance, panelID: stri
2776
2764
  setPreProcess(v: string): void;
2777
2765
  setPostProcess(v: string): void;
2778
2766
  } & {
2779
- readonly conditionOptions: {
2780
- label: string;
2781
- value: string;
2782
- group: string;
2783
- }[];
2767
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
2784
2768
  readonly unmetRunByConditions: string[];
2785
2769
  } & {
2786
2770
  readonly reQueryKey: string;
@@ -1460,11 +1460,7 @@ export declare const tokens: {
1460
1460
  setPreProcess(v: string): void;
1461
1461
  setPostProcess(v: string): void;
1462
1462
  } & {
1463
- readonly conditionOptions: {
1464
- label: string;
1465
- value: string;
1466
- group: string;
1467
- }[];
1463
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
1468
1464
  readonly unmetRunByConditions: string[];
1469
1465
  } & {
1470
1466
  readonly reQueryKey: string;
@@ -1528,11 +1524,7 @@ export declare const tokens: {
1528
1524
  setPreProcess(v: string): void;
1529
1525
  setPostProcess(v: string): void;
1530
1526
  } & {
1531
- readonly conditionOptions: {
1532
- label: string;
1533
- value: string;
1534
- group: string;
1535
- }[];
1527
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
1536
1528
  readonly unmetRunByConditions: string[];
1537
1529
  } & {
1538
1530
  readonly reQueryKey: string;
@@ -2734,11 +2726,7 @@ export declare const tokens: {
2734
2726
  setPreProcess(v: string): void;
2735
2727
  setPostProcess(v: string): void;
2736
2728
  } & {
2737
- readonly conditionOptions: {
2738
- label: string;
2739
- value: string;
2740
- group: string;
2741
- }[];
2729
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
2742
2730
  readonly unmetRunByConditions: string[];
2743
2731
  } & {
2744
2732
  readonly reQueryKey: string;
@@ -2802,11 +2790,7 @@ export declare const tokens: {
2802
2790
  setPreProcess(v: string): void;
2803
2791
  setPostProcess(v: string): void;
2804
2792
  } & {
2805
- readonly conditionOptions: {
2806
- label: string;
2807
- value: string;
2808
- group: string;
2809
- }[];
2793
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
2810
2794
  readonly unmetRunByConditions: string[];
2811
2795
  } & {
2812
2796
  readonly reQueryKey: string;
@@ -53,6 +53,7 @@ export declare function getOption({ config, data, variables }: IGetOption): {
53
53
  }[];
54
54
  yAxis: {
55
55
  name: string;
56
+ minInterval: number;
56
57
  nameTextStyle: {
57
58
  fontWeight: string;
58
59
  };
@@ -1,5 +1,6 @@
1
1
  import { ICartesianChartConf } from '../type';
2
2
  export declare function getYAxes(conf: ICartesianChartConf, labelFormatters: Record<string, (p: $TSFixMe) => string>): {
3
+ minInterval: number;
3
4
  show: boolean;
4
5
  min: string | undefined;
5
6
  max: string | undefined;
@@ -66,6 +66,7 @@ export declare function getOption(conf: IParetoChartConf, data: TPanelData, _var
66
66
  yAxis: ({
67
67
  name: string;
68
68
  nameGap: number;
69
+ minInterval: number;
69
70
  nameTextStyle: {
70
71
  fontWeight: string;
71
72
  align: "center" | "left" | "right";
@@ -99,6 +100,7 @@ export declare function getOption(conf: IParetoChartConf, data: TPanelData, _var
99
100
  splitLine: {
100
101
  show: boolean;
101
102
  };
103
+ minInterval?: undefined;
102
104
  })[];
103
105
  series: ({
104
106
  name: string;
@@ -3,6 +3,7 @@ import { TParetoFormatters } from './utils';
3
3
  export declare function getYAxes(conf: IParetoChartConf, formatters: TParetoFormatters): ({
4
4
  name: string;
5
5
  nameGap: number;
6
+ minInterval: number;
6
7
  nameTextStyle: {
7
8
  fontWeight: string;
8
9
  align: "center" | "left" | "right";
@@ -36,4 +37,5 @@ export declare function getYAxes(conf: IParetoChartConf, formatters: TParetoForm
36
37
  splitLine: {
37
38
  show: boolean;
38
39
  };
40
+ minInterval?: undefined;
39
41
  })[];
@@ -1,5 +1,6 @@
1
1
  import { IScatterChartConf } from '../type';
2
2
  export declare function getYAxes(conf: IScatterChartConf, labelFormatters: Record<string, (p: $TSFixMe) => string>): {
3
+ minInterval: number;
3
4
  min: string | undefined;
4
5
  max: string | undefined;
5
6
  position: "left" | "right";
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ interface ItemProps extends React.ComponentPropsWithoutRef<'div'> {
3
+ image: string;
4
+ label: string;
5
+ description: string;
6
+ }
7
+ export declare const CustomSelectorItem: import('./react').ForwardRefExoticComponent<ItemProps & import('./react').RefAttributes<HTMLDivElement>>;
8
+ export {};
@@ -1450,11 +1450,7 @@ export declare const useRenderPanelContext: () => {
1450
1450
  setPreProcess(v: string): void;
1451
1451
  setPostProcess(v: string): void;
1452
1452
  } & {
1453
- readonly conditionOptions: {
1454
- label: string;
1455
- value: string;
1456
- group: string;
1457
- }[];
1453
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
1458
1454
  readonly unmetRunByConditions: string[];
1459
1455
  } & {
1460
1456
  readonly reQueryKey: string;
@@ -1518,11 +1514,7 @@ export declare const useRenderPanelContext: () => {
1518
1514
  setPreProcess(v: string): void;
1519
1515
  setPostProcess(v: string): void;
1520
1516
  } & {
1521
- readonly conditionOptions: {
1522
- label: string;
1523
- value: string;
1524
- group: string;
1525
- }[];
1517
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
1526
1518
  readonly unmetRunByConditions: string[];
1527
1519
  } & {
1528
1520
  readonly reQueryKey: string;
@@ -2714,11 +2706,7 @@ export declare const useRenderPanelContext: () => {
2714
2706
  setPreProcess(v: string): void;
2715
2707
  setPostProcess(v: string): void;
2716
2708
  } & {
2717
- readonly conditionOptions: {
2718
- label: string;
2719
- value: string;
2720
- group: string;
2721
- }[];
2709
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
2722
2710
  readonly unmetRunByConditions: string[];
2723
2711
  } & {
2724
2712
  readonly reQueryKey: string;
@@ -2782,11 +2770,7 @@ export declare const useRenderPanelContext: () => {
2782
2770
  setPreProcess(v: string): void;
2783
2771
  setPostProcess(v: string): void;
2784
2772
  } & {
2785
- readonly conditionOptions: {
2786
- label: string;
2787
- value: string;
2788
- group: string;
2789
- }[];
2773
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
2790
2774
  readonly unmetRunByConditions: string[];
2791
2775
  } & {
2792
2776
  readonly reQueryKey: string;
@@ -4270,11 +4254,7 @@ export declare const useEditPanelContext: () => {
4270
4254
  setPreProcess(v: string): void;
4271
4255
  setPostProcess(v: string): void;
4272
4256
  } & {
4273
- readonly conditionOptions: {
4274
- label: string;
4275
- value: string;
4276
- group: string;
4277
- }[];
4257
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
4278
4258
  readonly unmetRunByConditions: string[];
4279
4259
  } & {
4280
4260
  readonly reQueryKey: string;
@@ -4338,11 +4318,7 @@ export declare const useEditPanelContext: () => {
4338
4318
  setPreProcess(v: string): void;
4339
4319
  setPostProcess(v: string): void;
4340
4320
  } & {
4341
- readonly conditionOptions: {
4342
- label: string;
4343
- value: string;
4344
- group: string;
4345
- }[];
4321
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
4346
4322
  readonly unmetRunByConditions: string[];
4347
4323
  } & {
4348
4324
  readonly reQueryKey: string;
@@ -5544,11 +5520,7 @@ export declare const useEditPanelContext: () => {
5544
5520
  setPreProcess(v: string): void;
5545
5521
  setPostProcess(v: string): void;
5546
5522
  } & {
5547
- readonly conditionOptions: {
5548
- label: string;
5549
- value: string;
5550
- group: string;
5551
- }[];
5523
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
5552
5524
  readonly unmetRunByConditions: string[];
5553
5525
  } & {
5554
5526
  readonly reQueryKey: string;
@@ -5612,11 +5584,7 @@ export declare const useEditPanelContext: () => {
5612
5584
  setPreProcess(v: string): void;
5613
5585
  setPostProcess(v: string): void;
5614
5586
  } & {
5615
- readonly conditionOptions: {
5616
- label: string;
5617
- value: string;
5618
- group: string;
5619
- }[];
5587
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
5620
5588
  readonly unmetRunByConditions: string[];
5621
5589
  } & {
5622
5590
  readonly reQueryKey: string;
@@ -1155,11 +1155,7 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
1155
1155
  setPreProcess(v: string): void;
1156
1156
  setPostProcess(v: string): void;
1157
1157
  } & {
1158
- readonly conditionOptions: {
1159
- label: string;
1160
- value: string;
1161
- group: string;
1162
- }[];
1158
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
1163
1159
  readonly unmetRunByConditions: string[];
1164
1160
  } & {
1165
1161
  readonly reQueryKey: string;
@@ -1223,11 +1219,7 @@ export declare const PanelModel: import("mobx-state-tree").IModelType<{
1223
1219
  setPreProcess(v: string): void;
1224
1220
  setPostProcess(v: string): void;
1225
1221
  } & {
1226
- readonly conditionOptions: {
1227
- label: string;
1228
- value: string;
1229
- group: string;
1230
- }[];
1222
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
1231
1223
  readonly unmetRunByConditions: string[];
1232
1224
  } & {
1233
1225
  readonly reQueryKey: string;
@@ -1158,11 +1158,7 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
1158
1158
  setPreProcess(v: string): void;
1159
1159
  setPostProcess(v: string): void;
1160
1160
  } & {
1161
- readonly conditionOptions: {
1162
- label: string;
1163
- value: string;
1164
- group: string;
1165
- }[];
1161
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
1166
1162
  readonly unmetRunByConditions: string[];
1167
1163
  } & {
1168
1164
  readonly reQueryKey: string;
@@ -1226,11 +1222,7 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
1226
1222
  setPreProcess(v: string): void;
1227
1223
  setPostProcess(v: string): void;
1228
1224
  } & {
1229
- readonly conditionOptions: {
1230
- label: string;
1231
- value: string;
1232
- group: string;
1233
- }[];
1225
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
1234
1226
  readonly unmetRunByConditions: string[];
1235
1227
  } & {
1236
1228
  readonly reQueryKey: string;
@@ -2424,11 +2416,7 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
2424
2416
  setPreProcess(v: string): void;
2425
2417
  setPostProcess(v: string): void;
2426
2418
  } & {
2427
- readonly conditionOptions: {
2428
- label: string;
2429
- value: string;
2430
- group: string;
2431
- }[];
2419
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
2432
2420
  readonly unmetRunByConditions: string[];
2433
2421
  } & {
2434
2422
  readonly reQueryKey: string;
@@ -2492,11 +2480,7 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
2492
2480
  setPreProcess(v: string): void;
2493
2481
  setPostProcess(v: string): void;
2494
2482
  } & {
2495
- readonly conditionOptions: {
2496
- label: string;
2497
- value: string;
2498
- group: string;
2499
- }[];
2483
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
2500
2484
  readonly unmetRunByConditions: string[];
2501
2485
  } & {
2502
2486
  readonly reQueryKey: string;
@@ -4175,11 +4159,7 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
4175
4159
  setPreProcess(v: string): void;
4176
4160
  setPostProcess(v: string): void;
4177
4161
  } & {
4178
- readonly conditionOptions: {
4179
- label: string;
4180
- value: string;
4181
- group: string;
4182
- }[];
4162
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
4183
4163
  readonly unmetRunByConditions: string[];
4184
4164
  } & {
4185
4165
  readonly reQueryKey: string;
@@ -4243,11 +4223,7 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
4243
4223
  setPreProcess(v: string): void;
4244
4224
  setPostProcess(v: string): void;
4245
4225
  } & {
4246
- readonly conditionOptions: {
4247
- label: string;
4248
- value: string;
4249
- group: string;
4250
- }[];
4226
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
4251
4227
  readonly unmetRunByConditions: string[];
4252
4228
  } & {
4253
4229
  readonly reQueryKey: string;
@@ -5439,11 +5415,7 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
5439
5415
  setPreProcess(v: string): void;
5440
5416
  setPostProcess(v: string): void;
5441
5417
  } & {
5442
- readonly conditionOptions: {
5443
- label: string;
5444
- value: string;
5445
- group: string;
5446
- }[];
5418
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
5447
5419
  readonly unmetRunByConditions: string[];
5448
5420
  } & {
5449
5421
  readonly reQueryKey: string;
@@ -5507,11 +5479,7 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
5507
5479
  setPreProcess(v: string): void;
5508
5480
  setPostProcess(v: string): void;
5509
5481
  } & {
5510
- readonly conditionOptions: {
5511
- label: string;
5512
- value: string;
5513
- group: string;
5514
- }[];
5482
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
5515
5483
  readonly unmetRunByConditions: string[];
5516
5484
  } & {
5517
5485
  readonly reQueryKey: string;
@@ -6989,11 +6957,7 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
6989
6957
  setPreProcess(v: string): void;
6990
6958
  setPostProcess(v: string): void;
6991
6959
  } & {
6992
- readonly conditionOptions: {
6993
- label: string;
6994
- value: string;
6995
- group: string;
6996
- }[];
6960
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
6997
6961
  readonly unmetRunByConditions: string[];
6998
6962
  } & {
6999
6963
  readonly reQueryKey: string;
@@ -7057,11 +7021,7 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
7057
7021
  setPreProcess(v: string): void;
7058
7022
  setPostProcess(v: string): void;
7059
7023
  } & {
7060
- readonly conditionOptions: {
7061
- label: string;
7062
- value: string;
7063
- group: string;
7064
- }[];
7024
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
7065
7025
  readonly unmetRunByConditions: string[];
7066
7026
  } & {
7067
7027
  readonly reQueryKey: string;
@@ -8253,11 +8213,7 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
8253
8213
  setPreProcess(v: string): void;
8254
8214
  setPostProcess(v: string): void;
8255
8215
  } & {
8256
- readonly conditionOptions: {
8257
- label: string;
8258
- value: string;
8259
- group: string;
8260
- }[];
8216
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
8261
8217
  readonly unmetRunByConditions: string[];
8262
8218
  } & {
8263
8219
  readonly reQueryKey: string;
@@ -8321,11 +8277,7 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
8321
8277
  setPreProcess(v: string): void;
8322
8278
  setPostProcess(v: string): void;
8323
8279
  } & {
8324
- readonly conditionOptions: {
8325
- label: string;
8326
- value: string;
8327
- group: string;
8328
- }[];
8280
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
8329
8281
  readonly unmetRunByConditions: string[];
8330
8282
  } & {
8331
8283
  readonly reQueryKey: string;
@@ -9805,11 +9757,7 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
9805
9757
  setPreProcess(v: string): void;
9806
9758
  setPostProcess(v: string): void;
9807
9759
  } & {
9808
- readonly conditionOptions: {
9809
- label: string;
9810
- value: string;
9811
- group: string;
9812
- }[];
9760
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
9813
9761
  readonly unmetRunByConditions: string[];
9814
9762
  } & {
9815
9763
  readonly reQueryKey: string;
@@ -9873,11 +9821,7 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
9873
9821
  setPreProcess(v: string): void;
9874
9822
  setPostProcess(v: string): void;
9875
9823
  } & {
9876
- readonly conditionOptions: {
9877
- label: string;
9878
- value: string;
9879
- group: string;
9880
- }[];
9824
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
9881
9825
  readonly unmetRunByConditions: string[];
9882
9826
  } & {
9883
9827
  readonly reQueryKey: string;
@@ -11069,11 +11013,7 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
11069
11013
  setPreProcess(v: string): void;
11070
11014
  setPostProcess(v: string): void;
11071
11015
  } & {
11072
- readonly conditionOptions: {
11073
- label: string;
11074
- value: string;
11075
- group: string;
11076
- }[];
11016
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
11077
11017
  readonly unmetRunByConditions: string[];
11078
11018
  } & {
11079
11019
  readonly reQueryKey: string;
@@ -11137,11 +11077,7 @@ export declare const PanelsModel: import("mobx-state-tree").IModelType<{
11137
11077
  setPreProcess(v: string): void;
11138
11078
  setPostProcess(v: string): void;
11139
11079
  } & {
11140
- readonly conditionOptions: {
11141
- label: string;
11142
- value: string;
11143
- group: string;
11144
- }[];
11080
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
11145
11081
  readonly unmetRunByConditions: string[];
11146
11082
  } & {
11147
11083
  readonly reQueryKey: string;
@@ -38,11 +38,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
38
38
  setPreProcess(v: string): void;
39
39
  setPostProcess(v: string): void;
40
40
  } & {
41
- readonly conditionOptions: {
42
- label: string;
43
- value: string;
44
- group: string;
45
- }[];
41
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
46
42
  readonly unmetRunByConditions: string[];
47
43
  } & {
48
44
  readonly reQueryKey: string;
@@ -108,11 +104,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
108
104
  setPreProcess(v: string): void;
109
105
  setPostProcess(v: string): void;
110
106
  } & {
111
- readonly conditionOptions: {
112
- label: string;
113
- value: string;
114
- group: string;
115
- }[];
107
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
116
108
  readonly unmetRunByConditions: string[];
117
109
  } & {
118
110
  readonly reQueryKey: string;
@@ -176,11 +168,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
176
168
  setPreProcess(v: string): void;
177
169
  setPostProcess(v: string): void;
178
170
  } & {
179
- readonly conditionOptions: {
180
- label: string;
181
- value: string;
182
- group: string;
183
- }[];
171
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
184
172
  readonly unmetRunByConditions: string[];
185
173
  } & {
186
174
  readonly reQueryKey: string;
@@ -244,11 +232,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
244
232
  setPreProcess(v: string): void;
245
233
  setPostProcess(v: string): void;
246
234
  } & {
247
- readonly conditionOptions: {
248
- label: string;
249
- value: string;
250
- group: string;
251
- }[];
235
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
252
236
  readonly unmetRunByConditions: string[];
253
237
  } & {
254
238
  readonly reQueryKey: string;
@@ -312,11 +296,7 @@ export declare const QueriesModel: import("mobx-state-tree").IModelType<{
312
296
  setPreProcess(v: string): void;
313
297
  setPostProcess(v: string): void;
314
298
  } & {
315
- readonly conditionOptions: {
316
- label: string;
317
- value: string;
318
- group: string;
319
- }[];
299
+ readonly conditionOptions: import("@mantine/core").SelectItem[];
320
300
  readonly unmetRunByConditions: string[];
321
301
  } & {
322
302
  readonly reQueryKey: string;