@uwdata/vgplot 0.9.0 → 0.10.0

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.9.0",
3
+ "version": "0.10.0",
4
4
  "description": "An API for interactive Mosaic-powered visualizations and dashboards.",
5
5
  "keywords": [
6
6
  "data",
@@ -12,7 +12,7 @@
12
12
  "mosaic"
13
13
  ],
14
14
  "license": "BSD-3-Clause",
15
- "author": "Jeffrey Heer (http://idl.cs.washington.edu)",
15
+ "author": "Jeffrey Heer (https://idl.uw.edu)",
16
16
  "type": "module",
17
17
  "main": "src/index.js",
18
18
  "module": "src/index.js",
@@ -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.9.0",
34
- "@uwdata/mosaic-inputs": "^0.9.0",
35
- "@uwdata/mosaic-plot": "^0.9.0",
36
- "@uwdata/mosaic-sql": "^0.9.0"
33
+ "@uwdata/mosaic-core": "^0.10.0",
34
+ "@uwdata/mosaic-inputs": "^0.10.0",
35
+ "@uwdata/mosaic-plot": "^0.10.0",
36
+ "@uwdata/mosaic-sql": "^0.10.0"
37
37
  },
38
- "gitHead": "89bb9b0dfa747aed691eaeba35379525a6764c61"
38
+ "gitHead": "94fc4f0d4efc622001f6afd6714d1e9dda745be2"
39
39
  }
package/src/api.js CHANGED
@@ -269,6 +269,7 @@ export {
269
269
  rRange,
270
270
  rClamp,
271
271
  rNice,
272
+ rLabel,
272
273
  rPercent,
273
274
  rZero,
274
275
  rBase,
@@ -257,6 +257,7 @@ export const rDomain = attrf('rDomain');
257
257
  export const rRange = attrf('rRange');
258
258
  export const rClamp = attrf('rClamp');
259
259
  export const rNice = attrf('rNice');
260
+ export const rLabel = attrf('rLabel');
260
261
  export const rPercent = attrf('rPercent');
261
262
  export const rZero = attrf('rZero');
262
263
  export const rBase = attrf('rBase');