qlu-20-ui-library 1.7.21 → 1.7.22
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/build/qlu-20-ui-library.cjs +3 -3
- package/dist/build/qlu-20-ui-library.js +29 -8
- package/dist/components/Svg/Tick.d.ts +1 -1
- package/dist/types/components/Charts/StatsChart/StatsChart.js +7 -0
- package/dist/types/components/CompanyBarChartFinancialTab/index.js +0 -1
- package/dist/types/components/PrivateFinancialsLineGraph/index.js +0 -1
- package/dist/types/components/Svg/Tick.d.ts +1 -1
- package/dist/types/components/Svg/Tick.js +2 -2
- package/package.json +1 -1
|
@@ -4926,11 +4926,26 @@ const Die = ({
|
|
|
4926
4926
|
}
|
|
4927
4927
|
)
|
|
4928
4928
|
}
|
|
4929
|
-
), HM = ({
|
|
4930
|
-
|
|
4931
|
-
|
|
4932
|
-
|
|
4933
|
-
|
|
4929
|
+
), HM = ({ width: e = "24", height: t = "24" }) => /* @__PURE__ */ c.jsx(
|
|
4930
|
+
"svg",
|
|
4931
|
+
{
|
|
4932
|
+
width: e,
|
|
4933
|
+
height: t,
|
|
4934
|
+
viewBox: "0 0 25 24",
|
|
4935
|
+
fill: "none",
|
|
4936
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4937
|
+
children: /* @__PURE__ */ c.jsx(
|
|
4938
|
+
"path",
|
|
4939
|
+
{
|
|
4940
|
+
d: "M20.5714 6.5L10.5714 16.5L4.85715 10.7857",
|
|
4941
|
+
stroke: "#FF8D4E",
|
|
4942
|
+
"stroke-width": "2",
|
|
4943
|
+
"stroke-linecap": "round",
|
|
4944
|
+
"stroke-linejoin": "round"
|
|
4945
|
+
}
|
|
4946
|
+
)
|
|
4947
|
+
}
|
|
4948
|
+
), WM = ({
|
|
4934
4949
|
className: e = "",
|
|
4935
4950
|
width: t = "12",
|
|
4936
4951
|
height: n = "12"
|
|
@@ -57866,7 +57881,6 @@ const M0e = {
|
|
|
57866
57881
|
aspectRatio: 5,
|
|
57867
57882
|
maintainAspectRatio: !0,
|
|
57868
57883
|
scales: {
|
|
57869
|
-
offset: !0,
|
|
57870
57884
|
y: {
|
|
57871
57885
|
grace: "40%",
|
|
57872
57886
|
border: {
|
|
@@ -58437,6 +58451,11 @@ function H3e({
|
|
|
58437
58451
|
responsive: !0,
|
|
58438
58452
|
aspectRatio: 0,
|
|
58439
58453
|
maintainAspectRatio: !0,
|
|
58454
|
+
interaction: {
|
|
58455
|
+
mode: "index",
|
|
58456
|
+
// or "x"
|
|
58457
|
+
intersect: !1
|
|
58458
|
+
},
|
|
58440
58459
|
scales: {
|
|
58441
58460
|
y: {
|
|
58442
58461
|
display: s,
|
|
@@ -58515,7 +58534,10 @@ function H3e({
|
|
|
58515
58534
|
},
|
|
58516
58535
|
padding: 10,
|
|
58517
58536
|
borderWidth: 1,
|
|
58518
|
-
cornerRadius: 3
|
|
58537
|
+
cornerRadius: 3,
|
|
58538
|
+
filter: function(m) {
|
|
58539
|
+
return m.datasetIndex === 0;
|
|
58540
|
+
}
|
|
58519
58541
|
},
|
|
58520
58542
|
title: {
|
|
58521
58543
|
display: !1
|
|
@@ -60987,7 +61009,6 @@ const q0e = {
|
|
|
60987
61009
|
aspectRatio: 5,
|
|
60988
61010
|
maintainAspectRatio: !0,
|
|
60989
61011
|
scales: {
|
|
60990
|
-
offset: !0,
|
|
60991
61012
|
y: {
|
|
60992
61013
|
grace: "40%",
|
|
60993
61014
|
border: {
|
|
@@ -3,5 +3,5 @@ interface TickProps {
|
|
|
3
3
|
width?: string;
|
|
4
4
|
height?: string;
|
|
5
5
|
}
|
|
6
|
-
declare const Tick: ({
|
|
6
|
+
declare const Tick: ({ width, height }: TickProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export default Tick;
|
|
@@ -17,6 +17,10 @@ function StatsChart({ stats, median, xStepSize, yStepSize, xLabel, yLabel, chart
|
|
|
17
17
|
responsive: true,
|
|
18
18
|
aspectRatio: 0,
|
|
19
19
|
maintainAspectRatio: true,
|
|
20
|
+
interaction: {
|
|
21
|
+
mode: "index",
|
|
22
|
+
intersect: false
|
|
23
|
+
},
|
|
20
24
|
scales: {
|
|
21
25
|
y: {
|
|
22
26
|
display: displayYAxis,
|
|
@@ -96,6 +100,9 @@ function StatsChart({ stats, median, xStepSize, yStepSize, xLabel, yLabel, chart
|
|
|
96
100
|
padding: 10,
|
|
97
101
|
borderWidth: 1,
|
|
98
102
|
cornerRadius: 3,
|
|
103
|
+
filter: function (tooltipItem) {
|
|
104
|
+
return tooltipItem.datasetIndex === 0;
|
|
105
|
+
}
|
|
99
106
|
},
|
|
100
107
|
title: {
|
|
101
108
|
display: false,
|
|
@@ -3,5 +3,5 @@ interface TickProps {
|
|
|
3
3
|
width?: string;
|
|
4
4
|
height?: string;
|
|
5
5
|
}
|
|
6
|
-
declare const Tick: ({
|
|
6
|
+
declare const Tick: ({ width, height }: TickProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export default Tick;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
const Tick = ({
|
|
3
|
-
return (_jsx("svg", {
|
|
2
|
+
const Tick = ({ width = "24", height = "24" }) => {
|
|
3
|
+
return (_jsx("svg", { width: width, height: height, viewBox: "0 0 25 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M20.5714 6.5L10.5714 16.5L4.85715 10.7857", stroke: "#FF8D4E", "stroke-width": "2", "stroke-linecap": "round", "stroke-linejoin": "round" }) }));
|
|
4
4
|
};
|
|
5
5
|
export default Tick;
|