@malloydata/render 0.0.210-dev241106211926 → 0.0.210-dev241107210431

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.
Files changed (2) hide show
  1. package/README.md +2 -14
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -46,18 +46,6 @@ registerMalloyRender({
46
46
  });
47
47
  ```
48
48
 
49
- ## Developing locally with Storybook
49
+ # Developing
50
50
 
51
- Run `npm run storybook` to launch a Storybook app in your browser. This app will hot reload as you make changes to the renderer source.
52
-
53
- Stories are written in the `src/stories` directory. To add more data and Malloy files for your stories to consume, you must:
54
-
55
- - put .malloy files in `src/stories/static`
56
- - put data files in `src/stories/static/data`
57
- - register data files be loaded into the DuckDB WASM connection by adding the file name to `.storybook/registered_data.json`
58
-
59
- [Take a look at the Basic story as an example.](./src/stories/basic.stories.ts)
60
-
61
- ### On Reloading Changes
62
-
63
- When running `npm run storybook`, only changes in the malloy-render package will hot reload properly. Changes to dependencies like the core `malloy` package may require a browser reload to work properly.
51
+ See the [Developing README](./DEVELOPING.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/render",
3
- "version": "0.0.210-dev241106211926",
3
+ "version": "0.0.210-dev241107210431",
4
4
  "license": "MIT",
5
5
  "main": "dist/module/index.umd.js",
6
6
  "types": "dist/index.d.ts",
@@ -30,7 +30,7 @@
30
30
  "build-types": "tsc --build --declaration --emitDeclarationOnly"
31
31
  },
32
32
  "dependencies": {
33
- "@malloydata/malloy": "^0.0.210-dev241106211926",
33
+ "@malloydata/malloy": "^0.0.210-dev241107210431",
34
34
  "@tanstack/solid-virtual": "^3.10.4",
35
35
  "component-register": "^0.8.6",
36
36
  "lodash": "^4.17.20",