@sentio/ui-dashboard 0.3.4 → 0.3.6
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 +104 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +92 -55
- package/dist/index.d.ts +92 -55
- package/dist/index.js +348 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +341 -1
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -435,12 +435,12 @@ interface SeriesLike<T = Date> {
|
|
|
435
435
|
smooth?: boolean;
|
|
436
436
|
}
|
|
437
437
|
|
|
438
|
-
interface Props$
|
|
438
|
+
interface Props$v {
|
|
439
439
|
metric?: MetricInfoLike;
|
|
440
440
|
value: QueryLike;
|
|
441
441
|
onChange: (value: QueryLike) => void;
|
|
442
442
|
}
|
|
443
|
-
declare function AggregateInput({ metric, value, onChange }: Props$
|
|
443
|
+
declare function AggregateInput({ metric, value, onChange }: Props$v): react_jsx_runtime.JSX.Element;
|
|
444
444
|
|
|
445
445
|
declare enum ArgumentType {
|
|
446
446
|
String = 0,
|
|
@@ -475,28 +475,28 @@ declare const EventsFunctionMap: {
|
|
|
475
475
|
[name: string]: FunctionDef;
|
|
476
476
|
};
|
|
477
477
|
|
|
478
|
-
interface Props$
|
|
478
|
+
interface Props$u {
|
|
479
479
|
argument: ArgumentDef;
|
|
480
480
|
value?: ArgumentLike;
|
|
481
481
|
onChange?: (value: ArgumentLike) => void;
|
|
482
482
|
className?: string;
|
|
483
483
|
}
|
|
484
|
-
declare function ArgumentInput({ className, argument, value, onChange }: Props$
|
|
484
|
+
declare function ArgumentInput({ className, argument, value, onChange }: Props$u): react_jsx_runtime.JSX.Element;
|
|
485
485
|
|
|
486
|
-
interface Props$
|
|
486
|
+
interface Props$t {
|
|
487
487
|
value: QueryLike;
|
|
488
488
|
onChange: (value: QueryLike) => void;
|
|
489
489
|
}
|
|
490
|
-
declare function FunctionInput({ value, onChange }: Props$
|
|
490
|
+
declare function FunctionInput({ value, onChange }: Props$t): react_jsx_runtime.JSX.Element;
|
|
491
491
|
|
|
492
|
-
interface Props$
|
|
492
|
+
interface Props$s {
|
|
493
493
|
onClick: (func: FunctionDef) => void;
|
|
494
494
|
functionCategories?: typeof FunctionsCategories;
|
|
495
495
|
defaultFunc?: string;
|
|
496
496
|
}
|
|
497
|
-
declare function FunctionsPanel({ onClick, functionCategories, defaultFunc }: Props$
|
|
497
|
+
declare function FunctionsPanel({ onClick, functionCategories, defaultFunc }: Props$s): react_jsx_runtime.JSX.Element;
|
|
498
498
|
|
|
499
|
-
interface Props$
|
|
499
|
+
interface Props$r {
|
|
500
500
|
metric?: MetricInfoLike;
|
|
501
501
|
value: QueryLike;
|
|
502
502
|
onChange: (value: QueryLike) => void;
|
|
@@ -506,7 +506,7 @@ interface Props$p {
|
|
|
506
506
|
small?: boolean;
|
|
507
507
|
useRegex?: boolean;
|
|
508
508
|
}
|
|
509
|
-
declare function LabelsInput({ value, metric, variables, onChange, small, useRegex }: Props$
|
|
509
|
+
declare function LabelsInput({ value, metric, variables, onChange, small, useRegex }: Props$r): react_jsx_runtime.JSX.Element;
|
|
510
510
|
|
|
511
511
|
declare const SystemLabels: {
|
|
512
512
|
field: string;
|
|
@@ -569,7 +569,7 @@ type SeriesFinder = {
|
|
|
569
569
|
};
|
|
570
570
|
declare const ReactEChartsBase: react__default.ForwardRefExoticComponent<ReactEChartsProps & react__default.RefAttributes<EChartsHandle>>;
|
|
571
571
|
|
|
572
|
-
interface Props$
|
|
572
|
+
interface Props$q {
|
|
573
573
|
legend: string[];
|
|
574
574
|
legendSelected: Record<string, boolean>;
|
|
575
575
|
returnedSeries?: number;
|
|
@@ -577,7 +577,7 @@ interface Props$o {
|
|
|
577
577
|
onRendered: (v: boolean) => void;
|
|
578
578
|
chartHandle?: EChartsHandle;
|
|
579
579
|
}
|
|
580
|
-
declare const ChartLegend: ({ legend, legendSelected, returnedSeries, totalSeries, onRendered, chartHandle }: Props$
|
|
580
|
+
declare const ChartLegend: ({ legend, legendSelected, returnedSeries, totalSeries, onRendered, chartHandle }: Props$q) => react_jsx_runtime.JSX.Element;
|
|
581
581
|
|
|
582
582
|
declare const RefreshContext: react.Context<{
|
|
583
583
|
refresh?: () => void;
|
|
@@ -585,14 +585,14 @@ declare const RefreshContext: react.Context<{
|
|
|
585
585
|
}>;
|
|
586
586
|
declare const RefreshButton: (props: Partial<ButtonProps>) => react_jsx_runtime.JSX.Element | null;
|
|
587
587
|
|
|
588
|
-
type Props$
|
|
588
|
+
type Props$p = {
|
|
589
589
|
value: ChartTypeLike;
|
|
590
590
|
onChange: (value: ChartTypeLike) => void;
|
|
591
591
|
small?: boolean;
|
|
592
592
|
};
|
|
593
|
-
declare const ChartTypeButtonGroup: ({ value, onChange, small }: Props$
|
|
593
|
+
declare const ChartTypeButtonGroup: ({ value, onChange, small }: Props$p) => react_jsx_runtime.JSX.Element;
|
|
594
594
|
|
|
595
|
-
interface Props$
|
|
595
|
+
interface Props$o {
|
|
596
596
|
data: any;
|
|
597
597
|
compareTimeDuration?: DurationLike;
|
|
598
598
|
numberFormatter: (value: number, seriesId?: string) => string;
|
|
@@ -605,9 +605,9 @@ interface Props$m {
|
|
|
605
605
|
viewUsersDisabled?: (seriesId: string, seriesIndex: number) => boolean;
|
|
606
606
|
isFixed?: boolean;
|
|
607
607
|
}
|
|
608
|
-
declare function ChartTooltip({ data, numberFormatter, compareTimeDuration, highlightSeriesId, title, showTotal, onViewLogs, viewLogDisabled, onViewUsers, viewUsersDisabled, isFixed }: Props$
|
|
608
|
+
declare function ChartTooltip({ data, numberFormatter, compareTimeDuration, highlightSeriesId, title, showTotal, onViewLogs, viewLogDisabled, onViewUsers, viewUsersDisabled, isFixed }: Props$o): react_jsx_runtime.JSX.Element;
|
|
609
609
|
|
|
610
|
-
interface Props$
|
|
610
|
+
interface Props$n {
|
|
611
611
|
data: any;
|
|
612
612
|
compareTimeDuration?: DurationLike;
|
|
613
613
|
numberFormatter: (value: number) => string;
|
|
@@ -620,7 +620,7 @@ interface Props$l {
|
|
|
620
620
|
isFixed?: boolean;
|
|
621
621
|
sizeTitle?: string;
|
|
622
622
|
}
|
|
623
|
-
declare function ScatterChartTooltip({ data, numberFormatter, highlightSeriesId, title, onViewLogs, viewLogDisabled, onViewUsers, viewUsersDisabled, isFixed, sizeTitle }: Props$
|
|
623
|
+
declare function ScatterChartTooltip({ data, numberFormatter, highlightSeriesId, title, onViewLogs, viewLogDisabled, onViewUsers, viewUsersDisabled, isFixed, sizeTitle }: Props$n): react_jsx_runtime.JSX.Element;
|
|
624
624
|
|
|
625
625
|
/** Minimal shape consumed from a computed series — only name + first data point. */
|
|
626
626
|
interface PieSeriesInput {
|
|
@@ -773,42 +773,42 @@ interface TimeSeriesChartProps {
|
|
|
773
773
|
}
|
|
774
774
|
declare const TimeSeriesChart: react.ForwardRefExoticComponent<TimeSeriesChartProps & react.RefAttributes<EChartsHandle>>;
|
|
775
775
|
|
|
776
|
-
interface Props$
|
|
776
|
+
interface Props$m {
|
|
777
777
|
config?: LineConfigLike;
|
|
778
778
|
defaultOpen?: boolean;
|
|
779
779
|
onChange: (config: LineConfigLike) => void;
|
|
780
780
|
}
|
|
781
|
-
declare const LineControls: ({ config, defaultOpen, onChange }: Props$
|
|
781
|
+
declare const LineControls: ({ config, defaultOpen, onChange }: Props$m) => react_jsx_runtime.JSX.Element;
|
|
782
782
|
|
|
783
|
-
interface Props$
|
|
783
|
+
interface Props$l {
|
|
784
784
|
config?: LabelConfigLike;
|
|
785
785
|
setConfig: (value: LabelConfigLike) => void;
|
|
786
786
|
defaultOpen?: boolean;
|
|
787
787
|
}
|
|
788
|
-
declare const LabelControls: ({ config, setConfig, defaultOpen }: Props$
|
|
788
|
+
declare const LabelControls: ({ config, setConfig, defaultOpen }: Props$l) => react_jsx_runtime.JSX.Element;
|
|
789
789
|
|
|
790
|
-
interface Props$
|
|
790
|
+
interface Props$k {
|
|
791
791
|
config?: PieConfigLike;
|
|
792
792
|
defaultOpen?: boolean;
|
|
793
793
|
onChange: (config: PieConfigLike) => void;
|
|
794
794
|
}
|
|
795
795
|
declare const defaultConfig$6: PieConfigLike;
|
|
796
|
-
declare function PieChartControls({ config, defaultOpen, onChange }: Props$
|
|
796
|
+
declare function PieChartControls({ config, defaultOpen, onChange }: Props$k): react_jsx_runtime.JSX.Element;
|
|
797
797
|
|
|
798
|
-
interface Props$
|
|
798
|
+
interface Props$j {
|
|
799
799
|
config?: BarGaugeConfigLike;
|
|
800
800
|
defaultOpen?: boolean;
|
|
801
801
|
onChange: (config: BarGaugeConfigLike) => void;
|
|
802
802
|
}
|
|
803
803
|
declare const defaultConfig$5: BarGaugeConfigLike;
|
|
804
|
-
declare function BarGaugeControls({ config, defaultOpen, onChange }: Props$
|
|
804
|
+
declare function BarGaugeControls({ config, defaultOpen, onChange }: Props$j): react_jsx_runtime.JSX.Element;
|
|
805
805
|
|
|
806
806
|
interface ValueFormatter {
|
|
807
807
|
label: string;
|
|
808
808
|
value: ValueFormatterLike;
|
|
809
809
|
}
|
|
810
810
|
declare const ValueFormatters: ValueFormatter[];
|
|
811
|
-
interface Props$
|
|
811
|
+
interface Props$i {
|
|
812
812
|
config: ValueConfigLike;
|
|
813
813
|
defaultOpen?: boolean;
|
|
814
814
|
onChange: (config: ValueConfigLike) => void;
|
|
@@ -817,9 +817,9 @@ interface Props$g {
|
|
|
817
817
|
showSuffix?: boolean;
|
|
818
818
|
}
|
|
819
819
|
declare const defaultConfig$4: ValueConfigLike;
|
|
820
|
-
declare const ValueOptions: ({ config, onChange, formatters, showPrefix, showSuffix }: Props$
|
|
820
|
+
declare const ValueOptions: ({ config, onChange, formatters, showPrefix, showSuffix }: Props$i) => react_jsx_runtime.JSX.Element;
|
|
821
821
|
|
|
822
|
-
interface Props$
|
|
822
|
+
interface Props$h {
|
|
823
823
|
config?: ValueConfigLike;
|
|
824
824
|
defaultOpen?: boolean;
|
|
825
825
|
onChange: (config: ValueConfigLike) => void;
|
|
@@ -828,15 +828,15 @@ interface Props$f {
|
|
|
828
828
|
showSuffix?: boolean;
|
|
829
829
|
}
|
|
830
830
|
declare const defaultConfig$3: ValueConfigLike;
|
|
831
|
-
declare const ValueControls: ({ config, defaultOpen, onChange, formatters, showPrefix, showSuffix }: Props$
|
|
831
|
+
declare const ValueControls: ({ config, defaultOpen, onChange, formatters, showPrefix, showSuffix }: Props$h) => react_jsx_runtime.JSX.Element;
|
|
832
832
|
|
|
833
|
-
interface Props$
|
|
833
|
+
interface Props$g {
|
|
834
834
|
rules: MappingRuleLike[];
|
|
835
835
|
onChange: (rules: MappingRuleLike[]) => void;
|
|
836
836
|
}
|
|
837
|
-
declare function ValueStringMapping({ rules, onChange }: Props$
|
|
837
|
+
declare function ValueStringMapping({ rules, onChange }: Props$g): react_jsx_runtime.JSX.Element;
|
|
838
838
|
|
|
839
|
-
interface Props$
|
|
839
|
+
interface Props$f {
|
|
840
840
|
yAxis?: YAxisConfigLike;
|
|
841
841
|
setYAxis: (yAxis: YAxisConfigLike) => void;
|
|
842
842
|
defaultOpen?: boolean;
|
|
@@ -849,9 +849,9 @@ interface Props$d {
|
|
|
849
849
|
supportReset?: boolean;
|
|
850
850
|
panelTitle?: string;
|
|
851
851
|
}
|
|
852
|
-
declare function YaxisControls({ yAxis, setYAxis, defaultOpen, columnSelect, supportSetName, supportSetMinMax, supportStackSeries, supportAlwaysShowZero, supportReset, panelTitle }: Props$
|
|
852
|
+
declare function YaxisControls({ yAxis, setYAxis, defaultOpen, columnSelect, supportSetName, supportSetMinMax, supportStackSeries, supportAlwaysShowZero, supportReset, panelTitle }: Props$f): react_jsx_runtime.JSX.Element;
|
|
853
853
|
|
|
854
|
-
interface Props$
|
|
854
|
+
interface Props$e {
|
|
855
855
|
xAxis?: XAxisConfigLike;
|
|
856
856
|
setXAxis: (val?: XAxisConfigLike) => void;
|
|
857
857
|
defaultOpen?: boolean;
|
|
@@ -864,15 +864,15 @@ interface Props$c {
|
|
|
864
864
|
supportSort?: boolean;
|
|
865
865
|
supportSetType?: boolean;
|
|
866
866
|
}
|
|
867
|
-
declare const XAxisControls: ({ xAxis, setXAxis, defaultOpen, columnSelect, columnIsNonTime, panelTitle, supportName, supportSort, supportSetType }: Props$
|
|
867
|
+
declare const XAxisControls: ({ xAxis, setXAxis, defaultOpen, columnSelect, columnIsNonTime, panelTitle, supportName, supportSort, supportSetType }: Props$e) => react_jsx_runtime.JSX.Element;
|
|
868
868
|
|
|
869
|
-
interface Props$
|
|
869
|
+
interface Props$d {
|
|
870
870
|
markers?: MarkerLike[];
|
|
871
871
|
onChange: (v: MarkerLike[]) => void;
|
|
872
872
|
}
|
|
873
|
-
declare function MarkerControls({ markers, onChange }: Props$
|
|
873
|
+
declare function MarkerControls({ markers, onChange }: Props$d): react_jsx_runtime.JSX.Element;
|
|
874
874
|
|
|
875
|
-
interface Props$
|
|
875
|
+
interface Props$c {
|
|
876
876
|
defaultOpen?: boolean;
|
|
877
877
|
onChange: (config: DataConfigLike) => void;
|
|
878
878
|
chartConfig?: ChartConfigLike;
|
|
@@ -880,9 +880,9 @@ interface Props$a {
|
|
|
880
880
|
defaultSeriesLimit?: number;
|
|
881
881
|
}
|
|
882
882
|
declare const defaultConfig$2: DataConfigLike;
|
|
883
|
-
declare function DataControls({ defaultOpen, onChange, chartConfig, defaultSeriesLimit }: Props$
|
|
883
|
+
declare function DataControls({ defaultOpen, onChange, chartConfig, defaultSeriesLimit }: Props$c): react_jsx_runtime.JSX.Element;
|
|
884
884
|
|
|
885
|
-
interface Props$
|
|
885
|
+
interface Props$b {
|
|
886
886
|
config?: ScatterConfigLike;
|
|
887
887
|
defaultOpen?: boolean;
|
|
888
888
|
onChange: (config: ScatterConfigLike) => void;
|
|
@@ -898,9 +898,9 @@ interface Props$9 {
|
|
|
898
898
|
}) => ReactNode;
|
|
899
899
|
}
|
|
900
900
|
declare const defaultConfig$1: ScatterConfigLike;
|
|
901
|
-
declare function ScatterControls({ config, defaultOpen, onChange, columnSelect, colorPicker }: Props$
|
|
901
|
+
declare function ScatterControls({ config, defaultOpen, onChange, columnSelect, colorPicker }: Props$b): react_jsx_runtime.JSX.Element;
|
|
902
902
|
|
|
903
|
-
interface Props$
|
|
903
|
+
interface Props$a {
|
|
904
904
|
config?: TableConfigLike;
|
|
905
905
|
defaultOpen?: boolean;
|
|
906
906
|
onChange: (config: TableConfigLike) => void;
|
|
@@ -908,7 +908,7 @@ interface Props$8 {
|
|
|
908
908
|
}
|
|
909
909
|
declare const defaultConfig: TableConfigLike;
|
|
910
910
|
declare function getDefaultValueConfig(type?: ColumnTypeLike): ValueConfigLike;
|
|
911
|
-
declare function TableControls({ config, defaultOpen, onChange, data }: Props$
|
|
911
|
+
declare function TableControls({ config, defaultOpen, onChange, data }: Props$a): react_jsx_runtime.JSX.Element;
|
|
912
912
|
|
|
913
913
|
declare const sentioColors: {
|
|
914
914
|
light: {
|
|
@@ -1660,44 +1660,81 @@ declare const sentioThemeDark: {
|
|
|
1660
1660
|
};
|
|
1661
1661
|
};
|
|
1662
1662
|
|
|
1663
|
+
interface Props$9 {
|
|
1664
|
+
className?: string;
|
|
1665
|
+
}
|
|
1666
|
+
declare const SvgIcon$7: ({ className }: Props$9) => react_jsx_runtime.JSX.Element;
|
|
1667
|
+
|
|
1668
|
+
interface Props$8 {
|
|
1669
|
+
className?: string;
|
|
1670
|
+
}
|
|
1671
|
+
declare const SvgIcon$6: ({ className }: Props$8) => react_jsx_runtime.JSX.Element;
|
|
1672
|
+
|
|
1663
1673
|
interface Props$7 {
|
|
1664
1674
|
className?: string;
|
|
1665
1675
|
}
|
|
1666
|
-
declare const SvgIcon$
|
|
1676
|
+
declare const SvgIcon$5: ({ className }: Props$7) => react_jsx_runtime.JSX.Element;
|
|
1667
1677
|
|
|
1668
1678
|
interface Props$6 {
|
|
1669
1679
|
className?: string;
|
|
1670
1680
|
}
|
|
1671
|
-
declare const SvgIcon$
|
|
1681
|
+
declare const SvgIcon$4: ({ className }: Props$6) => react_jsx_runtime.JSX.Element;
|
|
1672
1682
|
|
|
1673
1683
|
interface Props$5 {
|
|
1674
1684
|
className?: string;
|
|
1675
1685
|
}
|
|
1676
|
-
declare const SvgIcon$
|
|
1686
|
+
declare const SvgIcon$3: ({ className }: Props$5) => react_jsx_runtime.JSX.Element;
|
|
1677
1687
|
|
|
1678
1688
|
interface Props$4 {
|
|
1679
1689
|
className?: string;
|
|
1680
1690
|
}
|
|
1681
|
-
declare const SvgIcon$
|
|
1691
|
+
declare const SvgIcon$2: ({ className }: Props$4) => react_jsx_runtime.JSX.Element;
|
|
1682
1692
|
|
|
1683
1693
|
interface Props$3 {
|
|
1684
1694
|
className?: string;
|
|
1685
1695
|
}
|
|
1686
|
-
declare const SvgIcon$
|
|
1696
|
+
declare const SvgIcon$1: ({ className }: Props$3) => react_jsx_runtime.JSX.Element;
|
|
1687
1697
|
|
|
1688
1698
|
interface Props$2 {
|
|
1689
1699
|
className?: string;
|
|
1690
1700
|
}
|
|
1691
|
-
declare const SvgIcon
|
|
1701
|
+
declare const SvgIcon: ({ className }: Props$2) => react_jsx_runtime.JSX.Element;
|
|
1692
1702
|
|
|
1693
1703
|
interface Props$1 {
|
|
1694
|
-
|
|
1704
|
+
dashboard?: DashboardLike;
|
|
1705
|
+
open: boolean;
|
|
1706
|
+
onClose: () => void;
|
|
1707
|
+
onUpdate: (data: DashboardLike) => Promise<void>;
|
|
1695
1708
|
}
|
|
1696
|
-
declare const
|
|
1709
|
+
declare const EditDashboardDialog: ({ dashboard, open, onClose, onUpdate }: Props$1) => react_jsx_runtime.JSX.Element;
|
|
1697
1710
|
|
|
1698
1711
|
interface Props {
|
|
1699
|
-
|
|
1712
|
+
open: boolean;
|
|
1713
|
+
onClose: () => void;
|
|
1714
|
+
title: string;
|
|
1715
|
+
style: GroupStyleLike;
|
|
1716
|
+
highlightColor: string;
|
|
1717
|
+
onSave: (next: {
|
|
1718
|
+
title: string;
|
|
1719
|
+
style: GroupStyleLike;
|
|
1720
|
+
highlightColor: string;
|
|
1721
|
+
}) => void;
|
|
1722
|
+
}
|
|
1723
|
+
declare function EditGroupDialog({ open, onClose, title, style, highlightColor, onSave }: Props): react_jsx_runtime.JSX.Element;
|
|
1724
|
+
|
|
1725
|
+
type HighlightColorKey = '' | 'blue' | 'cyan' | 'pink' | 'yellow' | 'green' | 'lightblue' | 'purple' | 'red' | 'orange';
|
|
1726
|
+
interface HighlightColorMeta {
|
|
1727
|
+
key: Exclude<HighlightColorKey, ''>;
|
|
1728
|
+
name: string;
|
|
1729
|
+
}
|
|
1730
|
+
declare const HIGHLIGHT_COLORS: HighlightColorMeta[];
|
|
1731
|
+
declare const DEFAULT_HIGHLIGHT_KEY: Exclude<HighlightColorKey, ''>;
|
|
1732
|
+
declare function getHighlightHex(key: string | undefined, isDark: boolean): string | undefined;
|
|
1733
|
+
interface ResolvedHighlight {
|
|
1734
|
+
solid: string;
|
|
1735
|
+
foreground: string;
|
|
1700
1736
|
}
|
|
1701
|
-
declare
|
|
1737
|
+
declare function resolveHighlight(colorKey: string | undefined, isDark: boolean): ResolvedHighlight;
|
|
1738
|
+
declare function resolveHeaderStyle(style: GroupStyleLike | undefined, colorKey: string | undefined, isDark: boolean): React.CSSProperties;
|
|
1702
1739
|
|
|
1703
|
-
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 DashboardExtraLike, type DashboardLike, type DashboardVisibilityLike, DataControls, type DataSourceTypeLike, type EChartsHandle, type EChartsOption, EventsFunctionCategories, EventsFunctionMap, type FunctionDef, FunctionInput, FunctionMap, FunctionsCategories, FunctionsPanel, type GroupLike, type GroupStyleLike, 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, SvgIcon$2 as QueryValueIcon, ReactEChartsBase, type ReactEChartsProps, RefreshButton, RefreshContext, type ResponsiveLayoutsLike, ScatterChartTooltip, ScatterControls, SvgIcon$1 as ScatterIcon, SystemLabels, TableControls, SvgIcon as TableIcon, type TemplateVariableLike, type TemplateViewLike, TimeSeriesChart, type TimeSeriesChartProps, ValueControls, type ValueFormatter, ValueFormatters, ValueOptions, ValueStringMapping, type ViewActionContext, XAxisControls, type YAxisConfigLike, YaxisControls, defaultConfig$5 as defaultBarGaugeConfig, defaultConfig$2 as defaultDataConfig, defaultConfig$6 as defaultPieConfig, defaultConfig$1 as defaultScatterConfig, defaultConfig as defaultTableConfig, defaultConfig$4 as defaultValueConfig, defaultConfig$3 as defaultValueControlsConfig, getDefaultValueConfig, isAggrOrRollupFunction, sentioColors, sentioTheme, sentioThemeDark, sortMetricByName, useLabelSearch, useLabelSearchContext };
|
|
1740
|
+
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, DEFAULT_HIGHLIGHT_KEY, type DashboardExtraLike, type DashboardLike, type DashboardVisibilityLike, DataControls, type DataSourceTypeLike, type EChartsHandle, type EChartsOption, EditDashboardDialog, EditGroupDialog, EventsFunctionCategories, EventsFunctionMap, type FunctionDef, FunctionInput, FunctionMap, FunctionsCategories, FunctionsPanel, type GroupLike, type GroupStyleLike, HIGHLIGHT_COLORS, type HighlightColorKey, type HighlightColorMeta, 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, SvgIcon$2 as QueryValueIcon, ReactEChartsBase, type ReactEChartsProps, RefreshButton, RefreshContext, type ResolvedHighlight, type ResponsiveLayoutsLike, ScatterChartTooltip, ScatterControls, SvgIcon$1 as ScatterIcon, SystemLabels, TableControls, SvgIcon as TableIcon, type TemplateVariableLike, type TemplateViewLike, TimeSeriesChart, type TimeSeriesChartProps, ValueControls, type ValueFormatter, ValueFormatters, ValueOptions, ValueStringMapping, type ViewActionContext, XAxisControls, type YAxisConfigLike, YaxisControls, defaultConfig$5 as defaultBarGaugeConfig, defaultConfig$2 as defaultDataConfig, defaultConfig$6 as defaultPieConfig, defaultConfig$1 as defaultScatterConfig, defaultConfig as defaultTableConfig, defaultConfig$4 as defaultValueConfig, defaultConfig$3 as defaultValueControlsConfig, getDefaultValueConfig, getHighlightHex, isAggrOrRollupFunction, resolveHeaderStyle, resolveHighlight, sentioColors, sentioTheme, sentioThemeDark, sortMetricByName, useLabelSearch, useLabelSearchContext };
|