Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@uwdata/vgplot

Package Overview
Dependencies
Maintainers
2
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@uwdata/vgplot - npm Package Compare versions

Comparing version 0.8.0 to 0.9.0

12

package.json
{
"name": "@uwdata/vgplot",
"version": "0.8.0",
"version": "0.9.0",
"description": "An API for interactive Mosaic-powered visualizations and dashboards.",

@@ -33,8 +33,8 @@ "keywords": [

"dependencies": {
"@uwdata/mosaic-core": "^0.8.0",
"@uwdata/mosaic-inputs": "^0.8.0",
"@uwdata/mosaic-plot": "^0.8.0",
"@uwdata/mosaic-sql": "^0.8.0"
"@uwdata/mosaic-core": "^0.9.0",
"@uwdata/mosaic-inputs": "^0.9.0",
"@uwdata/mosaic-plot": "^0.9.0",
"@uwdata/mosaic-sql": "^0.9.0"
},
"gitHead": "a24b4c9f7dfa1c38c6af96ec17e075326c1af9b0"
"gitHead": "89bb9b0dfa747aed691eaeba35379525a6764c61"
}

@@ -27,2 +27,3 @@ export {

corr,
covariance,
covarPop,

@@ -311,2 +312,3 @@ entropy,

dot, dotX, dotY, circle, hexagon,
errorbarX, errorbarY,
text, textX, textY,

@@ -335,2 +337,3 @@ image,

intervalXY,
nearest,
nearestX,

@@ -341,2 +344,3 @@ nearestY,

toggleY,
toggleZ,
toggleColor,

@@ -343,0 +347,0 @@ pan,

@@ -33,2 +33,6 @@ import {

export function toggleZ(options) {
return toggle({ ...options, channels: ['z'] });
}
export function toggleColor(options) {

@@ -38,8 +42,12 @@ return toggle({ ...options, channels: ['color'] });

export function nearest({ as, ...rest }) {
return interactor(Nearest, { ...rest, selection: as, pointer: 'xy' });
}
export function nearestX({ as, ...rest }) {
return interactor(Nearest, { ...rest, selection: as, channel: 'x' });
return interactor(Nearest, { ...rest, selection: as, pointer: 'x' });
}
export function nearestY({ as, ...rest }) {
return interactor(Nearest, { ...rest, selection: as, channel: 'y' });
return interactor(Nearest, { ...rest, selection: as, pointer: 'y' });
}

@@ -46,0 +54,0 @@

@@ -8,2 +8,3 @@ import {

DenseLineMark,
ErrorBarMark,
GeoMark,

@@ -14,3 +15,3 @@ HeatmapMark,

RasterTileMark,
RegressionMark
RegressionMark,
} from '@uwdata/mosaic-plot';

@@ -107,2 +108,5 @@

export const errorbarX = (...args) => explicitType(ErrorBarMark, 'ruleY', ...args);
export const errorbarY = (...args) => implicitType(ErrorBarMark, 'ruleX', ...args);
export const voronoi = (...args) => mark('voronoi', ...args);

@@ -109,0 +113,0 @@ export const voronoiMesh = (...args) => mark('voronoiMesh', ...args);

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc