@oliasoft-open-source/charts-library 4.4.0 → 4.4.2-beta-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
|
@@ -26460,7 +26460,7 @@ const styles$3 = {
|
|
|
26460
26460
|
isActive,
|
|
26461
26461
|
resizeContainer
|
|
26462
26462
|
};
|
|
26463
|
-
const SvgCircle = (props) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", ...props }, /* @__PURE__ */ React.createElement("circle", { cx: 12, cy: 12, r: 12, fill: "currentColor" }));
|
|
26463
|
+
const SvgCircle = (props) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "1em", height: "1em", ...props }, /* @__PURE__ */ React.createElement("circle", { cx: 12, cy: 12, r: 12, fill: "currentColor" }));
|
|
26464
26464
|
var ChartType = /* @__PURE__ */ ((ChartType2) => {
|
|
26465
26465
|
ChartType2["LINE"] = "line";
|
|
26466
26466
|
ChartType2["BAR"] = "bar";
|
|
@@ -26473,9 +26473,9 @@ var ChartDirection = /* @__PURE__ */ ((ChartDirection2) => {
|
|
|
26473
26473
|
ChartDirection2["HORIZONTAL"] = "horizontal";
|
|
26474
26474
|
return ChartDirection2;
|
|
26475
26475
|
})(ChartDirection || {});
|
|
26476
|
-
const SvgRect = (props) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", ...props }, /* @__PURE__ */ React.createElement("rect", { x: 2, y: 2, width: 20, height: 20, fill: "currentColor" }));
|
|
26477
|
-
const SvgRectRot = (props) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", ...props }, /* @__PURE__ */ React.createElement("rect", { x: 3, y: 3, width: 18, height: 18, fill: "currentColor", transform: "rotate(45 12 12)" }));
|
|
26478
|
-
const SvgTriangle = (props) => /* @__PURE__ */ React.createElement("svg", { height:
|
|
26476
|
+
const SvgRect = (props) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "1em", height: "1em", ...props }, /* @__PURE__ */ React.createElement("rect", { x: 2, y: 2, width: 20, height: 20, fill: "currentColor" }));
|
|
26477
|
+
const SvgRectRot = (props) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "1em", height: "1em", ...props }, /* @__PURE__ */ React.createElement("rect", { x: 3, y: 3, width: 18, height: 18, fill: "currentColor", transform: "rotate(45 12 12)" }));
|
|
26478
|
+
const SvgTriangle = (props) => /* @__PURE__ */ React.createElement("svg", { height: "1em", viewBox: "0 0 24 24", width: "1em", xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", ...props }, /* @__PURE__ */ React.createElement("path", { d: "m22.7998 22.0623h-21.5996c-.21066.0001-.417617-.0554-.600067-.1607-.182451-.1053-.333965-.2567-.439311-.4392-.1053464-.1824-.16081228-.3893-.160822-.6s.0554372-.4176.160767-.6l10.799833-18.70518c.1139-.17137.2684-.31191.4497-.40913.1814-.09722.3839-.14809.5897-.14809s.4083.05087.5897.14809c.1813.09722.3358.23776.4497.40913l10.7998 18.70518c.1054.1824.1608.3893.1608.6s-.0555.4176-.1608.6c-.1054.1825-.2569.3339-.4393.4392-.1825.1053-.3894.1608-.6001.1607z", fill: "currentColor" }));
|
|
26479
26479
|
const LEGEND_SYMBOL_SIZE$1 = 16;
|
|
26480
26480
|
const LineItem = ({ dataset }) => {
|
|
26481
26481
|
var _a2;
|
|
@@ -26487,6 +26487,8 @@ const LineItem = ({ dataset }) => {
|
|
|
26487
26487
|
{
|
|
26488
26488
|
xmlns: "http://www.w3.org/2000/svg",
|
|
26489
26489
|
viewBox: `0 0 ${LEGEND_SYMBOL_SIZE$1} ${LEGEND_SYMBOL_SIZE$1}`,
|
|
26490
|
+
width: "100%",
|
|
26491
|
+
height: "100%",
|
|
26490
26492
|
children: /* @__PURE__ */ jsx(
|
|
26491
26493
|
"line",
|
|
26492
26494
|
{
|
|
@@ -40193,7 +40195,8 @@ const titleCallback = (tooltipItems, options) => {
|
|
|
40193
40195
|
};
|
|
40194
40196
|
const labelCallback = (tooltipItem) => {
|
|
40195
40197
|
const { raw, dataset } = tooltipItem ?? {};
|
|
40196
|
-
|
|
40198
|
+
const datapointLabel = raw == null ? void 0 : raw.label;
|
|
40199
|
+
return `${datapointLabel ?? (dataset == null ? void 0 : dataset.label)} ( x: ${customFormatNumber(
|
|
40197
40200
|
raw == null ? void 0 : raw.x
|
|
40198
40201
|
)} , y: ${customFormatNumber(raw == null ? void 0 : raw.y)} )`;
|
|
40199
40202
|
};
|