@tsiky/components-r19 1.6.13 → 1.6.15
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 +17 -17
- package/dist/chart.js +16 -4
- package/dist/components-r19.css +1 -1
- package/dist/index.cjs.js +1644 -1644
- package/dist/index.js +17001 -16901
- package/dist/src/components/AnnouncementForm/AnnouncementForm.d.ts +13 -0
- package/dist/src/components/AnnouncementForm/AnnouncementForm.d.ts.map +1 -1
- package/dist/src/components/ChartV2/ChartV2.d.ts.map +1 -1
- package/dist/src/components/Charts/boxplot-chart/BoxPlotChart.d.ts +1 -0
- package/dist/src/components/Charts/boxplot-chart/BoxPlotChart.d.ts.map +1 -1
- package/dist/src/components/DatePicker/DatePicker.d.ts +4 -0
- package/dist/src/components/DatePicker/DatePicker.d.ts.map +1 -1
- package/dist/src/components/FiltreEtiquette/FiltreEtiquette.d.ts +1 -0
- package/dist/src/components/FiltreEtiquette/FiltreEtiquette.d.ts.map +1 -1
- package/dist/src/components/IndicatorItemV2/IndicatorItemV2.d.ts +1 -0
- package/dist/src/components/IndicatorItemV2/IndicatorItemV2.d.ts.map +1 -1
- package/dist/src/components/Select/Select.d.ts +2 -0
- package/dist/src/components/Select/Select.d.ts.map +1 -1
- package/dist/src/components/SummaryAvailable/SummaryAvailable.d.ts +5 -5
- package/dist/src/components/SummaryAvailable/SummaryAvailable.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/chart.js
CHANGED
|
@@ -16057,7 +16057,8 @@ const ri = /* @__PURE__ */ gr(Nf), en = {
|
|
|
16057
16057
|
height: 420,
|
|
16058
16058
|
responsive: !0,
|
|
16059
16059
|
fontSize: "12px",
|
|
16060
|
-
fontWeight: "400"
|
|
16060
|
+
fontWeight: "400",
|
|
16061
|
+
columnWidth: "70%"
|
|
16061
16062
|
}, ep = ({ data: s, config: e = an }) => {
|
|
16062
16063
|
const t = { ...an, ...e }, i = [
|
|
16063
16064
|
{
|
|
@@ -16081,6 +16082,7 @@ const ri = /* @__PURE__ */ gr(Nf), en = {
|
|
|
16081
16082
|
},
|
|
16082
16083
|
plotOptions: {
|
|
16083
16084
|
boxPlot: {
|
|
16085
|
+
columnWidth: t.columnWidth,
|
|
16084
16086
|
colors: {
|
|
16085
16087
|
upper: t.colorUpper,
|
|
16086
16088
|
lower: t.colorLower
|
|
@@ -16091,8 +16093,18 @@ const ri = /* @__PURE__ */ gr(Nf), en = {
|
|
|
16091
16093
|
markers: { size: 0 },
|
|
16092
16094
|
tooltip: {
|
|
16093
16095
|
shared: !1,
|
|
16094
|
-
|
|
16095
|
-
|
|
16096
|
+
theme: "dark",
|
|
16097
|
+
custom: function({ seriesIndex: n, dataPointIndex: o, w: l }) {
|
|
16098
|
+
const c = l.globals.initialSeries[n].data[o].y;
|
|
16099
|
+
return !c || c.length !== 5 ? "" : [
|
|
16100
|
+
'<div style="padding:10px 14px;font-family:sans-serif;font-size:13px;line-height:1.9;">',
|
|
16101
|
+
`<div>max : <b>${c[4]}</b></div>`,
|
|
16102
|
+
`<div>q1 : <b>${c[3]}</b></div>`,
|
|
16103
|
+
`<div>median : <b>${c[2]}</b></div>`,
|
|
16104
|
+
`<div>q3 : <b>${c[1]}</b></div>`,
|
|
16105
|
+
`<div>min : <b>${c[0]}</b></div>`,
|
|
16106
|
+
"</div>"
|
|
16107
|
+
].join("");
|
|
16096
16108
|
}
|
|
16097
16109
|
},
|
|
16098
16110
|
grid: { borderColor: "#e6e6e6" },
|
|
@@ -16493,7 +16505,7 @@ const ri = /* @__PURE__ */ gr(Nf), en = {
|
|
|
16493
16505
|
]
|
|
16494
16506
|
}
|
|
16495
16507
|
) }),
|
|
16496
|
-
/* @__PURE__ */ U(
|
|
16508
|
+
!n && /* @__PURE__ */ U(
|
|
16497
16509
|
Bf,
|
|
16498
16510
|
{
|
|
16499
16511
|
onGoingColor: g,
|