@coinbase/cds-mobile-visualization 3.3.0 → 3.4.0-beta.10
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/CHANGELOG.md +80 -0
- package/dts/chart/CartesianChart.d.ts +125 -0
- package/dts/chart/CartesianChart.d.ts.map +1 -0
- package/dts/chart/ChartContextBridge.d.ts +28 -0
- package/dts/chart/ChartContextBridge.d.ts.map +1 -0
- package/dts/chart/ChartProvider.d.ts +6 -0
- package/dts/chart/ChartProvider.d.ts.map +1 -0
- package/dts/chart/Path.d.ts +91 -0
- package/dts/chart/Path.d.ts.map +1 -0
- package/dts/chart/PeriodSelector.d.ts +85 -0
- package/dts/chart/PeriodSelector.d.ts.map +1 -0
- package/dts/chart/area/Area.d.ts +77 -0
- package/dts/chart/area/Area.d.ts.map +1 -0
- package/dts/chart/area/AreaChart.d.ts +131 -0
- package/dts/chart/area/AreaChart.d.ts.map +1 -0
- package/dts/chart/area/DottedArea.d.ts +46 -0
- package/dts/chart/area/DottedArea.d.ts.map +1 -0
- package/dts/chart/area/GradientArea.d.ts +36 -0
- package/dts/chart/area/GradientArea.d.ts.map +1 -0
- package/dts/chart/area/SolidArea.d.ts +23 -0
- package/dts/chart/area/SolidArea.d.ts.map +1 -0
- package/dts/chart/area/index.d.ts +6 -0
- package/dts/chart/area/index.d.ts.map +1 -0
- package/dts/chart/axis/Axis.d.ts +194 -0
- package/dts/chart/axis/Axis.d.ts.map +1 -0
- package/dts/chart/axis/DefaultAxisTickLabel.d.ts +8 -0
- package/dts/chart/axis/DefaultAxisTickLabel.d.ts.map +1 -0
- package/dts/chart/axis/XAxis.d.ts +16 -0
- package/dts/chart/axis/XAxis.d.ts.map +1 -0
- package/dts/chart/axis/YAxis.d.ts +21 -0
- package/dts/chart/axis/YAxis.d.ts.map +1 -0
- package/dts/chart/axis/index.d.ts +5 -0
- package/dts/chart/axis/index.d.ts.map +1 -0
- package/dts/chart/bar/Bar.d.ts +92 -0
- package/dts/chart/bar/Bar.d.ts.map +1 -0
- package/dts/chart/bar/BarChart.d.ts +113 -0
- package/dts/chart/bar/BarChart.d.ts.map +1 -0
- package/dts/chart/bar/BarPlot.d.ts +30 -0
- package/dts/chart/bar/BarPlot.d.ts.map +1 -0
- package/dts/chart/bar/BarStack.d.ts +102 -0
- package/dts/chart/bar/BarStack.d.ts.map +1 -0
- package/dts/chart/bar/BarStackGroup.d.ts +36 -0
- package/dts/chart/bar/BarStackGroup.d.ts.map +1 -0
- package/dts/chart/bar/DefaultBar.d.ts +7 -0
- package/dts/chart/bar/DefaultBar.d.ts.map +1 -0
- package/dts/chart/bar/DefaultBarStack.d.ts +7 -0
- package/dts/chart/bar/DefaultBarStack.d.ts.map +1 -0
- package/dts/chart/bar/index.d.ts +8 -0
- package/dts/chart/bar/index.d.ts.map +1 -0
- package/dts/chart/gradient/Gradient.d.ts +25 -0
- package/dts/chart/gradient/Gradient.d.ts.map +1 -0
- package/dts/chart/gradient/index.d.ts +2 -0
- package/dts/chart/gradient/index.d.ts.map +1 -0
- package/dts/chart/index.d.ts +15 -0
- package/dts/chart/index.d.ts.map +1 -0
- package/dts/chart/line/DefaultReferenceLineLabel.d.ts +9 -0
- package/dts/chart/line/DefaultReferenceLineLabel.d.ts.map +1 -0
- package/dts/chart/line/DottedLine.d.ts +20 -0
- package/dts/chart/line/DottedLine.d.ts.map +1 -0
- package/dts/chart/line/Line.d.ts +115 -0
- package/dts/chart/line/Line.d.ts.map +1 -0
- package/dts/chart/line/LineChart.d.ts +118 -0
- package/dts/chart/line/LineChart.d.ts.map +1 -0
- package/dts/chart/line/ReferenceLine.d.ts +139 -0
- package/dts/chart/line/ReferenceLine.d.ts.map +1 -0
- package/dts/chart/line/SolidLine.d.ts +15 -0
- package/dts/chart/line/SolidLine.d.ts.map +1 -0
- package/dts/chart/line/index.d.ts +7 -0
- package/dts/chart/line/index.d.ts.map +1 -0
- package/dts/chart/point/DefaultPointLabel.d.ts +10 -0
- package/dts/chart/point/DefaultPointLabel.d.ts.map +1 -0
- package/dts/chart/point/Point.d.ts +120 -0
- package/dts/chart/point/Point.d.ts.map +1 -0
- package/dts/chart/point/index.d.ts +3 -0
- package/dts/chart/point/index.d.ts.map +1 -0
- package/dts/chart/scrubber/DefaultScrubberBeacon.d.ts +8 -0
- package/dts/chart/scrubber/DefaultScrubberBeacon.d.ts.map +1 -0
- package/dts/chart/scrubber/DefaultScrubberBeaconLabel.d.ts +12 -0
- package/dts/chart/scrubber/DefaultScrubberBeaconLabel.d.ts.map +1 -0
- package/dts/chart/scrubber/DefaultScrubberLabel.d.ts +11 -0
- package/dts/chart/scrubber/DefaultScrubberLabel.d.ts.map +1 -0
- package/dts/chart/scrubber/Scrubber.d.ts +233 -0
- package/dts/chart/scrubber/Scrubber.d.ts.map +1 -0
- package/dts/chart/scrubber/ScrubberBeaconGroup.d.ts +44 -0
- package/dts/chart/scrubber/ScrubberBeaconGroup.d.ts.map +1 -0
- package/dts/chart/scrubber/ScrubberBeaconLabelGroup.d.ts +31 -0
- package/dts/chart/scrubber/ScrubberBeaconLabelGroup.d.ts.map +1 -0
- package/dts/chart/scrubber/ScrubberProvider.d.ts +20 -0
- package/dts/chart/scrubber/ScrubberProvider.d.ts.map +1 -0
- package/dts/chart/scrubber/index.d.ts +5 -0
- package/dts/chart/scrubber/index.d.ts.map +1 -0
- package/dts/chart/text/ChartText.d.ts +164 -0
- package/dts/chart/text/ChartText.d.ts.map +1 -0
- package/dts/chart/text/ChartTextGroup.d.ts +61 -0
- package/dts/chart/text/ChartTextGroup.d.ts.map +1 -0
- package/dts/chart/text/index.d.ts +3 -0
- package/dts/chart/text/index.d.ts.map +1 -0
- package/dts/chart/utils/axis.d.ts +342 -0
- package/dts/chart/utils/axis.d.ts.map +1 -0
- package/dts/chart/utils/bar.d.ts +20 -0
- package/dts/chart/utils/bar.d.ts.map +1 -0
- package/dts/chart/utils/chart.d.ts +124 -0
- package/dts/chart/utils/chart.d.ts.map +1 -0
- package/dts/chart/utils/context.d.ts +116 -0
- package/dts/chart/utils/context.d.ts.map +1 -0
- package/dts/chart/utils/gradient.d.ts +117 -0
- package/dts/chart/utils/gradient.d.ts.map +1 -0
- package/dts/chart/utils/index.d.ts +11 -0
- package/dts/chart/utils/index.d.ts.map +1 -0
- package/dts/chart/utils/path.d.ts +160 -0
- package/dts/chart/utils/path.d.ts.map +1 -0
- package/dts/chart/utils/point.d.ts +134 -0
- package/dts/chart/utils/point.d.ts.map +1 -0
- package/dts/chart/utils/scale.d.ts +134 -0
- package/dts/chart/utils/scale.d.ts.map +1 -0
- package/dts/chart/utils/scrubber.d.ts +39 -0
- package/dts/chart/utils/scrubber.d.ts.map +1 -0
- package/dts/chart/utils/transition.d.ts +140 -0
- package/dts/chart/utils/transition.d.ts.map +1 -0
- package/dts/index.d.ts +2 -1
- package/dts/index.d.ts.map +1 -1
- package/dts/sparkline/Counter.d.ts +7 -2
- package/dts/sparkline/Sparkline.d.ts +67 -16
- package/dts/sparkline/Sparkline.d.ts.map +1 -1
- package/dts/sparkline/SparklineArea.d.ts +10 -4
- package/dts/sparkline/SparklineArea.d.ts.map +1 -1
- package/dts/sparkline/SparklineAreaPattern.d.ts +12 -4
- package/dts/sparkline/SparklineAreaPattern.d.ts.map +1 -1
- package/dts/sparkline/SparklineGradient.d.ts +21 -10
- package/dts/sparkline/SparklineGradient.d.ts.map +1 -1
- package/dts/sparkline/__figma__/Sparkline.figma.d.ts +1 -1
- package/dts/sparkline/generateSparklineWithId.d.ts +8 -2
- package/dts/sparkline/generateSparklineWithId.d.ts.map +1 -1
- package/dts/sparkline/index.d.ts +1 -1
- package/dts/sparkline/sparkline-interactive/SparklineAccessibleView.d.ts +8 -3
- package/dts/sparkline/sparkline-interactive/SparklineInteractive.d.ts +132 -110
- package/dts/sparkline/sparkline-interactive/SparklineInteractive.d.ts.map +1 -1
- package/dts/sparkline/sparkline-interactive/SparklineInteractiveAnimatedPath.d.ts +22 -9
- package/dts/sparkline/sparkline-interactive/SparklineInteractiveAnimatedPath.d.ts.map +1 -1
- package/dts/sparkline/sparkline-interactive/SparklineInteractiveHoverDate.d.ts +18 -7
- package/dts/sparkline/sparkline-interactive/SparklineInteractiveLineVertical.d.ts +9 -4
- package/dts/sparkline/sparkline-interactive/SparklineInteractiveMarkerDates.d.ts +11 -6
- package/dts/sparkline/sparkline-interactive/SparklineInteractiveMinMax.d.ts +7 -5
- package/dts/sparkline/sparkline-interactive/SparklineInteractivePanGestureHandler.d.ts +22 -10
- package/dts/sparkline/sparkline-interactive/SparklineInteractivePaths.d.ts +21 -7
- package/dts/sparkline/sparkline-interactive/SparklineInteractivePaths.d.ts.map +1 -1
- package/dts/sparkline/sparkline-interactive/SparklineInteractivePeriodSelector.d.ts +21 -16
- package/dts/sparkline/sparkline-interactive/SparklineInteractiveProvider.d.ts +29 -23
- package/dts/sparkline/sparkline-interactive/SparklineInteractiveTimeseriesPaths.d.ts +22 -14
- package/dts/sparkline/sparkline-interactive/__figma__/SparklineInteractive.figma.d.ts +1 -1
- package/dts/sparkline/sparkline-interactive/useInterruptiblePathAnimation.d.ts +9 -5
- package/dts/sparkline/sparkline-interactive/useMinMaxTransform.d.ts +11 -6
- package/dts/sparkline/sparkline-interactive/useOpacityAnimation.d.ts +5 -2
- package/dts/sparkline/sparkline-interactive/useSparklineInteractiveConstants.d.ts +17 -17
- package/dts/sparkline/sparkline-interactive/useSparklineInteractiveLineStyles.d.ts +16 -13
- package/dts/sparkline/sparkline-interactive-header/SparklineInteractiveHeader.d.ts +106 -98
- package/dts/sparkline/sparkline-interactive-header/__figma__/SparklineInteractiveHeader.figma.d.ts +1 -1
- package/dts/sparkline/sparkline-interactive-header/useSparklineInteractiveHeaderStyles.d.ts +22 -19
- package/esm/chart/CartesianChart.js +335 -0
- package/esm/chart/ChartContextBridge.js +148 -0
- package/esm/chart/ChartProvider.js +10 -0
- package/esm/chart/Path.js +218 -0
- package/esm/chart/PeriodSelector.js +136 -0
- package/esm/chart/__stories__/CartesianChart.stories.js +723 -0
- package/esm/chart/__stories__/Chart.stories.js +77 -0
- package/esm/chart/__stories__/PeriodSelector.stories.js +322 -0
- package/esm/chart/area/Area.js +75 -0
- package/esm/chart/area/AreaChart.js +151 -0
- package/esm/chart/area/DottedArea.js +80 -0
- package/esm/chart/area/GradientArea.js +54 -0
- package/esm/chart/area/SolidArea.js +38 -0
- package/esm/chart/area/__stories__/AreaChart.stories.js +100 -0
- package/esm/chart/area/index.js +7 -0
- package/esm/chart/axis/Axis.js +45 -0
- package/esm/chart/axis/DefaultAxisTickLabel.js +11 -0
- package/esm/chart/axis/XAxis.js +188 -0
- package/esm/chart/axis/YAxis.js +177 -0
- package/esm/chart/axis/__stories__/Axis.stories.js +276 -0
- package/esm/chart/axis/index.js +6 -0
- package/esm/chart/bar/Bar.js +69 -0
- package/esm/chart/bar/BarChart.js +125 -0
- package/esm/chart/bar/BarPlot.js +102 -0
- package/esm/chart/bar/BarStack.js +551 -0
- package/esm/chart/bar/BarStackGroup.js +79 -0
- package/esm/chart/bar/DefaultBar.js +56 -0
- package/esm/chart/bar/DefaultBarStack.js +47 -0
- package/esm/chart/bar/__stories__/BarChart.stories.js +668 -0
- package/esm/chart/bar/index.js +9 -0
- package/esm/chart/gradient/Gradient.js +53 -0
- package/esm/chart/gradient/index.js +1 -0
- package/esm/chart/index.js +16 -0
- package/esm/chart/line/DefaultReferenceLineLabel.js +66 -0
- package/esm/chart/line/DottedLine.js +50 -0
- package/esm/chart/line/Line.js +178 -0
- package/esm/chart/line/LineChart.js +121 -0
- package/esm/chart/line/ReferenceLine.js +132 -0
- package/esm/chart/line/SolidLine.js +46 -0
- package/esm/chart/line/__stories__/LineChart.stories.js +2372 -0
- package/esm/chart/line/__stories__/ReferenceLine.stories.js +132 -0
- package/esm/chart/line/index.js +8 -0
- package/esm/chart/point/DefaultPointLabel.js +39 -0
- package/esm/chart/point/Point.js +188 -0
- package/esm/chart/point/index.js +2 -0
- package/esm/chart/scrubber/DefaultScrubberBeacon.js +179 -0
- package/esm/chart/scrubber/DefaultScrubberBeaconLabel.js +43 -0
- package/esm/chart/scrubber/DefaultScrubberLabel.js +28 -0
- package/esm/chart/scrubber/Scrubber.js +166 -0
- package/esm/chart/scrubber/ScrubberBeaconGroup.js +161 -0
- package/esm/chart/scrubber/ScrubberBeaconLabelGroup.js +185 -0
- package/esm/chart/scrubber/ScrubberProvider.js +135 -0
- package/esm/chart/scrubber/index.js +4 -0
- package/esm/chart/text/ChartText.js +305 -0
- package/esm/chart/text/ChartTextGroup.js +211 -0
- package/esm/chart/text/index.js +4 -0
- package/esm/chart/utils/axis.js +592 -0
- package/esm/chart/utils/bar.js +24 -0
- package/esm/chart/utils/chart.js +270 -0
- package/esm/chart/utils/context.js +15 -0
- package/esm/chart/utils/gradient.js +305 -0
- package/esm/chart/utils/index.js +12 -0
- package/esm/chart/utils/path.js +274 -0
- package/esm/chart/utils/point.js +229 -0
- package/esm/chart/utils/scale.js +277 -0
- package/esm/chart/utils/scrubber.js +139 -0
- package/esm/chart/utils/transition.js +185 -0
- package/esm/index.js +4 -1
- package/esm/sparkline/Sparkline.js +129 -16
- package/esm/sparkline/SparklineArea.js +7 -2
- package/esm/sparkline/SparklineAreaPattern.js +4 -2
- package/esm/sparkline/SparklineGradient.js +4 -0
- package/esm/sparkline/__stories__/Sparkline.stories.js +11 -7
- package/esm/sparkline/__stories__/SparklineGradient.stories.js +7 -4
- package/esm/sparkline/generateSparklineWithId.js +3 -2
- package/esm/sparkline/sparkline-interactive/SparklineInteractive.js +5 -1
- package/esm/sparkline/sparkline-interactive/SparklineInteractiveAnimatedPath.js +5 -2
- package/esm/sparkline/sparkline-interactive/SparklineInteractivePaths.js +4 -0
- package/esm/sparkline/sparkline-interactive/__stories__/SparklineInteractive.stories.js +76 -24
- package/esm/sparkline/sparkline-interactive-header/__stories__/SparklineInteractiveHeader.stories.js +17 -9
- package/package.json +17 -11
- package/dts/sparkline/__stories__/Sparkline.stories.d.ts +0 -3
- package/dts/sparkline/__stories__/Sparkline.stories.d.ts.map +0 -1
- package/dts/sparkline/__stories__/SparklineGradient.stories.d.ts +0 -3
- package/dts/sparkline/__stories__/SparklineGradient.stories.d.ts.map +0 -1
- package/dts/sparkline/sparkline-interactive/__stories__/SparklineInteractive.stories.d.ts +0 -3
- package/dts/sparkline/sparkline-interactive/__stories__/SparklineInteractive.stories.d.ts.map +0 -1
- package/dts/sparkline/sparkline-interactive/__tests__/SparklineInteractive.test.d.ts +0 -2
- package/dts/sparkline/sparkline-interactive/__tests__/SparklineInteractive.test.d.ts.map +0 -1
- package/dts/sparkline/sparkline-interactive/__tests__/SparklineInteractiveHoverDate.test.d.ts +0 -2
- package/dts/sparkline/sparkline-interactive/__tests__/SparklineInteractiveHoverDate.test.d.ts.map +0 -1
- package/dts/sparkline/sparkline-interactive/__tests__/SparklineInteractivePanGestureHandler.test.d.ts +0 -2
- package/dts/sparkline/sparkline-interactive/__tests__/SparklineInteractivePanGestureHandler.test.d.ts.map +0 -1
- package/dts/sparkline/sparkline-interactive/__tests__/SparklineInteractivePeriodSelector.test.d.ts +0 -2
- package/dts/sparkline/sparkline-interactive/__tests__/SparklineInteractivePeriodSelector.test.d.ts.map +0 -1
- package/dts/sparkline/sparkline-interactive/__tests__/SparklineInteractiveTimeseriesPaths.test.d.ts +0 -2
- package/dts/sparkline/sparkline-interactive/__tests__/SparklineInteractiveTimeseriesPaths.test.d.ts.map +0 -1
- package/dts/sparkline/sparkline-interactive/__tests__/useMinMaxTransform.test.d.ts +0 -2
- package/dts/sparkline/sparkline-interactive/__tests__/useMinMaxTransform.test.d.ts.map +0 -1
- package/dts/sparkline/sparkline-interactive/useInterruptiblePathAnimation.test.disable.d.ts +0 -2
- package/dts/sparkline/sparkline-interactive/useInterruptiblePathAnimation.test.disable.d.ts.map +0 -1
- package/dts/sparkline/sparkline-interactive-header/__stories__/SparklineInteractiveHeader.stories.d.ts +0 -4
- package/dts/sparkline/sparkline-interactive-header/__stories__/SparklineInteractiveHeader.stories.d.ts.map +0 -1
- package/dts/sparkline/sparkline-interactive-header/__tests__/SparklineInteractiveHeader.test.d.ts +0 -2
- package/dts/sparkline/sparkline-interactive-header/__tests__/SparklineInteractiveHeader.test.d.ts.map +0 -1
- package/dts/sparkline/sparkline-interactive-header/__tests__/useSparklineInteractiveHeaderStyles.test.d.ts +0 -2
- package/dts/sparkline/sparkline-interactive-header/__tests__/useSparklineInteractiveHeaderStyles.test.d.ts.map +0 -1
|
@@ -3,7 +3,7 @@ import React, { memo, useCallback, useMemo, useRef, useState } from 'react';
|
|
|
3
3
|
import { sparklineInteractiveData, sparklineInteractiveHoverData, strokeColor } from '@coinbase/cds-common/internal/visualizations/SparklineInteractiveData';
|
|
4
4
|
import { Example, ExampleScreen } from '@coinbase/cds-mobile/examples/ExampleScreen';
|
|
5
5
|
import { Box } from '@coinbase/cds-mobile/layout';
|
|
6
|
-
import {
|
|
6
|
+
import { Text } from '@coinbase/cds-mobile/typography';
|
|
7
7
|
import { SparklineInteractiveHeader } from '../../sparkline-interactive-header/SparklineInteractiveHeader';
|
|
8
8
|
import { SparklineInteractive } from '../SparklineInteractive';
|
|
9
9
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
@@ -175,7 +175,8 @@ const SparklineInteractiveScreen = () => {
|
|
|
175
175
|
children: [/*#__PURE__*/_jsx(Example, {
|
|
176
176
|
padding: 0,
|
|
177
177
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
178
|
-
children: [/*#__PURE__*/_jsx(
|
|
178
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
179
|
+
font: "title3",
|
|
179
180
|
paddingX: 3,
|
|
180
181
|
paddingY: 3,
|
|
181
182
|
children: "Default"
|
|
@@ -187,7 +188,8 @@ const SparklineInteractiveScreen = () => {
|
|
|
187
188
|
}), /*#__PURE__*/_jsx(Example, {
|
|
188
189
|
padding: 0,
|
|
189
190
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
190
|
-
children: [/*#__PURE__*/_jsx(
|
|
191
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
192
|
+
font: "title3",
|
|
191
193
|
paddingX: 3,
|
|
192
194
|
paddingY: 3,
|
|
193
195
|
children: "Compact"
|
|
@@ -200,7 +202,8 @@ const SparklineInteractiveScreen = () => {
|
|
|
200
202
|
}), /*#__PURE__*/_jsx(Example, {
|
|
201
203
|
padding: 0,
|
|
202
204
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
203
|
-
children: [/*#__PURE__*/_jsx(
|
|
205
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
206
|
+
font: "title3",
|
|
204
207
|
paddingX: 3,
|
|
205
208
|
paddingY: 3,
|
|
206
209
|
children: "Disable Scrubbing"
|
|
@@ -213,7 +216,8 @@ const SparklineInteractiveScreen = () => {
|
|
|
213
216
|
}), /*#__PURE__*/_jsx(Example, {
|
|
214
217
|
padding: 0,
|
|
215
218
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
216
|
-
children: [/*#__PURE__*/_jsx(
|
|
219
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
220
|
+
font: "title3",
|
|
217
221
|
paddingX: 3,
|
|
218
222
|
paddingY: 3,
|
|
219
223
|
children: "Hide period selector"
|
|
@@ -226,7 +230,8 @@ const SparklineInteractiveScreen = () => {
|
|
|
226
230
|
}), /*#__PURE__*/_jsx(Example, {
|
|
227
231
|
padding: 0,
|
|
228
232
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
229
|
-
children: [/*#__PURE__*/_jsx(
|
|
233
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
234
|
+
font: "title3",
|
|
230
235
|
paddingX: 3,
|
|
231
236
|
paddingY: 3,
|
|
232
237
|
children: "Hide min/max label"
|
|
@@ -239,7 +244,8 @@ const SparklineInteractiveScreen = () => {
|
|
|
239
244
|
}), /*#__PURE__*/_jsx(Example, {
|
|
240
245
|
padding: 0,
|
|
241
246
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
242
|
-
children: [/*#__PURE__*/_jsx(
|
|
247
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
248
|
+
font: "title3",
|
|
243
249
|
paddingX: 3,
|
|
244
250
|
paddingY: 3,
|
|
245
251
|
children: "Default period All"
|
|
@@ -252,7 +258,8 @@ const SparklineInteractiveScreen = () => {
|
|
|
252
258
|
}), /*#__PURE__*/_jsx(Example, {
|
|
253
259
|
padding: 0,
|
|
254
260
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
255
|
-
children: [/*#__PURE__*/_jsx(
|
|
261
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
262
|
+
font: "title3",
|
|
256
263
|
paddingX: 3,
|
|
257
264
|
paddingY: 3,
|
|
258
265
|
children: "Fill Disabled"
|
|
@@ -265,7 +272,8 @@ const SparklineInteractiveScreen = () => {
|
|
|
265
272
|
}), /*#__PURE__*/_jsx(Example, {
|
|
266
273
|
padding: 0,
|
|
267
274
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
268
|
-
children: [/*#__PURE__*/_jsx(
|
|
275
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
276
|
+
font: "title3",
|
|
269
277
|
paddingX: 3,
|
|
270
278
|
paddingY: 3,
|
|
271
279
|
children: "Y axis scaling"
|
|
@@ -278,7 +286,8 @@ const SparklineInteractiveScreen = () => {
|
|
|
278
286
|
}), /*#__PURE__*/_jsx(Example, {
|
|
279
287
|
padding: 0,
|
|
280
288
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
281
|
-
children: [/*#__PURE__*/_jsx(
|
|
289
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
290
|
+
font: "title3",
|
|
282
291
|
paddingX: 3,
|
|
283
292
|
paddingY: 3,
|
|
284
293
|
children: "Fallback"
|
|
@@ -289,7 +298,8 @@ const SparklineInteractiveScreen = () => {
|
|
|
289
298
|
}), /*#__PURE__*/_jsx(Example, {
|
|
290
299
|
padding: 0,
|
|
291
300
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
292
|
-
children: [/*#__PURE__*/_jsx(
|
|
301
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
302
|
+
font: "title3",
|
|
293
303
|
paddingX: 3,
|
|
294
304
|
paddingY: 3,
|
|
295
305
|
children: "Fallback Negative"
|
|
@@ -301,7 +311,8 @@ const SparklineInteractiveScreen = () => {
|
|
|
301
311
|
}), /*#__PURE__*/_jsx(Example, {
|
|
302
312
|
padding: 0,
|
|
303
313
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
304
|
-
children: [/*#__PURE__*/_jsx(
|
|
314
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
315
|
+
font: "title3",
|
|
305
316
|
paddingX: 3,
|
|
306
317
|
paddingY: 3,
|
|
307
318
|
children: "Fallback Compact"
|
|
@@ -313,7 +324,8 @@ const SparklineInteractiveScreen = () => {
|
|
|
313
324
|
}), /*#__PURE__*/_jsx(Example, {
|
|
314
325
|
padding: 0,
|
|
315
326
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
316
|
-
children: [/*#__PURE__*/_jsx(
|
|
327
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
328
|
+
font: "title3",
|
|
317
329
|
paddingX: 3,
|
|
318
330
|
paddingY: 3,
|
|
319
331
|
children: "No Hover Date"
|
|
@@ -326,7 +338,8 @@ const SparklineInteractiveScreen = () => {
|
|
|
326
338
|
}), /*#__PURE__*/_jsx(Example, {
|
|
327
339
|
padding: 0,
|
|
328
340
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
329
|
-
children: [/*#__PURE__*/_jsx(
|
|
341
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
342
|
+
font: "title3",
|
|
330
343
|
paddingX: 3,
|
|
331
344
|
paddingY: 3,
|
|
332
345
|
children: "With Header Node"
|
|
@@ -338,7 +351,8 @@ const SparklineInteractiveScreen = () => {
|
|
|
338
351
|
}), /*#__PURE__*/_jsx(Example, {
|
|
339
352
|
padding: 0,
|
|
340
353
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
341
|
-
children: [/*#__PURE__*/_jsx(
|
|
354
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
355
|
+
font: "title3",
|
|
342
356
|
paddingX: 3,
|
|
343
357
|
paddingY: 3,
|
|
344
358
|
children: "No padding"
|
|
@@ -352,7 +366,8 @@ const SparklineInteractiveScreen = () => {
|
|
|
352
366
|
}), /*#__PURE__*/_jsx(Example, {
|
|
353
367
|
padding: 4,
|
|
354
368
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
355
|
-
children: [/*#__PURE__*/_jsx(
|
|
369
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
370
|
+
font: "title3",
|
|
356
371
|
paddingY: 3,
|
|
357
372
|
children: "In Container With 4 padding"
|
|
358
373
|
}), /*#__PURE__*/_jsx(SparklineInteractiveWithHeaderBuild, {
|
|
@@ -365,7 +380,8 @@ const SparklineInteractiveScreen = () => {
|
|
|
365
380
|
}), /*#__PURE__*/_jsx(Example, {
|
|
366
381
|
padding: 0,
|
|
367
382
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
368
|
-
children: [/*#__PURE__*/_jsx(
|
|
383
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
384
|
+
font: "title3",
|
|
369
385
|
paddingX: 3,
|
|
370
386
|
paddingY: 3,
|
|
371
387
|
children: "Custom screen padding 6"
|
|
@@ -378,7 +394,8 @@ const SparklineInteractiveScreen = () => {
|
|
|
378
394
|
}), /*#__PURE__*/_jsx(Example, {
|
|
379
395
|
padding: 0,
|
|
380
396
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
381
|
-
children: [/*#__PURE__*/_jsx(
|
|
397
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
398
|
+
font: "title3",
|
|
382
399
|
paddingX: 3,
|
|
383
400
|
paddingY: 3,
|
|
384
401
|
children: "Hover data"
|
|
@@ -391,7 +408,8 @@ const SparklineInteractiveScreen = () => {
|
|
|
391
408
|
}), /*#__PURE__*/_jsx(Example, {
|
|
392
409
|
padding: 0,
|
|
393
410
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
394
|
-
children: [/*#__PURE__*/_jsx(
|
|
411
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
412
|
+
font: "title3",
|
|
395
413
|
paddingX: 3,
|
|
396
414
|
paddingY: 3,
|
|
397
415
|
children: "Auto Stoke Color"
|
|
@@ -403,7 +421,8 @@ const SparklineInteractiveScreen = () => {
|
|
|
403
421
|
}), /*#__PURE__*/_jsx(Example, {
|
|
404
422
|
padding: 0,
|
|
405
423
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
406
|
-
children: [/*#__PURE__*/_jsx(
|
|
424
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
425
|
+
font: "title3",
|
|
407
426
|
paddingX: 3,
|
|
408
427
|
paddingY: 3,
|
|
409
428
|
children: "Custom RGB Stoke Color"
|
|
@@ -415,7 +434,8 @@ const SparklineInteractiveScreen = () => {
|
|
|
415
434
|
}), /*#__PURE__*/_jsx(Example, {
|
|
416
435
|
padding: 0,
|
|
417
436
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
418
|
-
children: [/*#__PURE__*/_jsx(
|
|
437
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
438
|
+
font: "title3",
|
|
419
439
|
paddingX: 3,
|
|
420
440
|
paddingY: 3,
|
|
421
441
|
children: "Custom RGBA Stoke Color"
|
|
@@ -427,7 +447,8 @@ const SparklineInteractiveScreen = () => {
|
|
|
427
447
|
}), /*#__PURE__*/_jsx(Example, {
|
|
428
448
|
padding: 0,
|
|
429
449
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
430
|
-
children: [/*#__PURE__*/_jsx(
|
|
450
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
451
|
+
font: "title3",
|
|
431
452
|
paddingX: 3,
|
|
432
453
|
paddingY: 3,
|
|
433
454
|
children: "No Data In SelectedPeriod"
|
|
@@ -441,7 +462,8 @@ const SparklineInteractiveScreen = () => {
|
|
|
441
462
|
}), /*#__PURE__*/_jsx(Example, {
|
|
442
463
|
padding: 0,
|
|
443
464
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
444
|
-
children: [/*#__PURE__*/_jsx(
|
|
465
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
466
|
+
font: "title3",
|
|
445
467
|
paddingX: 3,
|
|
446
468
|
paddingY: 3,
|
|
447
469
|
children: "Enable Interaction When Outside"
|
|
@@ -454,7 +476,8 @@ const SparklineInteractiveScreen = () => {
|
|
|
454
476
|
}), /*#__PURE__*/_jsx(Example, {
|
|
455
477
|
padding: 0,
|
|
456
478
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
457
|
-
children: [/*#__PURE__*/_jsx(
|
|
479
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
480
|
+
font: "title3",
|
|
458
481
|
paddingX: 3,
|
|
459
482
|
paddingY: 3,
|
|
460
483
|
children: "Custom Node Header Styles"
|
|
@@ -468,6 +491,35 @@ const SparklineInteractiveScreen = () => {
|
|
|
468
491
|
}
|
|
469
492
|
})]
|
|
470
493
|
})
|
|
494
|
+
}), /*#__PURE__*/_jsx(Example, {
|
|
495
|
+
padding: 0,
|
|
496
|
+
children: /*#__PURE__*/_jsxs(Box, {
|
|
497
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
498
|
+
font: "title3",
|
|
499
|
+
paddingX: 3,
|
|
500
|
+
paddingY: 3,
|
|
501
|
+
children: "Dotted Fill Type"
|
|
502
|
+
}), /*#__PURE__*/_jsx(SparklineInteractiveBuild, {
|
|
503
|
+
data: sparklineInteractiveData,
|
|
504
|
+
fillType: "dotted",
|
|
505
|
+
strokeColor: strokeColor
|
|
506
|
+
})]
|
|
507
|
+
})
|
|
508
|
+
}), /*#__PURE__*/_jsx(Example, {
|
|
509
|
+
padding: 0,
|
|
510
|
+
children: /*#__PURE__*/_jsxs(Box, {
|
|
511
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
512
|
+
font: "title3",
|
|
513
|
+
paddingX: 3,
|
|
514
|
+
paddingY: 3,
|
|
515
|
+
children: "Y Scale Custom"
|
|
516
|
+
}), /*#__PURE__*/_jsx(SparklineInteractiveBuild, {
|
|
517
|
+
data: sparklineInteractiveData,
|
|
518
|
+
fillType: "dotted",
|
|
519
|
+
strokeColor: strokeColor,
|
|
520
|
+
yAxisScalingFactor: 0.1
|
|
521
|
+
})]
|
|
522
|
+
})
|
|
471
523
|
})]
|
|
472
524
|
});
|
|
473
525
|
};
|
package/esm/sparkline/sparkline-interactive-header/__stories__/SparklineInteractiveHeader.stories.js
CHANGED
|
@@ -6,7 +6,7 @@ import { IconButton } from '@coinbase/cds-mobile/buttons';
|
|
|
6
6
|
import { Example, ExampleScreen } from '@coinbase/cds-mobile/examples/ExampleScreen';
|
|
7
7
|
import { Icon } from '@coinbase/cds-mobile/icons';
|
|
8
8
|
import { Box, HStack } from '@coinbase/cds-mobile/layout';
|
|
9
|
-
import {
|
|
9
|
+
import { Text } from '@coinbase/cds-mobile/typography';
|
|
10
10
|
import { SparklineInteractive } from '../../sparkline-interactive/SparklineInteractive';
|
|
11
11
|
import { SparklineInteractiveHeader } from '../SparklineInteractiveHeader';
|
|
12
12
|
import { useSparklineInteractiveHeaderStyles } from '../useSparklineInteractiveHeaderStyles';
|
|
@@ -155,7 +155,8 @@ const HeaderLabel = () => {
|
|
|
155
155
|
active: true,
|
|
156
156
|
name: "wallet",
|
|
157
157
|
size: "s"
|
|
158
|
-
}), /*#__PURE__*/_jsx(
|
|
158
|
+
}), /*#__PURE__*/_jsx(Text, {
|
|
159
|
+
font: "title3",
|
|
159
160
|
children: "CustomHeader"
|
|
160
161
|
})]
|
|
161
162
|
});
|
|
@@ -468,7 +469,8 @@ const SparklineInteractiveHeaderScreen = () => {
|
|
|
468
469
|
children: [/*#__PURE__*/_jsx(Example, {
|
|
469
470
|
padding: 0,
|
|
470
471
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
471
|
-
children: [/*#__PURE__*/_jsx(
|
|
472
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
473
|
+
font: "title3",
|
|
472
474
|
paddingX: 3,
|
|
473
475
|
paddingY: 3,
|
|
474
476
|
children: "SparklineInteractive Header Example"
|
|
@@ -480,7 +482,8 @@ const SparklineInteractiveHeaderScreen = () => {
|
|
|
480
482
|
}), /*#__PURE__*/_jsx(Example, {
|
|
481
483
|
padding: 0,
|
|
482
484
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
483
|
-
children: [/*#__PURE__*/_jsx(
|
|
485
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
486
|
+
font: "title3",
|
|
484
487
|
paddingX: 3,
|
|
485
488
|
paddingY: 3,
|
|
486
489
|
children: "SparklineInteractive Header Trailing"
|
|
@@ -493,7 +496,8 @@ const SparklineInteractiveHeaderScreen = () => {
|
|
|
493
496
|
}), /*#__PURE__*/_jsx(Example, {
|
|
494
497
|
padding: 0,
|
|
495
498
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
496
|
-
children: [/*#__PURE__*/_jsx(
|
|
499
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
500
|
+
font: "title3",
|
|
497
501
|
paddingX: 3,
|
|
498
502
|
paddingY: 3,
|
|
499
503
|
children: "SparklineInteractive Header Custom Label"
|
|
@@ -506,7 +510,8 @@ const SparklineInteractiveHeaderScreen = () => {
|
|
|
506
510
|
}), /*#__PURE__*/_jsx(Example, {
|
|
507
511
|
padding: 0,
|
|
508
512
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
509
|
-
children: [/*#__PURE__*/_jsx(
|
|
513
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
514
|
+
font: "title3",
|
|
510
515
|
paddingX: 3,
|
|
511
516
|
paddingY: 3,
|
|
512
517
|
children: "SparklineInteractive Header Example with AltHeader"
|
|
@@ -518,7 +523,8 @@ const SparklineInteractiveHeaderScreen = () => {
|
|
|
518
523
|
}), /*#__PURE__*/_jsx(Example, {
|
|
519
524
|
padding: 0,
|
|
520
525
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
521
|
-
children: [/*#__PURE__*/_jsx(
|
|
526
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
527
|
+
font: "title3",
|
|
522
528
|
paddingX: 3,
|
|
523
529
|
paddingY: 3,
|
|
524
530
|
children: "SparklineInteractive Header Example with Smaller Period Set"
|
|
@@ -530,7 +536,8 @@ const SparklineInteractiveHeaderScreen = () => {
|
|
|
530
536
|
}), /*#__PURE__*/_jsx(Example, {
|
|
531
537
|
padding: 0,
|
|
532
538
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
533
|
-
children: [/*#__PURE__*/_jsx(
|
|
539
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
540
|
+
font: "title3",
|
|
534
541
|
paddingX: 3,
|
|
535
542
|
paddingY: 3,
|
|
536
543
|
children: "SparklineInteractive Header Example with No Period Set"
|
|
@@ -543,7 +550,8 @@ const SparklineInteractiveHeaderScreen = () => {
|
|
|
543
550
|
}), /*#__PURE__*/_jsx(Example, {
|
|
544
551
|
padding: 0,
|
|
545
552
|
children: /*#__PURE__*/_jsxs(Box, {
|
|
546
|
-
children: [/*#__PURE__*/_jsx(
|
|
553
|
+
children: [/*#__PURE__*/_jsx(Text, {
|
|
554
|
+
font: "title3",
|
|
547
555
|
paddingX: 3,
|
|
548
556
|
paddingY: 3,
|
|
549
557
|
children: "SparklineInteractive Header Custom Title"
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coinbase/cds-mobile-visualization",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.0-beta.10",
|
|
4
4
|
"description": "Coinbase Design System - Mobile Visualization Native",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
|
-
"url": "git@github.com:coinbase/cds
|
|
7
|
+
"url": "git@github.com:coinbase/cds.git",
|
|
8
8
|
"directory": "packages/mobile-visualization"
|
|
9
9
|
},
|
|
10
10
|
"type": "module",
|
|
@@ -16,6 +16,10 @@
|
|
|
16
16
|
"types": "./dts/index.d.ts",
|
|
17
17
|
"default": "./esm/index.js"
|
|
18
18
|
},
|
|
19
|
+
"./chart": {
|
|
20
|
+
"types": "./dts/chart/index.d.ts",
|
|
21
|
+
"default": "./esm/chart/index.js"
|
|
22
|
+
},
|
|
19
23
|
"./sparkline": {
|
|
20
24
|
"types": "./dts/sparkline/index.d.ts",
|
|
21
25
|
"default": "./esm/sparkline/index.js"
|
|
@@ -32,10 +36,11 @@
|
|
|
32
36
|
"CHANGELOG"
|
|
33
37
|
],
|
|
34
38
|
"peerDependencies": {
|
|
35
|
-
"@coinbase/cds-common": "
|
|
36
|
-
"@coinbase/cds-lottie-files": "
|
|
37
|
-
"@coinbase/cds-mobile": "
|
|
38
|
-
"@coinbase/cds-utils": "
|
|
39
|
+
"@coinbase/cds-common": "^8.35.1",
|
|
40
|
+
"@coinbase/cds-lottie-files": "^3.3.4",
|
|
41
|
+
"@coinbase/cds-mobile": "^8.35.1",
|
|
42
|
+
"@coinbase/cds-utils": "^2.3.5",
|
|
43
|
+
"@shopify/react-native-skia": "^1.12.4 || ^2.0.0",
|
|
39
44
|
"react": "^18.3.1",
|
|
40
45
|
"react-native": "^0.74.5",
|
|
41
46
|
"react-native-gesture-handler": "^2.16.2",
|
|
@@ -52,11 +57,12 @@
|
|
|
52
57
|
"@babel/preset-env": "^7.28.0",
|
|
53
58
|
"@babel/preset-react": "^7.27.1",
|
|
54
59
|
"@babel/preset-typescript": "^7.27.1",
|
|
55
|
-
"@coinbase/cds-common": "
|
|
56
|
-
"@coinbase/cds-lottie-files": "
|
|
57
|
-
"@coinbase/cds-mobile": "
|
|
58
|
-
"@coinbase/cds-utils": "
|
|
60
|
+
"@coinbase/cds-common": "^8.35.1",
|
|
61
|
+
"@coinbase/cds-lottie-files": "^3.3.4",
|
|
62
|
+
"@coinbase/cds-mobile": "^8.35.1",
|
|
63
|
+
"@coinbase/cds-utils": "^2.3.5",
|
|
59
64
|
"@figma/code-connect": "^1.3.4",
|
|
65
|
+
"@shopify/react-native-skia": "1.12.4",
|
|
60
66
|
"@types/react": "^18.3.12",
|
|
61
67
|
"react-native-gesture-handler": "2.16.2",
|
|
62
68
|
"react-native-reanimated": "3.14.0",
|
|
@@ -64,4 +70,4 @@
|
|
|
64
70
|
"react-native-svg": "14.1.0",
|
|
65
71
|
"react-test-renderer": "^18.3.1"
|
|
66
72
|
}
|
|
67
|
-
}
|
|
73
|
+
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Sparkline.stories.d.ts","sourceRoot":"","sources":["../../../src/sparkline/__stories__/Sparkline.stories.tsx"],"names":[],"mappings":"AAgGA,QAAA,MAAM,sBAAsB,+CAwB3B,CAAC;AAEF,eAAe,sBAAsB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SparklineGradient.stories.d.ts","sourceRoot":"","sources":["../../../src/sparkline/__stories__/SparklineGradient.stories.tsx"],"names":[],"mappings":"AA6FA,QAAA,MAAM,sBAAsB,+CA+B3B,CAAC;AAEF,eAAe,sBAAsB,CAAC"}
|
package/dts/sparkline/sparkline-interactive/__stories__/SparklineInteractive.stories.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SparklineInteractive.stories.d.ts","sourceRoot":"","sources":["../../../../src/sparkline/sparkline-interactive/__stories__/SparklineInteractive.stories.tsx"],"names":[],"mappings":"AAsPA,QAAA,MAAM,0BAA0B,+CAqQ/B,CAAC;AAEF,eAAe,0BAA0B,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SparklineInteractive.test.d.ts","sourceRoot":"","sources":["../../../../src/sparkline/sparkline-interactive/__tests__/SparklineInteractive.test.tsx"],"names":[],"mappings":""}
|
package/dts/sparkline/sparkline-interactive/__tests__/SparklineInteractiveHoverDate.test.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SparklineInteractiveHoverDate.test.d.ts","sourceRoot":"","sources":["../../../../src/sparkline/sparkline-interactive/__tests__/SparklineInteractiveHoverDate.test.tsx"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SparklineInteractivePanGestureHandler.test.d.ts","sourceRoot":"","sources":["../../../../src/sparkline/sparkline-interactive/__tests__/SparklineInteractivePanGestureHandler.test.tsx"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SparklineInteractivePeriodSelector.test.d.ts","sourceRoot":"","sources":["../../../../src/sparkline/sparkline-interactive/__tests__/SparklineInteractivePeriodSelector.test.tsx"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SparklineInteractiveTimeseriesPaths.test.d.ts","sourceRoot":"","sources":["../../../../src/sparkline/sparkline-interactive/__tests__/SparklineInteractiveTimeseriesPaths.test.tsx"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useMinMaxTransform.test.d.ts","sourceRoot":"","sources":["../../../../src/sparkline/sparkline-interactive/__tests__/useMinMaxTransform.test.ts"],"names":[],"mappings":""}
|
package/dts/sparkline/sparkline-interactive/useInterruptiblePathAnimation.test.disable.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useInterruptiblePathAnimation.test.disable.d.ts","sourceRoot":"","sources":["../../../src/sparkline/sparkline-interactive/useInterruptiblePathAnimation.test.disable.ts"],"names":[],"mappings":""}
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export declare const SparklineInteractiveHeaderWithCustomTitle: () => import("react/jsx-runtime").JSX.Element;
|
|
2
|
-
declare const SparklineInteractiveHeaderScreen: () => import("react/jsx-runtime").JSX.Element;
|
|
3
|
-
export default SparklineInteractiveHeaderScreen;
|
|
4
|
-
//# sourceMappingURL=SparklineInteractiveHeader.stories.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SparklineInteractiveHeader.stories.d.ts","sourceRoot":"","sources":["../../../../src/sparkline/sparkline-interactive-header/__stories__/SparklineInteractiveHeader.stories.tsx"],"names":[],"mappings":"AA8aA,eAAO,MAAM,yCAAyC,+CAuFrD,CAAC;AAEF,QAAA,MAAM,gCAAgC,+CA2FrC,CAAC;AAEF,eAAe,gCAAgC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SparklineInteractiveHeader.test.d.ts","sourceRoot":"","sources":["../../../../src/sparkline/sparkline-interactive-header/__tests__/SparklineInteractiveHeader.test.tsx"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useSparklineInteractiveHeaderStyles.test.d.ts","sourceRoot":"","sources":["../../../../src/sparkline/sparkline-interactive-header/__tests__/useSparklineInteractiveHeaderStyles.test.ts"],"names":[],"mappings":""}
|