@uwdata/vgplot 0.12.0 → 0.12.2
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/README.md +2 -0
- package/dist/vgplot.js +195 -80
- package/dist/vgplot.min.js +11 -11
- package/package.json +6 -6
- package/src/api.js +2 -1
- package/src/plot/marks.js +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uwdata/vgplot",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.2",
|
|
4
4
|
"description": "An API for interactive Mosaic-powered visualizations and dashboards.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"data",
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"prepublishOnly": "npm run test && npm run lint && npm run build"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@uwdata/mosaic-core": "^0.12.
|
|
34
|
-
"@uwdata/mosaic-inputs": "^0.12.
|
|
35
|
-
"@uwdata/mosaic-plot": "^0.12.
|
|
36
|
-
"@uwdata/mosaic-sql": "^0.12.
|
|
33
|
+
"@uwdata/mosaic-core": "^0.12.2",
|
|
34
|
+
"@uwdata/mosaic-inputs": "^0.12.2",
|
|
35
|
+
"@uwdata/mosaic-plot": "^0.12.2",
|
|
36
|
+
"@uwdata/mosaic-sql": "^0.12.2"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "0ca741d840b98039255f26a5ceedf10be66f790e"
|
|
39
39
|
}
|
package/src/api.js
CHANGED
package/src/plot/marks.js
CHANGED
|
@@ -130,3 +130,6 @@ export const gridFy = (...args) => mark('gridFy', ...args);
|
|
|
130
130
|
export const geo = (...args) => implicitType(GeoMark, ...args);
|
|
131
131
|
export const sphere = (...args) => mark('sphere', ...args);
|
|
132
132
|
export const graticule = (...args) => mark('graticule', ...args);
|
|
133
|
+
|
|
134
|
+
export const waffleX = (...args) => mark('waffleX', ...args);
|
|
135
|
+
export const waffleY = (...args) => mark('waffleY', ...args);
|