@sentio/ui-dashboard 0.3.9 → 0.3.10
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 +14 -0
- package/dist/index.css.map +1 -1
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -7695,27 +7695,27 @@ function QueryValueControls({
|
|
|
7695
7695
|
containerClassName: "w-full bg-default-bg",
|
|
7696
7696
|
children: /* @__PURE__ */ jsxs36("div", { className: "flex flex-wrap items-center gap-4", children: [
|
|
7697
7697
|
/* @__PURE__ */ jsxs36("div", { className: "shadow-xs flex h-8 rounded-md", children: [
|
|
7698
|
-
/* @__PURE__ */ jsx46("span", { className: "sm:text-ilabel border-main text-text-foreground inline-flex items-center whitespace-nowrap rounded-l-md border bg-gray-50 px-3", children: "For each series, calculate the" }),
|
|
7698
|
+
/* @__PURE__ */ jsx46("span", { className: "sm:text-ilabel border-main text-text-foreground inline-flex items-center whitespace-nowrap rounded-l-md border border-r-0 bg-gray-50 px-3", children: "For each series, calculate the" }),
|
|
7699
7699
|
/* @__PURE__ */ jsx46(
|
|
7700
7700
|
"select",
|
|
7701
7701
|
{
|
|
7702
7702
|
value: config?.calculation,
|
|
7703
|
-
className: "sm:text-ilabel border-main text-text-foreground inline-flex items-center border
|
|
7703
|
+
className: "sm:text-ilabel border-main text-text-foreground hover:border-primary-600 focus:border-primary-600 focus:ring-3 focus:ring-primary-600/30 inline-flex items-center border py-0.5 pl-4 pr-7 focus:relative focus:z-10 focus:outline-none",
|
|
7704
7704
|
onChange: (e) => onCalculationChange(e.target.value),
|
|
7705
7705
|
children: CalculationItems4.map((d) => /* @__PURE__ */ jsx46("option", { value: d.value, children: d.label }, d.value))
|
|
7706
7706
|
}
|
|
7707
7707
|
),
|
|
7708
|
-
/* @__PURE__ */ jsx46("span", { className: "sm:text-ilabel border-main text-text-foreground inline-flex items-center whitespace-nowrap border bg-gray-50 px-3", children: "value, then show the" }),
|
|
7708
|
+
/* @__PURE__ */ jsx46("span", { className: "sm:text-ilabel border-main text-text-foreground inline-flex items-center whitespace-nowrap border border-x-0 bg-gray-50 px-3", children: "value, then show the" }),
|
|
7709
7709
|
/* @__PURE__ */ jsx46(
|
|
7710
7710
|
"select",
|
|
7711
7711
|
{
|
|
7712
7712
|
value: config?.seriesCalculation,
|
|
7713
|
-
className: "sm:text-ilabel border-main text-text-foreground inline-flex items-center border
|
|
7713
|
+
className: "sm:text-ilabel border-main text-text-foreground hover:border-primary-600 focus:border-primary-600 focus:ring-3 focus:ring-primary-600/30 inline-flex items-center border py-0.5 pl-4 pr-7 focus:relative focus:z-10 focus:outline-none",
|
|
7714
7714
|
onChange: (e) => onSeriesCalculationChange(e.target.value),
|
|
7715
7715
|
children: CalculationItems4.map((d) => /* @__PURE__ */ jsx46("option", { value: d.value, children: d.label }, d.value))
|
|
7716
7716
|
}
|
|
7717
7717
|
),
|
|
7718
|
-
/* @__PURE__ */ jsx46("span", { className: "sm:text-ilabel border-main text-text-foreground inline-flex items-center whitespace-nowrap rounded-r-md border bg-gray-50 px-3", children: "value of multiple series" })
|
|
7718
|
+
/* @__PURE__ */ jsx46("span", { className: "sm:text-ilabel border-main text-text-foreground inline-flex items-center whitespace-nowrap rounded-r-md border-b border-r border-t bg-gray-50 px-3", children: "value of multiple series" })
|
|
7719
7719
|
] }),
|
|
7720
7720
|
/* @__PURE__ */ jsxs36("div", { className: "focus-within:ring-primary-500 shadow-xs border-main flex h-8 divide-x divide-gray-300 rounded-md border focus-within:border-transparent focus-within:ring-2", children: [
|
|
7721
7721
|
/* @__PURE__ */ jsx46("span", { className: "sm:text-ilabel text-text-foreground inline-flex items-center whitespace-nowrap rounded-l-md bg-gray-50 px-3", children: "Color Theme" }),
|