@sentio/ui-dashboard 0.2.0 → 0.2.1

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.js CHANGED
@@ -34,6 +34,7 @@ __export(index_exports, {
34
34
  AreaIcon: () => AreaIcon_default,
35
35
  ArgumentInput: () => ArgumentInput,
36
36
  ArgumentType: () => ArgumentType,
37
+ BarGaugeControls: () => BarGaugeControls,
37
38
  BarGuageIcon: () => BarGuageIcon_default,
38
39
  BarIcon: () => BarIcon_default,
39
40
  ChartLegend: () => ChartLegend,
@@ -43,9 +44,12 @@ __export(index_exports, {
43
44
  FunctionMap: () => FunctionMap,
44
45
  FunctionsCategories: () => FunctionsCategories,
45
46
  FunctionsPanel: () => FunctionsPanel,
47
+ LabelControls: () => LabelControls,
46
48
  LabelSearchProvider: () => LabelSearchProvider,
47
49
  LabelsInput: () => LabelsInput,
50
+ LineControls: () => LineControls,
48
51
  LineIcon: () => LineIcon_default,
52
+ PieChartControls: () => PieChartControls,
49
53
  PieIcon: () => PieIcon_default,
50
54
  QueryValueIcon: () => QueryValueIcon_default,
51
55
  ReactEChartsBase: () => ReactEChartsBase,
@@ -54,6 +58,8 @@ __export(index_exports, {
54
58
  ScatterIcon: () => ScatterIcon_default,
55
59
  SystemLabels: () => SystemLabels,
56
60
  TableIcon: () => TableIcon_default,
61
+ defaultBarGaugeConfig: () => defaultConfig2,
62
+ defaultPieConfig: () => defaultConfig,
57
63
  isAggrOrRollupFunction: () => isAggrOrRollupFunction,
58
64
  sentioColors: () => sentioColors,
59
65
  sentioTheme: () => sentioTheme,
@@ -2606,9 +2612,381 @@ var RefreshButton = (props) => {
2606
2612
  ) });
2607
2613
  };
2608
2614
 
2609
- // src/charts/icons/LineIcon.tsx
2615
+ // src/charts/options/LineControls.tsx
2616
+ var import_immer4 = require("immer");
2617
+ var import_ui_core8 = require("@sentio/ui-core");
2610
2618
  var import_jsx_runtime11 = require("react/jsx-runtime");
2611
- var SvgIcon = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
2619
+ var lineStyles = [
2620
+ { label: "Solid", value: "Solid" },
2621
+ { label: "Dotted", value: "Dotted" }
2622
+ ];
2623
+ var LineControls = ({ config, defaultOpen, onChange }) => {
2624
+ const setStyle = (style) => {
2625
+ onChange(
2626
+ (0, import_immer4.produce)(config || {}, (draft) => {
2627
+ draft.style = style;
2628
+ })
2629
+ );
2630
+ };
2631
+ const setSmooth = (smooth) => {
2632
+ onChange(
2633
+ (0, import_immer4.produce)(config || {}, (draft) => {
2634
+ draft.smooth = smooth;
2635
+ })
2636
+ );
2637
+ };
2638
+ return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
2639
+ import_ui_core8.DisclosurePanel,
2640
+ {
2641
+ title: "Line style",
2642
+ containerClassName: "w-full bg-default-bg",
2643
+ children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)("div", { className: "flex items-center gap-4", children: [
2644
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
2645
+ import_ui_core8.NewButtonGroup,
2646
+ {
2647
+ buttons: lineStyles,
2648
+ value: config?.style || "Solid",
2649
+ onChange: setStyle
2650
+ }
2651
+ ),
2652
+ /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
2653
+ import_ui_core8.Checkbox,
2654
+ {
2655
+ label: "Smooth Curves",
2656
+ checked: config?.smooth,
2657
+ onChange: setSmooth
2658
+ }
2659
+ )
2660
+ ] })
2661
+ }
2662
+ );
2663
+ };
2664
+
2665
+ // src/charts/options/LabelControls.tsx
2666
+ var import_react14 = require("react");
2667
+ var import_immer5 = require("immer");
2668
+ var import_ui_core9 = require("@sentio/ui-core");
2669
+ var import_jsx_runtime12 = require("react/jsx-runtime");
2670
+ var initialConfig = {
2671
+ columns: [],
2672
+ alias: ""
2673
+ };
2674
+ var LabelControls = ({ config, setConfig, defaultOpen }) => {
2675
+ (0, import_react14.useEffect)(() => {
2676
+ if (config?.columns && config.columns.length > 0 && !config.alias) {
2677
+ const aliasParts = [];
2678
+ config.columns.forEach((colConfig) => {
2679
+ if (!colConfig.name) return;
2680
+ if (colConfig.showLabel === false && colConfig.showValue === false) {
2681
+ } else if (colConfig.showValue === false) {
2682
+ aliasParts.push(colConfig.name);
2683
+ } else {
2684
+ aliasParts.push(`{{${colConfig.name}}}`);
2685
+ }
2686
+ });
2687
+ if (aliasParts.length > 0) {
2688
+ const migratedAlias = aliasParts.join(", ");
2689
+ setConfig(
2690
+ (0, import_immer5.produce)(config, (draft) => {
2691
+ draft.alias = migratedAlias;
2692
+ draft.columns = [];
2693
+ })
2694
+ );
2695
+ }
2696
+ }
2697
+ }, [config, setConfig]);
2698
+ const onAliasChanged = (alias) => {
2699
+ setConfig(
2700
+ (0, import_immer5.produce)(config ?? initialConfig, (draft) => {
2701
+ draft.alias = alias;
2702
+ })
2703
+ );
2704
+ };
2705
+ const _defaultOpen = (0, import_react14.useMemo)(() => {
2706
+ if (defaultOpen) {
2707
+ return true;
2708
+ }
2709
+ return config?.alias !== "" || config?.columns && config.columns.length > 0;
2710
+ }, [config, defaultOpen]);
2711
+ return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
2712
+ import_ui_core9.DisclosurePanel,
2713
+ {
2714
+ title: "Label Controls",
2715
+ defaultOpen: _defaultOpen,
2716
+ containerClassName: "w-full bg-default-bg",
2717
+ children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "flex items-center gap-2", children: [
2718
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "inline-flex h-8", children: [
2719
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("span", { className: "sm:text-icontent border-main inline-flex items-center rounded-l-md border border-r-0 bg-gray-50 px-2 font-medium", children: [
2720
+ "Label Alias",
2721
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
2722
+ import_ui_core9.HelpIcon,
2723
+ {
2724
+ text: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "text-icontent text-text-foreground", children: [
2725
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { children: "Series name override or template." }),
2726
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { children: [
2727
+ "Ex.",
2728
+ " ",
2729
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "text-primary mx-1 font-semibold italic", children: "{{contract}}" }),
2730
+ " ",
2731
+ "will be replaced with the value of the contract label."
2732
+ ] })
2733
+ ] })
2734
+ }
2735
+ )
2736
+ ] }),
2737
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
2738
+ "input",
2739
+ {
2740
+ type: "text",
2741
+ value: config?.alias || "",
2742
+ onChange: (e) => onAliasChanged(e.target.value),
2743
+ placeholder: "Enter alias...",
2744
+ className: "focus:border-primary-500 sm:text-icontent border-main inline-flex w-64 items-center rounded-r-md border px-2"
2745
+ }
2746
+ )
2747
+ ] }),
2748
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
2749
+ import_ui_core9.Button,
2750
+ {
2751
+ type: "button",
2752
+ role: "link",
2753
+ onClick: () => {
2754
+ setConfig(initialConfig);
2755
+ },
2756
+ children: "Reset"
2757
+ }
2758
+ )
2759
+ ] })
2760
+ }
2761
+ );
2762
+ };
2763
+
2764
+ // src/charts/options/PieChartControls.tsx
2765
+ var import_immer6 = require("immer");
2766
+ var import_lodash3 = require("lodash");
2767
+ var import_ui_core10 = require("@sentio/ui-core");
2768
+ var import_jsx_runtime13 = require("react/jsx-runtime");
2769
+ var defaultConfig = {
2770
+ pieType: "Pie",
2771
+ calculation: "LAST",
2772
+ showPercent: true,
2773
+ showValue: true,
2774
+ absValue: false
2775
+ };
2776
+ var CalculationItems = [
2777
+ { label: "Last", value: "LAST" },
2778
+ { label: "First", value: "FIRST" },
2779
+ { label: "Total", value: "TOTAL" },
2780
+ { label: "Mean", value: "MEAN" },
2781
+ { label: "Max", value: "MAX" },
2782
+ { label: "Min", value: "MIN" }
2783
+ ];
2784
+ var PieTypeItems = [
2785
+ { label: "Pie", value: "Pie" },
2786
+ { label: "Donut", value: "Donut" }
2787
+ ];
2788
+ function PieChartControls({ config, defaultOpen, onChange }) {
2789
+ config = (0, import_lodash3.defaults)(config, defaultConfig);
2790
+ function onCalculationChange(cal) {
2791
+ config && onChange((0, import_immer6.produce)(config, (draft) => void (draft.calculation = cal)));
2792
+ }
2793
+ function onPieTypeChange(pieType) {
2794
+ config && onChange((0, import_immer6.produce)(config, (draft) => void (draft.pieType = pieType)));
2795
+ }
2796
+ function toggle(field, value) {
2797
+ config && onChange(
2798
+ (0, import_immer6.produce)(config, (draft) => {
2799
+ draft[field] = value;
2800
+ })
2801
+ );
2802
+ }
2803
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
2804
+ import_ui_core10.DisclosurePanel,
2805
+ {
2806
+ title: "Pie Chart Options",
2807
+ defaultOpen,
2808
+ containerClassName: "w-full bg-default-bg",
2809
+ children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "flex items-center gap-4", children: [
2810
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "shadow-xs flex rounded-md", children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
2811
+ import_ui_core10.NewButtonGroup,
2812
+ {
2813
+ small: true,
2814
+ buttons: PieTypeItems,
2815
+ value: config.pieType,
2816
+ onChange: onPieTypeChange
2817
+ }
2818
+ ) }),
2819
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("div", { className: "shadow-xs flex rounded-md", children: [
2820
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("span", { className: "sm:text-ilabel border-main inline-flex items-center rounded-l-md border bg-gray-50 px-3 ", children: "Calculation" }),
2821
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
2822
+ "select",
2823
+ {
2824
+ value: config.calculation,
2825
+ className: "sm:text-ilabel text-text-foreground border-main inline-flex items-center rounded-r-md border border-l-0 pl-4 pr-7",
2826
+ onChange: (e) => onCalculationChange(e.target.value),
2827
+ children: CalculationItems.map((d) => {
2828
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("option", { value: d.value, children: d.label }, d.value);
2829
+ })
2830
+ }
2831
+ )
2832
+ ] }),
2833
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
2834
+ import_ui_core10.Checkbox,
2835
+ {
2836
+ checked: config?.showValue,
2837
+ onChange: (v) => toggle("showValue", v),
2838
+ label: "Show value",
2839
+ labelClassName: "whitespace-nowrap"
2840
+ }
2841
+ ),
2842
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
2843
+ import_ui_core10.Checkbox,
2844
+ {
2845
+ checked: config?.showPercent,
2846
+ onChange: (v) => toggle("showPercent", v),
2847
+ label: "Show percent",
2848
+ labelClassName: "whitespace-nowrap"
2849
+ }
2850
+ ),
2851
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
2852
+ import_ui_core10.Checkbox,
2853
+ {
2854
+ checked: config?.absValue,
2855
+ onChange: (v) => toggle("absValue", v),
2856
+ label: "Use absolute values",
2857
+ labelClassName: "whitespace-nowrap"
2858
+ }
2859
+ )
2860
+ ] })
2861
+ }
2862
+ );
2863
+ }
2864
+
2865
+ // src/charts/options/BarGaugeControls.tsx
2866
+ var import_immer7 = require("immer");
2867
+ var import_lodash4 = require("lodash");
2868
+ var import_ui_core11 = require("@sentio/ui-core");
2869
+ var import_jsx_runtime14 = require("react/jsx-runtime");
2870
+ var defaultConfig2 = {
2871
+ direction: "HORIZONTAL",
2872
+ calculation: "LAST",
2873
+ sort: {
2874
+ sortBy: "ByName",
2875
+ orderDesc: true
2876
+ }
2877
+ };
2878
+ var directionItems = [
2879
+ { label: "Horizontal", value: "HORIZONTAL" },
2880
+ { label: "Vertical", value: "VERTICAL" }
2881
+ ];
2882
+ var CalculationItems2 = [
2883
+ { label: "Last", value: "LAST" },
2884
+ { label: "First", value: "FIRST" },
2885
+ { label: "Total", value: "TOTAL" },
2886
+ { label: "Mean", value: "MEAN" },
2887
+ { label: "Max", value: "MAX" },
2888
+ { label: "Min", value: "MIN" }
2889
+ ];
2890
+ var sortByItems = [
2891
+ { label: "Name", value: "ByName" },
2892
+ { label: "Value", value: "ByValue" }
2893
+ ];
2894
+ var orderItems = [
2895
+ { label: "Ascendant", value: "false" },
2896
+ { label: "Descendant", value: "true" }
2897
+ ];
2898
+ function BarGaugeControls({ config, defaultOpen, onChange }) {
2899
+ config = (0, import_lodash4.defaults)(config, defaultConfig2);
2900
+ function onCalculationChange(cal) {
2901
+ config && onChange((0, import_immer7.produce)(config, (draft) => void (draft.calculation = cal)));
2902
+ }
2903
+ function onDirectionChange(dir) {
2904
+ config && onChange((0, import_immer7.produce)(config, (draft) => void (draft.direction = dir)));
2905
+ }
2906
+ function onOrderChange(orderDesc) {
2907
+ config && onChange(
2908
+ (0, import_immer7.produce)(config, (draft) => {
2909
+ draft.sort = draft.sort || {};
2910
+ draft.sort.orderDesc = orderDesc;
2911
+ })
2912
+ );
2913
+ }
2914
+ function onSortByChange(sortBy2) {
2915
+ config && onChange(
2916
+ (0, import_immer7.produce)(config, (draft) => {
2917
+ draft.sort = draft.sort || {};
2918
+ draft.sort.sortBy = sortBy2;
2919
+ })
2920
+ );
2921
+ }
2922
+ return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
2923
+ import_ui_core11.DisclosurePanel,
2924
+ {
2925
+ title: "Bar Gauge Options",
2926
+ defaultOpen,
2927
+ containerClassName: "w-full bg-default-bg",
2928
+ children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "flex items-center gap-4", children: [
2929
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "shadow-xs flex rounded-md", children: [
2930
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "sm:text-ilabel border-main inline-flex items-center rounded-l-md border bg-gray-50 px-3 ", children: "Direction" }),
2931
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
2932
+ "select",
2933
+ {
2934
+ value: config.direction,
2935
+ className: "sm:text-ilabel border-main text-text-foreground inline-flex items-center rounded-r-md border border-l-0 pl-4 pr-7",
2936
+ onChange: (e) => onDirectionChange(e.target.value),
2937
+ children: directionItems.map((d) => {
2938
+ return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("option", { value: d.value, children: d.label }, d.value);
2939
+ })
2940
+ }
2941
+ )
2942
+ ] }),
2943
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "shadow-xs flex rounded-md", children: [
2944
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "sm:text-ilabel border-main inline-flex items-center rounded-l-md border bg-gray-50 px-3 ", children: "Calculation" }),
2945
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
2946
+ "select",
2947
+ {
2948
+ value: config.calculation,
2949
+ className: "sm:text-ilabel border-main text-text-foreground inline-flex items-center rounded-r-md border border-l-0 pl-4 pr-7",
2950
+ onChange: (e) => onCalculationChange(e.target.value),
2951
+ children: CalculationItems2.map((d) => {
2952
+ return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("option", { value: d.value, children: d.label }, d.value);
2953
+ })
2954
+ }
2955
+ )
2956
+ ] }),
2957
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("div", { className: "shadow-xs flex rounded-md", children: [
2958
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "sm:text-ilabel border-main inline-flex items-center whitespace-nowrap rounded-l-md border bg-gray-50 px-3", children: "Sort by" }),
2959
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
2960
+ "select",
2961
+ {
2962
+ value: config?.sort?.sortBy,
2963
+ className: "sm:text-ilabel border-main text-text-foreground inline-flex items-center border border-l-0 pl-4 pr-7",
2964
+ onChange: (e) => onSortByChange(e.target.value),
2965
+ children: sortByItems.map((d) => {
2966
+ return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("option", { value: d.value, children: d.label }, d.value);
2967
+ })
2968
+ }
2969
+ ),
2970
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
2971
+ "select",
2972
+ {
2973
+ value: config?.sort?.orderDesc + "",
2974
+ className: "sm:text-ilabel border-main text-text-foreground inline-flex items-center rounded-r-md border border-l-0 pl-4 pr-7",
2975
+ onChange: (e) => onOrderChange(e.target.value === "true"),
2976
+ children: orderItems.map((d) => {
2977
+ return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("option", { value: d.value + "", children: d.label }, d.label);
2978
+ })
2979
+ }
2980
+ )
2981
+ ] })
2982
+ ] })
2983
+ }
2984
+ );
2985
+ }
2986
+
2987
+ // src/charts/icons/LineIcon.tsx
2988
+ var import_jsx_runtime15 = require("react/jsx-runtime");
2989
+ var SvgIcon = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
2612
2990
  "svg",
2613
2991
  {
2614
2992
  width: "14",
@@ -2618,22 +2996,22 @@ var SvgIcon = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(
2618
2996
  xmlns: "http://www.w3.org/2000/svg",
2619
2997
  className,
2620
2998
  children: [
2621
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("g", { clipPath: "url(#clip0_1774_9563)", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
2999
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("g", { clipPath: "url(#clip0_1774_9563)", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
2622
3000
  "path",
2623
3001
  {
2624
3002
  d: "M12.6191 13.1249H1.35352C1.21672 13.1249 1.10049 13.0771 1.00483 12.9814C0.909161 12.8857 0.861328 12.7695 0.861328 12.6327V1.35352C0.861328 1.21672 0.909161 1.10049 1.00483 1.00483C1.10049 0.909161 1.21672 0.861328 1.35352 0.861328C1.49031 0.861328 1.60654 0.909161 1.7022 1.00483C1.79787 1.10049 1.8457 1.21672 1.8457 1.35352V12.1405H12.6191C12.7559 12.1405 12.8722 12.1883 12.9678 12.284C13.0635 12.3797 13.1113 12.4959 13.1113 12.6327C13.1113 12.7695 13.0635 12.8857 12.9678 12.9814C12.8722 13.0771 12.7559 13.1249 12.6191 13.1249ZM5.26345 10.1582C5.0902 10.1582 4.95341 10.0853 4.85308 9.93945L2.7067 6.52127C2.63379 6.40285 2.61104 6.27758 2.63845 6.14545C2.66587 6.01333 2.73645 5.91081 2.8502 5.83789C2.96395 5.76497 3.08704 5.74222 3.21945 5.76964C3.35187 5.79706 3.45439 5.86545 3.52702 5.97483L5.05827 8.46333L5.68739 6.04352C5.72385 5.89768 5.81047 5.79283 5.94727 5.72895L8.43576 4.52583C8.55418 4.47099 8.67274 4.45962 8.79145 4.4917C8.91016 4.52379 9.00583 4.59437 9.07845 4.70345L10.3227 6.72689L12.155 1.21702C12.2005 1.08927 12.2826 0.993599 12.4013 0.930016C12.52 0.866432 12.6431 0.857245 12.7705 0.902453C12.898 0.947661 12.9936 1.02977 13.0575 1.14877C13.1214 1.26777 13.1306 1.39085 13.0851 1.51802L10.9247 8.03939C10.8608 8.24006 10.724 8.35177 10.5143 8.37452C10.3046 8.39727 10.1451 8.32202 10.0357 8.14877L8.46333 5.60558L6.59039 6.50814L5.74252 9.78939C5.68768 9.9991 5.55556 10.1177 5.34614 10.1451C5.31872 10.1541 5.29131 10.1586 5.26389 10.1586L5.26345 10.1582Z",
2625
3003
  fill: "currentColor"
2626
3004
  }
2627
3005
  ) }),
2628
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("clipPath", { id: "clip0_1774_9563", children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("rect", { width: "14", height: "14", fill: "white" }) }) })
3006
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("clipPath", { id: "clip0_1774_9563", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("rect", { width: "14", height: "14", fill: "white" }) }) })
2629
3007
  ]
2630
3008
  }
2631
3009
  );
2632
3010
  var LineIcon_default = SvgIcon;
2633
3011
 
2634
3012
  // src/charts/icons/AreaIcon.tsx
2635
- var import_jsx_runtime12 = require("react/jsx-runtime");
2636
- var SvgIcon2 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
3013
+ var import_jsx_runtime16 = require("react/jsx-runtime");
3014
+ var SvgIcon2 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
2637
3015
  "svg",
2638
3016
  {
2639
3017
  width: "14",
@@ -2643,22 +3021,22 @@ var SvgIcon2 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)
2643
3021
  xmlns: "http://www.w3.org/2000/svg",
2644
3022
  className,
2645
3023
  children: [
2646
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("g", { clipPath: "url(#clip0_1774_9545)", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
3024
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("g", { clipPath: "url(#clip0_1774_9545)", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
2647
3025
  "path",
2648
3026
  {
2649
3027
  d: "M12.6193 13.1249H1.35364C1.21685 13.1249 1.10062 13.0771 1.00495 12.9814C0.909284 12.8857 0.86145 12.7695 0.86145 12.6327V1.35352C0.86145 1.21672 0.909284 1.10049 1.00495 1.00483C1.10062 0.909161 1.21685 0.861328 1.35364 0.861328C1.49043 0.861328 1.60666 0.909161 1.70233 1.00483C1.79799 1.10049 1.84583 1.21672 1.84583 1.35352V12.1405H12.6193C12.7561 12.1405 12.8723 12.1883 12.968 12.284C13.0636 12.3797 13.1115 12.4959 13.1115 12.6327C13.1115 12.7695 13.0636 12.8857 12.968 12.9814C12.8723 13.0771 12.7561 13.1249 12.6193 13.1249ZM2.62501 10.9374L4.22451 8.08008C4.26097 8.0162 4.31566 7.97289 4.38858 7.95014C4.46149 7.92739 4.53441 7.92972 4.60733 7.95714L6.12501 8.66808L7.73851 6.33008C7.83885 6.19329 7.96193 6.16135 8.10776 6.23427L9.61189 6.99989L11.7994 3.56814C11.8633 3.46781 11.9521 3.43368 12.0658 3.46577C12.1796 3.49785 12.2366 3.5731 12.2369 3.69152V10.8009C12.2369 10.9467 12.1845 11.072 12.0798 11.1767C11.9751 11.2814 11.8498 11.3338 11.704 11.3338H2.87176C2.77143 11.3338 2.69399 11.2905 2.63945 11.2038C2.58491 11.1172 2.58039 11.0284 2.62589 10.9374H2.62501Z",
2650
3028
  fill: "currentColor"
2651
3029
  }
2652
3030
  ) }),
2653
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("clipPath", { id: "clip0_1774_9545", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("rect", { width: "14", height: "14", fill: "white" }) }) })
3031
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("clipPath", { id: "clip0_1774_9545", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("rect", { width: "14", height: "14", fill: "white" }) }) })
2654
3032
  ]
2655
3033
  }
2656
3034
  );
2657
3035
  var AreaIcon_default = SvgIcon2;
2658
3036
 
2659
3037
  // src/charts/icons/BarIcon.tsx
2660
- var import_jsx_runtime13 = require("react/jsx-runtime");
2661
- var SvgIcon3 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
3038
+ var import_jsx_runtime17 = require("react/jsx-runtime");
3039
+ var SvgIcon3 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
2662
3040
  "svg",
2663
3041
  {
2664
3042
  width: "14",
@@ -2667,7 +3045,7 @@ var SvgIcon3 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
2667
3045
  fill: "none",
2668
3046
  xmlns: "http://www.w3.org/2000/svg",
2669
3047
  className,
2670
- children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
3048
+ children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
2671
3049
  "path",
2672
3050
  {
2673
3051
  d: "M2.12791 1.5625V12.4375C2.12791 12.5938 2.07311 12.7267 1.96349 12.836C1.85387 12.9453 1.7207 13 1.56396 13C1.40722 13 1.27404 12.9453 1.16442 12.836C1.05481 12.7267 1 12.5938 1 12.4375V1.5625C1 1.40617 1.05481 1.27333 1.16442 1.164C1.27404 1.05467 1.40722 1 1.56396 1C1.7207 1 1.85387 1.05467 1.96349 1.164C2.07311 1.27333 2.12791 1.40617 2.12791 1.5625ZM1.56396 11.875H12.436C12.5928 11.875 12.726 11.9297 12.8356 12.039C12.9452 12.1483 13 12.2812 13 12.4375C13 12.5938 12.9452 12.7267 12.8356 12.836C12.726 12.9453 12.5928 13 12.436 13H1.56396C1.40722 13 1.27404 12.9453 1.16442 12.836C1.05481 12.7267 1 12.5938 1 12.4375C1 12.2812 1.05481 12.1483 1.16442 12.039C1.27404 11.9297 1.40722 11.875 1.56396 11.875ZM5.12014 4.578V10.375C5.12014 10.5313 5.06534 10.6642 4.95572 10.7735C4.8461 10.8828 4.71293 10.9375 4.55619 10.9375C4.39945 10.9375 4.26627 10.8828 4.15665 10.7735C4.04704 10.6642 3.99223 10.5313 3.99223 10.375V4.578C3.99223 4.42167 4.04704 4.28883 4.15665 4.1795C4.26627 4.07017 4.39945 4.0155 4.55619 4.0155C4.71293 4.0155 4.8461 4.07017 4.95572 4.1795C5.06534 4.28883 5.12014 4.42167 5.12014 4.578ZM11.1196 2.5465V10.3745C11.1196 10.5308 11.0648 10.6637 10.9552 10.773C10.8456 10.8823 10.7124 10.937 10.5557 10.937C10.3989 10.937 10.2658 10.8823 10.1562 10.773C10.0465 10.6637 9.99173 10.5308 9.99173 10.3745V2.5465C9.99173 2.39017 10.0465 2.25733 10.1562 2.148C10.2658 2.03867 10.3989 1.984 10.5557 1.984C10.7124 1.984 10.8456 2.03867 10.9552 2.148C11.0648 2.25733 11.1196 2.39017 11.1196 2.5465ZM8.11187 6.5465V10.3745C8.11187 10.5308 8.05706 10.6637 7.94745 10.773C7.83783 10.8823 7.70465 10.937 7.54792 10.937C7.39118 10.937 7.258 10.8823 7.14838 10.773C7.03877 10.6637 6.98396 10.5308 6.98396 10.3745V6.5465C6.98396 6.39017 7.03877 6.25733 7.14838 6.148C7.258 6.03867 7.39118 5.984 7.54792 5.984C7.69429 5.984 7.8248 6.03867 7.93943 6.148C8.05406 6.25733 8.11154 6.39017 8.11187 6.5465Z",
@@ -2679,8 +3057,8 @@ var SvgIcon3 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
2679
3057
  var BarIcon_default = SvgIcon3;
2680
3058
 
2681
3059
  // src/charts/icons/BarGuageIcon.tsx
2682
- var import_jsx_runtime14 = require("react/jsx-runtime");
2683
- var SvgIcon4 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
3060
+ var import_jsx_runtime18 = require("react/jsx-runtime");
3061
+ var SvgIcon4 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
2684
3062
  "svg",
2685
3063
  {
2686
3064
  width: "14",
@@ -2690,28 +3068,28 @@ var SvgIcon4 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)
2690
3068
  className,
2691
3069
  xmlns: "http://www.w3.org/2000/svg",
2692
3070
  children: [
2693
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
3071
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2694
3072
  "path",
2695
3073
  {
2696
3074
  d: "M2.12791 1.5625V12.4375C2.12791 12.5938 2.07311 12.7267 1.96349 12.836C1.85387 12.9453 1.7207 13 1.56396 13C1.40722 13 1.27404 12.9453 1.16442 12.836C1.05481 12.7267 1 12.5938 1 12.4375V1.5625C1 1.40617 1.05481 1.27333 1.16442 1.164C1.27404 1.05467 1.40722 1 1.56396 1C1.7207 1 1.85387 1.05467 1.96349 1.164C2.07311 1.27333 2.12791 1.40617 2.12791 1.5625ZM1.56396 11.875H12.436C12.5928 11.875 12.726 11.9297 12.8356 12.039C12.9452 12.1483 13 12.2812 13 12.4375C13 12.5938 12.9452 12.7267 12.8356 12.836C12.726 12.9453 12.5928 13 12.436 13H1.56396C1.40722 13 1.27404 12.9453 1.16442 12.836C1.05481 12.7267 1 12.5938 1 12.4375C1 12.2812 1.05481 12.1483 1.16442 12.039C1.27404 11.9297 1.40722 11.875 1.56396 11.875Z",
2697
3075
  fill: "currentColor"
2698
3076
  }
2699
3077
  ),
2700
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
3078
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2701
3079
  "path",
2702
3080
  {
2703
3081
  d: "M3.64159 4.02495H9.43859C9.59493 4.02495 9.72776 3.97014 9.83709 3.86052C9.94643 3.75091 10.0011 3.61773 10.0011 3.46099C10.0011 3.30425 9.94643 3.17108 9.83709 3.06146C9.72776 2.95184 9.59493 2.89703 9.43859 2.89703L3.64159 2.89703C3.48526 2.89703 3.35243 2.95184 3.24309 3.06146C3.13376 3.17108 3.07909 3.30425 3.07909 3.46099C3.07909 3.61773 3.13376 3.75091 3.24309 3.86052C3.35243 3.97014 3.48526 4.02495 3.64159 4.02495Z",
2704
3082
  fill: "currentColor"
2705
3083
  }
2706
3084
  ),
2707
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
3085
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2708
3086
  "path",
2709
3087
  {
2710
3088
  d: "M3.64209 10.0244H11.4701C11.6264 10.0244 11.7593 9.96964 11.8686 9.86002C11.9779 9.7504 12.0326 9.61723 12.0326 9.46049C12.0326 9.30375 11.9779 9.17057 11.8686 9.06096C11.7593 8.95134 11.6264 8.89653 11.4701 8.89653H3.64209C3.48576 8.89653 3.35293 8.95134 3.24359 9.06096C3.13426 9.17057 3.07959 9.30375 3.07959 9.46049C3.07959 9.61723 3.13426 9.7504 3.24359 9.86002C3.35293 9.96964 3.48576 10.0244 3.64209 10.0244Z",
2711
3089
  fill: "currentColor"
2712
3090
  }
2713
3091
  ),
2714
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
3092
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2715
3093
  "path",
2716
3094
  {
2717
3095
  d: "M3.64209 7.01668L7.47009 7.01668C7.62643 7.01634 7.75926 6.95886 7.86859 6.84423C7.97793 6.7296 8.03259 6.5991 8.03259 6.45272C8.03259 6.29598 7.97793 6.1628 7.86859 6.05319C7.75926 5.94357 7.62643 5.88876 7.47009 5.88876H3.64209C3.48576 5.88876 3.35293 5.94357 3.24359 6.05319C3.13426 6.1628 3.07959 6.29598 3.07959 6.45272C3.07959 6.60946 3.13426 6.74263 3.24359 6.85225C3.35293 6.96187 3.48576 7.01668 3.64209 7.01668Z",
@@ -2724,8 +3102,8 @@ var SvgIcon4 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)
2724
3102
  var BarGuageIcon_default = SvgIcon4;
2725
3103
 
2726
3104
  // src/charts/icons/PieIcon.tsx
2727
- var import_jsx_runtime15 = require("react/jsx-runtime");
2728
- var SvgIcon5 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
3105
+ var import_jsx_runtime19 = require("react/jsx-runtime");
3106
+ var SvgIcon5 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)(
2729
3107
  "svg",
2730
3108
  {
2731
3109
  width: "14",
@@ -2735,8 +3113,8 @@ var SvgIcon5 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)
2735
3113
  xmlns: "http://www.w3.org/2000/svg",
2736
3114
  className,
2737
3115
  children: [
2738
- /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("g", { clipPath: "url(#clip0_28267_7202)", children: [
2739
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
3116
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("g", { clipPath: "url(#clip0_28267_7202)", children: [
3117
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
2740
3118
  "path",
2741
3119
  {
2742
3120
  d: "M5.83329 1.86662C4.92079 2.07816 4.08149 2.52998 3.40247 3.17523C2.72345 3.82048 2.22942 4.63564 1.97164 5.53618C1.71386 6.43671 1.70171 7.38982 1.93644 8.29663C2.17118 9.20345 2.64426 10.0309 3.30661 10.6933C3.96896 11.3556 4.79646 11.8287 5.70327 12.0635C6.61009 12.2982 7.56319 12.286 8.46373 12.0283C9.36426 11.7705 10.1794 11.2765 10.8247 10.5974C11.4699 9.91841 11.9217 9.07912 12.1333 8.16662C12.1333 8.01191 12.0718 7.86353 11.9624 7.75414C11.853 7.64474 11.7047 7.58328 11.55 7.58328H7.58329C7.27387 7.58328 6.97713 7.46037 6.75833 7.24157C6.53954 7.02278 6.41662 6.72604 6.41662 6.41662V2.33328C6.40938 2.26417 6.38848 2.19719 6.35515 2.13621C6.32182 2.07524 6.27671 2.02149 6.22245 1.97808C6.16819 1.93467 6.10585 1.90247 6.03905 1.88333C5.97224 1.8642 5.90231 1.85852 5.83329 1.86662Z",
@@ -2746,7 +3124,7 @@ var SvgIcon5 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)
2746
3124
  strokeLinejoin: "round"
2747
3125
  }
2748
3126
  ),
2749
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
3127
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
2750
3128
  "path",
2751
3129
  {
2752
3130
  d: "M8.75 2.04175C9.49067 2.30255 10.1634 2.72617 10.7187 3.28142C11.2739 3.83668 11.6975 4.50941 11.9583 5.25008H9.33333C9.17862 5.25008 9.03025 5.18862 8.92085 5.07923C8.81146 4.96983 8.75 4.82146 8.75 4.66675V2.04175Z",
@@ -2757,15 +3135,15 @@ var SvgIcon5 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)
2757
3135
  }
2758
3136
  )
2759
3137
  ] }),
2760
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("clipPath", { id: "clip0_28267_7202", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("rect", { width: "14", height: "14", fill: "white" }) }) })
3138
+ /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("clipPath", { id: "clip0_28267_7202", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("rect", { width: "14", height: "14", fill: "white" }) }) })
2761
3139
  ]
2762
3140
  }
2763
3141
  );
2764
3142
  var PieIcon_default = SvgIcon5;
2765
3143
 
2766
3144
  // src/charts/icons/QueryValueIcon.tsx
2767
- var import_jsx_runtime16 = require("react/jsx-runtime");
2768
- var SvgIcon6 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
3145
+ var import_jsx_runtime20 = require("react/jsx-runtime");
3146
+ var SvgIcon6 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
2769
3147
  "svg",
2770
3148
  {
2771
3149
  width: "14",
@@ -2775,8 +3153,8 @@ var SvgIcon6 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)
2775
3153
  className,
2776
3154
  xmlns: "http://www.w3.org/2000/svg",
2777
3155
  children: [
2778
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("g", { clipPath: "url(#clip0_3670_4424)", children: [
2779
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
3156
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("g", { clipPath: "url(#clip0_3670_4424)", children: [
3157
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2780
3158
  "path",
2781
3159
  {
2782
3160
  d: "M11.5 1.5H2.5C1.67157 1.5 1 2.11561 1 2.875V11.125C1 11.8844 1.67157 12.5 2.5 12.5H11.5C12.3284 12.5 13 11.8844 13 11.125V2.875C13 2.11561 12.3284 1.5 11.5 1.5Z",
@@ -2786,35 +3164,35 @@ var SvgIcon6 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)
2786
3164
  strokeLinejoin: "round"
2787
3165
  }
2788
3166
  ),
2789
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
3167
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2790
3168
  "path",
2791
3169
  {
2792
3170
  d: "M7.98188 5.77273H6.39097L5.75461 5.13636L6.39097 4.5H7.98188L8.61824 5.13636L7.98188 5.77273Z",
2793
3171
  fill: "currentColor"
2794
3172
  }
2795
3173
  ),
2796
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
3174
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2797
3175
  "path",
2798
3176
  {
2799
3177
  d: "M7.98188 11.5H6.39097L5.75461 10.8637L6.39097 10.2273H7.98188L8.61824 10.8637L7.98188 11.5Z",
2800
3178
  fill: "currentColor"
2801
3179
  }
2802
3180
  ),
2803
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
3181
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2804
3182
  "path",
2805
3183
  {
2806
3184
  d: "M8.30005 9.90907V6.09089L8.93641 5.45453L9.57278 6.09089V9.90907L8.93641 10.5454L8.30005 9.90907Z",
2807
3185
  fill: "currentColor"
2808
3186
  }
2809
3187
  ),
2810
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
3188
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2811
3189
  "path",
2812
3190
  {
2813
3191
  d: "M4.80005 9.90907V6.09089L5.43641 5.45453L6.07278 6.09089V9.90907L5.43641 10.5454L4.80005 9.90907Z",
2814
3192
  fill: "currentColor"
2815
3193
  }
2816
3194
  ),
2817
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
3195
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2818
3196
  "path",
2819
3197
  {
2820
3198
  d: "M1 3.5L13 3.5",
@@ -2825,15 +3203,15 @@ var SvgIcon6 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)
2825
3203
  }
2826
3204
  )
2827
3205
  ] }),
2828
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("clipPath", { id: "clip0_3670_4424", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("rect", { width: "14", height: "14", fill: "white" }) }) })
3206
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("clipPath", { id: "clip0_3670_4424", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("rect", { width: "14", height: "14", fill: "white" }) }) })
2829
3207
  ]
2830
3208
  }
2831
3209
  );
2832
3210
  var QueryValueIcon_default = SvgIcon6;
2833
3211
 
2834
3212
  // src/charts/icons/ScatterIcon.tsx
2835
- var import_jsx_runtime17 = require("react/jsx-runtime");
2836
- var SvgIcon7 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
3213
+ var import_jsx_runtime21 = require("react/jsx-runtime");
3214
+ var SvgIcon7 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
2837
3215
  "svg",
2838
3216
  {
2839
3217
  width: "14",
@@ -2843,8 +3221,8 @@ var SvgIcon7 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)
2843
3221
  xmlns: "http://www.w3.org/2000/svg",
2844
3222
  className,
2845
3223
  children: [
2846
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("g", { clipPath: "url(#clip0_28248_7302)", children: [
2847
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
3224
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("g", { clipPath: "url(#clip0_28248_7302)", children: [
3225
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2848
3226
  "path",
2849
3227
  {
2850
3228
  d: "M1.75 1.75V12.25H12.25",
@@ -2854,7 +3232,7 @@ var SvgIcon7 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)
2854
3232
  strokeLinejoin: "round"
2855
3233
  }
2856
3234
  ),
2857
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
3235
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2858
3236
  "path",
2859
3237
  {
2860
3238
  d: "M4.66663 8.75879V8.76754",
@@ -2864,7 +3242,7 @@ var SvgIcon7 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)
2864
3242
  strokeLinejoin: "round"
2865
3243
  }
2866
3244
  ),
2867
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
3245
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2868
3246
  "path",
2869
3247
  {
2870
3248
  d: "M9.33337 9.34204V9.35079",
@@ -2874,7 +3252,7 @@ var SvgIcon7 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)
2874
3252
  strokeLinejoin: "round"
2875
3253
  }
2876
3254
  ),
2877
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
3255
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2878
3256
  "path",
2879
3257
  {
2880
3258
  d: "M4.66663 4.10083V4.10958",
@@ -2884,7 +3262,7 @@ var SvgIcon7 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)
2884
3262
  strokeLinejoin: "round"
2885
3263
  }
2886
3264
  ),
2887
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
3265
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2888
3266
  "path",
2889
3267
  {
2890
3268
  d: "M7 6.43408V6.44283",
@@ -2894,7 +3272,7 @@ var SvgIcon7 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)
2894
3272
  strokeLinejoin: "round"
2895
3273
  }
2896
3274
  ),
2897
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
3275
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2898
3276
  "path",
2899
3277
  {
2900
3278
  d: "M11.0834 6.43408V6.44283",
@@ -2905,15 +3283,15 @@ var SvgIcon7 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)
2905
3283
  }
2906
3284
  )
2907
3285
  ] }),
2908
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("clipPath", { id: "clip0_28248_7302", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("rect", { width: "14", height: "14", fill: "white" }) }) })
3286
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("clipPath", { id: "clip0_28248_7302", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("rect", { width: "14", height: "14", fill: "white" }) }) })
2909
3287
  ]
2910
3288
  }
2911
3289
  );
2912
3290
  var ScatterIcon_default = SvgIcon7;
2913
3291
 
2914
3292
  // src/charts/icons/TableIcon.tsx
2915
- var import_jsx_runtime18 = require("react/jsx-runtime");
2916
- var SvgIcon8 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
3293
+ var import_jsx_runtime22 = require("react/jsx-runtime");
3294
+ var SvgIcon8 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
2917
3295
  "svg",
2918
3296
  {
2919
3297
  width: "14",
@@ -2923,8 +3301,8 @@ var SvgIcon8 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)
2923
3301
  xmlns: "http://www.w3.org/2000/svg",
2924
3302
  className,
2925
3303
  children: [
2926
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("g", { clipPath: "url(#clip0_3670_4416)", children: [
2927
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
3304
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("g", { clipPath: "url(#clip0_3670_4416)", children: [
3305
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2928
3306
  "path",
2929
3307
  {
2930
3308
  d: "M11.5 2H2.5C1.67157 2 1 2.55964 1 3.25V10.75C1 11.4404 1.67157 12 2.5 12H11.5C12.3284 12 13 11.4404 13 10.75V3.25C13 2.55964 12.3284 2 11.5 2Z",
@@ -2934,7 +3312,7 @@ var SvgIcon8 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)
2934
3312
  strokeLinejoin: "round"
2935
3313
  }
2936
3314
  ),
2937
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
3315
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2938
3316
  "path",
2939
3317
  {
2940
3318
  d: "M1 5L13 5",
@@ -2944,7 +3322,7 @@ var SvgIcon8 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)
2944
3322
  strokeLinejoin: "round"
2945
3323
  }
2946
3324
  ),
2947
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
3325
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2948
3326
  "path",
2949
3327
  {
2950
3328
  d: "M6 2L6 12",
@@ -2955,7 +3333,7 @@ var SvgIcon8 = ({ className }) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)
2955
3333
  }
2956
3334
  )
2957
3335
  ] }),
2958
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("clipPath", { id: "clip0_3670_4416", children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("rect", { width: "14", height: "14", fill: "white" }) }) })
3336
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("clipPath", { id: "clip0_3670_4416", children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("rect", { width: "14", height: "14", fill: "white" }) }) })
2959
3337
  ]
2960
3338
  }
2961
3339
  );
@@ -2966,6 +3344,7 @@ var TableIcon_default = SvgIcon8;
2966
3344
  AreaIcon,
2967
3345
  ArgumentInput,
2968
3346
  ArgumentType,
3347
+ BarGaugeControls,
2969
3348
  BarGuageIcon,
2970
3349
  BarIcon,
2971
3350
  ChartLegend,
@@ -2975,9 +3354,12 @@ var TableIcon_default = SvgIcon8;
2975
3354
  FunctionMap,
2976
3355
  FunctionsCategories,
2977
3356
  FunctionsPanel,
3357
+ LabelControls,
2978
3358
  LabelSearchProvider,
2979
3359
  LabelsInput,
3360
+ LineControls,
2980
3361
  LineIcon,
3362
+ PieChartControls,
2981
3363
  PieIcon,
2982
3364
  QueryValueIcon,
2983
3365
  ReactEChartsBase,
@@ -2986,6 +3368,8 @@ var TableIcon_default = SvgIcon8;
2986
3368
  ScatterIcon,
2987
3369
  SystemLabels,
2988
3370
  TableIcon,
3371
+ defaultBarGaugeConfig,
3372
+ defaultPieConfig,
2989
3373
  isAggrOrRollupFunction,
2990
3374
  sentioColors,
2991
3375
  sentioTheme,