@uwdata/mosaic-spec 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/mosaic-schema.json +7971 -2265
- package/dist/mosaic-spec.js +193 -80
- package/dist/mosaic-spec.min.js +20 -20
- package/dist/types/spec/Param.d.ts +1 -1
- package/dist/types/spec/PlotMark.d.ts +2 -1
- package/dist/types/spec/marks/Density.d.ts +22 -7
- package/dist/types/spec/marks/Waffle.d.ts +58 -0
- package/package.json +5 -5
- package/src/spec/Param.ts +1 -0
- package/src/spec/PlotMark.ts +3 -1
- package/src/spec/marks/Density.ts +25 -7
- package/src/spec/marks/Waffle.ts +61 -0
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# mosaic-spec
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@uwdata/mosaic-spec)
|
|
4
|
+
|
|
3
5
|
Declarative specification of Mosaic-powered applications as JSON or YAML files. This package provides a parser and code generation framework for reading specifications in a JSON format and generating live Mosaic visualizations and dashboards using the [vgplot](https://github.com/uwdata/mosaic/tree/main/packages/vgplot) API.
|
|
4
6
|
|
|
5
7
|
## Usage
|