@uwdata/vgplot 0.18.0 → 0.19.1
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/dist/src/plot/data.d.ts +1 -1
- package/package.json +6 -6
- package/src/plot/data.js +1 -1
- package/src/plot/marks.js +1 -1
package/dist/src/plot/data.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uwdata/vgplot",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.19.1",
|
|
4
4
|
"description": "An API for interactive Mosaic-powered visualizations and dashboards.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"data",
|
|
@@ -35,10 +35,10 @@
|
|
|
35
35
|
"prepublishOnly": "npm run test && npm run lint && tsc --build"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@uwdata/mosaic-core": "^0.
|
|
39
|
-
"@uwdata/mosaic-inputs": "^0.
|
|
40
|
-
"@uwdata/mosaic-plot": "^0.
|
|
41
|
-
"@uwdata/mosaic-sql": "^0.
|
|
38
|
+
"@uwdata/mosaic-core": "^0.19.1",
|
|
39
|
+
"@uwdata/mosaic-inputs": "^0.19.1",
|
|
40
|
+
"@uwdata/mosaic-plot": "^0.19.1",
|
|
41
|
+
"@uwdata/mosaic-sql": "^0.19.0"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "64ac2aaeefe9ff469edfeed417414a0a7866863f"
|
|
44
44
|
}
|
package/src/plot/data.js
CHANGED
package/src/plot/marks.js
CHANGED
|
@@ -104,7 +104,7 @@ export const hexgrid = (...args) => mark('hexgrid', ...args);
|
|
|
104
104
|
export const regressionY = (...args) => implicitType(RegressionMark, ...args);
|
|
105
105
|
|
|
106
106
|
export const errorbarX = (...args) => explicitType(ErrorBarMark, 'ruleY', ...args);
|
|
107
|
-
export const errorbarY = (...args) =>
|
|
107
|
+
export const errorbarY = (...args) => explicitType(ErrorBarMark, 'ruleX', ...args);
|
|
108
108
|
|
|
109
109
|
export const voronoi = (...args) => mark('voronoi', ...args);
|
|
110
110
|
export const voronoiMesh = (...args) => mark('voronoiMesh', ...args);
|