Comparing version 35.0.8 to 35.0.9
@@ -7,8 +7,15 @@ // TODO: Add missing type definitions for all import/export | ||
Arc, | ||
ArcProps, | ||
Background, | ||
BackgroundProps, | ||
Border, | ||
BorderProps, | ||
Border as Box, | ||
BorderProps as BoxProps, | ||
ClipPath, | ||
ClipPathProps, | ||
LineSegment, | ||
LineSegmentProps, | ||
Whisker, | ||
WhiskerProps, | ||
Circle, | ||
@@ -20,11 +27,19 @@ Rect, | ||
Text, | ||
TextProps, | ||
Point, | ||
PointProps, | ||
VictoryAnimation, | ||
VictoryAnimationProps, | ||
VictoryContainer, | ||
VictoryContainerProps, | ||
VictoryLabel, | ||
VictoryLabelProps, | ||
VictoryTheme, | ||
VictoryThemeDefinition, | ||
// VictoryTransition, | ||
VictoryPortal, | ||
VictoryPortalProps, | ||
// Portal, | ||
VictoryClipContainer, | ||
VictoryClipContainerProps, | ||
// addEvents, | ||
@@ -49,21 +64,27 @@ // Collection, | ||
import { VictoryChart } from "victory-chart"; | ||
import { VictoryGroup } from "victory-group"; | ||
import { VictoryStack } from "victory-stack"; | ||
import { VictoryPie, Slice } from "victory-pie"; | ||
import { VictoryArea, Area } from "victory-area"; | ||
import { VictoryBar, Bar } from "victory-bar"; | ||
import { VictoryChart, VictoryChartProps } from "victory-chart"; | ||
import { VictoryGroup, VictoryGroupProps } from "victory-group"; | ||
import { VictoryStack, VictoryStackProps } from "victory-stack"; | ||
import { VictoryPie, Slice, VictoryPieProps, SliceProps } from "victory-pie"; | ||
import { VictoryArea, Area, VictoryAreaProps, AreaProps } from "victory-area"; | ||
import { VictoryBar, Bar, VictoryBarProps, BarProps } from "victory-bar"; | ||
import { VictoryCandlestick, Candle } from "victory-candlestick"; | ||
import { VictoryErrorBar, ErrorBar } from "victory-errorbar"; | ||
import { | ||
VictoryCandlestick, | ||
VictoryCandlestickProps, | ||
Candle, | ||
CandleProps | ||
} from "victory-candlestick"; | ||
import { VictoryErrorBar, ErrorBar, VictoryErrorBarProps, ErrorBarProps } from "victory-errorbar"; | ||
import { VictoryLine, Curve } from "victory-line"; | ||
import { VictoryHistogram } from "victory-histogram"; | ||
import { VictoryScatter } from "victory-scatter"; | ||
import { VictoryBoxPlot } from "victory-box-plot"; | ||
import { VictoryBrushLine } from "victory-brush-line"; | ||
import { Voronoi, VictoryVoronoi } from "victory-voronoi"; | ||
import { VictoryLine, Curve, VictoryLineProps, CurveProps } from "victory-line"; | ||
import { VictoryHistogram, VictoryHistogramProps } from "victory-histogram"; | ||
import { VictoryScatter, VictoryScatterProps } from "victory-scatter"; | ||
import { VictoryBoxPlot, VictoryBoxPlotProps } from "victory-box-plot"; | ||
import { VictoryBrushLine, VictoryBrushLineProps } from "victory-brush-line"; | ||
import { Voronoi, VictoryVoronoi, VoronoiProps, VictoryVoronoiProps } from "victory-voronoi"; | ||
import { | ||
VictoryBrushContainer | ||
VictoryBrushContainer, | ||
VictoryBrushContainerProps | ||
// BrushHelpers, | ||
@@ -73,3 +94,4 @@ // brushContainerMixin | ||
import { | ||
VictoryCursorContainer | ||
VictoryCursorContainer, | ||
VictoryCursorContainerProps | ||
// CursorHelpers, | ||
@@ -86,3 +108,4 @@ // cursorContainerMixin | ||
import { | ||
VictoryVoronoiContainer | ||
VictoryVoronoiContainer, | ||
VictoryVoronoiContainerProps | ||
// VoronoiHelpers, | ||
@@ -92,3 +115,4 @@ // voronoiContainerMixin | ||
import { | ||
VictoryZoomContainer | ||
VictoryZoomContainer, | ||
VictoryZoomContainerProps | ||
// ZoomHelpers, | ||
@@ -104,26 +128,43 @@ // zoomContainerMixin, | ||
import { VictoryTooltip, Flyout } from "victory-tooltip"; | ||
import { VictoryLegend } from "victory-legend"; | ||
import { VictoryTooltip, Flyout, VictoryTooltipProps, FlyoutProps } from "victory-tooltip"; | ||
import { VictoryLegend, VictoryLegendProps } from "victory-legend"; | ||
// import { VictorySharedEvents } from "victory-shared-events"; | ||
import { VictoryAxis } from "victory-axis"; | ||
import { VictoryPolarAxis } from "victory-polar-axis"; | ||
import { VictoryAxis, VictoryAxisProps } from "victory-axis"; | ||
import { VictoryPolarAxis, VictoryPolarAxisProps } from "victory-polar-axis"; | ||
export { | ||
Arc, | ||
ArcProps, | ||
Area, | ||
AreaProps, | ||
Background, | ||
BackgroundProps, | ||
Bar, | ||
BarProps, | ||
Border, | ||
BorderProps, | ||
Box, | ||
BoxProps, | ||
Candle, | ||
CandleProps, | ||
ClipPath, | ||
ClipPathProps, | ||
Curve, | ||
CurveProps, | ||
ErrorBar, | ||
ErrorBarProps, | ||
LineSegment, | ||
LineSegmentProps, | ||
Point, | ||
PointProps, | ||
Slice, | ||
SliceProps, | ||
Voronoi, | ||
VoronoiProps, | ||
Flyout, | ||
FlyoutProps, | ||
Whisker, | ||
WhiskerProps, | ||
Circle, | ||
@@ -135,29 +176,54 @@ Rect, | ||
Text, | ||
TextProps, | ||
VictoryAnimation, | ||
VictoryAnimationProps, | ||
VictoryArea, | ||
VictoryAreaProps, | ||
VictoryAxis, | ||
VictoryAxisProps, | ||
VictoryPolarAxis, | ||
VictoryPolarAxisProps, | ||
VictoryBar, | ||
VictoryBarProps, | ||
VictoryBoxPlot, | ||
VictoryBoxPlotProps, | ||
VictoryCandlestick, | ||
VictoryCandlestickProps, | ||
VictoryChart, | ||
VictoryChartProps, | ||
VictoryErrorBar, | ||
VictoryErrorBarProps, | ||
VictoryHistogram, | ||
VictoryHistogramProps, | ||
VictoryGroup, | ||
VictoryGroupProps, | ||
VictoryLine, | ||
VictoryLineProps, | ||
VictoryLabel, | ||
VictoryLabelProps, | ||
VictoryLegend, | ||
VictoryLegendProps, | ||
VictoryPie, | ||
VictoryPieProps, | ||
VictoryScatter, | ||
VictoryScatterProps, | ||
VictoryStack, | ||
VictoryStackProps, | ||
VictoryTheme, | ||
VictoryThemeDefinition, | ||
// VictoryTransition, | ||
// VictorySharedEvents, | ||
VictoryTooltip, | ||
VictoryTooltipProps, | ||
VictoryVoronoi, | ||
VictoryVoronoiProps, | ||
VictoryPortal, | ||
VictoryPortalProps, | ||
// Portal, | ||
VictoryContainer, | ||
VictoryContainerProps, | ||
VictoryClipContainer, | ||
VictoryClipContainerProps, | ||
VictoryZoomContainer, | ||
VictoryZoomContainerProps, | ||
// ZoomHelpers, | ||
@@ -170,8 +236,11 @@ // zoomContainerMixin, | ||
VictoryBrushContainer, | ||
VictoryBrushContainerProps, | ||
// BrushHelpers, | ||
// brushContainerMixin, | ||
VictoryCursorContainer, | ||
VictoryCursorContainerProps, | ||
// CursorHelpers, | ||
// cursorContainerMixin, | ||
VictoryVoronoiContainer, | ||
VictoryVoronoiContainerProps, | ||
// VoronoiHelpers, | ||
@@ -183,2 +252,3 @@ // voronoiContainerMixin, | ||
VictoryBrushLine, | ||
VictoryBrushLineProps, | ||
// addEvents, | ||
@@ -185,0 +255,0 @@ // Collection, |
@@ -7,8 +7,15 @@ // TODO: Add missing type definitions for all import/export | ||
Arc, | ||
ArcProps, | ||
Background, | ||
BackgroundProps, | ||
Border, | ||
BorderProps, | ||
Border as Box, | ||
BorderProps as BoxProps, | ||
ClipPath, | ||
ClipPathProps, | ||
LineSegment, | ||
LineSegmentProps, | ||
Whisker, | ||
WhiskerProps, | ||
Circle, | ||
@@ -20,11 +27,19 @@ Rect, | ||
Text, | ||
TextProps, | ||
Point, | ||
PointProps, | ||
VictoryAnimation, | ||
VictoryAnimationProps, | ||
VictoryContainer, | ||
VictoryContainerProps, | ||
VictoryLabel, | ||
VictoryLabelProps, | ||
VictoryTheme, | ||
VictoryThemeDefinition, | ||
// VictoryTransition, | ||
VictoryPortal, | ||
VictoryPortalProps, | ||
// Portal, | ||
VictoryClipContainer, | ||
VictoryClipContainerProps, | ||
// addEvents, | ||
@@ -49,21 +64,27 @@ // Collection, | ||
import { VictoryChart } from "victory-chart"; | ||
import { VictoryGroup } from "victory-group"; | ||
import { VictoryStack } from "victory-stack"; | ||
import { VictoryPie, Slice } from "victory-pie"; | ||
import { VictoryArea, Area } from "victory-area"; | ||
import { VictoryBar, Bar } from "victory-bar"; | ||
import { VictoryChart, VictoryChartProps } from "victory-chart"; | ||
import { VictoryGroup, VictoryGroupProps } from "victory-group"; | ||
import { VictoryStack, VictoryStackProps } from "victory-stack"; | ||
import { VictoryPie, Slice, VictoryPieProps, SliceProps } from "victory-pie"; | ||
import { VictoryArea, Area, VictoryAreaProps, AreaProps } from "victory-area"; | ||
import { VictoryBar, Bar, VictoryBarProps, BarProps } from "victory-bar"; | ||
import { VictoryCandlestick, Candle } from "victory-candlestick"; | ||
import { VictoryErrorBar, ErrorBar } from "victory-errorbar"; | ||
import { | ||
VictoryCandlestick, | ||
VictoryCandlestickProps, | ||
Candle, | ||
CandleProps | ||
} from "victory-candlestick"; | ||
import { VictoryErrorBar, ErrorBar, VictoryErrorBarProps, ErrorBarProps } from "victory-errorbar"; | ||
import { VictoryLine, Curve } from "victory-line"; | ||
import { VictoryHistogram } from "victory-histogram"; | ||
import { VictoryScatter } from "victory-scatter"; | ||
import { VictoryBoxPlot } from "victory-box-plot"; | ||
import { VictoryBrushLine } from "victory-brush-line"; | ||
import { Voronoi, VictoryVoronoi } from "victory-voronoi"; | ||
import { VictoryLine, Curve, VictoryLineProps, CurveProps } from "victory-line"; | ||
import { VictoryHistogram, VictoryHistogramProps } from "victory-histogram"; | ||
import { VictoryScatter, VictoryScatterProps } from "victory-scatter"; | ||
import { VictoryBoxPlot, VictoryBoxPlotProps } from "victory-box-plot"; | ||
import { VictoryBrushLine, VictoryBrushLineProps } from "victory-brush-line"; | ||
import { Voronoi, VictoryVoronoi, VoronoiProps, VictoryVoronoiProps } from "victory-voronoi"; | ||
import { | ||
VictoryBrushContainer | ||
VictoryBrushContainer, | ||
VictoryBrushContainerProps | ||
// BrushHelpers, | ||
@@ -73,3 +94,4 @@ // brushContainerMixin | ||
import { | ||
VictoryCursorContainer | ||
VictoryCursorContainer, | ||
VictoryCursorContainerProps | ||
// CursorHelpers, | ||
@@ -86,3 +108,4 @@ // cursorContainerMixin | ||
import { | ||
VictoryVoronoiContainer | ||
VictoryVoronoiContainer, | ||
VictoryVoronoiContainerProps | ||
// VoronoiHelpers, | ||
@@ -92,3 +115,4 @@ // voronoiContainerMixin | ||
import { | ||
VictoryZoomContainer | ||
VictoryZoomContainer, | ||
VictoryZoomContainerProps | ||
// ZoomHelpers, | ||
@@ -104,26 +128,43 @@ // zoomContainerMixin, | ||
import { VictoryTooltip, Flyout } from "victory-tooltip"; | ||
import { VictoryLegend } from "victory-legend"; | ||
import { VictoryTooltip, Flyout, VictoryTooltipProps, FlyoutProps } from "victory-tooltip"; | ||
import { VictoryLegend, VictoryLegendProps } from "victory-legend"; | ||
// import { VictorySharedEvents } from "victory-shared-events"; | ||
import { VictoryAxis } from "victory-axis"; | ||
import { VictoryPolarAxis } from "victory-polar-axis"; | ||
import { VictoryAxis, VictoryAxisProps } from "victory-axis"; | ||
import { VictoryPolarAxis, VictoryPolarAxisProps } from "victory-polar-axis"; | ||
export { | ||
Arc, | ||
ArcProps, | ||
Area, | ||
AreaProps, | ||
Background, | ||
BackgroundProps, | ||
Bar, | ||
BarProps, | ||
Border, | ||
BorderProps, | ||
Box, | ||
BoxProps, | ||
Candle, | ||
CandleProps, | ||
ClipPath, | ||
ClipPathProps, | ||
Curve, | ||
CurveProps, | ||
ErrorBar, | ||
ErrorBarProps, | ||
LineSegment, | ||
LineSegmentProps, | ||
Point, | ||
PointProps, | ||
Slice, | ||
SliceProps, | ||
Voronoi, | ||
VoronoiProps, | ||
Flyout, | ||
FlyoutProps, | ||
Whisker, | ||
WhiskerProps, | ||
Circle, | ||
@@ -135,29 +176,54 @@ Rect, | ||
Text, | ||
TextProps, | ||
VictoryAnimation, | ||
VictoryAnimationProps, | ||
VictoryArea, | ||
VictoryAreaProps, | ||
VictoryAxis, | ||
VictoryAxisProps, | ||
VictoryPolarAxis, | ||
VictoryPolarAxisProps, | ||
VictoryBar, | ||
VictoryBarProps, | ||
VictoryBoxPlot, | ||
VictoryBoxPlotProps, | ||
VictoryCandlestick, | ||
VictoryCandlestickProps, | ||
VictoryChart, | ||
VictoryChartProps, | ||
VictoryErrorBar, | ||
VictoryErrorBarProps, | ||
VictoryHistogram, | ||
VictoryHistogramProps, | ||
VictoryGroup, | ||
VictoryGroupProps, | ||
VictoryLine, | ||
VictoryLineProps, | ||
VictoryLabel, | ||
VictoryLabelProps, | ||
VictoryLegend, | ||
VictoryLegendProps, | ||
VictoryPie, | ||
VictoryPieProps, | ||
VictoryScatter, | ||
VictoryScatterProps, | ||
VictoryStack, | ||
VictoryStackProps, | ||
VictoryTheme, | ||
VictoryThemeDefinition, | ||
// VictoryTransition, | ||
// VictorySharedEvents, | ||
VictoryTooltip, | ||
VictoryTooltipProps, | ||
VictoryVoronoi, | ||
VictoryVoronoiProps, | ||
VictoryPortal, | ||
VictoryPortalProps, | ||
// Portal, | ||
VictoryContainer, | ||
VictoryContainerProps, | ||
VictoryClipContainer, | ||
VictoryClipContainerProps, | ||
VictoryZoomContainer, | ||
VictoryZoomContainerProps, | ||
// ZoomHelpers, | ||
@@ -170,8 +236,11 @@ // zoomContainerMixin, | ||
VictoryBrushContainer, | ||
VictoryBrushContainerProps, | ||
// BrushHelpers, | ||
// brushContainerMixin, | ||
VictoryCursorContainer, | ||
VictoryCursorContainerProps, | ||
// CursorHelpers, | ||
// cursorContainerMixin, | ||
VictoryVoronoiContainer, | ||
VictoryVoronoiContainerProps, | ||
// VoronoiHelpers, | ||
@@ -183,2 +252,3 @@ // voronoiContainerMixin, | ||
VictoryBrushLine, | ||
VictoryBrushLineProps, | ||
// addEvents, | ||
@@ -185,0 +255,0 @@ // Collection, |
{ | ||
"name": "victory", | ||
"version": "35.0.8", | ||
"version": "35.0.9", | ||
"description": "Data viz for React", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -7,8 +7,15 @@ // TODO: Add missing type definitions for all import/export | ||
Arc, | ||
ArcProps, | ||
Background, | ||
BackgroundProps, | ||
Border, | ||
BorderProps, | ||
Border as Box, | ||
BorderProps as BoxProps, | ||
ClipPath, | ||
ClipPathProps, | ||
LineSegment, | ||
LineSegmentProps, | ||
Whisker, | ||
WhiskerProps, | ||
Circle, | ||
@@ -20,11 +27,19 @@ Rect, | ||
Text, | ||
TextProps, | ||
Point, | ||
PointProps, | ||
VictoryAnimation, | ||
VictoryAnimationProps, | ||
VictoryContainer, | ||
VictoryContainerProps, | ||
VictoryLabel, | ||
VictoryLabelProps, | ||
VictoryTheme, | ||
VictoryThemeDefinition, | ||
// VictoryTransition, | ||
VictoryPortal, | ||
VictoryPortalProps, | ||
// Portal, | ||
VictoryClipContainer, | ||
VictoryClipContainerProps, | ||
// addEvents, | ||
@@ -49,21 +64,27 @@ // Collection, | ||
import { VictoryChart } from "victory-chart"; | ||
import { VictoryGroup } from "victory-group"; | ||
import { VictoryStack } from "victory-stack"; | ||
import { VictoryPie, Slice } from "victory-pie"; | ||
import { VictoryArea, Area } from "victory-area"; | ||
import { VictoryBar, Bar } from "victory-bar"; | ||
import { VictoryChart, VictoryChartProps } from "victory-chart"; | ||
import { VictoryGroup, VictoryGroupProps } from "victory-group"; | ||
import { VictoryStack, VictoryStackProps } from "victory-stack"; | ||
import { VictoryPie, Slice, VictoryPieProps, SliceProps } from "victory-pie"; | ||
import { VictoryArea, Area, VictoryAreaProps, AreaProps } from "victory-area"; | ||
import { VictoryBar, Bar, VictoryBarProps, BarProps } from "victory-bar"; | ||
import { VictoryCandlestick, Candle } from "victory-candlestick"; | ||
import { VictoryErrorBar, ErrorBar } from "victory-errorbar"; | ||
import { | ||
VictoryCandlestick, | ||
VictoryCandlestickProps, | ||
Candle, | ||
CandleProps | ||
} from "victory-candlestick"; | ||
import { VictoryErrorBar, ErrorBar, VictoryErrorBarProps, ErrorBarProps } from "victory-errorbar"; | ||
import { VictoryLine, Curve } from "victory-line"; | ||
import { VictoryHistogram } from "victory-histogram"; | ||
import { VictoryScatter } from "victory-scatter"; | ||
import { VictoryBoxPlot } from "victory-box-plot"; | ||
import { VictoryBrushLine } from "victory-brush-line"; | ||
import { Voronoi, VictoryVoronoi } from "victory-voronoi"; | ||
import { VictoryLine, Curve, VictoryLineProps, CurveProps } from "victory-line"; | ||
import { VictoryHistogram, VictoryHistogramProps } from "victory-histogram"; | ||
import { VictoryScatter, VictoryScatterProps } from "victory-scatter"; | ||
import { VictoryBoxPlot, VictoryBoxPlotProps } from "victory-box-plot"; | ||
import { VictoryBrushLine, VictoryBrushLineProps } from "victory-brush-line"; | ||
import { Voronoi, VictoryVoronoi, VoronoiProps, VictoryVoronoiProps } from "victory-voronoi"; | ||
import { | ||
VictoryBrushContainer | ||
VictoryBrushContainer, | ||
VictoryBrushContainerProps | ||
// BrushHelpers, | ||
@@ -73,3 +94,4 @@ // brushContainerMixin | ||
import { | ||
VictoryCursorContainer | ||
VictoryCursorContainer, | ||
VictoryCursorContainerProps | ||
// CursorHelpers, | ||
@@ -86,3 +108,4 @@ // cursorContainerMixin | ||
import { | ||
VictoryVoronoiContainer | ||
VictoryVoronoiContainer, | ||
VictoryVoronoiContainerProps | ||
// VoronoiHelpers, | ||
@@ -92,3 +115,4 @@ // voronoiContainerMixin | ||
import { | ||
VictoryZoomContainer | ||
VictoryZoomContainer, | ||
VictoryZoomContainerProps | ||
// ZoomHelpers, | ||
@@ -104,26 +128,43 @@ // zoomContainerMixin, | ||
import { VictoryTooltip, Flyout } from "victory-tooltip"; | ||
import { VictoryLegend } from "victory-legend"; | ||
import { VictoryTooltip, Flyout, VictoryTooltipProps, FlyoutProps } from "victory-tooltip"; | ||
import { VictoryLegend, VictoryLegendProps } from "victory-legend"; | ||
// import { VictorySharedEvents } from "victory-shared-events"; | ||
import { VictoryAxis } from "victory-axis"; | ||
import { VictoryPolarAxis } from "victory-polar-axis"; | ||
import { VictoryAxis, VictoryAxisProps } from "victory-axis"; | ||
import { VictoryPolarAxis, VictoryPolarAxisProps } from "victory-polar-axis"; | ||
export { | ||
Arc, | ||
ArcProps, | ||
Area, | ||
AreaProps, | ||
Background, | ||
BackgroundProps, | ||
Bar, | ||
BarProps, | ||
Border, | ||
BorderProps, | ||
Box, | ||
BoxProps, | ||
Candle, | ||
CandleProps, | ||
ClipPath, | ||
ClipPathProps, | ||
Curve, | ||
CurveProps, | ||
ErrorBar, | ||
ErrorBarProps, | ||
LineSegment, | ||
LineSegmentProps, | ||
Point, | ||
PointProps, | ||
Slice, | ||
SliceProps, | ||
Voronoi, | ||
VoronoiProps, | ||
Flyout, | ||
FlyoutProps, | ||
Whisker, | ||
WhiskerProps, | ||
Circle, | ||
@@ -135,29 +176,54 @@ Rect, | ||
Text, | ||
TextProps, | ||
VictoryAnimation, | ||
VictoryAnimationProps, | ||
VictoryArea, | ||
VictoryAreaProps, | ||
VictoryAxis, | ||
VictoryAxisProps, | ||
VictoryPolarAxis, | ||
VictoryPolarAxisProps, | ||
VictoryBar, | ||
VictoryBarProps, | ||
VictoryBoxPlot, | ||
VictoryBoxPlotProps, | ||
VictoryCandlestick, | ||
VictoryCandlestickProps, | ||
VictoryChart, | ||
VictoryChartProps, | ||
VictoryErrorBar, | ||
VictoryErrorBarProps, | ||
VictoryHistogram, | ||
VictoryHistogramProps, | ||
VictoryGroup, | ||
VictoryGroupProps, | ||
VictoryLine, | ||
VictoryLineProps, | ||
VictoryLabel, | ||
VictoryLabelProps, | ||
VictoryLegend, | ||
VictoryLegendProps, | ||
VictoryPie, | ||
VictoryPieProps, | ||
VictoryScatter, | ||
VictoryScatterProps, | ||
VictoryStack, | ||
VictoryStackProps, | ||
VictoryTheme, | ||
VictoryThemeDefinition, | ||
// VictoryTransition, | ||
// VictorySharedEvents, | ||
VictoryTooltip, | ||
VictoryTooltipProps, | ||
VictoryVoronoi, | ||
VictoryVoronoiProps, | ||
VictoryPortal, | ||
VictoryPortalProps, | ||
// Portal, | ||
VictoryContainer, | ||
VictoryContainerProps, | ||
VictoryClipContainer, | ||
VictoryClipContainerProps, | ||
VictoryZoomContainer, | ||
VictoryZoomContainerProps, | ||
// ZoomHelpers, | ||
@@ -170,8 +236,11 @@ // zoomContainerMixin, | ||
VictoryBrushContainer, | ||
VictoryBrushContainerProps, | ||
// BrushHelpers, | ||
// brushContainerMixin, | ||
VictoryCursorContainer, | ||
VictoryCursorContainerProps, | ||
// CursorHelpers, | ||
// cursorContainerMixin, | ||
VictoryVoronoiContainer, | ||
VictoryVoronoiContainerProps, | ||
// VoronoiHelpers, | ||
@@ -183,2 +252,3 @@ // voronoiContainerMixin, | ||
VictoryBrushLine, | ||
VictoryBrushLineProps, | ||
// addEvents, | ||
@@ -185,0 +255,0 @@ // Collection, |
2767122
14818