kakidash 0.2.3 → 0.3.0
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.ja.md +5 -4
- package/README.md +3 -2
- package/dist/index.d.ts +674 -5
- package/dist/kakidash.cjs +19 -19
- package/dist/kakidash.es.js +4176 -3750
- package/dist/kakidash.umd.js +19 -19
- package/package.json +1 -1
package/README.ja.md
CHANGED
|
@@ -19,13 +19,13 @@ Kakidashのミッションは、**アウトプット速度の最大化**です
|
|
|
19
19
|
- **マインドマップ作成**: ノードの追加、兄弟ノード、子ノードの操作
|
|
20
20
|
- **レイアウト**: 標準 (Standard/Both)、左揃え (Left)、右揃え (Right)
|
|
21
21
|
- **スタイリング**:
|
|
22
|
-
-
|
|
23
|
-
- 太字 (Bold)、斜体 (Italic)
|
|
24
|
-
-
|
|
22
|
+
- フォントサイズの調整
|
|
23
|
+
- 太字 (`Bold`)、斜体 (`Italic`)、取り消し線 (`Strikethrough`)
|
|
24
|
+
- パレットによる文字ごとの色変更 (Style Editor)
|
|
25
25
|
- **テーマ**: 複数の組み込みテーマ (Default, Simple, Colorful, Dark) の切り替え
|
|
26
26
|
- **アイコン設定**: コマンドパレットからのフラットアイコンおよび数字アイコン (0-9) の追加・削除 (`m` key)
|
|
27
27
|
- **インタラクション**:
|
|
28
|
-
- ドラッグ&ドロップによるノード移動・並び替え
|
|
28
|
+
- ドラッグ&ドロップによるノード移動・並び替え (PCのマウスおよびモバイルのタッチ操作に対応)
|
|
29
29
|
- キーボードショートカットによる高速操作
|
|
30
30
|
- **ヘルプモーダル**: ツールバーの「?」アイコンからアイコンの意味とショートカットキーの確認が可能
|
|
31
31
|
- **複数選択**: Shift + Click または Shift + 矢印キーによる範囲選択
|
|
@@ -365,6 +365,7 @@ const kakidash = new Kakidash(container, {
|
|
|
365
365
|
| --------------------------- | ----------------------------- |
|
|
366
366
|
| `Shift + b` | 太字 (Bold) 切り替え |
|
|
367
367
|
| `Shift + i` | 斜体 (Italic) 切り替え |
|
|
368
|
+
| `Shift + x` | 取り消し線 (Strikethrough) 切り替え |
|
|
368
369
|
| `Shift + . (>)` / `.` | フォントサイズ拡大 |
|
|
369
370
|
| `Shift + , (<)` / `,` | フォントサイズ縮小 |
|
|
370
371
|
| `Shift + Alt + ArrowLeft / Right` | ノード幅の変更 |
|
package/README.md
CHANGED
|
@@ -18,12 +18,12 @@ Master the shortcuts and expand your mind map at the speed of thought.
|
|
|
18
18
|
- **Layouts**: Standard (Standard/Both), Left aligned (Left), Right aligned (Right).
|
|
19
19
|
- **Styling**:
|
|
20
20
|
- Font size adjustment.
|
|
21
|
-
- Bold (`Bold`), Italic (`Italic`).
|
|
21
|
+
- Bold (`Bold`), Italic (`Italic`), Strikethrough (`Strikethrough`).
|
|
22
22
|
- Color changes via palette (Style Editor).
|
|
23
23
|
- **Themes**: Switch between multiple built-in themes (Default, Simple, Colorful, Dark).
|
|
24
24
|
- **Icon Settings**: Add/Remove flat icons and numeric icons (0-9) via Command Palette (`m` key).
|
|
25
25
|
- **Interaction**:
|
|
26
|
-
- Drag and drop for node movement and reordering.
|
|
26
|
+
- Drag and drop for node movement and reordering (Supports Mouse & Touch on Mobile).
|
|
27
27
|
- Keyboard shortcuts for rapid operation.
|
|
28
28
|
- **Help Modal**: Accessible via the "?" icon in the toolbar, allowing you to check icon meanings and shortcuts.
|
|
29
29
|
- **Multi-selection**: Shift + Click or Shift + Arrow Keys to select multiple nodes.
|
|
@@ -360,6 +360,7 @@ Here is the complete default configuration. You can partially override these key
|
|
|
360
360
|
| --------------------------- | --------------------------------- |
|
|
361
361
|
| `Shift + b` | Toggle Bold |
|
|
362
362
|
| `Shift + i` | Toggle Italic |
|
|
363
|
+
| `Shift + x` | Toggle Strikethrough |
|
|
363
364
|
| `Shift + . (>)` / `.` | Increase font size |
|
|
364
365
|
| `Shift + , (<)` / `,` | Decrease font size |
|
|
365
366
|
| `Shift + Alt + ArrowLeft / Right` | Adjust node width |
|