@tsiky/components-r19 1.6.106 → 1.6.107
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/chart.cjs.js +10 -10
- package/dist/chart.js +39 -7
- package/dist/components-r19.css +1 -1
- package/dist/index.cjs.js +5 -5
- package/dist/index.js +476 -473
- package/dist/src/components/NavItemV2/NavItemV2.d.ts.map +1 -1
- package/dist/src/components/PieChartV2/PieChartV2.d.ts.map +1 -1
- package/dist/src/components/SubHeaderContent/SubHeaderContent.d.ts +1 -0
- package/dist/src/components/SubHeaderContent/SubHeaderContent.d.ts.map +1 -1
- package/dist/src/components/SubHeaderNavItem/SubHeaderNavItem.d.ts +1 -0
- package/dist/src/components/SubHeaderNavItem/SubHeaderNavItem.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/chart.js
CHANGED
|
@@ -15891,13 +15891,45 @@ const Or = /* @__PURE__ */ qa(Du), Xu = ["#e24b33", "#e2b23a", "#6feff0", "#2f5b
|
|
|
15891
15891
|
i && /* @__PURE__ */ N(
|
|
15892
15892
|
oi,
|
|
15893
15893
|
{
|
|
15894
|
-
|
|
15895
|
-
|
|
15896
|
-
|
|
15897
|
-
|
|
15898
|
-
|
|
15899
|
-
|
|
15900
|
-
|
|
15894
|
+
content: ({ active: g, payload: p }) => {
|
|
15895
|
+
if (g && p && p.length) {
|
|
15896
|
+
const f = p[0], x = f.payload.fill || f.color;
|
|
15897
|
+
return /* @__PURE__ */ pe(
|
|
15898
|
+
"div",
|
|
15899
|
+
{
|
|
15900
|
+
style: {
|
|
15901
|
+
backgroundColor: a,
|
|
15902
|
+
border: "none",
|
|
15903
|
+
borderRadius: 4,
|
|
15904
|
+
padding: "8px 12px",
|
|
15905
|
+
color: x,
|
|
15906
|
+
fontSize: "12px",
|
|
15907
|
+
boxShadow: "0 2px 10px rgba(0,0,0,0.5)",
|
|
15908
|
+
display: "flex",
|
|
15909
|
+
alignItems: "center",
|
|
15910
|
+
gap: 8
|
|
15911
|
+
},
|
|
15912
|
+
children: [
|
|
15913
|
+
/* @__PURE__ */ N(
|
|
15914
|
+
"div",
|
|
15915
|
+
{
|
|
15916
|
+
style: {
|
|
15917
|
+
width: 8,
|
|
15918
|
+
height: 8,
|
|
15919
|
+
borderRadius: "50%",
|
|
15920
|
+
backgroundColor: x
|
|
15921
|
+
}
|
|
15922
|
+
}
|
|
15923
|
+
),
|
|
15924
|
+
/* @__PURE__ */ N("span", { style: { fontWeight: "bold" }, children: f.name }),
|
|
15925
|
+
/* @__PURE__ */ N("span", { children: ":" }),
|
|
15926
|
+
/* @__PURE__ */ N("span", { style: { fontWeight: "500" }, children: f.value })
|
|
15927
|
+
]
|
|
15928
|
+
}
|
|
15929
|
+
);
|
|
15930
|
+
}
|
|
15931
|
+
return null;
|
|
15932
|
+
}
|
|
15901
15933
|
}
|
|
15902
15934
|
),
|
|
15903
15935
|
t && /* @__PURE__ */ N(Fi, { content: u })
|