mind-elixir 3.1.2 → 3.1.4
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/dist/MindElixir.iife.js +4 -4
- package/dist/MindElixir.js +257 -240
- package/dist/MindElixirLite.iife.js +5 -5
- package/dist/MindElixirLite.js +479 -475
- package/package.json +1 -1
- package/readme.md +23 -0
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -52,6 +52,7 @@ Mind elixir is a free open source mind map core.
|
|
|
52
52
|
- [Operation Guards](#operation-guards)
|
|
53
53
|
- [Methods](#methods)
|
|
54
54
|
- [Theme](#theme)
|
|
55
|
+
- [Shortcuts](#shortcuts)
|
|
55
56
|
- [Not only core](#not-only-core)
|
|
56
57
|
- [Development](#development)
|
|
57
58
|
- [Thanks](#thanks)
|
|
@@ -295,6 +296,28 @@ mind.changeTheme({
|
|
|
295
296
|
|
|
296
297
|
Be aware that Mind Elixir will not observe the change of `prefers-color-scheme`. Please change the theme **manually** when the scheme changes.
|
|
297
298
|
|
|
299
|
+
## Shortcuts
|
|
300
|
+
|
|
301
|
+
| Shortcut | Function |
|
|
302
|
+
| ------------------ | -------------------------------- |
|
|
303
|
+
| Enter | Insert Sibling Node |
|
|
304
|
+
| Tab | Insert Child Node |
|
|
305
|
+
| F1 | Center the Map |
|
|
306
|
+
| F2 | Begin Editing the Current Node |
|
|
307
|
+
| Up Arrow | Select the Previous Sibling Node |
|
|
308
|
+
| Down Arrow | Select the Next Sibling Node |
|
|
309
|
+
| Left/Right Arrow | Select Parent or First Child |
|
|
310
|
+
| PageUp | Move Up Node |
|
|
311
|
+
| PageDown | Move Down Node |
|
|
312
|
+
| Ctrl + Up Arrow | Change Layout Pattern to Side |
|
|
313
|
+
| Ctrl + Left Arrow | Change Layout Pattern to Left |
|
|
314
|
+
| Ctrl + Right Arrow | Change Layout Pattern to Right |
|
|
315
|
+
| Ctrl + C | Copy the Current Node |
|
|
316
|
+
| Ctrl + V | Paste the Copied Node |
|
|
317
|
+
| Ctrl + "+" | Zoom In Mind Map |
|
|
318
|
+
| Ctrl + "-" | Zoom Out Mind Map |
|
|
319
|
+
| Ctrl + 0 | Reset Zoom Level |
|
|
320
|
+
|
|
298
321
|
## Not only core
|
|
299
322
|
|
|
300
323
|
- [@mind-elixir/node-menu](https://github.com/ssshooter/node-menu)
|