@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.
@@ -1,4 +1,4 @@
1
- export function from(table: any, options: any): {
1
+ export function from(table: any, options?: any): {
2
2
  table: any;
3
3
  options: any;
4
4
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uwdata/vgplot",
3
- "version": "0.18.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.18.0",
39
- "@uwdata/mosaic-inputs": "^0.18.0",
40
- "@uwdata/mosaic-plot": "^0.18.0",
41
- "@uwdata/mosaic-sql": "^0.18.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": "dfb9ded0b0307754e3185ca34cc49a1384fe8455"
43
+ "gitHead": "64ac2aaeefe9ff469edfeed417414a0a7866863f"
44
44
  }
package/src/plot/data.js CHANGED
@@ -1,3 +1,3 @@
1
- export function from(table, options) {
1
+ export function from(table, options = undefined) {
2
2
  return { table, options };
3
3
  }
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) => implicitType(ErrorBarMark, 'ruleX', ...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);