prosekit 0.9.19 → 0.9.21
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.
|
@@ -88,6 +88,7 @@ import { BlockPopover as BlockPopover_alias_4 } from '@prosekit/svelte/block-han
|
|
|
88
88
|
import { BlockPopover as BlockPopover_alias_5 } from '@prosekit/vue/block-handle';
|
|
89
89
|
import { BlockPopoverElement } from '@prosekit/web/block-handle';
|
|
90
90
|
import { BlockPopoverProps } from '@prosekit/web/block-handle';
|
|
91
|
+
import { BlockquoteCommandsExtension } from '@prosekit/extensions/blockquote';
|
|
91
92
|
import { BlockquoteExtension } from '@prosekit/extensions/blockquote';
|
|
92
93
|
import { BlockquoteSpecExtension } from '@prosekit/extensions/blockquote';
|
|
93
94
|
import { BoldCommandsExtension } from '@prosekit/extensions/bold';
|
|
@@ -161,7 +162,9 @@ import { defineBaseCommands } from '@prosekit/core';
|
|
|
161
162
|
import { defineBaseKeymap } from '@prosekit/core';
|
|
162
163
|
import { defineBasicExtension } from '@prosekit/basic';
|
|
163
164
|
import { defineBlockquote } from '@prosekit/extensions/blockquote';
|
|
165
|
+
import { defineBlockquoteCommands } from '@prosekit/extensions/blockquote';
|
|
164
166
|
import { defineBlockquoteInputRule } from '@prosekit/extensions/blockquote';
|
|
167
|
+
import { defineBlockquoteKeymap } from '@prosekit/extensions/blockquote';
|
|
165
168
|
import { defineBlockquoteSpec } from '@prosekit/extensions/blockquote';
|
|
166
169
|
import { defineBold } from '@prosekit/extensions/bold';
|
|
167
170
|
import { defineBoldCommands } from '@prosekit/extensions/bold';
|
|
@@ -709,6 +712,8 @@ import { toggleMark as toggleMark_alias_1 } from '@prosekit/pm/commands';
|
|
|
709
712
|
import { ToggleMarkOptions } from '@prosekit/core';
|
|
710
713
|
import { toggleNode } from '@prosekit/core';
|
|
711
714
|
import { ToggleNodeOptions } from '@prosekit/core';
|
|
715
|
+
import { toggleWrap } from '@prosekit/core';
|
|
716
|
+
import { ToggleWrapOptions } from '@prosekit/core';
|
|
712
717
|
import { ToMarkAction } from '@prosekit/core';
|
|
713
718
|
import { ToNodeAction } from '@prosekit/core';
|
|
714
719
|
import { TooltipContent } from '@prosekit/lit/tooltip';
|
|
@@ -986,6 +991,8 @@ export { BlockPopoverElement }
|
|
|
986
991
|
|
|
987
992
|
export { BlockPopoverProps }
|
|
988
993
|
|
|
994
|
+
export { BlockquoteCommandsExtension }
|
|
995
|
+
|
|
989
996
|
export { BlockquoteExtension }
|
|
990
997
|
|
|
991
998
|
export { BlockquoteSpecExtension }
|
|
@@ -1140,8 +1147,12 @@ export { defineBasicExtension }
|
|
|
1140
1147
|
|
|
1141
1148
|
export { defineBlockquote }
|
|
1142
1149
|
|
|
1150
|
+
export { defineBlockquoteCommands }
|
|
1151
|
+
|
|
1143
1152
|
export { defineBlockquoteInputRule }
|
|
1144
1153
|
|
|
1154
|
+
export { defineBlockquoteKeymap }
|
|
1155
|
+
|
|
1145
1156
|
export { defineBlockquoteSpec }
|
|
1146
1157
|
|
|
1147
1158
|
export { defineBold }
|
|
@@ -2234,6 +2245,10 @@ export { toggleNode }
|
|
|
2234
2245
|
|
|
2235
2246
|
export { ToggleNodeOptions }
|
|
2236
2247
|
|
|
2248
|
+
export { toggleWrap }
|
|
2249
|
+
|
|
2250
|
+
export { ToggleWrapOptions }
|
|
2251
|
+
|
|
2237
2252
|
export { ToMarkAction }
|
|
2238
2253
|
|
|
2239
2254
|
export { ToNodeAction }
|
package/dist/prosekit-core.d.ts
CHANGED
|
@@ -22,6 +22,8 @@ export { unsetBlockType } from './_tsup-dts-rollup';
|
|
|
22
22
|
export { UnsetBlockTypeOptions } from './_tsup-dts-rollup';
|
|
23
23
|
export { unsetMark } from './_tsup-dts-rollup';
|
|
24
24
|
export { UnsetMarkOptions } from './_tsup-dts-rollup';
|
|
25
|
+
export { toggleWrap } from './_tsup-dts-rollup';
|
|
26
|
+
export { ToggleWrapOptions } from './_tsup-dts-rollup';
|
|
25
27
|
export { wrap } from './_tsup-dts-rollup';
|
|
26
28
|
export { WrapOptions } from './_tsup-dts-rollup';
|
|
27
29
|
export { MarkAction } from './_tsup-dts-rollup';
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
export { defineBlockquote } from './_tsup-dts-rollup';
|
|
2
|
+
export { BlockquoteExtension } from './_tsup-dts-rollup';
|
|
1
3
|
export { defineBlockquoteSpec } from './_tsup-dts-rollup';
|
|
2
4
|
export { defineBlockquoteInputRule } from './_tsup-dts-rollup';
|
|
3
|
-
export {
|
|
5
|
+
export { defineBlockquoteCommands } from './_tsup-dts-rollup';
|
|
6
|
+
export { defineBlockquoteKeymap } from './_tsup-dts-rollup';
|
|
4
7
|
export { BlockquoteSpecExtension } from './_tsup-dts-rollup';
|
|
5
|
-
export {
|
|
8
|
+
export { BlockquoteCommandsExtension } from './_tsup-dts-rollup';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prosekit",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.9.
|
|
4
|
+
"version": "0.9.21",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "ocavue",
|
|
@@ -556,17 +556,17 @@
|
|
|
556
556
|
"dist"
|
|
557
557
|
],
|
|
558
558
|
"dependencies": {
|
|
559
|
-
"@prosekit/basic": "0.3.
|
|
560
|
-
"@prosekit/core": "0.7.
|
|
561
|
-
"@prosekit/extensions": "0.7.
|
|
562
|
-
"@prosekit/lit": "0.3.
|
|
559
|
+
"@prosekit/basic": "0.3.28",
|
|
560
|
+
"@prosekit/core": "0.7.11",
|
|
561
|
+
"@prosekit/extensions": "0.7.16",
|
|
562
|
+
"@prosekit/lit": "0.3.24",
|
|
563
563
|
"@prosekit/pm": "0.1.8",
|
|
564
|
-
"@prosekit/preact": "0.3.
|
|
565
|
-
"@prosekit/react": "0.3.
|
|
566
|
-
"@prosekit/solid": "0.3.
|
|
567
|
-
"@prosekit/svelte": "0.4.
|
|
568
|
-
"@prosekit/vue": "0.3.
|
|
569
|
-
"@prosekit/web": "0.3.
|
|
564
|
+
"@prosekit/preact": "0.3.27",
|
|
565
|
+
"@prosekit/react": "0.3.28",
|
|
566
|
+
"@prosekit/solid": "0.3.26",
|
|
567
|
+
"@prosekit/svelte": "0.4.18",
|
|
568
|
+
"@prosekit/vue": "0.3.27",
|
|
569
|
+
"@prosekit/web": "0.3.16"
|
|
570
570
|
},
|
|
571
571
|
"peerDependencies": {
|
|
572
572
|
"loro-crdt": ">= 0.16.7",
|
|
@@ -613,16 +613,16 @@
|
|
|
613
613
|
}
|
|
614
614
|
},
|
|
615
615
|
"devDependencies": {
|
|
616
|
-
"@types/react": "^18.3.
|
|
616
|
+
"@types/react": "^18.3.5",
|
|
617
617
|
"@types/react-dom": "^18.3.0",
|
|
618
|
-
"loro-crdt": "^0.16.
|
|
618
|
+
"loro-crdt": "^0.16.10",
|
|
619
619
|
"loro-prosemirror": "^0.0.7",
|
|
620
|
-
"postcss": "^8.4.
|
|
620
|
+
"postcss": "^8.4.42",
|
|
621
621
|
"postcss-nesting": "^13.0.0",
|
|
622
622
|
"preact": "^10.23.2",
|
|
623
623
|
"react": "^18.3.1",
|
|
624
624
|
"react-dom": "^18.3.1",
|
|
625
|
-
"solid-js": "^1.8.
|
|
625
|
+
"solid-js": "^1.8.22",
|
|
626
626
|
"svelte": "^4.2.19",
|
|
627
627
|
"tsup": "^8.2.4",
|
|
628
628
|
"typescript": "^5.5.4",
|