@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/dist/vgplot.js +5289 -4219
- package/dist/vgplot.min.js +14 -14
- package/package.json +7 -7
- package/src/api.js +1 -0
- package/src/plot/attributes.js +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uwdata/vgplot",
|
|
3
|
-
"version": "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 (
|
|
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.
|
|
34
|
-
"@uwdata/mosaic-inputs": "^0.
|
|
35
|
-
"@uwdata/mosaic-plot": "^0.
|
|
36
|
-
"@uwdata/mosaic-sql": "^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": "
|
|
38
|
+
"gitHead": "94fc4f0d4efc622001f6afd6714d1e9dda745be2"
|
|
39
39
|
}
|
package/src/api.js
CHANGED
package/src/plot/attributes.js
CHANGED
|
@@ -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');
|