prosekit 0.9.22 → 0.9.24
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/_tsup-dts-rollup.d.ts +12 -0
- package/dist/prosekit-solid.d.ts +4 -0
- package/package.json +17 -17
|
@@ -265,6 +265,7 @@ import { defineReadonly } from '@prosekit/extensions/readonly';
|
|
|
265
265
|
import { defineScrollToSelectionHandler } from '@prosekit/core';
|
|
266
266
|
import { defineSearchCommands } from '@prosekit/extensions/search';
|
|
267
267
|
import { defineSearchQuery } from '@prosekit/extensions/search';
|
|
268
|
+
import { defineSolidNodeView } from '@prosekit/solid';
|
|
268
269
|
import { defineStrike } from '@prosekit/extensions/strike';
|
|
269
270
|
import { defineStrikeCommands } from '@prosekit/extensions/strike';
|
|
270
271
|
import { defineStrikeInputRule } from '@prosekit/extensions/strike';
|
|
@@ -625,6 +626,9 @@ import { SimplifyDeeper } from '@prosekit/core';
|
|
|
625
626
|
import { SimplifyUnion } from '@prosekit/core';
|
|
626
627
|
import { Slice } from '@prosekit/pm/model';
|
|
627
628
|
import { smartQuotes } from '@prosekit/pm/inputrules';
|
|
629
|
+
import { SolidNodeViewComponent } from '@prosekit/solid';
|
|
630
|
+
import { SolidNodeViewOptions } from '@prosekit/solid';
|
|
631
|
+
import { SolidNodeViewProps } from '@prosekit/solid';
|
|
628
632
|
import { splitBlock } from '@prosekit/pm/commands';
|
|
629
633
|
import { splitBlockAs } from '@prosekit/pm/commands';
|
|
630
634
|
import { splitBlockKeepMarks } from '@prosekit/pm/commands';
|
|
@@ -1362,6 +1366,8 @@ export { defineSearchCommands }
|
|
|
1362
1366
|
|
|
1363
1367
|
export { defineSearchQuery }
|
|
1364
1368
|
|
|
1369
|
+
export { defineSolidNodeView }
|
|
1370
|
+
|
|
1365
1371
|
export { defineStrike }
|
|
1366
1372
|
|
|
1367
1373
|
export { defineStrikeCommands }
|
|
@@ -2080,6 +2086,12 @@ export { Slice }
|
|
|
2080
2086
|
|
|
2081
2087
|
export { smartQuotes }
|
|
2082
2088
|
|
|
2089
|
+
export { SolidNodeViewComponent }
|
|
2090
|
+
|
|
2091
|
+
export { SolidNodeViewOptions }
|
|
2092
|
+
|
|
2093
|
+
export { SolidNodeViewProps }
|
|
2094
|
+
|
|
2083
2095
|
export { splitBlock }
|
|
2084
2096
|
|
|
2085
2097
|
export { splitBlockAs }
|
package/dist/prosekit-solid.d.ts
CHANGED
|
@@ -9,3 +9,7 @@ export { useDocChange_alias_2 as useDocChange } from './_tsup-dts-rollup';
|
|
|
9
9
|
export { MaybeAccessor } from './_tsup-dts-rollup';
|
|
10
10
|
export { PropsWithChildren_alias_1 as PropsWithChildren } from './_tsup-dts-rollup';
|
|
11
11
|
export { PropsWithClass_alias_1 as PropsWithClass } from './_tsup-dts-rollup';
|
|
12
|
+
export { defineSolidNodeView } from './_tsup-dts-rollup';
|
|
13
|
+
export { SolidNodeViewComponent } from './_tsup-dts-rollup';
|
|
14
|
+
export { SolidNodeViewOptions } from './_tsup-dts-rollup';
|
|
15
|
+
export { SolidNodeViewProps } 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.24",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "ocavue",
|
|
@@ -561,17 +561,17 @@
|
|
|
561
561
|
"dist"
|
|
562
562
|
],
|
|
563
563
|
"dependencies": {
|
|
564
|
-
"@prosekit/basic": "0.3.
|
|
564
|
+
"@prosekit/basic": "0.3.30",
|
|
565
565
|
"@prosekit/core": "0.7.11",
|
|
566
|
-
"@prosekit/extensions": "0.7.
|
|
566
|
+
"@prosekit/extensions": "0.7.18",
|
|
567
|
+
"@prosekit/lit": "0.3.27",
|
|
567
568
|
"@prosekit/pm": "0.1.8",
|
|
568
|
-
"@prosekit/
|
|
569
|
-
"@prosekit/
|
|
570
|
-
"@prosekit/
|
|
571
|
-
"@prosekit/
|
|
572
|
-
"@prosekit/
|
|
573
|
-
"@prosekit/
|
|
574
|
-
"@prosekit/web": "0.3.17"
|
|
569
|
+
"@prosekit/solid": "0.3.29",
|
|
570
|
+
"@prosekit/react": "0.3.31",
|
|
571
|
+
"@prosekit/preact": "0.3.30",
|
|
572
|
+
"@prosekit/svelte": "0.4.21",
|
|
573
|
+
"@prosekit/vue": "0.3.30",
|
|
574
|
+
"@prosekit/web": "0.3.19"
|
|
575
575
|
},
|
|
576
576
|
"peerDependencies": {
|
|
577
577
|
"loro-crdt": ">= 0.16.7",
|
|
@@ -618,22 +618,22 @@
|
|
|
618
618
|
}
|
|
619
619
|
},
|
|
620
620
|
"devDependencies": {
|
|
621
|
-
"@types/react": "^18.3.
|
|
621
|
+
"@types/react": "^18.3.6",
|
|
622
622
|
"@types/react-dom": "^18.3.0",
|
|
623
623
|
"loro-crdt": "^0.16.12",
|
|
624
624
|
"loro-prosemirror": "^0.0.7",
|
|
625
|
-
"postcss": "^8.4.
|
|
625
|
+
"postcss": "^8.4.47",
|
|
626
626
|
"postcss-nesting": "^13.0.0",
|
|
627
|
-
"preact": "^10.
|
|
627
|
+
"preact": "^10.24.0",
|
|
628
628
|
"react": "^18.3.1",
|
|
629
629
|
"react-dom": "^18.3.1",
|
|
630
630
|
"solid-js": "^1.8.22",
|
|
631
631
|
"svelte": "^4.2.19",
|
|
632
|
-
"tsup": "^8.
|
|
633
|
-
"typescript": "^5.
|
|
634
|
-
"vue": "^3.5.
|
|
632
|
+
"tsup": "^8.3.0",
|
|
633
|
+
"typescript": "^5.6.2",
|
|
634
|
+
"vue": "^3.5.6",
|
|
635
635
|
"y-prosemirror": "^1.2.12",
|
|
636
|
-
"yjs": "^13.6.
|
|
636
|
+
"yjs": "^13.6.19",
|
|
637
637
|
"@prosekit/dev": "0.0.0"
|
|
638
638
|
},
|
|
639
639
|
"scripts": {
|