@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uwdata/vgplot",
3
- "version": "0.12.0",
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.0",
34
- "@uwdata/mosaic-inputs": "^0.12.0",
35
- "@uwdata/mosaic-plot": "^0.12.0",
36
- "@uwdata/mosaic-sql": "^0.12.0"
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": "523b1afe2a0880291c92f81e4a7b91829362d285"
38
+ "gitHead": "0ca741d840b98039255f26a5ceedf10be66f790e"
39
39
  }
package/src/api.js CHANGED
@@ -327,7 +327,8 @@ export {
327
327
  frame,
328
328
  axisX, axisY, axisFx, axisFy,
329
329
  gridX, gridY, gridFx, gridFy,
330
- geo, sphere, graticule
330
+ geo, sphere, graticule,
331
+ waffleX, waffleY
331
332
  } from './plot/marks.js';
332
333
 
333
334
  export {
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);