@squeed/flow-sdk 2.0.31 → 2.0.32
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 -0
- package/dist/index.cjs +10 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +5081 -5074
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -481,6 +481,13 @@ stays disabled. Individual node-view actions do not change this setting.
|
|
|
481
481
|
|
|
482
482
|
`NodeViewMode` supports `"default"`, `"properties"` and `"icon-label"`; controlled
|
|
483
483
|
consumers continue using `config.nodeViewModes` and `onNodeViewModeChange`.
|
|
484
|
+
Dot-triggered selection includes `NodeSelectionModifiers.viewToggle: true`;
|
|
485
|
+
ordinary selections omit it. The dot invokes `onNodeViewToggle` before changing
|
|
486
|
+
the view so a host can queue geometry-aware focus without first focusing the
|
|
487
|
+
compact node. SDK Test centers the opened node using its existing default focus
|
|
488
|
+
padding; ordinary clicks still honor Include children. The layout scheduler
|
|
489
|
+
coalesces measurements and does not restart a pending focus for identical
|
|
490
|
+
destination geometry.
|
|
484
491
|
Parent changes follow the host's existing collapse persistence behavior. The
|
|
485
492
|
name `collapsed` remains reserved for child-collapse behavior, not object view
|
|
486
493
|
modes. `onAllNodesIconLabelChange` reports bulk actions. The bottom toolbar exposes
|