@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.css +36 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +219 -15
- package/dist/index.d.ts +219 -15
- package/dist/index.js +434 -50
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +436 -50
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -2566,9 +2566,389 @@ var RefreshButton = (props) => {
|
|
|
2566
2566
|
) });
|
|
2567
2567
|
};
|
|
2568
2568
|
|
|
2569
|
-
// src/charts/
|
|
2569
|
+
// src/charts/options/LineControls.tsx
|
|
2570
|
+
import { produce as produce4 } from "immer";
|
|
2571
|
+
import {
|
|
2572
|
+
DisclosurePanel,
|
|
2573
|
+
NewButtonGroup as ButtonGroup,
|
|
2574
|
+
Checkbox
|
|
2575
|
+
} from "@sentio/ui-core";
|
|
2570
2576
|
import { jsx as jsx11, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
2571
|
-
var
|
|
2577
|
+
var lineStyles = [
|
|
2578
|
+
{ label: "Solid", value: "Solid" },
|
|
2579
|
+
{ label: "Dotted", value: "Dotted" }
|
|
2580
|
+
];
|
|
2581
|
+
var LineControls = ({ config, defaultOpen, onChange }) => {
|
|
2582
|
+
const setStyle = (style) => {
|
|
2583
|
+
onChange(
|
|
2584
|
+
produce4(config || {}, (draft) => {
|
|
2585
|
+
draft.style = style;
|
|
2586
|
+
})
|
|
2587
|
+
);
|
|
2588
|
+
};
|
|
2589
|
+
const setSmooth = (smooth) => {
|
|
2590
|
+
onChange(
|
|
2591
|
+
produce4(config || {}, (draft) => {
|
|
2592
|
+
draft.smooth = smooth;
|
|
2593
|
+
})
|
|
2594
|
+
);
|
|
2595
|
+
};
|
|
2596
|
+
return /* @__PURE__ */ jsx11(
|
|
2597
|
+
DisclosurePanel,
|
|
2598
|
+
{
|
|
2599
|
+
title: "Line style",
|
|
2600
|
+
containerClassName: "w-full bg-default-bg",
|
|
2601
|
+
children: /* @__PURE__ */ jsxs7("div", { className: "flex items-center gap-4", children: [
|
|
2602
|
+
/* @__PURE__ */ jsx11(
|
|
2603
|
+
ButtonGroup,
|
|
2604
|
+
{
|
|
2605
|
+
buttons: lineStyles,
|
|
2606
|
+
value: config?.style || "Solid",
|
|
2607
|
+
onChange: setStyle
|
|
2608
|
+
}
|
|
2609
|
+
),
|
|
2610
|
+
/* @__PURE__ */ jsx11(
|
|
2611
|
+
Checkbox,
|
|
2612
|
+
{
|
|
2613
|
+
label: "Smooth Curves",
|
|
2614
|
+
checked: config?.smooth,
|
|
2615
|
+
onChange: setSmooth
|
|
2616
|
+
}
|
|
2617
|
+
)
|
|
2618
|
+
] })
|
|
2619
|
+
}
|
|
2620
|
+
);
|
|
2621
|
+
};
|
|
2622
|
+
|
|
2623
|
+
// src/charts/options/LabelControls.tsx
|
|
2624
|
+
import { useEffect as useEffect6, useMemo as useMemo5 } from "react";
|
|
2625
|
+
import { produce as produce5 } from "immer";
|
|
2626
|
+
import { Button as NewButton2, DisclosurePanel as DisclosurePanel2, HelpIcon as HelpIcon2 } from "@sentio/ui-core";
|
|
2627
|
+
import { jsx as jsx12, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
2628
|
+
var initialConfig = {
|
|
2629
|
+
columns: [],
|
|
2630
|
+
alias: ""
|
|
2631
|
+
};
|
|
2632
|
+
var LabelControls = ({ config, setConfig, defaultOpen }) => {
|
|
2633
|
+
useEffect6(() => {
|
|
2634
|
+
if (config?.columns && config.columns.length > 0 && !config.alias) {
|
|
2635
|
+
const aliasParts = [];
|
|
2636
|
+
config.columns.forEach((colConfig) => {
|
|
2637
|
+
if (!colConfig.name) return;
|
|
2638
|
+
if (colConfig.showLabel === false && colConfig.showValue === false) {
|
|
2639
|
+
} else if (colConfig.showValue === false) {
|
|
2640
|
+
aliasParts.push(colConfig.name);
|
|
2641
|
+
} else {
|
|
2642
|
+
aliasParts.push(`{{${colConfig.name}}}`);
|
|
2643
|
+
}
|
|
2644
|
+
});
|
|
2645
|
+
if (aliasParts.length > 0) {
|
|
2646
|
+
const migratedAlias = aliasParts.join(", ");
|
|
2647
|
+
setConfig(
|
|
2648
|
+
produce5(config, (draft) => {
|
|
2649
|
+
draft.alias = migratedAlias;
|
|
2650
|
+
draft.columns = [];
|
|
2651
|
+
})
|
|
2652
|
+
);
|
|
2653
|
+
}
|
|
2654
|
+
}
|
|
2655
|
+
}, [config, setConfig]);
|
|
2656
|
+
const onAliasChanged = (alias) => {
|
|
2657
|
+
setConfig(
|
|
2658
|
+
produce5(config ?? initialConfig, (draft) => {
|
|
2659
|
+
draft.alias = alias;
|
|
2660
|
+
})
|
|
2661
|
+
);
|
|
2662
|
+
};
|
|
2663
|
+
const _defaultOpen = useMemo5(() => {
|
|
2664
|
+
if (defaultOpen) {
|
|
2665
|
+
return true;
|
|
2666
|
+
}
|
|
2667
|
+
return config?.alias !== "" || config?.columns && config.columns.length > 0;
|
|
2668
|
+
}, [config, defaultOpen]);
|
|
2669
|
+
return /* @__PURE__ */ jsx12(
|
|
2670
|
+
DisclosurePanel2,
|
|
2671
|
+
{
|
|
2672
|
+
title: "Label Controls",
|
|
2673
|
+
defaultOpen: _defaultOpen,
|
|
2674
|
+
containerClassName: "w-full bg-default-bg",
|
|
2675
|
+
children: /* @__PURE__ */ jsxs8("div", { className: "flex items-center gap-2", children: [
|
|
2676
|
+
/* @__PURE__ */ jsxs8("div", { className: "inline-flex h-8", children: [
|
|
2677
|
+
/* @__PURE__ */ jsxs8("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: [
|
|
2678
|
+
"Label Alias",
|
|
2679
|
+
/* @__PURE__ */ jsx12(
|
|
2680
|
+
HelpIcon2,
|
|
2681
|
+
{
|
|
2682
|
+
text: /* @__PURE__ */ jsxs8("div", { className: "text-icontent text-text-foreground", children: [
|
|
2683
|
+
/* @__PURE__ */ jsx12("div", { children: "Series name override or template." }),
|
|
2684
|
+
/* @__PURE__ */ jsxs8("div", { children: [
|
|
2685
|
+
"Ex.",
|
|
2686
|
+
" ",
|
|
2687
|
+
/* @__PURE__ */ jsx12("span", { className: "text-primary mx-1 font-semibold italic", children: "{{contract}}" }),
|
|
2688
|
+
" ",
|
|
2689
|
+
"will be replaced with the value of the contract label."
|
|
2690
|
+
] })
|
|
2691
|
+
] })
|
|
2692
|
+
}
|
|
2693
|
+
)
|
|
2694
|
+
] }),
|
|
2695
|
+
/* @__PURE__ */ jsx12(
|
|
2696
|
+
"input",
|
|
2697
|
+
{
|
|
2698
|
+
type: "text",
|
|
2699
|
+
value: config?.alias || "",
|
|
2700
|
+
onChange: (e) => onAliasChanged(e.target.value),
|
|
2701
|
+
placeholder: "Enter alias...",
|
|
2702
|
+
className: "focus:border-primary-500 sm:text-icontent border-main inline-flex w-64 items-center rounded-r-md border px-2"
|
|
2703
|
+
}
|
|
2704
|
+
)
|
|
2705
|
+
] }),
|
|
2706
|
+
/* @__PURE__ */ jsx12(
|
|
2707
|
+
NewButton2,
|
|
2708
|
+
{
|
|
2709
|
+
type: "button",
|
|
2710
|
+
role: "link",
|
|
2711
|
+
onClick: () => {
|
|
2712
|
+
setConfig(initialConfig);
|
|
2713
|
+
},
|
|
2714
|
+
children: "Reset"
|
|
2715
|
+
}
|
|
2716
|
+
)
|
|
2717
|
+
] })
|
|
2718
|
+
}
|
|
2719
|
+
);
|
|
2720
|
+
};
|
|
2721
|
+
|
|
2722
|
+
// src/charts/options/PieChartControls.tsx
|
|
2723
|
+
import { produce as produce6 } from "immer";
|
|
2724
|
+
import { defaults } from "lodash";
|
|
2725
|
+
import {
|
|
2726
|
+
Checkbox as Checkbox2,
|
|
2727
|
+
DisclosurePanel as DisclosurePanel3,
|
|
2728
|
+
NewButtonGroup as ButtonGroup2
|
|
2729
|
+
} from "@sentio/ui-core";
|
|
2730
|
+
import { jsx as jsx13, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
2731
|
+
var defaultConfig = {
|
|
2732
|
+
pieType: "Pie",
|
|
2733
|
+
calculation: "LAST",
|
|
2734
|
+
showPercent: true,
|
|
2735
|
+
showValue: true,
|
|
2736
|
+
absValue: false
|
|
2737
|
+
};
|
|
2738
|
+
var CalculationItems = [
|
|
2739
|
+
{ label: "Last", value: "LAST" },
|
|
2740
|
+
{ label: "First", value: "FIRST" },
|
|
2741
|
+
{ label: "Total", value: "TOTAL" },
|
|
2742
|
+
{ label: "Mean", value: "MEAN" },
|
|
2743
|
+
{ label: "Max", value: "MAX" },
|
|
2744
|
+
{ label: "Min", value: "MIN" }
|
|
2745
|
+
];
|
|
2746
|
+
var PieTypeItems = [
|
|
2747
|
+
{ label: "Pie", value: "Pie" },
|
|
2748
|
+
{ label: "Donut", value: "Donut" }
|
|
2749
|
+
];
|
|
2750
|
+
function PieChartControls({ config, defaultOpen, onChange }) {
|
|
2751
|
+
config = defaults(config, defaultConfig);
|
|
2752
|
+
function onCalculationChange(cal) {
|
|
2753
|
+
config && onChange(produce6(config, (draft) => void (draft.calculation = cal)));
|
|
2754
|
+
}
|
|
2755
|
+
function onPieTypeChange(pieType) {
|
|
2756
|
+
config && onChange(produce6(config, (draft) => void (draft.pieType = pieType)));
|
|
2757
|
+
}
|
|
2758
|
+
function toggle(field, value) {
|
|
2759
|
+
config && onChange(
|
|
2760
|
+
produce6(config, (draft) => {
|
|
2761
|
+
draft[field] = value;
|
|
2762
|
+
})
|
|
2763
|
+
);
|
|
2764
|
+
}
|
|
2765
|
+
return /* @__PURE__ */ jsx13(
|
|
2766
|
+
DisclosurePanel3,
|
|
2767
|
+
{
|
|
2768
|
+
title: "Pie Chart Options",
|
|
2769
|
+
defaultOpen,
|
|
2770
|
+
containerClassName: "w-full bg-default-bg",
|
|
2771
|
+
children: /* @__PURE__ */ jsxs9("div", { className: "flex items-center gap-4", children: [
|
|
2772
|
+
/* @__PURE__ */ jsx13("div", { className: "shadow-xs flex rounded-md", children: /* @__PURE__ */ jsx13(
|
|
2773
|
+
ButtonGroup2,
|
|
2774
|
+
{
|
|
2775
|
+
small: true,
|
|
2776
|
+
buttons: PieTypeItems,
|
|
2777
|
+
value: config.pieType,
|
|
2778
|
+
onChange: onPieTypeChange
|
|
2779
|
+
}
|
|
2780
|
+
) }),
|
|
2781
|
+
/* @__PURE__ */ jsxs9("div", { className: "shadow-xs flex rounded-md", children: [
|
|
2782
|
+
/* @__PURE__ */ jsx13("span", { className: "sm:text-ilabel border-main inline-flex items-center rounded-l-md border bg-gray-50 px-3 ", children: "Calculation" }),
|
|
2783
|
+
/* @__PURE__ */ jsx13(
|
|
2784
|
+
"select",
|
|
2785
|
+
{
|
|
2786
|
+
value: config.calculation,
|
|
2787
|
+
className: "sm:text-ilabel text-text-foreground border-main inline-flex items-center rounded-r-md border border-l-0 pl-4 pr-7",
|
|
2788
|
+
onChange: (e) => onCalculationChange(e.target.value),
|
|
2789
|
+
children: CalculationItems.map((d) => {
|
|
2790
|
+
return /* @__PURE__ */ jsx13("option", { value: d.value, children: d.label }, d.value);
|
|
2791
|
+
})
|
|
2792
|
+
}
|
|
2793
|
+
)
|
|
2794
|
+
] }),
|
|
2795
|
+
/* @__PURE__ */ jsx13(
|
|
2796
|
+
Checkbox2,
|
|
2797
|
+
{
|
|
2798
|
+
checked: config?.showValue,
|
|
2799
|
+
onChange: (v) => toggle("showValue", v),
|
|
2800
|
+
label: "Show value",
|
|
2801
|
+
labelClassName: "whitespace-nowrap"
|
|
2802
|
+
}
|
|
2803
|
+
),
|
|
2804
|
+
/* @__PURE__ */ jsx13(
|
|
2805
|
+
Checkbox2,
|
|
2806
|
+
{
|
|
2807
|
+
checked: config?.showPercent,
|
|
2808
|
+
onChange: (v) => toggle("showPercent", v),
|
|
2809
|
+
label: "Show percent",
|
|
2810
|
+
labelClassName: "whitespace-nowrap"
|
|
2811
|
+
}
|
|
2812
|
+
),
|
|
2813
|
+
/* @__PURE__ */ jsx13(
|
|
2814
|
+
Checkbox2,
|
|
2815
|
+
{
|
|
2816
|
+
checked: config?.absValue,
|
|
2817
|
+
onChange: (v) => toggle("absValue", v),
|
|
2818
|
+
label: "Use absolute values",
|
|
2819
|
+
labelClassName: "whitespace-nowrap"
|
|
2820
|
+
}
|
|
2821
|
+
)
|
|
2822
|
+
] })
|
|
2823
|
+
}
|
|
2824
|
+
);
|
|
2825
|
+
}
|
|
2826
|
+
|
|
2827
|
+
// src/charts/options/BarGaugeControls.tsx
|
|
2828
|
+
import { produce as produce7 } from "immer";
|
|
2829
|
+
import { defaults as defaults2 } from "lodash";
|
|
2830
|
+
import { DisclosurePanel as DisclosurePanel4 } from "@sentio/ui-core";
|
|
2831
|
+
import { jsx as jsx14, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
2832
|
+
var defaultConfig2 = {
|
|
2833
|
+
direction: "HORIZONTAL",
|
|
2834
|
+
calculation: "LAST",
|
|
2835
|
+
sort: {
|
|
2836
|
+
sortBy: "ByName",
|
|
2837
|
+
orderDesc: true
|
|
2838
|
+
}
|
|
2839
|
+
};
|
|
2840
|
+
var directionItems = [
|
|
2841
|
+
{ label: "Horizontal", value: "HORIZONTAL" },
|
|
2842
|
+
{ label: "Vertical", value: "VERTICAL" }
|
|
2843
|
+
];
|
|
2844
|
+
var CalculationItems2 = [
|
|
2845
|
+
{ label: "Last", value: "LAST" },
|
|
2846
|
+
{ label: "First", value: "FIRST" },
|
|
2847
|
+
{ label: "Total", value: "TOTAL" },
|
|
2848
|
+
{ label: "Mean", value: "MEAN" },
|
|
2849
|
+
{ label: "Max", value: "MAX" },
|
|
2850
|
+
{ label: "Min", value: "MIN" }
|
|
2851
|
+
];
|
|
2852
|
+
var sortByItems = [
|
|
2853
|
+
{ label: "Name", value: "ByName" },
|
|
2854
|
+
{ label: "Value", value: "ByValue" }
|
|
2855
|
+
];
|
|
2856
|
+
var orderItems = [
|
|
2857
|
+
{ label: "Ascendant", value: "false" },
|
|
2858
|
+
{ label: "Descendant", value: "true" }
|
|
2859
|
+
];
|
|
2860
|
+
function BarGaugeControls({ config, defaultOpen, onChange }) {
|
|
2861
|
+
config = defaults2(config, defaultConfig2);
|
|
2862
|
+
function onCalculationChange(cal) {
|
|
2863
|
+
config && onChange(produce7(config, (draft) => void (draft.calculation = cal)));
|
|
2864
|
+
}
|
|
2865
|
+
function onDirectionChange(dir) {
|
|
2866
|
+
config && onChange(produce7(config, (draft) => void (draft.direction = dir)));
|
|
2867
|
+
}
|
|
2868
|
+
function onOrderChange(orderDesc) {
|
|
2869
|
+
config && onChange(
|
|
2870
|
+
produce7(config, (draft) => {
|
|
2871
|
+
draft.sort = draft.sort || {};
|
|
2872
|
+
draft.sort.orderDesc = orderDesc;
|
|
2873
|
+
})
|
|
2874
|
+
);
|
|
2875
|
+
}
|
|
2876
|
+
function onSortByChange(sortBy2) {
|
|
2877
|
+
config && onChange(
|
|
2878
|
+
produce7(config, (draft) => {
|
|
2879
|
+
draft.sort = draft.sort || {};
|
|
2880
|
+
draft.sort.sortBy = sortBy2;
|
|
2881
|
+
})
|
|
2882
|
+
);
|
|
2883
|
+
}
|
|
2884
|
+
return /* @__PURE__ */ jsx14(
|
|
2885
|
+
DisclosurePanel4,
|
|
2886
|
+
{
|
|
2887
|
+
title: "Bar Gauge Options",
|
|
2888
|
+
defaultOpen,
|
|
2889
|
+
containerClassName: "w-full bg-default-bg",
|
|
2890
|
+
children: /* @__PURE__ */ jsxs10("div", { className: "flex items-center gap-4", children: [
|
|
2891
|
+
/* @__PURE__ */ jsxs10("div", { className: "shadow-xs flex rounded-md", children: [
|
|
2892
|
+
/* @__PURE__ */ jsx14("span", { className: "sm:text-ilabel border-main inline-flex items-center rounded-l-md border bg-gray-50 px-3 ", children: "Direction" }),
|
|
2893
|
+
/* @__PURE__ */ jsx14(
|
|
2894
|
+
"select",
|
|
2895
|
+
{
|
|
2896
|
+
value: config.direction,
|
|
2897
|
+
className: "sm:text-ilabel border-main text-text-foreground inline-flex items-center rounded-r-md border border-l-0 pl-4 pr-7",
|
|
2898
|
+
onChange: (e) => onDirectionChange(e.target.value),
|
|
2899
|
+
children: directionItems.map((d) => {
|
|
2900
|
+
return /* @__PURE__ */ jsx14("option", { value: d.value, children: d.label }, d.value);
|
|
2901
|
+
})
|
|
2902
|
+
}
|
|
2903
|
+
)
|
|
2904
|
+
] }),
|
|
2905
|
+
/* @__PURE__ */ jsxs10("div", { className: "shadow-xs flex rounded-md", children: [
|
|
2906
|
+
/* @__PURE__ */ jsx14("span", { className: "sm:text-ilabel border-main inline-flex items-center rounded-l-md border bg-gray-50 px-3 ", children: "Calculation" }),
|
|
2907
|
+
/* @__PURE__ */ jsx14(
|
|
2908
|
+
"select",
|
|
2909
|
+
{
|
|
2910
|
+
value: config.calculation,
|
|
2911
|
+
className: "sm:text-ilabel border-main text-text-foreground inline-flex items-center rounded-r-md border border-l-0 pl-4 pr-7",
|
|
2912
|
+
onChange: (e) => onCalculationChange(e.target.value),
|
|
2913
|
+
children: CalculationItems2.map((d) => {
|
|
2914
|
+
return /* @__PURE__ */ jsx14("option", { value: d.value, children: d.label }, d.value);
|
|
2915
|
+
})
|
|
2916
|
+
}
|
|
2917
|
+
)
|
|
2918
|
+
] }),
|
|
2919
|
+
/* @__PURE__ */ jsxs10("div", { className: "shadow-xs flex rounded-md", children: [
|
|
2920
|
+
/* @__PURE__ */ jsx14("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" }),
|
|
2921
|
+
/* @__PURE__ */ jsx14(
|
|
2922
|
+
"select",
|
|
2923
|
+
{
|
|
2924
|
+
value: config?.sort?.sortBy,
|
|
2925
|
+
className: "sm:text-ilabel border-main text-text-foreground inline-flex items-center border border-l-0 pl-4 pr-7",
|
|
2926
|
+
onChange: (e) => onSortByChange(e.target.value),
|
|
2927
|
+
children: sortByItems.map((d) => {
|
|
2928
|
+
return /* @__PURE__ */ jsx14("option", { value: d.value, children: d.label }, d.value);
|
|
2929
|
+
})
|
|
2930
|
+
}
|
|
2931
|
+
),
|
|
2932
|
+
/* @__PURE__ */ jsx14(
|
|
2933
|
+
"select",
|
|
2934
|
+
{
|
|
2935
|
+
value: config?.sort?.orderDesc + "",
|
|
2936
|
+
className: "sm:text-ilabel border-main text-text-foreground inline-flex items-center rounded-r-md border border-l-0 pl-4 pr-7",
|
|
2937
|
+
onChange: (e) => onOrderChange(e.target.value === "true"),
|
|
2938
|
+
children: orderItems.map((d) => {
|
|
2939
|
+
return /* @__PURE__ */ jsx14("option", { value: d.value + "", children: d.label }, d.label);
|
|
2940
|
+
})
|
|
2941
|
+
}
|
|
2942
|
+
)
|
|
2943
|
+
] })
|
|
2944
|
+
] })
|
|
2945
|
+
}
|
|
2946
|
+
);
|
|
2947
|
+
}
|
|
2948
|
+
|
|
2949
|
+
// src/charts/icons/LineIcon.tsx
|
|
2950
|
+
import { jsx as jsx15, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
2951
|
+
var SvgIcon = ({ className }) => /* @__PURE__ */ jsxs11(
|
|
2572
2952
|
"svg",
|
|
2573
2953
|
{
|
|
2574
2954
|
width: "14",
|
|
@@ -2578,22 +2958,22 @@ var SvgIcon = ({ className }) => /* @__PURE__ */ jsxs7(
|
|
|
2578
2958
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2579
2959
|
className,
|
|
2580
2960
|
children: [
|
|
2581
|
-
/* @__PURE__ */
|
|
2961
|
+
/* @__PURE__ */ jsx15("g", { clipPath: "url(#clip0_1774_9563)", children: /* @__PURE__ */ jsx15(
|
|
2582
2962
|
"path",
|
|
2583
2963
|
{
|
|
2584
2964
|
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",
|
|
2585
2965
|
fill: "currentColor"
|
|
2586
2966
|
}
|
|
2587
2967
|
) }),
|
|
2588
|
-
/* @__PURE__ */
|
|
2968
|
+
/* @__PURE__ */ jsx15("defs", { children: /* @__PURE__ */ jsx15("clipPath", { id: "clip0_1774_9563", children: /* @__PURE__ */ jsx15("rect", { width: "14", height: "14", fill: "white" }) }) })
|
|
2589
2969
|
]
|
|
2590
2970
|
}
|
|
2591
2971
|
);
|
|
2592
2972
|
var LineIcon_default = SvgIcon;
|
|
2593
2973
|
|
|
2594
2974
|
// src/charts/icons/AreaIcon.tsx
|
|
2595
|
-
import { jsx as
|
|
2596
|
-
var SvgIcon2 = ({ className }) => /* @__PURE__ */
|
|
2975
|
+
import { jsx as jsx16, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
2976
|
+
var SvgIcon2 = ({ className }) => /* @__PURE__ */ jsxs12(
|
|
2597
2977
|
"svg",
|
|
2598
2978
|
{
|
|
2599
2979
|
width: "14",
|
|
@@ -2603,22 +2983,22 @@ var SvgIcon2 = ({ className }) => /* @__PURE__ */ jsxs8(
|
|
|
2603
2983
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2604
2984
|
className,
|
|
2605
2985
|
children: [
|
|
2606
|
-
/* @__PURE__ */
|
|
2986
|
+
/* @__PURE__ */ jsx16("g", { clipPath: "url(#clip0_1774_9545)", children: /* @__PURE__ */ jsx16(
|
|
2607
2987
|
"path",
|
|
2608
2988
|
{
|
|
2609
2989
|
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",
|
|
2610
2990
|
fill: "currentColor"
|
|
2611
2991
|
}
|
|
2612
2992
|
) }),
|
|
2613
|
-
/* @__PURE__ */
|
|
2993
|
+
/* @__PURE__ */ jsx16("defs", { children: /* @__PURE__ */ jsx16("clipPath", { id: "clip0_1774_9545", children: /* @__PURE__ */ jsx16("rect", { width: "14", height: "14", fill: "white" }) }) })
|
|
2614
2994
|
]
|
|
2615
2995
|
}
|
|
2616
2996
|
);
|
|
2617
2997
|
var AreaIcon_default = SvgIcon2;
|
|
2618
2998
|
|
|
2619
2999
|
// src/charts/icons/BarIcon.tsx
|
|
2620
|
-
import { jsx as
|
|
2621
|
-
var SvgIcon3 = ({ className }) => /* @__PURE__ */
|
|
3000
|
+
import { jsx as jsx17 } from "react/jsx-runtime";
|
|
3001
|
+
var SvgIcon3 = ({ className }) => /* @__PURE__ */ jsx17(
|
|
2622
3002
|
"svg",
|
|
2623
3003
|
{
|
|
2624
3004
|
width: "14",
|
|
@@ -2627,7 +3007,7 @@ var SvgIcon3 = ({ className }) => /* @__PURE__ */ jsx13(
|
|
|
2627
3007
|
fill: "none",
|
|
2628
3008
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2629
3009
|
className,
|
|
2630
|
-
children: /* @__PURE__ */
|
|
3010
|
+
children: /* @__PURE__ */ jsx17(
|
|
2631
3011
|
"path",
|
|
2632
3012
|
{
|
|
2633
3013
|
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",
|
|
@@ -2639,8 +3019,8 @@ var SvgIcon3 = ({ className }) => /* @__PURE__ */ jsx13(
|
|
|
2639
3019
|
var BarIcon_default = SvgIcon3;
|
|
2640
3020
|
|
|
2641
3021
|
// src/charts/icons/BarGuageIcon.tsx
|
|
2642
|
-
import { jsx as
|
|
2643
|
-
var SvgIcon4 = ({ className }) => /* @__PURE__ */
|
|
3022
|
+
import { jsx as jsx18, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
3023
|
+
var SvgIcon4 = ({ className }) => /* @__PURE__ */ jsxs13(
|
|
2644
3024
|
"svg",
|
|
2645
3025
|
{
|
|
2646
3026
|
width: "14",
|
|
@@ -2650,28 +3030,28 @@ var SvgIcon4 = ({ className }) => /* @__PURE__ */ jsxs9(
|
|
|
2650
3030
|
className,
|
|
2651
3031
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2652
3032
|
children: [
|
|
2653
|
-
/* @__PURE__ */
|
|
3033
|
+
/* @__PURE__ */ jsx18(
|
|
2654
3034
|
"path",
|
|
2655
3035
|
{
|
|
2656
3036
|
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",
|
|
2657
3037
|
fill: "currentColor"
|
|
2658
3038
|
}
|
|
2659
3039
|
),
|
|
2660
|
-
/* @__PURE__ */
|
|
3040
|
+
/* @__PURE__ */ jsx18(
|
|
2661
3041
|
"path",
|
|
2662
3042
|
{
|
|
2663
3043
|
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",
|
|
2664
3044
|
fill: "currentColor"
|
|
2665
3045
|
}
|
|
2666
3046
|
),
|
|
2667
|
-
/* @__PURE__ */
|
|
3047
|
+
/* @__PURE__ */ jsx18(
|
|
2668
3048
|
"path",
|
|
2669
3049
|
{
|
|
2670
3050
|
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",
|
|
2671
3051
|
fill: "currentColor"
|
|
2672
3052
|
}
|
|
2673
3053
|
),
|
|
2674
|
-
/* @__PURE__ */
|
|
3054
|
+
/* @__PURE__ */ jsx18(
|
|
2675
3055
|
"path",
|
|
2676
3056
|
{
|
|
2677
3057
|
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",
|
|
@@ -2684,8 +3064,8 @@ var SvgIcon4 = ({ className }) => /* @__PURE__ */ jsxs9(
|
|
|
2684
3064
|
var BarGuageIcon_default = SvgIcon4;
|
|
2685
3065
|
|
|
2686
3066
|
// src/charts/icons/PieIcon.tsx
|
|
2687
|
-
import { jsx as
|
|
2688
|
-
var SvgIcon5 = ({ className }) => /* @__PURE__ */
|
|
3067
|
+
import { jsx as jsx19, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
3068
|
+
var SvgIcon5 = ({ className }) => /* @__PURE__ */ jsxs14(
|
|
2689
3069
|
"svg",
|
|
2690
3070
|
{
|
|
2691
3071
|
width: "14",
|
|
@@ -2695,8 +3075,8 @@ var SvgIcon5 = ({ className }) => /* @__PURE__ */ jsxs10(
|
|
|
2695
3075
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2696
3076
|
className,
|
|
2697
3077
|
children: [
|
|
2698
|
-
/* @__PURE__ */
|
|
2699
|
-
/* @__PURE__ */
|
|
3078
|
+
/* @__PURE__ */ jsxs14("g", { clipPath: "url(#clip0_28267_7202)", children: [
|
|
3079
|
+
/* @__PURE__ */ jsx19(
|
|
2700
3080
|
"path",
|
|
2701
3081
|
{
|
|
2702
3082
|
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",
|
|
@@ -2706,7 +3086,7 @@ var SvgIcon5 = ({ className }) => /* @__PURE__ */ jsxs10(
|
|
|
2706
3086
|
strokeLinejoin: "round"
|
|
2707
3087
|
}
|
|
2708
3088
|
),
|
|
2709
|
-
/* @__PURE__ */
|
|
3089
|
+
/* @__PURE__ */ jsx19(
|
|
2710
3090
|
"path",
|
|
2711
3091
|
{
|
|
2712
3092
|
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",
|
|
@@ -2717,15 +3097,15 @@ var SvgIcon5 = ({ className }) => /* @__PURE__ */ jsxs10(
|
|
|
2717
3097
|
}
|
|
2718
3098
|
)
|
|
2719
3099
|
] }),
|
|
2720
|
-
/* @__PURE__ */
|
|
3100
|
+
/* @__PURE__ */ jsx19("defs", { children: /* @__PURE__ */ jsx19("clipPath", { id: "clip0_28267_7202", children: /* @__PURE__ */ jsx19("rect", { width: "14", height: "14", fill: "white" }) }) })
|
|
2721
3101
|
]
|
|
2722
3102
|
}
|
|
2723
3103
|
);
|
|
2724
3104
|
var PieIcon_default = SvgIcon5;
|
|
2725
3105
|
|
|
2726
3106
|
// src/charts/icons/QueryValueIcon.tsx
|
|
2727
|
-
import { jsx as
|
|
2728
|
-
var SvgIcon6 = ({ className }) => /* @__PURE__ */
|
|
3107
|
+
import { jsx as jsx20, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
3108
|
+
var SvgIcon6 = ({ className }) => /* @__PURE__ */ jsxs15(
|
|
2729
3109
|
"svg",
|
|
2730
3110
|
{
|
|
2731
3111
|
width: "14",
|
|
@@ -2735,8 +3115,8 @@ var SvgIcon6 = ({ className }) => /* @__PURE__ */ jsxs11(
|
|
|
2735
3115
|
className,
|
|
2736
3116
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2737
3117
|
children: [
|
|
2738
|
-
/* @__PURE__ */
|
|
2739
|
-
/* @__PURE__ */
|
|
3118
|
+
/* @__PURE__ */ jsxs15("g", { clipPath: "url(#clip0_3670_4424)", children: [
|
|
3119
|
+
/* @__PURE__ */ jsx20(
|
|
2740
3120
|
"path",
|
|
2741
3121
|
{
|
|
2742
3122
|
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",
|
|
@@ -2746,35 +3126,35 @@ var SvgIcon6 = ({ className }) => /* @__PURE__ */ jsxs11(
|
|
|
2746
3126
|
strokeLinejoin: "round"
|
|
2747
3127
|
}
|
|
2748
3128
|
),
|
|
2749
|
-
/* @__PURE__ */
|
|
3129
|
+
/* @__PURE__ */ jsx20(
|
|
2750
3130
|
"path",
|
|
2751
3131
|
{
|
|
2752
3132
|
d: "M7.98188 5.77273H6.39097L5.75461 5.13636L6.39097 4.5H7.98188L8.61824 5.13636L7.98188 5.77273Z",
|
|
2753
3133
|
fill: "currentColor"
|
|
2754
3134
|
}
|
|
2755
3135
|
),
|
|
2756
|
-
/* @__PURE__ */
|
|
3136
|
+
/* @__PURE__ */ jsx20(
|
|
2757
3137
|
"path",
|
|
2758
3138
|
{
|
|
2759
3139
|
d: "M7.98188 11.5H6.39097L5.75461 10.8637L6.39097 10.2273H7.98188L8.61824 10.8637L7.98188 11.5Z",
|
|
2760
3140
|
fill: "currentColor"
|
|
2761
3141
|
}
|
|
2762
3142
|
),
|
|
2763
|
-
/* @__PURE__ */
|
|
3143
|
+
/* @__PURE__ */ jsx20(
|
|
2764
3144
|
"path",
|
|
2765
3145
|
{
|
|
2766
3146
|
d: "M8.30005 9.90907V6.09089L8.93641 5.45453L9.57278 6.09089V9.90907L8.93641 10.5454L8.30005 9.90907Z",
|
|
2767
3147
|
fill: "currentColor"
|
|
2768
3148
|
}
|
|
2769
3149
|
),
|
|
2770
|
-
/* @__PURE__ */
|
|
3150
|
+
/* @__PURE__ */ jsx20(
|
|
2771
3151
|
"path",
|
|
2772
3152
|
{
|
|
2773
3153
|
d: "M4.80005 9.90907V6.09089L5.43641 5.45453L6.07278 6.09089V9.90907L5.43641 10.5454L4.80005 9.90907Z",
|
|
2774
3154
|
fill: "currentColor"
|
|
2775
3155
|
}
|
|
2776
3156
|
),
|
|
2777
|
-
/* @__PURE__ */
|
|
3157
|
+
/* @__PURE__ */ jsx20(
|
|
2778
3158
|
"path",
|
|
2779
3159
|
{
|
|
2780
3160
|
d: "M1 3.5L13 3.5",
|
|
@@ -2785,15 +3165,15 @@ var SvgIcon6 = ({ className }) => /* @__PURE__ */ jsxs11(
|
|
|
2785
3165
|
}
|
|
2786
3166
|
)
|
|
2787
3167
|
] }),
|
|
2788
|
-
/* @__PURE__ */
|
|
3168
|
+
/* @__PURE__ */ jsx20("defs", { children: /* @__PURE__ */ jsx20("clipPath", { id: "clip0_3670_4424", children: /* @__PURE__ */ jsx20("rect", { width: "14", height: "14", fill: "white" }) }) })
|
|
2789
3169
|
]
|
|
2790
3170
|
}
|
|
2791
3171
|
);
|
|
2792
3172
|
var QueryValueIcon_default = SvgIcon6;
|
|
2793
3173
|
|
|
2794
3174
|
// src/charts/icons/ScatterIcon.tsx
|
|
2795
|
-
import { jsx as
|
|
2796
|
-
var SvgIcon7 = ({ className }) => /* @__PURE__ */
|
|
3175
|
+
import { jsx as jsx21, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
3176
|
+
var SvgIcon7 = ({ className }) => /* @__PURE__ */ jsxs16(
|
|
2797
3177
|
"svg",
|
|
2798
3178
|
{
|
|
2799
3179
|
width: "14",
|
|
@@ -2803,8 +3183,8 @@ var SvgIcon7 = ({ className }) => /* @__PURE__ */ jsxs12(
|
|
|
2803
3183
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2804
3184
|
className,
|
|
2805
3185
|
children: [
|
|
2806
|
-
/* @__PURE__ */
|
|
2807
|
-
/* @__PURE__ */
|
|
3186
|
+
/* @__PURE__ */ jsxs16("g", { clipPath: "url(#clip0_28248_7302)", children: [
|
|
3187
|
+
/* @__PURE__ */ jsx21(
|
|
2808
3188
|
"path",
|
|
2809
3189
|
{
|
|
2810
3190
|
d: "M1.75 1.75V12.25H12.25",
|
|
@@ -2814,7 +3194,7 @@ var SvgIcon7 = ({ className }) => /* @__PURE__ */ jsxs12(
|
|
|
2814
3194
|
strokeLinejoin: "round"
|
|
2815
3195
|
}
|
|
2816
3196
|
),
|
|
2817
|
-
/* @__PURE__ */
|
|
3197
|
+
/* @__PURE__ */ jsx21(
|
|
2818
3198
|
"path",
|
|
2819
3199
|
{
|
|
2820
3200
|
d: "M4.66663 8.75879V8.76754",
|
|
@@ -2824,7 +3204,7 @@ var SvgIcon7 = ({ className }) => /* @__PURE__ */ jsxs12(
|
|
|
2824
3204
|
strokeLinejoin: "round"
|
|
2825
3205
|
}
|
|
2826
3206
|
),
|
|
2827
|
-
/* @__PURE__ */
|
|
3207
|
+
/* @__PURE__ */ jsx21(
|
|
2828
3208
|
"path",
|
|
2829
3209
|
{
|
|
2830
3210
|
d: "M9.33337 9.34204V9.35079",
|
|
@@ -2834,7 +3214,7 @@ var SvgIcon7 = ({ className }) => /* @__PURE__ */ jsxs12(
|
|
|
2834
3214
|
strokeLinejoin: "round"
|
|
2835
3215
|
}
|
|
2836
3216
|
),
|
|
2837
|
-
/* @__PURE__ */
|
|
3217
|
+
/* @__PURE__ */ jsx21(
|
|
2838
3218
|
"path",
|
|
2839
3219
|
{
|
|
2840
3220
|
d: "M4.66663 4.10083V4.10958",
|
|
@@ -2844,7 +3224,7 @@ var SvgIcon7 = ({ className }) => /* @__PURE__ */ jsxs12(
|
|
|
2844
3224
|
strokeLinejoin: "round"
|
|
2845
3225
|
}
|
|
2846
3226
|
),
|
|
2847
|
-
/* @__PURE__ */
|
|
3227
|
+
/* @__PURE__ */ jsx21(
|
|
2848
3228
|
"path",
|
|
2849
3229
|
{
|
|
2850
3230
|
d: "M7 6.43408V6.44283",
|
|
@@ -2854,7 +3234,7 @@ var SvgIcon7 = ({ className }) => /* @__PURE__ */ jsxs12(
|
|
|
2854
3234
|
strokeLinejoin: "round"
|
|
2855
3235
|
}
|
|
2856
3236
|
),
|
|
2857
|
-
/* @__PURE__ */
|
|
3237
|
+
/* @__PURE__ */ jsx21(
|
|
2858
3238
|
"path",
|
|
2859
3239
|
{
|
|
2860
3240
|
d: "M11.0834 6.43408V6.44283",
|
|
@@ -2865,15 +3245,15 @@ var SvgIcon7 = ({ className }) => /* @__PURE__ */ jsxs12(
|
|
|
2865
3245
|
}
|
|
2866
3246
|
)
|
|
2867
3247
|
] }),
|
|
2868
|
-
/* @__PURE__ */
|
|
3248
|
+
/* @__PURE__ */ jsx21("defs", { children: /* @__PURE__ */ jsx21("clipPath", { id: "clip0_28248_7302", children: /* @__PURE__ */ jsx21("rect", { width: "14", height: "14", fill: "white" }) }) })
|
|
2869
3249
|
]
|
|
2870
3250
|
}
|
|
2871
3251
|
);
|
|
2872
3252
|
var ScatterIcon_default = SvgIcon7;
|
|
2873
3253
|
|
|
2874
3254
|
// src/charts/icons/TableIcon.tsx
|
|
2875
|
-
import { jsx as
|
|
2876
|
-
var SvgIcon8 = ({ className }) => /* @__PURE__ */
|
|
3255
|
+
import { jsx as jsx22, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
3256
|
+
var SvgIcon8 = ({ className }) => /* @__PURE__ */ jsxs17(
|
|
2877
3257
|
"svg",
|
|
2878
3258
|
{
|
|
2879
3259
|
width: "14",
|
|
@@ -2883,8 +3263,8 @@ var SvgIcon8 = ({ className }) => /* @__PURE__ */ jsxs13(
|
|
|
2883
3263
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2884
3264
|
className,
|
|
2885
3265
|
children: [
|
|
2886
|
-
/* @__PURE__ */
|
|
2887
|
-
/* @__PURE__ */
|
|
3266
|
+
/* @__PURE__ */ jsxs17("g", { clipPath: "url(#clip0_3670_4416)", children: [
|
|
3267
|
+
/* @__PURE__ */ jsx22(
|
|
2888
3268
|
"path",
|
|
2889
3269
|
{
|
|
2890
3270
|
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",
|
|
@@ -2894,7 +3274,7 @@ var SvgIcon8 = ({ className }) => /* @__PURE__ */ jsxs13(
|
|
|
2894
3274
|
strokeLinejoin: "round"
|
|
2895
3275
|
}
|
|
2896
3276
|
),
|
|
2897
|
-
/* @__PURE__ */
|
|
3277
|
+
/* @__PURE__ */ jsx22(
|
|
2898
3278
|
"path",
|
|
2899
3279
|
{
|
|
2900
3280
|
d: "M1 5L13 5",
|
|
@@ -2904,7 +3284,7 @@ var SvgIcon8 = ({ className }) => /* @__PURE__ */ jsxs13(
|
|
|
2904
3284
|
strokeLinejoin: "round"
|
|
2905
3285
|
}
|
|
2906
3286
|
),
|
|
2907
|
-
/* @__PURE__ */
|
|
3287
|
+
/* @__PURE__ */ jsx22(
|
|
2908
3288
|
"path",
|
|
2909
3289
|
{
|
|
2910
3290
|
d: "M6 2L6 12",
|
|
@@ -2915,7 +3295,7 @@ var SvgIcon8 = ({ className }) => /* @__PURE__ */ jsxs13(
|
|
|
2915
3295
|
}
|
|
2916
3296
|
)
|
|
2917
3297
|
] }),
|
|
2918
|
-
/* @__PURE__ */
|
|
3298
|
+
/* @__PURE__ */ jsx22("defs", { children: /* @__PURE__ */ jsx22("clipPath", { id: "clip0_3670_4416", children: /* @__PURE__ */ jsx22("rect", { width: "14", height: "14", fill: "white" }) }) })
|
|
2919
3299
|
]
|
|
2920
3300
|
}
|
|
2921
3301
|
);
|
|
@@ -2925,6 +3305,7 @@ export {
|
|
|
2925
3305
|
AreaIcon_default as AreaIcon,
|
|
2926
3306
|
ArgumentInput,
|
|
2927
3307
|
ArgumentType,
|
|
3308
|
+
BarGaugeControls,
|
|
2928
3309
|
BarGuageIcon_default as BarGuageIcon,
|
|
2929
3310
|
BarIcon_default as BarIcon,
|
|
2930
3311
|
ChartLegend,
|
|
@@ -2934,9 +3315,12 @@ export {
|
|
|
2934
3315
|
FunctionMap,
|
|
2935
3316
|
FunctionsCategories,
|
|
2936
3317
|
FunctionsPanel,
|
|
3318
|
+
LabelControls,
|
|
2937
3319
|
LabelSearchProvider,
|
|
2938
3320
|
LabelsInput,
|
|
3321
|
+
LineControls,
|
|
2939
3322
|
LineIcon_default as LineIcon,
|
|
3323
|
+
PieChartControls,
|
|
2940
3324
|
PieIcon_default as PieIcon,
|
|
2941
3325
|
QueryValueIcon_default as QueryValueIcon,
|
|
2942
3326
|
ReactEChartsBase,
|
|
@@ -2945,6 +3329,8 @@ export {
|
|
|
2945
3329
|
ScatterIcon_default as ScatterIcon,
|
|
2946
3330
|
SystemLabels,
|
|
2947
3331
|
TableIcon_default as TableIcon,
|
|
3332
|
+
defaultConfig2 as defaultBarGaugeConfig,
|
|
3333
|
+
defaultConfig as defaultPieConfig,
|
|
2948
3334
|
isAggrOrRollupFunction,
|
|
2949
3335
|
sentioColors,
|
|
2950
3336
|
sentioTheme,
|