@meowdown/react 0.17.4 → 0.18.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/dist/index.js +7 -2
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -431,8 +431,13 @@ function SlashMenu() {
|
|
|
431
431
|
}),
|
|
432
432
|
/* @__PURE__ */ jsx(SlashMenuItem, {
|
|
433
433
|
label: "Task list",
|
|
434
|
-
kbd: "[]",
|
|
435
|
-
onSelect: () => editor.commands.
|
|
434
|
+
kbd: "+ [ ] ",
|
|
435
|
+
onSelect: () => editor.commands.wrapInCircleTask()
|
|
436
|
+
}),
|
|
437
|
+
/* @__PURE__ */ jsx(SlashMenuItem, {
|
|
438
|
+
label: "Checkbox list",
|
|
439
|
+
kbd: "- [ ] ",
|
|
440
|
+
onSelect: () => editor.commands.wrapInSquareTask()
|
|
436
441
|
}),
|
|
437
442
|
/* @__PURE__ */ jsx(SlashMenuItem, {
|
|
438
443
|
label: "Code block",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meowdown/react",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.18.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"@ocavue/utils": "^1.7.0",
|
|
28
28
|
"@prosekit/core": "^0.13.0-beta.3",
|
|
29
29
|
"@prosekit/pm": "^0.1.19-beta.0",
|
|
30
|
-
"@prosekit/react": "^0.8.0-beta.
|
|
30
|
+
"@prosekit/react": "^0.8.0-beta.9",
|
|
31
31
|
"clsx": "^2.1.1",
|
|
32
32
|
"lucide-react": "^1.21.0",
|
|
33
|
-
"@meowdown/core": "0.
|
|
33
|
+
"@meowdown/core": "0.18.0"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"react": "^19.0.0",
|