@mieweb/ui 0.6.1-dev.139 → 0.6.1-dev.140
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 +3 -3
- package/dist/styles.css +1 -1
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -54,7 +54,7 @@ Heavy or specialized dependencies are kept in separate entry points so they don'
|
|
|
54
54
|
| Entry point | Install | Import path |
|
|
55
55
|
| ------------------------ | ---------------------------------------------------- | ------------------------ |
|
|
56
56
|
| **AG Grid** | `npm install ag-grid-community ag-grid-react` | `@mieweb/ui/ag-grid` |
|
|
57
|
-
| **DataVis** | `npm install datavis-ace`
|
|
57
|
+
| **DataVis** | `npm install @mieweb/datavis datavis-ace` | `@mieweb/ui/datavis` |
|
|
58
58
|
|
|
59
59
|
## Quick Start
|
|
60
60
|
|
|
@@ -120,7 +120,7 @@ git clone --recurse-submodules https://github.com/mieweb/ui.git
|
|
|
120
120
|
cd ui
|
|
121
121
|
```
|
|
122
122
|
|
|
123
|
-
> `--recurse-submodules` is strongly recommended for first clone so the `packages/esheet` and `packages/ychart` submodules are populated immediately. Without them, the eSheet and YChart stories will not work.
|
|
123
|
+
> `--recurse-submodules` is strongly recommended for first clone so the `packages/esheet` and `packages/ychart` submodules are populated immediately. Without them, the eSheet and YChart stories will not work. DataVis NITRO is not a submodule — it ships as the published `@mieweb/datavis` npm package.
|
|
124
124
|
|
|
125
125
|
If you already cloned without submodules, run:
|
|
126
126
|
|
|
@@ -157,7 +157,7 @@ This starts the Storybook development server at [http://localhost:6006](http://l
|
|
|
157
157
|
|
|
158
158
|
Storybook integrates three sibling MIE projects, each sourced differently:
|
|
159
159
|
|
|
160
|
-
- **DataVis NITRO** — npm package `@mieweb/datavis`. No build step; consumed as a published package (no submodule
|
|
160
|
+
- **DataVis NITRO** — npm package `@mieweb/datavis`. No build step; consumed as a published package (no submodule needed).
|
|
161
161
|
- **eSheet** — git submodule `packages/esheet`. Built automatically by the `prestorybook` hook; rebuilds only when its artifacts are missing.
|
|
162
162
|
- **YChart** — git submodule `packages/ychart`. No build step; the story imports it directly from source via a relative dynamic import, and Storybook's Vite config adds a `virtual:git-info` plugin, a `__YCHART_VERSION__` define, and dependency pre-bundling (`optimizeDeps`).
|
|
163
163
|
|