Socket
Socket
Sign inDemoInstall

@vx/axis

Package Overview
Dependencies
39
Maintainers
3
Versions
101
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install
2345
11Next

0.0.199

Diff

Changelog

Source

v0.0.199

:boom: Breaking Changes

  • [scale] Deprecate rangeRound field in the input of scaleLinear(), scaleLog(), scalePoint(), scalePower(), scaleSqrt(), scaleTime() and scaleUtc(). #766 Instead of
    scaleLinear({ rangeRound: xxx })
    
    Do this instead
    scaleLinear({ range: xxx, round: true });
    
  • [scale] Deprecate ticks and tickFormat in the input of scaleQuantize(). It was not really doing anything anyway as both scale.ticks() and scale.tickFormat() do not mutate the scale. #766
  • [scale] Remove scale.type field that was attached to the d3 scales. #766
  • [grid] @vx/grid components now accept D3 Scale as generic type instead of ScaleInput. Developers should not expect to specify this generic type as it can be inferred from the passed scale. #775
  • [grid] Renames GridColumnProps => GridColumnsProps (+s) to match GridRowsProps. #787
  • [legend] Update generic types for legend components. #777
  • [marker] remove old <Marker /> implementation of a Line and some Text. #783

:rocket: Enhancements

  • [scale] new functions & New fields for the scale configs. #766
  • [scale] add meta scale types. #770
  • [scale] Add fallback overload for createScale. #791
  • [scale] add new types: AnyD3Scale, InferD3ScaleOutput, InferD3ScaleDiscreteInput, InferD3ScaleThresholdInput and ScaleInput. Add new utilities functions: getTicks, coerceNumber and toString. #773
  • [scale] add reverse field to scale config. This will reverse the range. Useful when the ranges are programmatically supplied to the scale factories such as in XYChart and developers want easy way to reverse the dynamic range. #780
  • [legend] exports @vx/legend shapes from the index for convenience / non-deep imports. #772
  • [grid] adds children prop to GridRows + GridColumns to support animated rendering. #787
  • [shape] add <BarRounded /> shape. #774
  • [shape] Create new factory functions for d3-shape and export as part of vx/shape (arc, area, line, pie, radialLine), similar to vx/scale has factories for d3-scale. #776
  • [shape] add SplitLinePath component to @vx/shape that allows you to create a line path split into multiple smaller line paths that can be styled independently. #778
  • [axis] consistent and compatible typings across vx/scale and vx/axis. More fields passed to child render props of Axis. #773
  • [axis] Axis is refactored to accept a ticksComponent which allows us to animate them. #779
  • [axis] adds a third argument values to tickFormat(value, index, values) so that format logic can more easily leverage all ticks (because numTicks is approximate, lib consumers do not know how many tick values exist a priori). #779
  • [marker] add new <Marker /> that matches actual SVG <marker>. #783
  • [marker] add <MarkerArrow />, <MarkerCross />, <MarkerX />, <MarkerCircle />, <MarkerLine />. #783
  • [react-spring] adds a new package @vx/react-spring that includes react-spring as a peerDep and can be a home for things that depend on react-spring. #779
  • [react-spring] Adds an <AnimatedAxis /> and <AnimatedTicksRender /> in @vx/react-spring. #779
  • [react-spring] updates the vx-demo/axis demo to use <AnimatedAxis />. #779
  • [react-spring] adds AnimatedGridRows + AnimatedGridColumns. #787
  • [react-spring] modularizes AnimatedTicks/useAnimatedTicksConfig to spring-configs/useAnimatedLineTransitionConfig so it can power both animated tick + grid lines. #787
  • [react-spring] adds animationTrajectory=outside | inside | min | max to AnimatedAxis and AnimatedGridRows/Columns. #787
:bug: Bug Fix
  • [responsive] exclude enableDebounceLeadingCall prop being passed into div. #763
  • [responsive] fix prettier format. #764
  • [text] fix warning for NaN or invalid values are passed as x or y. #790

:memo: Documentation

  • [scale] Improve documentation of the fields in scale configs. #766

:house: Internal

  • [scale] rewrite individual scale factory with composition of shared operators. This ensure order of operators and simplified code. #766
  • [scale] add 100+ unit tests to make this vx/scale package has 100% test coverage. #766
  • [stats] use updated @vx/scale types. #770
  • [legend] extract defaultDomain helper. #777
  • [demo] updated curves demo to use new <Marker>. #783
  • [demo] updates the /axis demo to include AnimatedGrid* and a animationTrajectory config. #787
  • [jest] ignore vx-demo, vx-vx code coverage. #784
  • [annotation] 100% coverage. #784
  • [bounds] 100% coverage. #784
  • [brush] add utils test. #786
  • [event] add tests. #786
  • [test] add tests for vx/grid, vx/zoom, vx/threshold, vx/shape. #793
:trophy: Contributors
 - @vx/annotation: 0.0.198 => 0.0.199
 - @vx/axis: 0.0.198 => 0.0.199
 - @vx/bounds: 0.0.198 => 0.0.199
 - @vx/brush: 0.0.198 => 0.0.199
 - @vx/chord: 0.0.198 => 0.0.199
 - @vx/clip-path: 0.0.198 => 0.0.199
 - @vx/curve: 0.0.198 => 0.0.199
 - @vx/demo: 0.0.198 => 0.0.199
 - @vx/drag: 0.0.198 => 0.0.199
 - @vx/event: 0.0.198 => 0.0.199
 - @vx/geo: 0.0.198 => 0.0.199
 - @vx/glyph: 0.0.198 => 0.0.199
 - @vx/gradient: 0.0.198 => 0.0.199
 - @vx/grid: 0.0.198 => 0.0.199
 - @vx/group: 0.0.198 => 0.0.199
 - @vx/heatmap: 0.0.198 => 0.0.199
 - @vx/hierarchy: 0.0.198 => 0.0.199
 - @vx/legend: 0.0.198 => 0.0.199
 - @vx/marker: 0.0.198 => 0.0.199
 - @vx/mock-data: 0.0.198 => 0.0.199
 - @vx/network: 0.0.198 => 0.0.199
 - @vx/pattern: 0.0.198 => 0.0.199
 - @vx/point: 0.0.198 => 0.0.199
 - @vx/react-spring: 0.0.198 => 0.0.199
 - @vx/responsive: 0.0.198 => 0.0.199
 - @vx/scale: 0.0.198 => 0.0.199
 - @vx/shape: 0.0.198 => 0.0.199
 - @vx/stats: 0.0.198 => 0.0.199
 - @vx/text: 0.0.198 => 0.0.199
 - @vx/threshold: 0.0.198 => 0.0.199
 - @vx/tooltip: 0.0.198 => 0.0.199
 - @vx/voronoi: 0.0.198 => 0.0.199
 - @vx/vx: 0.0.198 => 0.0.199
 - @vx/xychart: 0.0.0 => 0.0.199 (private)
 - @vx/zoom: 0.0.198 => 0.0.199
christopher.card.williams
published 0.0.198 •

Changelog

Source

v0.0.198

:rocket: Enhancements
  • feat(tooltip): add Portal and useTooltipInPortal #756
  • feat(responsive): add leading option to resize debounce #754
  • feat(axis): use numTicks when falling back on scale.domain #752
  • feat(pattern): add diagonal right to left pattern #744
  • feat(legend): add Line shape, legendLabelProps, and more props in renderShape #749
💥 Breaking Changes
  • feat(responsive): resize debounce now defaults to true which will result in an additional render #754
  • feat(tooltip): add offsetLeft/Top to TooltipProps, making TooltipProps === TooltipWithBoundsProps, adds additional 10px of padding to Tooltip left/top #756
:bug: Bug Fix
  • fix(responsive): remove debounced calls after unmounnt #558
:house: Internal
  • (demo): add static export deploys #741
:trophy: Contributors
Changes: 
 - @vx/annotation: 0.0.197 => 0.0.198
 - @vx/axis: 0.0.197 => 0.0.198
 - @vx/bounds: 0.0.197 => 0.0.198
 - @vx/brush: 0.0.197 => 0.0.198
 - @vx/chord: 0.0.197 => 0.0.198
 - @vx/clip-path: 0.0.197 => 0.0.198
 - @vx/curve: 0.0.197 => 0.0.198
 - @vx/demo: 0.0.197 => 0.0.198
 - @vx/drag: 0.0.197 => 0.0.198
 - @vx/event: 0.0.197 => 0.0.198
 - @vx/geo: 0.0.197 => 0.0.198
 - @vx/glyph: 0.0.197 => 0.0.198
 - @vx/gradient: 0.0.197 => 0.0.198
 - @vx/grid: 0.0.197 => 0.0.198
 - @vx/group: 0.0.197 => 0.0.198
 - @vx/heatmap: 0.0.197 => 0.0.198
 - @vx/hierarchy: 0.0.197 => 0.0.198
 - @vx/legend: 0.0.197 => 0.0.198
 - @vx/marker: 0.0.197 => 0.0.198
 - @vx/mock-data: 0.0.197 => 0.0.198
 - @vx/network: 0.0.197 => 0.0.198
 - @vx/pattern: 0.0.197 => 0.0.198
 - @vx/point: 0.0.197 => 0.0.198
 - @vx/responsive: 0.0.197 => 0.0.198
 - @vx/scale: 0.0.197 => 0.0.198
 - @vx/shape: 0.0.197 => 0.0.198
 - @vx/stats: 0.0.197 => 0.0.198
 - @vx/text: 0.0.197 => 0.0.198
 - @vx/threshold: 0.0.197 => 0.0.198
 - @vx/tooltip: 0.0.197 => 0.0.198
 - @vx/voronoi: 0.0.197 => 0.0.198
 - @vx/vx: 0.0.197 => 0.0.198
 - @vx/zoom: 0.0.197 => 0.0.198
vx-hshoff
published 0.0.197 •

Changelog

Source

v0.0.197

:rocket: Enhancements
  • feat(tooltip): add unstyled prop to TooltipWithBounds #721
  • perf(tooltip): use useCallback in useTooltip #668
:bug: Bug Fix
  • fix(zoom): fix zoom.dragMove on touchmove event y-coord #725
:memo: Documentation
:house: Internal
  • deps(root): bump yarn.lock, add @types/webpack #740
  • fix(demo/package.json): lock next.js version #740
  • fix(demo): prettier config updated so lots of minor style updates #740
  • fix(demo/next.config.js): fix invalid webpack config error #740
  • fix(demo/pages): routes are case sensitive (/Docs => /docs) #740
  • feat(demo/gallery): gallery filter persists on query param ?pkg instead of local state #740
:trophy: Contributors
Changes: 
 - @vx/annotation: 0.0.196 => 0.0.197
 - @vx/axis: 0.0.196 => 0.0.197
 - @vx/bounds: 0.0.196 => 0.0.197
 - @vx/brush: 0.0.196 => 0.0.197
 - @vx/chord: 0.0.196 => 0.0.197
 - @vx/clip-path: 0.0.196 => 0.0.197
 - @vx/curve: 0.0.196 => 0.0.197
 - @vx/demo: 0.0.196 => 0.0.197
 - @vx/drag: 0.0.196 => 0.0.197
 - @vx/event: 0.0.196 => 0.0.197
 - @vx/geo: 0.0.196 => 0.0.197
 - @vx/glyph: 0.0.196 => 0.0.197
 - @vx/gradient: 0.0.196 => 0.0.197
 - @vx/grid: 0.0.196 => 0.0.197
 - @vx/group: 0.0.196 => 0.0.197
 - @vx/heatmap: 0.0.196 => 0.0.197
 - @vx/hierarchy: 0.0.196 => 0.0.197
 - @vx/legend: 0.0.196 => 0.0.197
 - @vx/marker: 0.0.196 => 0.0.197
 - @vx/mock-data: 0.0.196 => 0.0.197
 - @vx/network: 0.0.196 => 0.0.197
 - @vx/pattern: 0.0.196 => 0.0.197
 - @vx/point: 0.0.196 => 0.0.197
 - @vx/responsive: 0.0.196 => 0.0.197
 - @vx/scale: 0.0.196 => 0.0.197
 - @vx/shape: 0.0.196 => 0.0.197
 - @vx/stats: 0.0.196 => 0.0.197
 - @vx/text: 0.0.196 => 0.0.197
 - @vx/threshold: 0.0.196 => 0.0.197
 - @vx/tooltip: 0.0.196 => 0.0.197
 - @vx/voronoi: 0.0.196 => 0.0.197
 - @vx/vx: 0.0.196 => 0.0.197
 - @vx/zoom: 0.0.16 =>  0.0.19
christopher.card.williams
published 0.0.196 •

Changelog

Source

v0.0.196

:trophy: Contributors
:rocket: Enhancements
  • [brush] Add initialBrushPosition #618, fix in #667
💥 Breaking Changes
  • [tooltip] Add ability to remove tooltip default styles #666. If styles were applied previously, you will also need to spread defaultStyles:
// before
import { Tooltip } from '@vx/tooltip';
...
<Tooltip style={{ color: myCustomColor }} />

// after
import { Tooltip, defaultStyles } from '@vx/tooltip';
...
<Tooltip style={{ ...defaultStyles, color: myCustomColor }} />
:memo: Documentation
  • [demo] Several demos refactored to link out to codesandbox
Changes:
 - @vx/annotation: 0.0.195 => 0.0.196
 - @vx/axis: 0.0.195 => 0.0.196
 - @vx/bounds: 0.0.195 => 0.0.196
 - @vx/brush: 0.0.195 => 0.0.196
 - @vx/chord: 0.0.195 => 0.0.196
 - @vx/clip-path: 0.0.195 => 0.0.196
 - @vx/curve: 0.0.195 => 0.0.196
 - @vx/demo: 0.0.195 => 0.0.196
 - @vx/drag: 0.0.195 => 0.0.196
 - @vx/event: 0.0.195 => 0.0.196
 - @vx/geo: 0.0.195 => 0.0.196
 - @vx/glyph: 0.0.195 => 0.0.196
 - @vx/gradient: 0.0.195 => 0.0.196
 - @vx/grid: 0.0.195 => 0.0.196
 - @vx/group: 0.0.195 => 0.0.196
 - @vx/heatmap: 0.0.195 => 0.0.196
 - @vx/hierarchy: 0.0.195 => 0.0.196
 - @vx/legend: 0.0.195 => 0.0.196
 - @vx/marker: 0.0.195 => 0.0.196
 - @vx/mock-data: 0.0.195 => 0.0.196
 - @vx/network: 0.0.195 => 0.0.196
 - @vx/pattern: 0.0.195 => 0.0.196
 - @vx/point: 0.0.195 => 0.0.196
 - @vx/responsive: 0.0.195 => 0.0.196
 - @vx/scale: 0.0.195 => 0.0.196
 - @vx/shape: 0.0.195 => 0.0.196
 - @vx/stats: 0.0.195 => 0.0.196
 - @vx/text: 0.0.195 => 0.0.196
 - @vx/threshold: 0.0.195 => 0.0.196
 - @vx/tooltip: 0.0.195 => 0.0.196
 - @vx/voronoi: 0.0.195 => 0.0.196
 - @vx/vx: 0.0.195 => 0.0.196
 - @vx/zoom: 0.0.195 => 0.0.196
christopher.card.williams
published 0.0.195 •

Changelog

Source

v0.0.195

:trophy: Contributors
:rocket: Enhancements
  • [tooltip] useTooltip hook added
:boom: Breaking Changes
  • [tooltip] internally introduces useState, requires bumping the peerDep for react to ^16.8.0-0
:memo: Documentation
  • [tooltip] add useState to readme, add advice on HOC vs hooks
  • [demo] Rewrite the BarStack demo to use useTooltip instead of withTooltip
Changes:
 - @vx/annotation: 0.0.194 => 0.0.195
 - @vx/axis: 0.0.194 => 0.0.195
 - @vx/bounds: 0.0.194 => 0.0.195
 - @vx/brush: 0.0.194 => 0.0.195
 - @vx/chord: 0.0.194 => 0.0.195
 - @vx/clip-path: 0.0.194 => 0.0.195
 - @vx/curve: 0.0.194 => 0.0.195
 - @vx/demo: 0.0.194 => 0.0.195
 - @vx/drag: 0.0.194 => 0.0.195
 - @vx/event: 0.0.194 => 0.0.195
 - @vx/geo: 0.0.194 => 0.0.195
 - @vx/glyph: 0.0.194 => 0.0.195
 - @vx/gradient: 0.0.194 => 0.0.195
 - @vx/grid: 0.0.194 => 0.0.195
 - @vx/group: 0.0.194 => 0.0.195
 - @vx/heatmap: 0.0.194 => 0.0.195
 - @vx/hierarchy: 0.0.194 => 0.0.195
 - @vx/legend: 0.0.194 => 0.0.195
 - @vx/marker: 0.0.194 => 0.0.195
 - @vx/mock-data: 0.0.194 => 0.0.195
 - @vx/network: 0.0.194 => 0.0.195
 - @vx/pattern: 0.0.194 => 0.0.195
 - @vx/point: 0.0.194 => 0.0.195
 - @vx/responsive: 0.0.194 => 0.0.195
 - @vx/scale: 0.0.194 => 0.0.195
 - @vx/shape: 0.0.194 => 0.0.195
 - @vx/stats: 0.0.194 => 0.0.195
 - @vx/text: 0.0.194 => 0.0.195
 - @vx/threshold: 0.0.194 => 0.0.195
 - @vx/tooltip: 0.0.194 => 0.0.195
 - @vx/voronoi: 0.0.194 => 0.0.195
 - @vx/vx: 0.0.194 => 0.0.195
 - @vx/zoom: 0.0.194 => 0.0.195
christopher.card.williams
published 0.0.194 •

Changelog

Source

v0.0.194

:trophy: Contributors
:rocket: Enhancements
  • [brush] Add resetOnEnd prop #614
  • [tooltip] Add hook for custom Tooltip container to support SVG tooltips #610
  • [scale] Add sqrtScale #615
:bug: Bug Fix
  • [zoom] Don't use stale zoom constraint prop #578
  • [responsive] Don't render withParentSize base component until size is known #621
Changes:
 - @vx/annotation: 0.0.193 => 0.0.194
 - @vx/axis: 0.0.193 => 0.0.194
 - @vx/bounds: 0.0.193 => 0.0.194
 - @vx/brush: 0.0.193 => 0.0.194
 - @vx/chord: 0.0.193 => 0.0.194
 - @vx/clip-path: 0.0.193 => 0.0.194
 - @vx/curve: 0.0.193 => 0.0.194
 - @vx/demo: 0.0.193 => 0.0.194
 - @vx/drag: 0.0.193 => 0.0.194
 - @vx/event: 0.0.193 => 0.0.194
 - @vx/geo: 0.0.193 => 0.0.194
 - @vx/glyph: 0.0.193 => 0.0.194
 - @vx/gradient: 0.0.193 => 0.0.194
 - @vx/grid: 0.0.193 => 0.0.194
 - @vx/group: 0.0.193 => 0.0.194
 - @vx/heatmap: 0.0.193 => 0.0.194
 - @vx/hierarchy: 0.0.193 => 0.0.194
 - @vx/legend: 0.0.193 => 0.0.194
 - @vx/marker: 0.0.193 => 0.0.194
 - @vx/mock-data: 0.0.193 => 0.0.194
 - @vx/network: 0.0.193 => 0.0.194
 - @vx/pattern: 0.0.193 => 0.0.194
 - @vx/point: 0.0.193 => 0.0.194
 - @vx/responsive: 0.0.193 => 0.0.194
 - @vx/scale: 0.0.193 => 0.0.194
 - @vx/shape: 0.0.193 => 0.0.194
 - @vx/stats: 0.0.193 => 0.0.194
 - @vx/text: 0.0.193 => 0.0.194
 - @vx/threshold: 0.0.193 => 0.0.194
 - @vx/tooltip: 0.0.193 => 0.0.194
 - @vx/voronoi: 0.0.193 => 0.0.194
 - @vx/vx: 0.0.193 => 0.0.194
 - @vx/zoom: 0.0.193 => 0.0.194
christopher.card.williams
published 0.0.193 •

Changelog

Source

v0.0.193

See the TypeScript project for a full list of issues + PRs.

:trophy: Contributors
:rocket: Enhancements
  • [@vx/*]
    • all packages re-written in TypeScript and export types under lib/index.d.ts
    • Many misc bug fixes with improved type safety, most propTypes are likely stricter now
  • [brush] @vx/brush now exports a working Brush component :tada:
  • [demo]
    • all gallery demos re-written with react hooks + types
    • new @vx/brush demo is added
:memo: Documentation
  • [@vx/*] all components in all packages now have full doc strings. note: these is not yet reflected on the docs site.
:boom: Breaking Changes
  • [boxplot] @vx/boxplot deprecated in favor of @vx/stats #561
  • [mock-data] radius and distance values in the @vx/mock-data exoplanet dataset were updated from strings to numbers to remove the need for consumers to coerce to numbers themselves #579
  • [drag] #499
    • now has a peerDep react@^16.3 for React.Fragment, dropping support for react@^15
    • Empty parent <g> wrapper around Drag children was replaced with a React.Fragment which removes a DOM element.
  • [pattern] PatternOrientation is no longer the default export of @vx/patterns/lib/constants and is instead a named export. PatternOrientation is still used as the export name if importing from the index: import { PatternOrientation } from '@vx/pattern' #503
  • [shape] #507
    • now has a peerDep react@^16.3 for React.Fragment, dropping support for react@^15
    • the Arc centroid prop was removed as it was not functional (it was called as if it was an arc.centroid() configuration parameter, but in reality the .centroid method is for returning the centroid of a datum.
    • the Area component is no longer wrapped in an empty <g> element
    • order and offset props for Stack, BarStack, BarStackHorizontal, and AreaStack previously supported string, array, or functions. Only the string prop was functional, and only the enumerated string presets are now allowed.
  • [voronoi] now has a peerDep react@^16.3 for React.Fragment, dropping support for react@^15 #512
  • [network] #535
    • now has a peerDep react@^16.3 for React.Fragment, dropping support for react@^15
    • <Nodes /> inner node wrapper <g> element className changed to singular (vx-network-nodes => vx-network-node) and outer wrapper <g> was replaced with a React.Fragment
    • <Links /> inner link wrapper <g> element className changed to singular (vx-network-links => vx-network-link) and outer wrapper <g> was replaced with a React.Fragment
  • [glyph] #518
    • now has a peerDep react@^16.3 for React.Fragment, dropping support for react@^15
    • (non-functional) children prop removed from GlyphDot component
  • [heatmap] now has a peerDep react@^16.3 for React.Fragment, dropping support for react@^15 #520
  • [hierarchy] now has a peerDep react@^16.3 for React.Fragment, dropping support for react@^15 #524
  • [threshold] makes the Threshold id prop required #533
  • [geo] now has a peerDep react@^16.3 for React.Fragment, dropping support for react@^15 #537
  • [legend] #551
    • now has a peerDep react@^16.3 for React.Fragment, dropping support for react@^15
    • the following directory structures were changed which will break deep imports: src/legends/* => src/*
  • [stats] #570
    • now has a peerDep react@^16.3 for React.Fragment, dropping support for react@^15
    • the following directory structures were changed which will break deep imports
      • src/violinplot/ViolinPlot.jsx => src/ViolinPlot.tsx
      • src/boxplot/BoxPlot.jsx => src/BoxPlot.tsx
:house: Internal
  • add TypeScript build support to monorepo #488
  • [text] Remove deprecated lifecycles used in Text #576
Changes:
 - @vx/annotation: 0.0.192 => 0.0.193
 - @vx/axis: 0.0.192 => 0.0.193
 - @vx/bounds: 0.0.192 => 0.0.193
 - @vx/brush: 0.0.192 => 0.0.193
 - @vx/chord: 0.0.192 => 0.0.193
 - @vx/clip-path: 0.0.192 => 0.0.193
 - @vx/curve: 0.0.192 => 0.0.193
 - @vx/demo: 0.0.192 => 0.0.193
 - @vx/drag: 0.0.192 => 0.0.193
 - @vx/event: 0.0.192 => 0.0.193
 - @vx/geo: 0.0.192 => 0.0.193
 - @vx/glyph: 0.0.192 => 0.0.193
 - @vx/gradient: 0.0.192 => 0.0.193
 - @vx/grid: 0.0.192 => 0.0.193
 - @vx/group: 0.0.192 => 0.0.193
 - @vx/heatmap: 0.0.192 => 0.0.193
 - @vx/hierarchy: 0.0.192 => 0.0.193
 - @vx/legend: 0.0.192 => 0.0.193
 - @vx/marker: 0.0.192 => 0.0.193
 - @vx/mock-data: 0.0.192 => 0.0.193
 - @vx/network: 0.0.192 => 0.0.193
 - @vx/pattern: 0.0.192 => 0.0.193
 - @vx/point: 0.0.192 => 0.0.193
 - @vx/responsive: 0.0.192 => 0.0.193
 - @vx/scale: 0.0.192 => 0.0.193
 - @vx/shape: 0.0.192 => 0.0.193
 - @vx/stats: 0.0.192 => 0.0.193
 - @vx/text: 0.0.192 => 0.0.193
 - @vx/threshold: 0.0.192 => 0.0.193
 - @vx/tooltip: 0.0.192 => 0.0.193
 - @vx/voronoi: 0.0.192 => 0.0.193
 - @vx/vx: 0.0.192 => 0.0.193
 - @vx/zoom: 0.0.192 => 0.0.193
christopher.card.williams
published 0.0.193-alpha.2 •

christopher.card.williams
published 0.0.193-alpha.1 •

christopher.card.williams
published 0.0.193-alpha.0 •

2345
11Next
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc