@flowscape-ui/core-sdk 1.0.6 → 1.0.8
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 -10
- package/dist/index.cjs +6 -5
- package/dist/index.d.cts +306 -5
- package/dist/index.d.ts +306 -5
- package/dist/index.js +6 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -170,6 +170,7 @@ const engine = new CoreEngine({
|
|
|
170
170
|
| `AreaSelectionPlugin` | Area selection with frame (Shift+Drag) |
|
|
171
171
|
| `VisualGuidesPlugin` | Smart alignment guides during movement/resize |
|
|
172
172
|
| `HistoryPlugin` | Undo/redo functionality with Ctrl+Z |
|
|
173
|
+
| `PersistencePlugin` | Local persistence: auto-save, export/import JSON |
|
|
173
174
|
| `LogoPlugin` | Watermark/logo on canvas |
|
|
174
175
|
|
|
175
176
|
| Plugin | Description |
|
|
@@ -191,16 +192,17 @@ const engine = new CoreEngine({
|
|
|
191
192
|
|
|
192
193
|
### Node Operations (NodeHotkeysPlugin)
|
|
193
194
|
|
|
194
|
-
| Shortcut | Action
|
|
195
|
-
| ---------------------- |
|
|
196
|
-
| `Ctrl+C` | Copy selected nodes
|
|
197
|
-
| `Ctrl+X` | Cut selected nodes
|
|
198
|
-
| `Ctrl+V` | Paste nodes
|
|
199
|
-
| `Delete` / `Backspace` | Delete selected nodes
|
|
200
|
-
| `
|
|
201
|
-
| `Ctrl+
|
|
202
|
-
| `Ctrl+
|
|
203
|
-
| `Ctrl+Shift+
|
|
195
|
+
| Shortcut | Action |
|
|
196
|
+
| ---------------------- | -------------------------------- |
|
|
197
|
+
| `Ctrl+C` | Copy selected nodes |
|
|
198
|
+
| `Ctrl+X` | Cut selected nodes |
|
|
199
|
+
| `Ctrl+V` | Paste nodes |
|
|
200
|
+
| `Delete` / `Backspace` | Delete selected nodes |
|
|
201
|
+
| `Alt+Drag (LMB)` | Clone selected nodes by dragging |
|
|
202
|
+
| `Ctrl+]` | Move node forward (z-index) |
|
|
203
|
+
| `Ctrl+[` | Move node backward (z-index) |
|
|
204
|
+
| `Ctrl+Shift+]` | Bring to front |
|
|
205
|
+
| `Ctrl+Shift+[` | Send to back |
|
|
204
206
|
|
|
205
207
|
### Grouping (SelectionPlugin)
|
|
206
208
|
|