@sentio/ui-dashboard 0.3.9 → 0.3.11
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 +72 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +71 -58
- package/dist/index.d.ts +71 -58
- package/dist/index.js +344 -149
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +285 -92
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -465,12 +465,12 @@ interface SeriesLike<T = Date> {
|
|
|
465
465
|
smooth?: boolean;
|
|
466
466
|
}
|
|
467
467
|
|
|
468
|
-
interface Props$
|
|
468
|
+
interface Props$B {
|
|
469
469
|
metric?: MetricInfoLike;
|
|
470
470
|
value: QueryLike;
|
|
471
471
|
onChange: (value: QueryLike) => void;
|
|
472
472
|
}
|
|
473
|
-
declare function AggregateInput({ metric, value, onChange }: Props$
|
|
473
|
+
declare function AggregateInput({ metric, value, onChange }: Props$B): react_jsx_runtime.JSX.Element;
|
|
474
474
|
|
|
475
475
|
declare enum ArgumentType {
|
|
476
476
|
String = 0,
|
|
@@ -505,28 +505,28 @@ declare const EventsFunctionMap: {
|
|
|
505
505
|
[name: string]: FunctionDef;
|
|
506
506
|
};
|
|
507
507
|
|
|
508
|
-
interface Props$
|
|
508
|
+
interface Props$A {
|
|
509
509
|
argument: ArgumentDef;
|
|
510
510
|
value?: ArgumentLike;
|
|
511
511
|
onChange?: (value: ArgumentLike) => void;
|
|
512
512
|
className?: string;
|
|
513
513
|
}
|
|
514
|
-
declare function ArgumentInput({ className, argument, value, onChange }: Props$
|
|
514
|
+
declare function ArgumentInput({ className, argument, value, onChange }: Props$A): react_jsx_runtime.JSX.Element;
|
|
515
515
|
|
|
516
|
-
interface Props$
|
|
516
|
+
interface Props$z {
|
|
517
517
|
value: QueryLike;
|
|
518
518
|
onChange: (value: QueryLike) => void;
|
|
519
519
|
}
|
|
520
|
-
declare function FunctionInput({ value, onChange }: Props$
|
|
520
|
+
declare function FunctionInput({ value, onChange }: Props$z): react_jsx_runtime.JSX.Element;
|
|
521
521
|
|
|
522
|
-
interface Props$
|
|
522
|
+
interface Props$y {
|
|
523
523
|
onClick: (func: FunctionDef) => void;
|
|
524
524
|
functionCategories?: typeof FunctionsCategories;
|
|
525
525
|
defaultFunc?: string;
|
|
526
526
|
}
|
|
527
|
-
declare function FunctionsPanel({ onClick, functionCategories, defaultFunc }: Props$
|
|
527
|
+
declare function FunctionsPanel({ onClick, functionCategories, defaultFunc }: Props$y): react_jsx_runtime.JSX.Element;
|
|
528
528
|
|
|
529
|
-
interface Props$
|
|
529
|
+
interface Props$x {
|
|
530
530
|
metric?: MetricInfoLike;
|
|
531
531
|
value: QueryLike;
|
|
532
532
|
onChange: (value: QueryLike) => void;
|
|
@@ -536,7 +536,7 @@ interface Props$w {
|
|
|
536
536
|
small?: boolean;
|
|
537
537
|
useRegex?: boolean;
|
|
538
538
|
}
|
|
539
|
-
declare function LabelsInput({ value, metric, variables, onChange, small, useRegex }: Props$
|
|
539
|
+
declare function LabelsInput({ value, metric, variables, onChange, small, useRegex }: Props$x): react_jsx_runtime.JSX.Element;
|
|
540
540
|
|
|
541
541
|
declare const SystemLabels: {
|
|
542
542
|
field: string;
|
|
@@ -599,7 +599,7 @@ type SeriesFinder = {
|
|
|
599
599
|
};
|
|
600
600
|
declare const ReactEChartsBase: react__default.ForwardRefExoticComponent<ReactEChartsProps & react__default.RefAttributes<EChartsHandle>>;
|
|
601
601
|
|
|
602
|
-
interface Props$
|
|
602
|
+
interface Props$w {
|
|
603
603
|
legend: string[];
|
|
604
604
|
legendSelected: Record<string, boolean>;
|
|
605
605
|
returnedSeries?: number;
|
|
@@ -607,7 +607,7 @@ interface Props$v {
|
|
|
607
607
|
onRendered: (v: boolean) => void;
|
|
608
608
|
chartHandle?: EChartsHandle;
|
|
609
609
|
}
|
|
610
|
-
declare const ChartLegend: ({ legend, legendSelected, returnedSeries, totalSeries, onRendered, chartHandle }: Props$
|
|
610
|
+
declare const ChartLegend: ({ legend, legendSelected, returnedSeries, totalSeries, onRendered, chartHandle }: Props$w) => react_jsx_runtime.JSX.Element;
|
|
611
611
|
|
|
612
612
|
declare const RefreshContext: react.Context<{
|
|
613
613
|
refresh?: () => void;
|
|
@@ -615,14 +615,14 @@ declare const RefreshContext: react.Context<{
|
|
|
615
615
|
}>;
|
|
616
616
|
declare const RefreshButton: (props: Partial<ButtonProps>) => react_jsx_runtime.JSX.Element | null;
|
|
617
617
|
|
|
618
|
-
type Props$
|
|
618
|
+
type Props$v = {
|
|
619
619
|
value: ChartTypeLike;
|
|
620
620
|
onChange: (value: ChartTypeLike) => void;
|
|
621
621
|
small?: boolean;
|
|
622
622
|
};
|
|
623
|
-
declare const ChartTypeButtonGroup: ({ value, onChange, small }: Props$
|
|
623
|
+
declare const ChartTypeButtonGroup: ({ value, onChange, small }: Props$v) => react_jsx_runtime.JSX.Element;
|
|
624
624
|
|
|
625
|
-
interface Props$
|
|
625
|
+
interface Props$u {
|
|
626
626
|
data: any;
|
|
627
627
|
compareTimeDuration?: DurationLike;
|
|
628
628
|
numberFormatter: (value: number, seriesId?: string) => string;
|
|
@@ -635,9 +635,9 @@ interface Props$t {
|
|
|
635
635
|
viewUsersDisabled?: (seriesId: string, seriesIndex: number) => boolean;
|
|
636
636
|
isFixed?: boolean;
|
|
637
637
|
}
|
|
638
|
-
declare function ChartTooltip({ data, numberFormatter, compareTimeDuration, highlightSeriesId, title, showTotal, onViewLogs, viewLogDisabled, onViewUsers, viewUsersDisabled, isFixed }: Props$
|
|
638
|
+
declare function ChartTooltip({ data, numberFormatter, compareTimeDuration, highlightSeriesId, title, showTotal, onViewLogs, viewLogDisabled, onViewUsers, viewUsersDisabled, isFixed }: Props$u): react_jsx_runtime.JSX.Element;
|
|
639
639
|
|
|
640
|
-
interface Props$
|
|
640
|
+
interface Props$t {
|
|
641
641
|
data: any;
|
|
642
642
|
compareTimeDuration?: DurationLike;
|
|
643
643
|
numberFormatter: (value: number) => string;
|
|
@@ -650,7 +650,7 @@ interface Props$s {
|
|
|
650
650
|
isFixed?: boolean;
|
|
651
651
|
sizeTitle?: string;
|
|
652
652
|
}
|
|
653
|
-
declare function ScatterChartTooltip({ data, numberFormatter, highlightSeriesId, title, onViewLogs, viewLogDisabled, onViewUsers, viewUsersDisabled, isFixed, sizeTitle }: Props$
|
|
653
|
+
declare function ScatterChartTooltip({ data, numberFormatter, highlightSeriesId, title, onViewLogs, viewLogDisabled, onViewUsers, viewUsersDisabled, isFixed, sizeTitle }: Props$t): react_jsx_runtime.JSX.Element;
|
|
654
654
|
|
|
655
655
|
/** Minimal shape consumed from a computed series — only name + first data point. */
|
|
656
656
|
interface PieSeriesInput {
|
|
@@ -803,42 +803,42 @@ interface TimeSeriesChartProps {
|
|
|
803
803
|
}
|
|
804
804
|
declare const TimeSeriesChart: react.ForwardRefExoticComponent<TimeSeriesChartProps & react.RefAttributes<EChartsHandle>>;
|
|
805
805
|
|
|
806
|
-
interface Props$
|
|
806
|
+
interface Props$s {
|
|
807
807
|
config?: LineConfigLike;
|
|
808
808
|
defaultOpen?: boolean;
|
|
809
809
|
onChange: (config: LineConfigLike) => void;
|
|
810
810
|
}
|
|
811
|
-
declare const LineControls: ({ config, defaultOpen, onChange }: Props$
|
|
811
|
+
declare const LineControls: ({ config, defaultOpen, onChange }: Props$s) => react_jsx_runtime.JSX.Element;
|
|
812
812
|
|
|
813
|
-
interface Props$
|
|
813
|
+
interface Props$r {
|
|
814
814
|
config?: LabelConfigLike;
|
|
815
815
|
setConfig: (value: LabelConfigLike) => void;
|
|
816
816
|
defaultOpen?: boolean;
|
|
817
817
|
}
|
|
818
|
-
declare const LabelControls: ({ config, setConfig, defaultOpen }: Props$
|
|
818
|
+
declare const LabelControls: ({ config, setConfig, defaultOpen }: Props$r) => react_jsx_runtime.JSX.Element;
|
|
819
819
|
|
|
820
|
-
interface Props$
|
|
820
|
+
interface Props$q {
|
|
821
821
|
config?: PieConfigLike;
|
|
822
822
|
defaultOpen?: boolean;
|
|
823
823
|
onChange: (config: PieConfigLike) => void;
|
|
824
824
|
}
|
|
825
825
|
declare const defaultConfig$8: PieConfigLike;
|
|
826
|
-
declare function PieChartControls({ config, defaultOpen, onChange }: Props$
|
|
826
|
+
declare function PieChartControls({ config, defaultOpen, onChange }: Props$q): react_jsx_runtime.JSX.Element;
|
|
827
827
|
|
|
828
|
-
interface Props$
|
|
828
|
+
interface Props$p {
|
|
829
829
|
config?: BarGaugeConfigLike;
|
|
830
830
|
defaultOpen?: boolean;
|
|
831
831
|
onChange: (config: BarGaugeConfigLike) => void;
|
|
832
832
|
}
|
|
833
833
|
declare const defaultConfig$7: BarGaugeConfigLike;
|
|
834
|
-
declare function BarGaugeControls({ config, defaultOpen, onChange }: Props$
|
|
834
|
+
declare function BarGaugeControls({ config, defaultOpen, onChange }: Props$p): react_jsx_runtime.JSX.Element;
|
|
835
835
|
|
|
836
836
|
interface ValueFormatter {
|
|
837
837
|
label: string;
|
|
838
838
|
value: ValueFormatterLike;
|
|
839
839
|
}
|
|
840
840
|
declare const ValueFormatters: ValueFormatter[];
|
|
841
|
-
interface Props$
|
|
841
|
+
interface Props$o {
|
|
842
842
|
config: ValueConfigLike;
|
|
843
843
|
defaultOpen?: boolean;
|
|
844
844
|
onChange: (config: ValueConfigLike) => void;
|
|
@@ -847,9 +847,9 @@ interface Props$n {
|
|
|
847
847
|
showSuffix?: boolean;
|
|
848
848
|
}
|
|
849
849
|
declare const defaultConfig$6: ValueConfigLike;
|
|
850
|
-
declare const ValueOptions: ({ config, onChange, formatters, showPrefix, showSuffix }: Props$
|
|
850
|
+
declare const ValueOptions: ({ config, onChange, formatters, showPrefix, showSuffix }: Props$o) => react_jsx_runtime.JSX.Element;
|
|
851
851
|
|
|
852
|
-
interface Props$
|
|
852
|
+
interface Props$n {
|
|
853
853
|
config?: ValueConfigLike;
|
|
854
854
|
defaultOpen?: boolean;
|
|
855
855
|
onChange: (config: ValueConfigLike) => void;
|
|
@@ -858,15 +858,15 @@ interface Props$m {
|
|
|
858
858
|
showSuffix?: boolean;
|
|
859
859
|
}
|
|
860
860
|
declare const defaultConfig$5: ValueConfigLike;
|
|
861
|
-
declare const ValueControls: ({ config, defaultOpen, onChange, formatters, showPrefix, showSuffix }: Props$
|
|
861
|
+
declare const ValueControls: ({ config, defaultOpen, onChange, formatters, showPrefix, showSuffix }: Props$n) => react_jsx_runtime.JSX.Element;
|
|
862
862
|
|
|
863
|
-
interface Props$
|
|
863
|
+
interface Props$m {
|
|
864
864
|
rules: MappingRuleLike[];
|
|
865
865
|
onChange: (rules: MappingRuleLike[]) => void;
|
|
866
866
|
}
|
|
867
|
-
declare function ValueStringMapping({ rules, onChange }: Props$
|
|
867
|
+
declare function ValueStringMapping({ rules, onChange }: Props$m): react_jsx_runtime.JSX.Element;
|
|
868
868
|
|
|
869
|
-
interface Props$
|
|
869
|
+
interface Props$l {
|
|
870
870
|
yAxis?: YAxisConfigLike;
|
|
871
871
|
setYAxis: (yAxis: YAxisConfigLike) => void;
|
|
872
872
|
defaultOpen?: boolean;
|
|
@@ -879,9 +879,9 @@ interface Props$k {
|
|
|
879
879
|
supportReset?: boolean;
|
|
880
880
|
panelTitle?: string;
|
|
881
881
|
}
|
|
882
|
-
declare function YaxisControls({ yAxis, setYAxis, defaultOpen, columnSelect, supportSetName, supportSetMinMax, supportStackSeries, supportAlwaysShowZero, supportReset, panelTitle }: Props$
|
|
882
|
+
declare function YaxisControls({ yAxis, setYAxis, defaultOpen, columnSelect, supportSetName, supportSetMinMax, supportStackSeries, supportAlwaysShowZero, supportReset, panelTitle }: Props$l): react_jsx_runtime.JSX.Element;
|
|
883
883
|
|
|
884
|
-
interface Props$
|
|
884
|
+
interface Props$k {
|
|
885
885
|
xAxis?: XAxisConfigLike;
|
|
886
886
|
setXAxis: (val?: XAxisConfigLike) => void;
|
|
887
887
|
defaultOpen?: boolean;
|
|
@@ -894,15 +894,15 @@ interface Props$j {
|
|
|
894
894
|
supportSort?: boolean;
|
|
895
895
|
supportSetType?: boolean;
|
|
896
896
|
}
|
|
897
|
-
declare const XAxisControls: ({ xAxis, setXAxis, defaultOpen, columnSelect, columnIsNonTime, panelTitle, supportName, supportSort, supportSetType }: Props$
|
|
897
|
+
declare const XAxisControls: ({ xAxis, setXAxis, defaultOpen, columnSelect, columnIsNonTime, panelTitle, supportName, supportSort, supportSetType }: Props$k) => react_jsx_runtime.JSX.Element;
|
|
898
898
|
|
|
899
|
-
interface Props$
|
|
899
|
+
interface Props$j {
|
|
900
900
|
markers?: MarkerLike[];
|
|
901
901
|
onChange: (v: MarkerLike[]) => void;
|
|
902
902
|
}
|
|
903
|
-
declare function MarkerControls({ markers, onChange }: Props$
|
|
903
|
+
declare function MarkerControls({ markers, onChange }: Props$j): react_jsx_runtime.JSX.Element;
|
|
904
904
|
|
|
905
|
-
interface Props$
|
|
905
|
+
interface Props$i {
|
|
906
906
|
defaultOpen?: boolean;
|
|
907
907
|
onChange: (config: DataConfigLike) => void;
|
|
908
908
|
chartConfig?: ChartConfigLike;
|
|
@@ -910,9 +910,9 @@ interface Props$h {
|
|
|
910
910
|
defaultSeriesLimit?: number;
|
|
911
911
|
}
|
|
912
912
|
declare const defaultConfig$4: DataConfigLike;
|
|
913
|
-
declare function DataControls({ defaultOpen, onChange, chartConfig, defaultSeriesLimit }: Props$
|
|
913
|
+
declare function DataControls({ defaultOpen, onChange, chartConfig, defaultSeriesLimit }: Props$i): react_jsx_runtime.JSX.Element;
|
|
914
914
|
|
|
915
|
-
interface Props$
|
|
915
|
+
interface Props$h {
|
|
916
916
|
config?: ScatterConfigLike;
|
|
917
917
|
defaultOpen?: boolean;
|
|
918
918
|
onChange: (config: ScatterConfigLike) => void;
|
|
@@ -928,9 +928,9 @@ interface Props$g {
|
|
|
928
928
|
}) => ReactNode;
|
|
929
929
|
}
|
|
930
930
|
declare const defaultConfig$3: ScatterConfigLike;
|
|
931
|
-
declare function ScatterControls({ config, defaultOpen, onChange, columnSelect, colorPicker }: Props$
|
|
931
|
+
declare function ScatterControls({ config, defaultOpen, onChange, columnSelect, colorPicker }: Props$h): react_jsx_runtime.JSX.Element;
|
|
932
932
|
|
|
933
|
-
interface Props$
|
|
933
|
+
interface Props$g {
|
|
934
934
|
config?: TableConfigLike;
|
|
935
935
|
defaultOpen?: boolean;
|
|
936
936
|
onChange: (config: TableConfigLike) => void;
|
|
@@ -938,7 +938,7 @@ interface Props$f {
|
|
|
938
938
|
}
|
|
939
939
|
declare const defaultConfig$2: TableConfigLike;
|
|
940
940
|
declare function getDefaultValueConfig(type?: ColumnTypeLike): ValueConfigLike;
|
|
941
|
-
declare function TableControls({ config, defaultOpen, onChange, data }: Props$
|
|
941
|
+
declare function TableControls({ config, defaultOpen, onChange, data }: Props$g): react_jsx_runtime.JSX.Element;
|
|
942
942
|
|
|
943
943
|
declare const sentioColors: {
|
|
944
944
|
light: {
|
|
@@ -1690,53 +1690,60 @@ declare const sentioThemeDark: {
|
|
|
1690
1690
|
};
|
|
1691
1691
|
};
|
|
1692
1692
|
|
|
1693
|
+
interface Props$f {
|
|
1694
|
+
className?: string;
|
|
1695
|
+
}
|
|
1696
|
+
declare const SvgIcon$7: ({ className }: Props$f) => react_jsx_runtime.JSX.Element;
|
|
1697
|
+
|
|
1693
1698
|
interface Props$e {
|
|
1694
1699
|
className?: string;
|
|
1695
1700
|
}
|
|
1696
|
-
declare const SvgIcon$
|
|
1701
|
+
declare const SvgIcon$6: ({ className }: Props$e) => react_jsx_runtime.JSX.Element;
|
|
1697
1702
|
|
|
1698
1703
|
interface Props$d {
|
|
1699
1704
|
className?: string;
|
|
1700
1705
|
}
|
|
1701
|
-
declare const SvgIcon$
|
|
1706
|
+
declare const SvgIcon$5: ({ className }: Props$d) => react_jsx_runtime.JSX.Element;
|
|
1702
1707
|
|
|
1703
1708
|
interface Props$c {
|
|
1704
1709
|
className?: string;
|
|
1705
1710
|
}
|
|
1706
|
-
declare const SvgIcon$
|
|
1711
|
+
declare const SvgIcon$4: ({ className }: Props$c) => react_jsx_runtime.JSX.Element;
|
|
1707
1712
|
|
|
1708
1713
|
interface Props$b {
|
|
1709
1714
|
className?: string;
|
|
1710
1715
|
}
|
|
1711
|
-
declare const SvgIcon$
|
|
1716
|
+
declare const SvgIcon$3: ({ className }: Props$b) => react_jsx_runtime.JSX.Element;
|
|
1712
1717
|
|
|
1713
1718
|
interface Props$a {
|
|
1714
1719
|
className?: string;
|
|
1715
1720
|
}
|
|
1716
|
-
declare const SvgIcon$
|
|
1721
|
+
declare const SvgIcon$2: ({ className }: Props$a) => react_jsx_runtime.JSX.Element;
|
|
1717
1722
|
|
|
1718
1723
|
interface Props$9 {
|
|
1719
1724
|
className?: string;
|
|
1720
1725
|
}
|
|
1721
|
-
declare const SvgIcon$
|
|
1726
|
+
declare const SvgIcon$1: ({ className }: Props$9) => react_jsx_runtime.JSX.Element;
|
|
1722
1727
|
|
|
1723
1728
|
interface Props$8 {
|
|
1724
1729
|
className?: string;
|
|
1725
1730
|
}
|
|
1726
|
-
declare const SvgIcon
|
|
1731
|
+
declare const SvgIcon: ({ className }: Props$8) => react_jsx_runtime.JSX.Element;
|
|
1727
1732
|
|
|
1728
1733
|
interface Props$7 {
|
|
1729
|
-
className?: string;
|
|
1730
|
-
}
|
|
1731
|
-
declare const SvgIcon: ({ className }: Props$7) => react_jsx_runtime.JSX.Element;
|
|
1732
|
-
|
|
1733
|
-
interface Props$6 {
|
|
1734
1734
|
dashboard?: DashboardLike;
|
|
1735
1735
|
open: boolean;
|
|
1736
1736
|
onClose: () => void;
|
|
1737
1737
|
onUpdate: (data: DashboardLike) => Promise<void>;
|
|
1738
1738
|
}
|
|
1739
|
-
declare const EditDashboardDialog: ({ dashboard, open, onClose, onUpdate }: Props$
|
|
1739
|
+
declare const EditDashboardDialog: ({ dashboard, open, onClose, onUpdate }: Props$7) => react_jsx_runtime.JSX.Element;
|
|
1740
|
+
|
|
1741
|
+
interface Props$6 {
|
|
1742
|
+
data?: any;
|
|
1743
|
+
logoSrc?: string;
|
|
1744
|
+
onNavigateToDatasource?: () => void;
|
|
1745
|
+
}
|
|
1746
|
+
declare const ErrorChart: react__default.MemoExoticComponent<({ data, logoSrc, onNavigateToDatasource }: Props$6) => react_jsx_runtime.JSX.Element>;
|
|
1740
1747
|
|
|
1741
1748
|
interface Props$5 {
|
|
1742
1749
|
open: boolean;
|
|
@@ -1816,4 +1823,10 @@ interface ResolvedHighlight {
|
|
|
1816
1823
|
declare function resolveHighlight(colorKey: string | undefined, isDark: boolean): ResolvedHighlight;
|
|
1817
1824
|
declare function resolveHeaderStyle(style: GroupStyleLike | undefined, colorKey: string | undefined, isDark: boolean): React.CSSProperties;
|
|
1818
1825
|
|
|
1819
|
-
|
|
1826
|
+
declare const ImportPanelDialog: ({ show, onClose: _onClose, onSubmit }: {
|
|
1827
|
+
show: boolean;
|
|
1828
|
+
onClose: () => void;
|
|
1829
|
+
onSubmit: (p: PanelLike) => Promise<void>;
|
|
1830
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1831
|
+
|
|
1832
|
+
export { AggregateInput, SvgIcon$6 as AreaIcon, type ArgumentDef, ArgumentInput, ArgumentType, BarGaugeChart, type BarGaugeChartProps, BarGaugeControls, SvgIcon$4 as BarGuageIcon, SvgIcon$5 as BarIcon, type ChartConfigLike, ChartLegend, type ChartLike, ChartTooltip, ChartTypeButtonGroup, type ChartTypeLike, type ComputeStatsLike, DEFAULT_HIGHLIGHT_KEY, type DashboardExtraLike, type DashboardLike, DashboardRefresh, type DashboardSharingLike, type DashboardVisibilityLike, DataControls, type DataSourceTypeLike, type EChartsHandle, type EChartsOption, EditDashboardDialog, EditGroupDialog, ErrorChart, EventsFunctionCategories, EventsFunctionMap, type FunctionDef, FunctionInput, FunctionMap, FunctionsCategories, FunctionsPanel, type GroupLike, type GroupStyleLike, HIGHLIGHT_COLORS, type HighlightColorKey, type HighlightColorMeta, ImportPanelDialog, LabelControls, LabelSearchProvider, LabelsInput, type LayoutItemLike, type LayoutsLike, LineControls, SvgIcon$7 as LineIcon, type MarkArea, type MarkLine, MarkerControls, type NoteAlignmentLike, type NoteFontSizeLike, type NoteLike, type NoteVerticalAlignmentLike, type OverlayGraphLike, type PanelLike, PieChart, PieChartControls, type PieChartProps, SvgIcon$3 as PieIcon, type PieSeriesInput, QueryValueChart, type QueryValueChartProps, type QueryValueConfigLike, QueryValueControls, SvgIcon$2 as QueryValueIcon, ReactEChartsBase, type ReactEChartsProps, RefreshButton, RefreshContext, type ResolvedHighlight, type ResponsiveLayoutsLike, ScatterChartTooltip, ScatterControls, SvgIcon$1 as ScatterIcon, type SeriesConfigLike, SeriesControls, ShareDashboardDialog, type SharingConfigLike, SystemLabels, TableControls, SvgIcon as TableIcon, type TemplateVariableLike, type TemplateViewLike, type TimeLike, type TimeRangeLike, TimeRangeOverride, type TimeRangeOverrideLike, TimeSeriesChart, type TimeSeriesChartProps, ValueControls, type ValueFormatter, ValueFormatters, ValueOptions, ValueStringMapping, type ViewActionContext, XAxisControls, type YAxisConfigLike, YaxisControls, defaultConfig$7 as defaultBarGaugeConfig, defaultConfig$4 as defaultDataConfig, defaultConfig$8 as defaultPieConfig, defaultConfig as defaultQueryValueConfig, defaultConfig$3 as defaultScatterConfig, defaultConfig$2 as defaultTableConfig, defaultConfig$1 as defaultTimeRangeOverrideConfig, defaultConfig$6 as defaultValueConfig, defaultConfig$5 as defaultValueControlsConfig, getDefaultValueConfig, getHighlightHex, isAggrOrRollupFunction, resolveHeaderStyle, resolveHighlight, sentioColors, sentioTheme, sentioThemeDark, sortMetricByName, useLabelSearch, useLabelSearchContext };
|