@sentio/ui-dashboard 0.1.2 → 0.2.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/index.css +122 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +860 -13
- package/dist/index.d.ts +860 -13
- package/dist/index.js +1925 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1936 -2
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +3 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { DurationLike } from '@sentio/ui-core';
|
|
3
|
-
import
|
|
2
|
+
import { DurationLike, ButtonProps } from '@sentio/ui-core';
|
|
3
|
+
import * as React from 'react';
|
|
4
|
+
import React__default, { ReactNode, CSSProperties } from 'react';
|
|
5
|
+
import { ComposeOption, SetOptionOpts, ECharts } from 'echarts/core';
|
|
6
|
+
import { BarSeriesOption, LineSeriesOption, SankeySeriesOption } from 'echarts/charts';
|
|
7
|
+
import { TitleComponentOption, GridComponentOption } from 'echarts/components';
|
|
4
8
|
|
|
5
9
|
/** Dashboard chart type. */
|
|
6
10
|
type ChartTypeLike = 'LINE' | 'AREA' | 'BAR' | 'BAR_GAUGE' | 'TABLE' | 'QUERY_VALUE' | 'PIE' | 'NOTE' | 'SCATTER' | 'GROUP';
|
|
@@ -205,12 +209,12 @@ interface MetricInfoLike {
|
|
|
205
209
|
};
|
|
206
210
|
}
|
|
207
211
|
|
|
208
|
-
interface Props$
|
|
212
|
+
interface Props$d {
|
|
209
213
|
metric?: MetricInfoLike;
|
|
210
214
|
value: QueryLike;
|
|
211
215
|
onChange: (value: QueryLike) => void;
|
|
212
216
|
}
|
|
213
|
-
declare function AggregateInput({ metric, value, onChange }: Props$
|
|
217
|
+
declare function AggregateInput({ metric, value, onChange }: Props$d): react_jsx_runtime.JSX.Element;
|
|
214
218
|
|
|
215
219
|
declare enum ArgumentType {
|
|
216
220
|
String = 0,
|
|
@@ -245,28 +249,28 @@ declare const EventsFunctionMap: {
|
|
|
245
249
|
[name: string]: FunctionDef;
|
|
246
250
|
};
|
|
247
251
|
|
|
248
|
-
interface Props$
|
|
252
|
+
interface Props$c {
|
|
249
253
|
argument: ArgumentDef;
|
|
250
254
|
value?: ArgumentLike;
|
|
251
255
|
onChange?: (value: ArgumentLike) => void;
|
|
252
256
|
className?: string;
|
|
253
257
|
}
|
|
254
|
-
declare function ArgumentInput({ className, argument, value, onChange }: Props$
|
|
258
|
+
declare function ArgumentInput({ className, argument, value, onChange }: Props$c): react_jsx_runtime.JSX.Element;
|
|
255
259
|
|
|
256
|
-
interface Props$
|
|
260
|
+
interface Props$b {
|
|
257
261
|
value: QueryLike;
|
|
258
262
|
onChange: (value: QueryLike) => void;
|
|
259
263
|
}
|
|
260
|
-
declare function FunctionInput({ value, onChange }: Props$
|
|
264
|
+
declare function FunctionInput({ value, onChange }: Props$b): react_jsx_runtime.JSX.Element;
|
|
261
265
|
|
|
262
|
-
interface Props$
|
|
266
|
+
interface Props$a {
|
|
263
267
|
onClick: (func: FunctionDef) => void;
|
|
264
268
|
functionCategories?: typeof FunctionsCategories;
|
|
265
269
|
defaultFunc?: string;
|
|
266
270
|
}
|
|
267
|
-
declare function FunctionsPanel({ onClick, functionCategories, defaultFunc }: Props$
|
|
271
|
+
declare function FunctionsPanel({ onClick, functionCategories, defaultFunc }: Props$a): react_jsx_runtime.JSX.Element;
|
|
268
272
|
|
|
269
|
-
interface Props {
|
|
273
|
+
interface Props$9 {
|
|
270
274
|
metric?: MetricInfoLike;
|
|
271
275
|
value: QueryLike;
|
|
272
276
|
onChange: (value: QueryLike) => void;
|
|
@@ -276,7 +280,7 @@ interface Props {
|
|
|
276
280
|
small?: boolean;
|
|
277
281
|
useRegex?: boolean;
|
|
278
282
|
}
|
|
279
|
-
declare function LabelsInput({ value, metric, variables, onChange, small, useRegex }: Props): react_jsx_runtime.JSX.Element;
|
|
283
|
+
declare function LabelsInput({ value, metric, variables, onChange, small, useRegex }: Props$9): react_jsx_runtime.JSX.Element;
|
|
280
284
|
|
|
281
285
|
declare const SystemLabels: {
|
|
282
286
|
field: string;
|
|
@@ -302,4 +306,847 @@ declare function useLabelSearch(defaultQuery?: string): {
|
|
|
302
306
|
setLabelSearchQuery: (query: string) => void;
|
|
303
307
|
};
|
|
304
308
|
|
|
305
|
-
|
|
309
|
+
type EChartsOption = ComposeOption<BarSeriesOption | LineSeriesOption | TitleComponentOption | GridComponentOption | SankeySeriesOption>;
|
|
310
|
+
interface ReactEChartsProps {
|
|
311
|
+
group?: string;
|
|
312
|
+
option: EChartsOption;
|
|
313
|
+
style?: CSSProperties;
|
|
314
|
+
settings?: SetOptionOpts;
|
|
315
|
+
loading?: boolean;
|
|
316
|
+
theme?: 'light' | 'dark' | 'sentio';
|
|
317
|
+
minHeight?: number;
|
|
318
|
+
returnedSeries?: number;
|
|
319
|
+
totalSeries?: number;
|
|
320
|
+
onSelect?: (start: number, end: number) => void;
|
|
321
|
+
onZoom?: (start: number, end: number) => void;
|
|
322
|
+
noLegend?: boolean;
|
|
323
|
+
onClick?: (params: any, extraParams?: any) => void;
|
|
324
|
+
onInitChart?: (chart: ECharts) => void;
|
|
325
|
+
onSeriesEvent?: (event: 'click' | 'mouseover' | 'mouseout', params: any) => void;
|
|
326
|
+
}
|
|
327
|
+
interface EChartsHandle {
|
|
328
|
+
getEChart: () => ECharts | undefined;
|
|
329
|
+
highlightSeries: (highlighted?: SeriesFinder) => void;
|
|
330
|
+
getSeriesColor: (s: SeriesFinder) => string | undefined;
|
|
331
|
+
getFrame: () => HTMLDivElement | null;
|
|
332
|
+
toggleLegend: (legend: string, selected?: boolean) => void;
|
|
333
|
+
resize: (size: {
|
|
334
|
+
width?: number;
|
|
335
|
+
height?: number;
|
|
336
|
+
}) => void;
|
|
337
|
+
getSeries(seriesId: string): any;
|
|
338
|
+
}
|
|
339
|
+
type SeriesFinder = {
|
|
340
|
+
seriesId?: string;
|
|
341
|
+
seriesIndex?: number;
|
|
342
|
+
seriesName?: string;
|
|
343
|
+
};
|
|
344
|
+
declare const ReactEChartsBase: React__default.ForwardRefExoticComponent<ReactEChartsProps & React__default.RefAttributes<EChartsHandle>>;
|
|
345
|
+
|
|
346
|
+
interface Props$8 {
|
|
347
|
+
legend: string[];
|
|
348
|
+
legendSelected: Record<string, boolean>;
|
|
349
|
+
returnedSeries?: number;
|
|
350
|
+
totalSeries?: number;
|
|
351
|
+
onRendered: (v: boolean) => void;
|
|
352
|
+
chartHandle?: EChartsHandle;
|
|
353
|
+
}
|
|
354
|
+
declare const ChartLegend: ({ legend, legendSelected, returnedSeries, totalSeries, onRendered, chartHandle }: Props$8) => react_jsx_runtime.JSX.Element;
|
|
355
|
+
|
|
356
|
+
declare const RefreshContext: React.Context<{
|
|
357
|
+
refresh?: () => void;
|
|
358
|
+
isRefreshing?: boolean;
|
|
359
|
+
}>;
|
|
360
|
+
declare const RefreshButton: (props: Partial<ButtonProps>) => react_jsx_runtime.JSX.Element | null;
|
|
361
|
+
|
|
362
|
+
declare const sentioColors: {
|
|
363
|
+
light: {
|
|
364
|
+
classic: string[];
|
|
365
|
+
purple: string[];
|
|
366
|
+
};
|
|
367
|
+
dark: {
|
|
368
|
+
classic: string[];
|
|
369
|
+
purple: string[];
|
|
370
|
+
};
|
|
371
|
+
};
|
|
372
|
+
|
|
373
|
+
declare const sentioTheme: {
|
|
374
|
+
color: string[];
|
|
375
|
+
backgroundColor: string;
|
|
376
|
+
textStyle: {
|
|
377
|
+
fontSize: number;
|
|
378
|
+
fontFamily: string;
|
|
379
|
+
color: string;
|
|
380
|
+
};
|
|
381
|
+
title: {
|
|
382
|
+
textStyle: {
|
|
383
|
+
color: string;
|
|
384
|
+
};
|
|
385
|
+
subtextStyle: {
|
|
386
|
+
color: string;
|
|
387
|
+
};
|
|
388
|
+
};
|
|
389
|
+
line: {
|
|
390
|
+
itemStyle: {
|
|
391
|
+
borderWidth: number;
|
|
392
|
+
};
|
|
393
|
+
lineStyle: {
|
|
394
|
+
width: number;
|
|
395
|
+
};
|
|
396
|
+
symbolSize: number;
|
|
397
|
+
symbol: string;
|
|
398
|
+
smooth: boolean;
|
|
399
|
+
};
|
|
400
|
+
radar: {
|
|
401
|
+
itemStyle: {
|
|
402
|
+
borderWidth: number;
|
|
403
|
+
};
|
|
404
|
+
lineStyle: {
|
|
405
|
+
width: number;
|
|
406
|
+
};
|
|
407
|
+
symbolSize: number;
|
|
408
|
+
symbol: string;
|
|
409
|
+
smooth: boolean;
|
|
410
|
+
};
|
|
411
|
+
bar: {
|
|
412
|
+
itemStyle: {
|
|
413
|
+
borderWidth: number;
|
|
414
|
+
borderColor: string;
|
|
415
|
+
};
|
|
416
|
+
};
|
|
417
|
+
pie: {
|
|
418
|
+
itemStyle: {
|
|
419
|
+
borderWidth: number;
|
|
420
|
+
borderColor: string;
|
|
421
|
+
};
|
|
422
|
+
label: {
|
|
423
|
+
textBorderWidth: number;
|
|
424
|
+
textBorderColor: string;
|
|
425
|
+
};
|
|
426
|
+
};
|
|
427
|
+
scatter: {
|
|
428
|
+
itemStyle: {
|
|
429
|
+
borderWidth: number;
|
|
430
|
+
borderColor: string;
|
|
431
|
+
};
|
|
432
|
+
};
|
|
433
|
+
boxplot: {
|
|
434
|
+
itemStyle: {
|
|
435
|
+
borderWidth: number;
|
|
436
|
+
borderColor: string;
|
|
437
|
+
};
|
|
438
|
+
};
|
|
439
|
+
parallel: {
|
|
440
|
+
itemStyle: {
|
|
441
|
+
borderWidth: number;
|
|
442
|
+
borderColor: string;
|
|
443
|
+
};
|
|
444
|
+
};
|
|
445
|
+
sankey: {
|
|
446
|
+
itemStyle: {
|
|
447
|
+
borderWidth: number;
|
|
448
|
+
borderColor: string;
|
|
449
|
+
};
|
|
450
|
+
};
|
|
451
|
+
funnel: {
|
|
452
|
+
itemStyle: {
|
|
453
|
+
borderWidth: number;
|
|
454
|
+
borderColor: string;
|
|
455
|
+
};
|
|
456
|
+
};
|
|
457
|
+
gauge: {
|
|
458
|
+
itemStyle: {
|
|
459
|
+
borderWidth: number;
|
|
460
|
+
borderColor: string;
|
|
461
|
+
};
|
|
462
|
+
};
|
|
463
|
+
candlestick: {
|
|
464
|
+
itemStyle: {
|
|
465
|
+
color: string;
|
|
466
|
+
color0: string;
|
|
467
|
+
borderColor: string;
|
|
468
|
+
borderColor0: string;
|
|
469
|
+
borderWidth: number;
|
|
470
|
+
};
|
|
471
|
+
};
|
|
472
|
+
graph: {
|
|
473
|
+
itemStyle: {
|
|
474
|
+
borderWidth: number;
|
|
475
|
+
borderColor: string;
|
|
476
|
+
};
|
|
477
|
+
lineStyle: {
|
|
478
|
+
width: number;
|
|
479
|
+
color: string;
|
|
480
|
+
};
|
|
481
|
+
symbolSize: number;
|
|
482
|
+
symbol: string;
|
|
483
|
+
smooth: boolean;
|
|
484
|
+
color: string[];
|
|
485
|
+
label: {
|
|
486
|
+
color: string;
|
|
487
|
+
};
|
|
488
|
+
};
|
|
489
|
+
map: {
|
|
490
|
+
itemStyle: {
|
|
491
|
+
areaColor: string;
|
|
492
|
+
borderColor: string;
|
|
493
|
+
borderWidth: number;
|
|
494
|
+
};
|
|
495
|
+
label: {
|
|
496
|
+
color: string;
|
|
497
|
+
};
|
|
498
|
+
emphasis: {
|
|
499
|
+
itemStyle: {
|
|
500
|
+
areaColor: string;
|
|
501
|
+
borderColor: string;
|
|
502
|
+
borderWidth: number;
|
|
503
|
+
};
|
|
504
|
+
label: {
|
|
505
|
+
color: string;
|
|
506
|
+
};
|
|
507
|
+
};
|
|
508
|
+
};
|
|
509
|
+
geo: {
|
|
510
|
+
itemStyle: {
|
|
511
|
+
areaColor: string;
|
|
512
|
+
borderColor: string;
|
|
513
|
+
borderWidth: number;
|
|
514
|
+
};
|
|
515
|
+
label: {
|
|
516
|
+
color: string;
|
|
517
|
+
};
|
|
518
|
+
emphasis: {
|
|
519
|
+
itemStyle: {
|
|
520
|
+
areaColor: string;
|
|
521
|
+
borderColor: string;
|
|
522
|
+
borderWidth: number;
|
|
523
|
+
};
|
|
524
|
+
label: {
|
|
525
|
+
color: string;
|
|
526
|
+
};
|
|
527
|
+
};
|
|
528
|
+
};
|
|
529
|
+
categoryAxis: {
|
|
530
|
+
axisLine: {
|
|
531
|
+
show: boolean;
|
|
532
|
+
lineStyle: {
|
|
533
|
+
color: string;
|
|
534
|
+
};
|
|
535
|
+
};
|
|
536
|
+
axisTick: {
|
|
537
|
+
show: boolean;
|
|
538
|
+
lineStyle: {
|
|
539
|
+
color: string;
|
|
540
|
+
};
|
|
541
|
+
};
|
|
542
|
+
axisLabel: {
|
|
543
|
+
show: boolean;
|
|
544
|
+
color: string;
|
|
545
|
+
fontWeight: string;
|
|
546
|
+
};
|
|
547
|
+
splitLine: {
|
|
548
|
+
show: boolean;
|
|
549
|
+
lineStyle: {
|
|
550
|
+
color: string[];
|
|
551
|
+
};
|
|
552
|
+
};
|
|
553
|
+
splitArea: {
|
|
554
|
+
show: boolean;
|
|
555
|
+
areaStyle: {
|
|
556
|
+
color: string[];
|
|
557
|
+
};
|
|
558
|
+
};
|
|
559
|
+
};
|
|
560
|
+
valueAxis: {
|
|
561
|
+
axisLine: {
|
|
562
|
+
show: boolean;
|
|
563
|
+
lineStyle: {
|
|
564
|
+
color: string;
|
|
565
|
+
};
|
|
566
|
+
};
|
|
567
|
+
axisTick: {
|
|
568
|
+
show: boolean;
|
|
569
|
+
lineStyle: {
|
|
570
|
+
color: string;
|
|
571
|
+
};
|
|
572
|
+
};
|
|
573
|
+
axisLabel: {
|
|
574
|
+
show: boolean;
|
|
575
|
+
color: string;
|
|
576
|
+
fontWeight: string;
|
|
577
|
+
};
|
|
578
|
+
splitLine: {
|
|
579
|
+
show: boolean;
|
|
580
|
+
lineStyle: {
|
|
581
|
+
color: string;
|
|
582
|
+
};
|
|
583
|
+
};
|
|
584
|
+
splitArea: {
|
|
585
|
+
show: boolean;
|
|
586
|
+
areaStyle: {
|
|
587
|
+
color: string[];
|
|
588
|
+
};
|
|
589
|
+
};
|
|
590
|
+
};
|
|
591
|
+
logAxis: {
|
|
592
|
+
axisLine: {
|
|
593
|
+
show: boolean;
|
|
594
|
+
lineStyle: {
|
|
595
|
+
color: string;
|
|
596
|
+
};
|
|
597
|
+
};
|
|
598
|
+
axisTick: {
|
|
599
|
+
show: boolean;
|
|
600
|
+
lineStyle: {
|
|
601
|
+
color: string;
|
|
602
|
+
};
|
|
603
|
+
};
|
|
604
|
+
axisLabel: {
|
|
605
|
+
show: boolean;
|
|
606
|
+
color: string;
|
|
607
|
+
};
|
|
608
|
+
splitLine: {
|
|
609
|
+
show: boolean;
|
|
610
|
+
lineStyle: {
|
|
611
|
+
color: string;
|
|
612
|
+
};
|
|
613
|
+
};
|
|
614
|
+
splitArea: {
|
|
615
|
+
show: boolean;
|
|
616
|
+
areaStyle: {
|
|
617
|
+
color: string[];
|
|
618
|
+
};
|
|
619
|
+
};
|
|
620
|
+
};
|
|
621
|
+
timeAxis: {
|
|
622
|
+
axisLine: {
|
|
623
|
+
show: boolean;
|
|
624
|
+
lineStyle: {
|
|
625
|
+
color: string;
|
|
626
|
+
};
|
|
627
|
+
};
|
|
628
|
+
axisTick: {
|
|
629
|
+
show: boolean;
|
|
630
|
+
lineStyle: {
|
|
631
|
+
color: string;
|
|
632
|
+
};
|
|
633
|
+
};
|
|
634
|
+
axisLabel: {
|
|
635
|
+
show: boolean;
|
|
636
|
+
color: string;
|
|
637
|
+
};
|
|
638
|
+
splitLine: {
|
|
639
|
+
show: boolean;
|
|
640
|
+
lineStyle: {
|
|
641
|
+
color: string[];
|
|
642
|
+
};
|
|
643
|
+
};
|
|
644
|
+
splitArea: {
|
|
645
|
+
show: boolean;
|
|
646
|
+
areaStyle: {
|
|
647
|
+
color: string[];
|
|
648
|
+
};
|
|
649
|
+
};
|
|
650
|
+
};
|
|
651
|
+
toolbox: {
|
|
652
|
+
iconStyle: {
|
|
653
|
+
borderColor: string;
|
|
654
|
+
};
|
|
655
|
+
emphasis: {
|
|
656
|
+
iconStyle: {
|
|
657
|
+
borderColor: string;
|
|
658
|
+
};
|
|
659
|
+
};
|
|
660
|
+
};
|
|
661
|
+
legend: {
|
|
662
|
+
textStyle: {
|
|
663
|
+
color: string;
|
|
664
|
+
fontSize: number;
|
|
665
|
+
};
|
|
666
|
+
pageIconColor: string;
|
|
667
|
+
pageIconInactiveColor: string;
|
|
668
|
+
pageTextStyle: {
|
|
669
|
+
color: string;
|
|
670
|
+
};
|
|
671
|
+
};
|
|
672
|
+
tooltip: {
|
|
673
|
+
axisPointer: {
|
|
674
|
+
lineStyle: {
|
|
675
|
+
color: string;
|
|
676
|
+
width: number;
|
|
677
|
+
};
|
|
678
|
+
crossStyle: {
|
|
679
|
+
color: string;
|
|
680
|
+
width: number;
|
|
681
|
+
};
|
|
682
|
+
};
|
|
683
|
+
};
|
|
684
|
+
timeline: {
|
|
685
|
+
lineStyle: {
|
|
686
|
+
color: string;
|
|
687
|
+
width: number;
|
|
688
|
+
};
|
|
689
|
+
itemStyle: {
|
|
690
|
+
color: string;
|
|
691
|
+
borderWidth: number;
|
|
692
|
+
};
|
|
693
|
+
controlStyle: {
|
|
694
|
+
color: string;
|
|
695
|
+
borderColor: string;
|
|
696
|
+
borderWidth: number;
|
|
697
|
+
};
|
|
698
|
+
checkpointStyle: {
|
|
699
|
+
color: string;
|
|
700
|
+
borderColor: string;
|
|
701
|
+
};
|
|
702
|
+
label: {
|
|
703
|
+
color: string;
|
|
704
|
+
};
|
|
705
|
+
emphasis: {
|
|
706
|
+
itemStyle: {
|
|
707
|
+
color: string;
|
|
708
|
+
};
|
|
709
|
+
controlStyle: {
|
|
710
|
+
color: string;
|
|
711
|
+
borderColor: string;
|
|
712
|
+
borderWidth: number;
|
|
713
|
+
};
|
|
714
|
+
label: {
|
|
715
|
+
color: string;
|
|
716
|
+
};
|
|
717
|
+
};
|
|
718
|
+
};
|
|
719
|
+
visualMap: {
|
|
720
|
+
color: string[];
|
|
721
|
+
};
|
|
722
|
+
dataZoom: {
|
|
723
|
+
handleSize: string;
|
|
724
|
+
textStyle: {};
|
|
725
|
+
};
|
|
726
|
+
markPoint: {
|
|
727
|
+
label: {
|
|
728
|
+
color: string;
|
|
729
|
+
};
|
|
730
|
+
emphasis: {
|
|
731
|
+
label: {
|
|
732
|
+
color: string;
|
|
733
|
+
};
|
|
734
|
+
};
|
|
735
|
+
};
|
|
736
|
+
};
|
|
737
|
+
declare const sentioThemeDark: {
|
|
738
|
+
color: string[];
|
|
739
|
+
backgroundColor: string;
|
|
740
|
+
textStyle: {
|
|
741
|
+
fontSize: number;
|
|
742
|
+
fontFamily: string;
|
|
743
|
+
textBorderWidth: number;
|
|
744
|
+
textBorderColor: string;
|
|
745
|
+
color: string;
|
|
746
|
+
};
|
|
747
|
+
title: {
|
|
748
|
+
textStyle: {
|
|
749
|
+
color: string;
|
|
750
|
+
};
|
|
751
|
+
subtextStyle: {
|
|
752
|
+
color: string;
|
|
753
|
+
};
|
|
754
|
+
};
|
|
755
|
+
line: {
|
|
756
|
+
itemStyle: {
|
|
757
|
+
borderWidth: number;
|
|
758
|
+
};
|
|
759
|
+
lineStyle: {
|
|
760
|
+
width: number;
|
|
761
|
+
};
|
|
762
|
+
symbolSize: number;
|
|
763
|
+
symbol: string;
|
|
764
|
+
smooth: boolean;
|
|
765
|
+
};
|
|
766
|
+
radar: {
|
|
767
|
+
itemStyle: {
|
|
768
|
+
borderWidth: number;
|
|
769
|
+
};
|
|
770
|
+
lineStyle: {
|
|
771
|
+
width: number;
|
|
772
|
+
};
|
|
773
|
+
symbolSize: number;
|
|
774
|
+
symbol: string;
|
|
775
|
+
smooth: boolean;
|
|
776
|
+
};
|
|
777
|
+
bar: {
|
|
778
|
+
itemStyle: {
|
|
779
|
+
borderWidth: number;
|
|
780
|
+
borderColor: string;
|
|
781
|
+
};
|
|
782
|
+
};
|
|
783
|
+
pie: {
|
|
784
|
+
itemStyle: {
|
|
785
|
+
borderWidth: number;
|
|
786
|
+
borderColor: string;
|
|
787
|
+
};
|
|
788
|
+
label: {
|
|
789
|
+
textBorderWidth: number;
|
|
790
|
+
textBorderColor: string;
|
|
791
|
+
color: string;
|
|
792
|
+
};
|
|
793
|
+
};
|
|
794
|
+
scatter: {
|
|
795
|
+
itemStyle: {
|
|
796
|
+
borderWidth: number;
|
|
797
|
+
borderColor: string;
|
|
798
|
+
};
|
|
799
|
+
};
|
|
800
|
+
boxplot: {
|
|
801
|
+
itemStyle: {
|
|
802
|
+
borderWidth: number;
|
|
803
|
+
borderColor: string;
|
|
804
|
+
};
|
|
805
|
+
};
|
|
806
|
+
parallel: {
|
|
807
|
+
itemStyle: {
|
|
808
|
+
borderWidth: number;
|
|
809
|
+
borderColor: string;
|
|
810
|
+
};
|
|
811
|
+
};
|
|
812
|
+
sankey: {
|
|
813
|
+
itemStyle: {
|
|
814
|
+
borderWidth: number;
|
|
815
|
+
borderColor: string;
|
|
816
|
+
};
|
|
817
|
+
};
|
|
818
|
+
funnel: {
|
|
819
|
+
itemStyle: {
|
|
820
|
+
borderWidth: number;
|
|
821
|
+
borderColor: string;
|
|
822
|
+
};
|
|
823
|
+
};
|
|
824
|
+
gauge: {
|
|
825
|
+
itemStyle: {
|
|
826
|
+
borderWidth: number;
|
|
827
|
+
borderColor: string;
|
|
828
|
+
};
|
|
829
|
+
};
|
|
830
|
+
candlestick: {
|
|
831
|
+
itemStyle: {
|
|
832
|
+
color: string;
|
|
833
|
+
color0: string;
|
|
834
|
+
borderColor: string;
|
|
835
|
+
borderColor0: string;
|
|
836
|
+
borderWidth: number;
|
|
837
|
+
};
|
|
838
|
+
};
|
|
839
|
+
graph: {
|
|
840
|
+
itemStyle: {
|
|
841
|
+
borderWidth: number;
|
|
842
|
+
borderColor: string;
|
|
843
|
+
};
|
|
844
|
+
lineStyle: {
|
|
845
|
+
width: number;
|
|
846
|
+
color: string;
|
|
847
|
+
};
|
|
848
|
+
symbolSize: number;
|
|
849
|
+
symbol: string;
|
|
850
|
+
smooth: boolean;
|
|
851
|
+
color: string[];
|
|
852
|
+
label: {
|
|
853
|
+
color: string;
|
|
854
|
+
};
|
|
855
|
+
};
|
|
856
|
+
map: {
|
|
857
|
+
itemStyle: {
|
|
858
|
+
areaColor: string;
|
|
859
|
+
borderColor: string;
|
|
860
|
+
borderWidth: number;
|
|
861
|
+
};
|
|
862
|
+
label: {
|
|
863
|
+
color: string;
|
|
864
|
+
};
|
|
865
|
+
emphasis: {
|
|
866
|
+
itemStyle: {
|
|
867
|
+
areaColor: string;
|
|
868
|
+
borderColor: string;
|
|
869
|
+
borderWidth: number;
|
|
870
|
+
};
|
|
871
|
+
label: {
|
|
872
|
+
color: string;
|
|
873
|
+
};
|
|
874
|
+
};
|
|
875
|
+
};
|
|
876
|
+
geo: {
|
|
877
|
+
itemStyle: {
|
|
878
|
+
areaColor: string;
|
|
879
|
+
borderColor: string;
|
|
880
|
+
borderWidth: number;
|
|
881
|
+
};
|
|
882
|
+
label: {
|
|
883
|
+
color: string;
|
|
884
|
+
};
|
|
885
|
+
emphasis: {
|
|
886
|
+
itemStyle: {
|
|
887
|
+
areaColor: string;
|
|
888
|
+
borderColor: string;
|
|
889
|
+
borderWidth: number;
|
|
890
|
+
};
|
|
891
|
+
label: {
|
|
892
|
+
color: string;
|
|
893
|
+
};
|
|
894
|
+
};
|
|
895
|
+
};
|
|
896
|
+
categoryAxis: {
|
|
897
|
+
axisLine: {
|
|
898
|
+
show: boolean;
|
|
899
|
+
lineStyle: {
|
|
900
|
+
color: string;
|
|
901
|
+
};
|
|
902
|
+
};
|
|
903
|
+
axisTick: {
|
|
904
|
+
show: boolean;
|
|
905
|
+
lineStyle: {
|
|
906
|
+
color: string;
|
|
907
|
+
};
|
|
908
|
+
};
|
|
909
|
+
axisLabel: {
|
|
910
|
+
show: boolean;
|
|
911
|
+
color: string;
|
|
912
|
+
fontWeight: string;
|
|
913
|
+
};
|
|
914
|
+
splitLine: {
|
|
915
|
+
show: boolean;
|
|
916
|
+
lineStyle: {
|
|
917
|
+
color: string[];
|
|
918
|
+
};
|
|
919
|
+
};
|
|
920
|
+
splitArea: {
|
|
921
|
+
show: boolean;
|
|
922
|
+
areaStyle: {
|
|
923
|
+
color: string[];
|
|
924
|
+
};
|
|
925
|
+
};
|
|
926
|
+
};
|
|
927
|
+
valueAxis: {
|
|
928
|
+
axisLine: {
|
|
929
|
+
show: boolean;
|
|
930
|
+
lineStyle: {
|
|
931
|
+
color: string;
|
|
932
|
+
};
|
|
933
|
+
};
|
|
934
|
+
axisTick: {
|
|
935
|
+
show: boolean;
|
|
936
|
+
lineStyle: {
|
|
937
|
+
color: string;
|
|
938
|
+
};
|
|
939
|
+
};
|
|
940
|
+
axisLabel: {
|
|
941
|
+
show: boolean;
|
|
942
|
+
color: string;
|
|
943
|
+
};
|
|
944
|
+
splitLine: {
|
|
945
|
+
show: boolean;
|
|
946
|
+
lineStyle: {
|
|
947
|
+
color: string;
|
|
948
|
+
width: number;
|
|
949
|
+
opacity: number;
|
|
950
|
+
};
|
|
951
|
+
};
|
|
952
|
+
splitArea: {
|
|
953
|
+
show: boolean;
|
|
954
|
+
areaStyle: {
|
|
955
|
+
color: string[];
|
|
956
|
+
};
|
|
957
|
+
};
|
|
958
|
+
};
|
|
959
|
+
logAxis: {
|
|
960
|
+
axisLine: {
|
|
961
|
+
show: boolean;
|
|
962
|
+
lineStyle: {
|
|
963
|
+
color: string;
|
|
964
|
+
};
|
|
965
|
+
};
|
|
966
|
+
axisTick: {
|
|
967
|
+
show: boolean;
|
|
968
|
+
lineStyle: {
|
|
969
|
+
color: string;
|
|
970
|
+
};
|
|
971
|
+
};
|
|
972
|
+
axisLabel: {
|
|
973
|
+
show: boolean;
|
|
974
|
+
color: string;
|
|
975
|
+
fontWeight: string;
|
|
976
|
+
};
|
|
977
|
+
splitLine: {
|
|
978
|
+
show: boolean;
|
|
979
|
+
lineStyle: {
|
|
980
|
+
color: string[];
|
|
981
|
+
width: number;
|
|
982
|
+
opacity: number;
|
|
983
|
+
};
|
|
984
|
+
};
|
|
985
|
+
splitArea: {
|
|
986
|
+
show: boolean;
|
|
987
|
+
areaStyle: {
|
|
988
|
+
color: string[];
|
|
989
|
+
};
|
|
990
|
+
};
|
|
991
|
+
};
|
|
992
|
+
timeAxis: {
|
|
993
|
+
axisLine: {
|
|
994
|
+
show: boolean;
|
|
995
|
+
lineStyle: {
|
|
996
|
+
color: string;
|
|
997
|
+
};
|
|
998
|
+
};
|
|
999
|
+
axisTick: {
|
|
1000
|
+
show: boolean;
|
|
1001
|
+
lineStyle: {
|
|
1002
|
+
color: string;
|
|
1003
|
+
};
|
|
1004
|
+
};
|
|
1005
|
+
axisLabel: {
|
|
1006
|
+
show: boolean;
|
|
1007
|
+
color: string;
|
|
1008
|
+
};
|
|
1009
|
+
splitLine: {
|
|
1010
|
+
show: boolean;
|
|
1011
|
+
lineStyle: {
|
|
1012
|
+
color: string[];
|
|
1013
|
+
};
|
|
1014
|
+
};
|
|
1015
|
+
splitArea: {
|
|
1016
|
+
show: boolean;
|
|
1017
|
+
areaStyle: {
|
|
1018
|
+
color: string[];
|
|
1019
|
+
};
|
|
1020
|
+
};
|
|
1021
|
+
};
|
|
1022
|
+
toolbox: {
|
|
1023
|
+
iconStyle: {
|
|
1024
|
+
borderColor: string;
|
|
1025
|
+
};
|
|
1026
|
+
emphasis: {
|
|
1027
|
+
iconStyle: {
|
|
1028
|
+
borderColor: string;
|
|
1029
|
+
};
|
|
1030
|
+
};
|
|
1031
|
+
};
|
|
1032
|
+
legend: {
|
|
1033
|
+
textStyle: {
|
|
1034
|
+
color: string;
|
|
1035
|
+
};
|
|
1036
|
+
pageIconColor: string;
|
|
1037
|
+
pageIconInactiveColor: string;
|
|
1038
|
+
pageTextStyle: {
|
|
1039
|
+
color: string;
|
|
1040
|
+
};
|
|
1041
|
+
};
|
|
1042
|
+
tooltip: {
|
|
1043
|
+
axisPointer: {
|
|
1044
|
+
lineStyle: {
|
|
1045
|
+
color: string;
|
|
1046
|
+
width: number;
|
|
1047
|
+
};
|
|
1048
|
+
crossStyle: {
|
|
1049
|
+
color: string;
|
|
1050
|
+
width: number;
|
|
1051
|
+
};
|
|
1052
|
+
};
|
|
1053
|
+
backgroundColor: string;
|
|
1054
|
+
textStyle: {
|
|
1055
|
+
color: string;
|
|
1056
|
+
};
|
|
1057
|
+
};
|
|
1058
|
+
timeline: {
|
|
1059
|
+
lineStyle: {
|
|
1060
|
+
color: string;
|
|
1061
|
+
width: number;
|
|
1062
|
+
};
|
|
1063
|
+
itemStyle: {
|
|
1064
|
+
color: string;
|
|
1065
|
+
borderWidth: number;
|
|
1066
|
+
};
|
|
1067
|
+
controlStyle: {
|
|
1068
|
+
color: string;
|
|
1069
|
+
borderColor: string;
|
|
1070
|
+
borderWidth: number;
|
|
1071
|
+
};
|
|
1072
|
+
checkpointStyle: {
|
|
1073
|
+
color: string;
|
|
1074
|
+
borderColor: string;
|
|
1075
|
+
};
|
|
1076
|
+
label: {
|
|
1077
|
+
color: string;
|
|
1078
|
+
};
|
|
1079
|
+
emphasis: {
|
|
1080
|
+
itemStyle: {
|
|
1081
|
+
color: string;
|
|
1082
|
+
};
|
|
1083
|
+
controlStyle: {
|
|
1084
|
+
color: string;
|
|
1085
|
+
borderColor: string;
|
|
1086
|
+
borderWidth: number;
|
|
1087
|
+
};
|
|
1088
|
+
label: {
|
|
1089
|
+
color: string;
|
|
1090
|
+
};
|
|
1091
|
+
};
|
|
1092
|
+
};
|
|
1093
|
+
visualMap: {
|
|
1094
|
+
color: string[];
|
|
1095
|
+
};
|
|
1096
|
+
dataZoom: {
|
|
1097
|
+
handleSize: string;
|
|
1098
|
+
textStyle: {};
|
|
1099
|
+
};
|
|
1100
|
+
markPoint: {
|
|
1101
|
+
label: {
|
|
1102
|
+
color: string;
|
|
1103
|
+
};
|
|
1104
|
+
emphasis: {
|
|
1105
|
+
label: {
|
|
1106
|
+
color: string;
|
|
1107
|
+
};
|
|
1108
|
+
};
|
|
1109
|
+
};
|
|
1110
|
+
};
|
|
1111
|
+
|
|
1112
|
+
interface Props$7 {
|
|
1113
|
+
className?: string;
|
|
1114
|
+
}
|
|
1115
|
+
declare const SvgIcon$7: ({ className }: Props$7) => react_jsx_runtime.JSX.Element;
|
|
1116
|
+
|
|
1117
|
+
interface Props$6 {
|
|
1118
|
+
className?: string;
|
|
1119
|
+
}
|
|
1120
|
+
declare const SvgIcon$6: ({ className }: Props$6) => react_jsx_runtime.JSX.Element;
|
|
1121
|
+
|
|
1122
|
+
interface Props$5 {
|
|
1123
|
+
className?: string;
|
|
1124
|
+
}
|
|
1125
|
+
declare const SvgIcon$5: ({ className }: Props$5) => react_jsx_runtime.JSX.Element;
|
|
1126
|
+
|
|
1127
|
+
interface Props$4 {
|
|
1128
|
+
className?: string;
|
|
1129
|
+
}
|
|
1130
|
+
declare const SvgIcon$4: ({ className }: Props$4) => react_jsx_runtime.JSX.Element;
|
|
1131
|
+
|
|
1132
|
+
interface Props$3 {
|
|
1133
|
+
className?: string;
|
|
1134
|
+
}
|
|
1135
|
+
declare const SvgIcon$3: ({ className }: Props$3) => react_jsx_runtime.JSX.Element;
|
|
1136
|
+
|
|
1137
|
+
interface Props$2 {
|
|
1138
|
+
className?: string;
|
|
1139
|
+
}
|
|
1140
|
+
declare const SvgIcon$2: ({ className }: Props$2) => react_jsx_runtime.JSX.Element;
|
|
1141
|
+
|
|
1142
|
+
interface Props$1 {
|
|
1143
|
+
className?: string;
|
|
1144
|
+
}
|
|
1145
|
+
declare const SvgIcon$1: ({ className }: Props$1) => react_jsx_runtime.JSX.Element;
|
|
1146
|
+
|
|
1147
|
+
interface Props {
|
|
1148
|
+
className?: string;
|
|
1149
|
+
}
|
|
1150
|
+
declare const SvgIcon: ({ className }: Props) => react_jsx_runtime.JSX.Element;
|
|
1151
|
+
|
|
1152
|
+
export { AggregateInput, SvgIcon$6 as AreaIcon, type ArgumentDef, ArgumentInput, ArgumentType, SvgIcon$4 as BarGuageIcon, SvgIcon$5 as BarIcon, type ChartConfigLike, ChartLegend, type ChartLike, type ChartTypeLike, type DashboardExtraLike, type DashboardLike, type DashboardVisibilityLike, type DataSourceTypeLike, type EChartsHandle, type EChartsOption, EventsFunctionCategories, EventsFunctionMap, type FunctionDef, FunctionInput, FunctionMap, FunctionsCategories, FunctionsPanel, type GroupLike, type GroupStyleLike, LabelSearchProvider, LabelsInput, type LayoutItemLike, type LayoutsLike, SvgIcon$7 as LineIcon, type NoteAlignmentLike, type NoteFontSizeLike, type NoteLike, type NoteVerticalAlignmentLike, type OverlayGraphLike, type PanelLike, SvgIcon$3 as PieIcon, SvgIcon$2 as QueryValueIcon, ReactEChartsBase, type ReactEChartsProps, RefreshButton, RefreshContext, type ResponsiveLayoutsLike, SvgIcon$1 as ScatterIcon, SystemLabels, SvgIcon as TableIcon, type TemplateVariableLike, type TemplateViewLike, type YAxisConfigLike, isAggrOrRollupFunction, sentioColors, sentioTheme, sentioThemeDark, sortMetricByName, useLabelSearch, useLabelSearchContext };
|