@bpmn-nova/react 0.3.5-preview → 0.3.6-preview
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 +12 -287
- package/dist/index.d.ts +12 -1
- package/dist/index.js +9 -0
- package/llms-full.txt +3394 -1749
- package/llms.txt +6 -4
- package/package.json +2 -2
package/llms.txt
CHANGED
|
@@ -67,7 +67,7 @@ Use `engine="flowable"` or `engine="activiti"` explicitly from the host workflow
|
|
|
67
67
|
|
|
68
68
|
Studio modes are presentation state: `design` means editable process design, `viewer` means read-only process viewing, and `instance` means approval trace. Observe the actual Shell state through `subscribeMode()` or framework mode events; never store it in the BPMN model.
|
|
69
69
|
|
|
70
|
-
Node geometry is also presentation, not DI normalization. Loading server XML via the component parses its BPMN DI Bounds; XML export already writes model dimensions. The `0.3.5-preview` gateway/data fix scales standard shells to fit those bounds and docks display endpoints without rewriting model geometry or waypoints. Do not resize stored nodes, recreate them, or patch internal CSS to compensate. See [Node DI and visual geometry](docs/
|
|
70
|
+
Node geometry is also presentation, not DI normalization. Loading server XML via the component parses its BPMN DI Bounds; XML export already writes model dimensions. The `0.3.5-preview` gateway/data fix scales standard shells to fit those bounds and docks display endpoints without rewriting model geometry or waypoints. Do not resize stored nodes, recreate them, or patch internal CSS to compensate. See [Node DI and visual geometry](docs/src/api/index.md#节点-di-与视觉尺寸) and the customization section in the co-located `llms-full.txt`; `node-geometry` is internal, not another installable package.
|
|
71
71
|
|
|
72
72
|
## 4. Mount a minimal integration
|
|
73
73
|
|
|
@@ -228,7 +228,7 @@ Core Shell and framework handles expose `getConfig()` and `setConfig()`. The set
|
|
|
228
228
|
|
|
229
229
|
### 4.2 Sidebar layout and collapse (0.3.5-preview)
|
|
230
230
|
|
|
231
|
-
Read `SOURCE: docs/
|
|
231
|
+
Read `SOURCE: docs/src/customization/index.md`, section `侧栏布局与平滑折叠`, in the co-located `llms-full.txt` before integrating the sidebar interfaces introduced in `0.3.5-preview`. They are not available in the older `0.3.4-preview` package. The host must still provide a computable container height.
|
|
232
232
|
|
|
233
233
|
- Configure `config.ui.leftPanel/rightPanel.collapsible` (default `true`) and `defaultCollapsed` (wide-layout initialization only, default `false`). `config.ui.rightPanel.layout` defaults to `flex`: Nova supplies a bounded column, the host arranges fixed regions and a `flex: 1; min-height: 0; overflow: auto` body. Use `scroll` for Nova-owned scrolling of the entire content; avoid nested scroll containers unless intentional.
|
|
234
234
|
- Core `slots.right`, Vue `#right`, and React `right` replace only content. Native slots preserve the host application tree and win over same-name Core DOM slots. Do not create another framework root or patch Nova classes. Header/Right contexts share `state`, `mode`, `ui`, and `panelSelection`, plus `studio`, `shell`, and `actions`.
|
|
@@ -260,7 +260,7 @@ Use `allowedModes` to expose only host-authorized workbench modes. Runtime chang
|
|
|
260
260
|
|
|
261
261
|
Runtime snapshots store asset references only. The host supplies `runtimeAssetResolver`. BPMN Nova does not execute workflow engines, submit approvals, upload/store attachments, issue permissions, or export PNG/PDF.
|
|
262
262
|
|
|
263
|
-
For approval-trace integration, read the complete `SOURCE: docs/
|
|
263
|
+
For approval-trace integration, read the complete `SOURCE: docs/src/guide/runtime.md` section in the co-located `llms-full.txt` before mapping backend records. It covers instance-bound XML, stable work-item/visit identities, Flowable/Activiti mapping limits, complete approval scenarios, request cancellation, and assets. Runtime data stays top-level; only Studio display configuration belongs in `config.viewer`. Finish this branch only after the guide's relevant integration checks pass; report missing history instead of inventing facts.
|
|
264
264
|
|
|
265
265
|
Named Runtime type re-exports from the Vue/React facade start in `0.3.5-preview`. Check the installed declarations before using them; the guide gives a Props-based type fallback for older releases. Keep the one-direct-package rule rather than adding Studio for these types.
|
|
266
266
|
|
|
@@ -292,6 +292,8 @@ Before changing Nova package versions, publishing, or recovering a partial relea
|
|
|
292
292
|
## Reference
|
|
293
293
|
|
|
294
294
|
- `README.md`: human-facing product overview and quick start.
|
|
295
|
+
- `docs/src/`: authoritative public documentation for VitePress; maintain detailed integration instructions here.
|
|
296
|
+
- `docs/src/examples/`: example guides with code imported from `examples/website/`; these shared snippets are expanded in `llms-full.txt`.
|
|
295
297
|
- `llms-full.txt`: complete generated AI context containing setup, component, Interface, customization, publishing, and architecture documentation.
|
|
296
|
-
- `docs/
|
|
298
|
+
- `docs/src/guide/runtime.md`: authoritative approval-trace guide in the source repository; the full content also ships inside every public package's `llms-full.txt`.
|
|
297
299
|
- `docs/NPM-PACKAGES.md`: authoritative global version and full-release policy, including partial-release recovery.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bpmn-nova/react",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.6-preview",
|
|
4
4
|
"description": "React components and hooks for BPMN Nova Designer, Viewer, Studio and Properties.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"bpmn",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"react-dom": ">=18"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@bpmn-nova/studio": "0.3.
|
|
45
|
+
"@bpmn-nova/studio": "0.3.6-preview"
|
|
46
46
|
},
|
|
47
47
|
"engines": {
|
|
48
48
|
"node": ">=18"
|