prosekit 0.10.4 → 0.10.5

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.
@@ -381,6 +381,7 @@ import { FilePasteHandlerOptions } from '@prosekit/extensions/file';
381
381
  import { findParentNode } from '@prosekit/core';
382
382
  import { findParentNodeOfType } from '@prosekit/core';
383
383
  import { FindParentNodeResult } from '@prosekit/core';
384
+ import { findTable } from '@prosekit/extensions/table';
384
385
  import { findWrapping } from '@prosekit/pm/transform';
385
386
  import { FocusChangeHandler } from '@prosekit/core';
386
387
  import { Fragment } from '@prosekit/pm/model';
@@ -500,6 +501,7 @@ import { MarkSpec } from '@prosekit/pm/model';
500
501
  import { MarkSpecOptions } from '@prosekit/core';
501
502
  import { MarkType } from '@prosekit/pm/model';
502
503
  import { MarkTyping } from '@prosekit/core';
504
+ import { MarkView } from '@prosekit/pm/view';
503
505
  import { MarkViewConstructor } from '@prosekit/pm/view';
504
506
  import { MatchHandler } from '@prosekit/extensions/autocomplete';
505
507
  import { MaybeAccessor } from '@prosekit/solid';
@@ -981,6 +983,7 @@ import { useStateUpdate as useStateUpdate_alias_1 } from '@prosekit/react';
981
983
  import { useStateUpdate as useStateUpdate_alias_2 } from '@prosekit/solid';
982
984
  import { useStateUpdate as useStateUpdate_alias_3 } from '@prosekit/svelte';
983
985
  import { useStateUpdate as useStateUpdate_alias_4 } from '@prosekit/vue';
986
+ import { ViewMutationRecord } from '@prosekit/pm/view';
984
987
  import { VirtualSelectionExtension } from '@prosekit/extensions/virtual-selection';
985
988
  import { VueNodeViewComponent } from '@prosekit/vue';
986
989
  import { VueNodeViewOptions } from '@prosekit/vue';
@@ -1775,6 +1778,8 @@ export { findParentNodeOfType }
1775
1778
 
1776
1779
  export { FindParentNodeResult }
1777
1780
 
1781
+ export { findTable }
1782
+
1778
1783
  export { findWrapping }
1779
1784
 
1780
1785
  export { FocusChangeHandler }
@@ -2013,6 +2018,8 @@ export { MarkType }
2013
2018
 
2014
2019
  export { MarkTyping }
2015
2020
 
2021
+ export { MarkView }
2022
+
2016
2023
  export { MarkViewConstructor }
2017
2024
 
2018
2025
  export { MatchHandler }
@@ -2973,6 +2980,8 @@ export { useStateUpdate_alias_3 }
2973
2980
 
2974
2981
  export { useStateUpdate_alias_4 }
2975
2982
 
2983
+ export { ViewMutationRecord }
2984
+
2976
2985
  export { VirtualSelectionExtension }
2977
2986
 
2978
2987
  export { VueNodeViewComponent }
@@ -1,4 +1,4 @@
1
- /* ../../node_modules/.pnpm/prosemirror-view@1.34.3/node_modules/prosemirror-view/style/prosemirror.css */
1
+ /* ../../node_modules/.pnpm/prosemirror-view@1.37.0/node_modules/prosemirror-view/style/prosemirror.css */
2
2
  .ProseMirror {
3
3
  position: relative;
4
4
  }
@@ -1,4 +1,4 @@
1
- /* ../../node_modules/.pnpm/prosemirror-view@1.34.3/node_modules/prosemirror-view/style/prosemirror.css */
1
+ /* ../../node_modules/.pnpm/prosemirror-view@1.37.0/node_modules/prosemirror-view/style/prosemirror.css */
2
2
  .ProseMirror {
3
3
  position: relative;
4
4
  }
@@ -23,3 +23,4 @@ export { TableHeaderCellSpecExtension } from './_tsup-dts-rollup.js';
23
23
  export { TableRowSpecExtension } from './_tsup-dts-rollup.js';
24
24
  export { TableSpecExtension } from './_tsup-dts-rollup.js';
25
25
  export { isCellSelection } from './_tsup-dts-rollup.js';
26
+ export { findTable } from './_tsup-dts-rollup.js';
@@ -6,6 +6,8 @@ export { DecorationSource } from './_tsup-dts-rollup.js';
6
6
  export { DirectEditorProps } from './_tsup-dts-rollup.js';
7
7
  export { EditorProps } from './_tsup-dts-rollup.js';
8
8
  export { EditorView } from './_tsup-dts-rollup.js';
9
+ export { MarkView } from './_tsup-dts-rollup.js';
9
10
  export { MarkViewConstructor } from './_tsup-dts-rollup.js';
10
11
  export { NodeView } from './_tsup-dts-rollup.js';
11
12
  export { NodeViewConstructor } from './_tsup-dts-rollup.js';
13
+ export { ViewMutationRecord } from './_tsup-dts-rollup.js';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "prosekit",
3
3
  "type": "module",
4
- "version": "0.10.4",
4
+ "version": "0.10.5",
5
5
  "private": false,
6
6
  "author": {
7
7
  "name": "ocavue",
@@ -566,17 +566,17 @@
566
566
  "dist"
567
567
  ],
568
568
  "dependencies": {
569
- "@prosekit/basic": "0.3.33",
570
- "@prosekit/core": "0.7.12",
571
- "@prosekit/extensions": "0.7.21",
572
- "@prosekit/lit": "0.4.4",
573
- "@prosekit/pm": "0.1.8",
574
- "@prosekit/preact": "0.4.4",
575
- "@prosekit/react": "0.4.4",
576
- "@prosekit/solid": "0.4.4",
577
- "@prosekit/vue": "0.4.4",
578
- "@prosekit/svelte": "0.5.4",
579
- "@prosekit/web": "0.5.0"
569
+ "@prosekit/basic": "0.3.34",
570
+ "@prosekit/core": "0.7.13",
571
+ "@prosekit/extensions": "0.7.22",
572
+ "@prosekit/lit": "0.4.5",
573
+ "@prosekit/preact": "0.4.5",
574
+ "@prosekit/react": "0.4.5",
575
+ "@prosekit/pm": "0.1.9",
576
+ "@prosekit/solid": "0.4.5",
577
+ "@prosekit/svelte": "0.5.5",
578
+ "@prosekit/web": "0.5.1",
579
+ "@prosekit/vue": "0.4.5"
580
580
  },
581
581
  "peerDependencies": {
582
582
  "loro-crdt": ">= 0.16.7",
@@ -625,8 +625,8 @@
625
625
  "devDependencies": {
626
626
  "@types/react": "^18.3.12",
627
627
  "@types/react-dom": "^18.3.1",
628
- "loro-crdt": "^1.0.7",
629
- "loro-prosemirror": "^0.1.0",
628
+ "loro-crdt": "^1.1.4",
629
+ "loro-prosemirror": "^0.2.0",
630
630
  "postcss": "^8.4.47",
631
631
  "postcss-nesting": "^13.0.1",
632
632
  "preact": "^10.24.3",
@@ -635,13 +635,13 @@
635
635
  "solid-js": "^1.9.3",
636
636
  "svelte": "^4.2.19",
637
637
  "tsup": "^8.3.5",
638
- "typedoc": "^0.26.10",
638
+ "typedoc": "^0.27.2",
639
639
  "typedoc-plugin-external-package-links": "^0.1.0",
640
- "typedoc-plugin-md": "^0.3.1",
641
- "typedoc-plugin-mdn-links": "^3.3.5",
640
+ "typedoc-plugin-md": "^0.4.2",
641
+ "typedoc-plugin-mdn-links": "^4.0.2",
642
642
  "typescript": "^5.6.3",
643
643
  "vue": "^3.5.12",
644
- "y-prosemirror": "^1.2.12",
644
+ "y-prosemirror": "^1.2.13",
645
645
  "yjs": "^13.6.20",
646
646
  "@prosekit/dev": "0.0.0"
647
647
  },