@graphysdk/viz-engine 2.0.0-beta.1786440210947 → 2.0.0-beta.1787130761469
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 +7 -7
- package/dist/{config.types-DnU7Dr0S.js → config.types-C9Rwz29h.js} +906 -605
- package/dist/config.types-_BpZP1A3.cjs +1 -0
- package/dist/graph-config.cjs +1 -1
- package/dist/graph-config.d.ts +253 -133
- package/dist/graph-config.mjs +649 -467
- package/dist/index.cjs +4 -4
- package/dist/index.d.ts +769 -409
- package/dist/index.mjs +4195 -3711
- package/licenses/PolyForm-Free-Trial-1.0.0.md +93 -0
- package/licenses/PolyForm-NonCommercial-1.0.0.md +131 -0
- package/licenses/PolyForm-Small-Business-1.0.0.md +121 -0
- package/package.json +7 -1
- package/dist/config.types-DnPx8Xzn.cjs +0 -1
package/README.md
CHANGED
|
@@ -1,16 +1,13 @@
|
|
|
1
1
|
# @graphysdk/viz-engine
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
The Graphy chart engine. Build a spec and compile it — no DOM, no React.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
- [How a chart is built](https://docs.graphy.dev/sdk-next/concepts/how-a-chart-is-built)
|
|
8
|
-
- [Quickstart](https://docs.graphy.dev/sdk-next/quickstart) — start with `@graphysdk/react` for the batteries-included React path
|
|
5
|
+
React apps should start with [`@graphysdk/react`](https://www.npmjs.com/package/@graphysdk/react).
|
|
9
6
|
|
|
10
7
|
## Install
|
|
11
8
|
|
|
12
9
|
```bash
|
|
13
|
-
|
|
10
|
+
npm install @graphysdk/viz-engine
|
|
14
11
|
```
|
|
15
12
|
|
|
16
13
|
## Usage
|
|
@@ -22,4 +19,7 @@ const input = pipe(createSpec({ x: 'month', y: 'revenue' }), geom.bar(), scale.x
|
|
|
22
19
|
const { compiled } = createCompiler().compile({ input, data });
|
|
23
20
|
```
|
|
24
21
|
|
|
25
|
-
|
|
22
|
+
## Docs
|
|
23
|
+
|
|
24
|
+
- [How a chart is built](https://docs.graphy.dev/sdk-next/concepts/how-a-chart-is-built)
|
|
25
|
+
- [Quickstart](https://docs.graphy.dev/sdk-next/quickstart)
|