@uwdata/vgplot
Advanced tools
Comparing version 0.8.0 to 0.9.0
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2898078
59680
+ Added@uwdata/mosaic-core@0.9.0(transitive)
+ Added@uwdata/mosaic-inputs@0.9.0(transitive)
+ Added@uwdata/mosaic-plot@0.9.0(transitive)
+ Added@uwdata/mosaic-sql@0.9.0(transitive)
- Removed@uwdata/mosaic-core@0.8.0(transitive)
- Removed@uwdata/mosaic-inputs@0.8.0(transitive)
- Removed@uwdata/mosaic-plot@0.8.0(transitive)
- Removed@uwdata/mosaic-sql@0.8.0(transitive)
Updated@uwdata/mosaic-core@^0.9.0
Updated@uwdata/mosaic-inputs@^0.9.0
Updated@uwdata/mosaic-plot@^0.9.0
Updated@uwdata/mosaic-sql@^0.9.0