@texturehq/edges 1.38.0 → 1.39.0
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/{colors-CBDlvX1A.d.cts → colors-CHVRAhMu.d.cts} +5 -0
- package/dist/{colors-op_IMV5O.d.ts → colors-DPR5its4.d.ts} +5 -0
- package/dist/index.cjs +11 -11
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -2
- package/dist/index.d.ts +8 -2
- package/dist/index.js +11 -11
- package/dist/index.js.map +1 -1
- package/dist/server.d.cts +1 -1
- package/dist/server.d.ts +1 -1
- package/package.json +1 -1
|
@@ -222,6 +222,11 @@ interface TooltipEventItem {
|
|
|
222
222
|
interface TooltipSeries {
|
|
223
223
|
label: string;
|
|
224
224
|
value: number;
|
|
225
|
+
/**
|
|
226
|
+
* Lower bound for a min–max band series. When set, the tooltip renders the
|
|
227
|
+
* range `baselineValue–value` instead of a single value.
|
|
228
|
+
*/
|
|
229
|
+
baselineValue?: number;
|
|
225
230
|
/**
|
|
226
231
|
* Optional y-axis coordinate (in data space) where the focus highlight
|
|
227
232
|
* should be drawn for this series. Defaults to `value`. Used by stacked
|
|
@@ -222,6 +222,11 @@ interface TooltipEventItem {
|
|
|
222
222
|
interface TooltipSeries {
|
|
223
223
|
label: string;
|
|
224
224
|
value: number;
|
|
225
|
+
/**
|
|
226
|
+
* Lower bound for a min–max band series. When set, the tooltip renders the
|
|
227
|
+
* range `baselineValue–value` instead of a single value.
|
|
228
|
+
*/
|
|
229
|
+
baselineValue?: number;
|
|
225
230
|
/**
|
|
226
231
|
* Optional y-axis coordinate (in data space) where the focus highlight
|
|
227
232
|
* should be drawn for this series. Defaults to `value`. Used by stacked
|