@prosekit/core 0.7.12 → 0.7.14
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 +3004 -2958
- package/dist/{chunk-LAFNHJDR.js → chunk-6DIFWJEG.js} +17 -12
- package/dist/prosekit-core-test.d.ts +2 -2
- package/dist/prosekit-core-test.js +1 -1
- package/dist/prosekit-core.d.ts +200 -194
- package/dist/prosekit-core.js +123 -27
- package/package.json +7 -7
@@ -91,7 +91,12 @@ function defineFacet(options) {
|
|
91
91
|
}
|
92
92
|
|
93
93
|
// src/utils/type-assertion.ts
|
94
|
-
import {
|
94
|
+
import {
|
95
|
+
Fragment,
|
96
|
+
Mark,
|
97
|
+
ProseMirrorNode,
|
98
|
+
Slice
|
99
|
+
} from "@prosekit/pm/model";
|
95
100
|
import {
|
96
101
|
AllSelection,
|
97
102
|
NodeSelection,
|
@@ -127,7 +132,9 @@ function isNotNullish(value) {
|
|
127
132
|
}
|
128
133
|
|
129
134
|
// src/facets/schema.ts
|
130
|
-
import {
|
135
|
+
import {
|
136
|
+
Schema
|
137
|
+
} from "@prosekit/pm/model";
|
131
138
|
|
132
139
|
// src/facets/root.ts
|
133
140
|
function rootReducer(inputs) {
|
@@ -466,7 +473,9 @@ function htmlFromJSON(json, options) {
|
|
466
473
|
}
|
467
474
|
|
468
475
|
// src/extensions/default-state.ts
|
469
|
-
import {
|
476
|
+
import {
|
477
|
+
Selection as Selection3
|
478
|
+
} from "@prosekit/pm/state";
|
470
479
|
|
471
480
|
// src/facets/state.ts
|
472
481
|
var stateFacet = defineFacet({
|
@@ -669,7 +678,9 @@ function union(...exts) {
|
|
669
678
|
import {
|
670
679
|
EditorState as EditorState2
|
671
680
|
} from "@prosekit/pm/state";
|
672
|
-
import {
|
681
|
+
import {
|
682
|
+
EditorView
|
683
|
+
} from "@prosekit/pm/view";
|
673
684
|
|
674
685
|
// src/utils/deep-equals.ts
|
675
686
|
import OrderedMap from "orderedmap";
|
@@ -723,10 +734,7 @@ function isNodeActive(state, type, attrs) {
|
|
723
734
|
|
724
735
|
// src/editor/action.ts
|
725
736
|
function createNodeActions(schema, getState, createNode = defaultCreateNode) {
|
726
|
-
return mapValues(
|
727
|
-
schema.nodes,
|
728
|
-
(type) => createNodeAction(type, getState, createNode)
|
729
|
-
);
|
737
|
+
return mapValues(schema.nodes, (type) => createNodeAction(type, getState, createNode));
|
730
738
|
}
|
731
739
|
function createNodeAction(type, getState, createNode) {
|
732
740
|
const action = (...args) => buildNode(type, args, createNode);
|
@@ -737,10 +745,7 @@ function createNodeAction(type, getState, createNode) {
|
|
737
745
|
return action;
|
738
746
|
}
|
739
747
|
function createMarkActions(schema, getState, applyMark = defaultApplyMark) {
|
740
|
-
return mapValues(
|
741
|
-
schema.marks,
|
742
|
-
(type) => createMarkAction(type, getState, applyMark)
|
743
|
-
);
|
748
|
+
return mapValues(schema.marks, (type) => createMarkAction(type, getState, applyMark));
|
744
749
|
}
|
745
750
|
function createMarkAction(type, getState, applyMark) {
|
746
751
|
const action = (...args) => buildMark(type, args, applyMark);
|
@@ -1,2 +1,2 @@
|
|
1
|
-
export { createTestEditor } from './_tsup-dts-rollup';
|
2
|
-
export { TestEditor } from './_tsup-dts-rollup';
|
1
|
+
export { createTestEditor } from './_tsup-dts-rollup.js';
|
2
|
+
export { TestEditor } from './_tsup-dts-rollup.js';
|
package/dist/prosekit-core.d.ts
CHANGED
@@ -1,194 +1,200 @@
|
|
1
|
-
export { addMark } from './_tsup-dts-rollup';
|
2
|
-
export { AddMarkOptions } from './_tsup-dts-rollup';
|
3
|
-
export { expandMark } from './_tsup-dts-rollup';
|
4
|
-
export { ExpandMarkOptions } from './_tsup-dts-rollup';
|
5
|
-
export { insertDefaultBlock } from './_tsup-dts-rollup';
|
6
|
-
export { InsertDefaultBlockOptions } from './_tsup-dts-rollup';
|
7
|
-
export { insertNode } from './_tsup-dts-rollup';
|
8
|
-
export { InsertNodeOptions } from './_tsup-dts-rollup';
|
9
|
-
export { removeMark } from './_tsup-dts-rollup';
|
10
|
-
export { RemoveMarkOptions } from './_tsup-dts-rollup';
|
11
|
-
export { removeNode } from './_tsup-dts-rollup';
|
12
|
-
export { RemoveNodeOptions } from './_tsup-dts-rollup';
|
13
|
-
export { setBlockType } from './_tsup-dts-rollup';
|
14
|
-
export { SetBlockTypeOptions } from './_tsup-dts-rollup';
|
15
|
-
export { setNodeAttrs } from './_tsup-dts-rollup';
|
16
|
-
export { SetNodeAttrsOptions } from './_tsup-dts-rollup';
|
17
|
-
export { toggleMark } from './_tsup-dts-rollup';
|
18
|
-
export { ToggleMarkOptions } from './_tsup-dts-rollup';
|
19
|
-
export { toggleNode } from './_tsup-dts-rollup';
|
20
|
-
export { ToggleNodeOptions } from './_tsup-dts-rollup';
|
21
|
-
export { toggleWrap } from './_tsup-dts-rollup';
|
22
|
-
export { ToggleWrapOptions } from './_tsup-dts-rollup';
|
23
|
-
export { unsetBlockType } from './_tsup-dts-rollup';
|
24
|
-
export { UnsetBlockTypeOptions } from './_tsup-dts-rollup';
|
25
|
-
export { unsetMark } from './_tsup-dts-rollup';
|
26
|
-
export { UnsetMarkOptions } from './_tsup-dts-rollup';
|
27
|
-
export { wrap } from './_tsup-dts-rollup';
|
28
|
-
export { WrapOptions } from './_tsup-dts-rollup';
|
29
|
-
export { MarkAction } from './_tsup-dts-rollup';
|
30
|
-
export { MarkBuilder } from './_tsup-dts-rollup';
|
31
|
-
export { NodeAction } from './_tsup-dts-rollup';
|
32
|
-
export { NodeBuilder } from './_tsup-dts-rollup';
|
33
|
-
export { NodeChild } from './_tsup-dts-rollup';
|
34
|
-
export {
|
35
|
-
export {
|
36
|
-
export { EditorOptions } from './_tsup-dts-rollup';
|
37
|
-
export { union } from './_tsup-dts-rollup';
|
38
|
-
export { withPriority } from './_tsup-dts-rollup';
|
39
|
-
export { EditorNotFoundError_alias_1 as EditorNotFoundError } from './_tsup-dts-rollup';
|
40
|
-
export { ProseKitError_alias_1 as ProseKitError } from './_tsup-dts-rollup';
|
41
|
-
export { defineBaseCommands } from './_tsup-dts-rollup';
|
42
|
-
export { defineCommands } from './_tsup-dts-rollup';
|
43
|
-
export { BaseCommandsExtension } from './_tsup-dts-rollup';
|
44
|
-
export { defineDefaultState } from './_tsup-dts-rollup';
|
45
|
-
export { DefaultStateOptions } from './_tsup-dts-rollup';
|
46
|
-
export { defineDoc } from './_tsup-dts-rollup';
|
47
|
-
export { DocExtension } from './_tsup-dts-rollup';
|
48
|
-
export { defineDocChangeHandler } from './_tsup-dts-rollup';
|
49
|
-
export { DocChangeHandler } from './_tsup-dts-rollup';
|
50
|
-
export { defineDOMEventHandler } from './_tsup-dts-rollup';
|
51
|
-
export { DOMEventHandler } from './_tsup-dts-rollup';
|
52
|
-
export { defineClickHandler } from './_tsup-dts-rollup';
|
53
|
-
export { defineClickOnHandler } from './_tsup-dts-rollup';
|
54
|
-
export { defineDoubleClickHandler } from './_tsup-dts-rollup';
|
55
|
-
export { defineDoubleClickOnHandler } from './_tsup-dts-rollup';
|
56
|
-
export { defineDropHandler } from './_tsup-dts-rollup';
|
57
|
-
export { defineKeyDownHandler } from './_tsup-dts-rollup';
|
58
|
-
export { defineKeyPressHandler } from './_tsup-dts-rollup';
|
59
|
-
export { definePasteHandler } from './_tsup-dts-rollup';
|
60
|
-
export { defineScrollToSelectionHandler } from './_tsup-dts-rollup';
|
61
|
-
export { defineTextInputHandler } from './_tsup-dts-rollup';
|
62
|
-
export { defineTripleClickHandler } from './_tsup-dts-rollup';
|
63
|
-
export { defineTripleClickOnHandler } from './_tsup-dts-rollup';
|
64
|
-
export {
|
65
|
-
export {
|
66
|
-
export {
|
67
|
-
export {
|
68
|
-
export {
|
69
|
-
export {
|
70
|
-
export {
|
71
|
-
export {
|
72
|
-
export {
|
73
|
-
export {
|
74
|
-
export {
|
75
|
-
export {
|
76
|
-
export {
|
77
|
-
export {
|
78
|
-
export { defineFocusChangeHandler } from './_tsup-dts-rollup';
|
79
|
-
export { FocusChangeHandler } from './_tsup-dts-rollup';
|
80
|
-
export { defineMountHandler } from './_tsup-dts-rollup';
|
81
|
-
export { defineUnmountHandler } from './_tsup-dts-rollup';
|
82
|
-
export { defineUpdateHandler } from './_tsup-dts-rollup';
|
83
|
-
export { MountHandler } from './_tsup-dts-rollup';
|
84
|
-
export { UnmountHandler } from './_tsup-dts-rollup';
|
85
|
-
export { UpdateHandler } from './_tsup-dts-rollup';
|
86
|
-
export { defineHistory } from './_tsup-dts-rollup';
|
87
|
-
export { HistoryExtension } from './_tsup-dts-rollup';
|
88
|
-
export { HistoryOptions } from './_tsup-dts-rollup';
|
89
|
-
export { defineKeymap } from './_tsup-dts-rollup';
|
90
|
-
export { keymapFacet } from './_tsup-dts-rollup';
|
91
|
-
export { Keymap } from './_tsup-dts-rollup';
|
92
|
-
export { KeymapPayload } from './_tsup-dts-rollup';
|
93
|
-
export { defineBaseKeymap } from './_tsup-dts-rollup';
|
94
|
-
export { BaseKeymapExtension } from './_tsup-dts-rollup';
|
95
|
-
export { defineMarkAttr } from './_tsup-dts-rollup';
|
96
|
-
export { defineMarkSpec } from './_tsup-dts-rollup';
|
97
|
-
export { MarkAttrOptions } from './_tsup-dts-rollup';
|
98
|
-
export { MarkSpecOptions } from './_tsup-dts-rollup';
|
99
|
-
export {
|
100
|
-
export {
|
101
|
-
export {
|
102
|
-
export {
|
103
|
-
export {
|
104
|
-
export {
|
105
|
-
export {
|
106
|
-
export {
|
107
|
-
export {
|
108
|
-
export {
|
109
|
-
export {
|
110
|
-
export {
|
111
|
-
export {
|
112
|
-
export {
|
113
|
-
export {
|
114
|
-
export {
|
115
|
-
export {
|
116
|
-
export {
|
117
|
-
export {
|
118
|
-
export {
|
119
|
-
export {
|
120
|
-
export {
|
121
|
-
export {
|
122
|
-
export {
|
123
|
-
export {
|
124
|
-
export {
|
125
|
-
export {
|
126
|
-
export {
|
127
|
-
export {
|
128
|
-
export {
|
129
|
-
export {
|
130
|
-
export {
|
131
|
-
export {
|
132
|
-
export {
|
133
|
-
export {
|
134
|
-
export {
|
135
|
-
export {
|
136
|
-
export {
|
137
|
-
export {
|
138
|
-
export {
|
139
|
-
export {
|
140
|
-
export {
|
141
|
-
export {
|
142
|
-
export {
|
143
|
-
export {
|
144
|
-
export {
|
145
|
-
export {
|
146
|
-
export {
|
147
|
-
export {
|
148
|
-
export {
|
149
|
-
export {
|
150
|
-
export {
|
151
|
-
export {
|
152
|
-
export {
|
153
|
-
export {
|
154
|
-
export {
|
155
|
-
export {
|
156
|
-
export {
|
157
|
-
export {
|
158
|
-
export {
|
159
|
-
export {
|
160
|
-
export {
|
161
|
-
export {
|
162
|
-
export {
|
163
|
-
export {
|
164
|
-
export {
|
165
|
-
export {
|
166
|
-
export {
|
167
|
-
export {
|
168
|
-
export {
|
169
|
-
export {
|
170
|
-
export {
|
171
|
-
export {
|
172
|
-
export {
|
173
|
-
export {
|
174
|
-
export {
|
175
|
-
export {
|
176
|
-
export {
|
177
|
-
export {
|
178
|
-
export {
|
179
|
-
export {
|
180
|
-
export {
|
181
|
-
export {
|
182
|
-
export {
|
183
|
-
export {
|
184
|
-
export {
|
185
|
-
export {
|
186
|
-
export {
|
187
|
-
export {
|
188
|
-
export {
|
189
|
-
export {
|
190
|
-
export {
|
191
|
-
export {
|
192
|
-
export {
|
193
|
-
export {
|
194
|
-
export {
|
1
|
+
export { addMark } from './_tsup-dts-rollup.js';
|
2
|
+
export { AddMarkOptions } from './_tsup-dts-rollup.js';
|
3
|
+
export { expandMark } from './_tsup-dts-rollup.js';
|
4
|
+
export { ExpandMarkOptions } from './_tsup-dts-rollup.js';
|
5
|
+
export { insertDefaultBlock } from './_tsup-dts-rollup.js';
|
6
|
+
export { InsertDefaultBlockOptions } from './_tsup-dts-rollup.js';
|
7
|
+
export { insertNode } from './_tsup-dts-rollup.js';
|
8
|
+
export { InsertNodeOptions } from './_tsup-dts-rollup.js';
|
9
|
+
export { removeMark } from './_tsup-dts-rollup.js';
|
10
|
+
export { RemoveMarkOptions } from './_tsup-dts-rollup.js';
|
11
|
+
export { removeNode } from './_tsup-dts-rollup.js';
|
12
|
+
export { RemoveNodeOptions } from './_tsup-dts-rollup.js';
|
13
|
+
export { setBlockType } from './_tsup-dts-rollup.js';
|
14
|
+
export { SetBlockTypeOptions } from './_tsup-dts-rollup.js';
|
15
|
+
export { setNodeAttrs } from './_tsup-dts-rollup.js';
|
16
|
+
export { SetNodeAttrsOptions } from './_tsup-dts-rollup.js';
|
17
|
+
export { toggleMark } from './_tsup-dts-rollup.js';
|
18
|
+
export { ToggleMarkOptions } from './_tsup-dts-rollup.js';
|
19
|
+
export { toggleNode } from './_tsup-dts-rollup.js';
|
20
|
+
export { ToggleNodeOptions } from './_tsup-dts-rollup.js';
|
21
|
+
export { toggleWrap } from './_tsup-dts-rollup.js';
|
22
|
+
export { ToggleWrapOptions } from './_tsup-dts-rollup.js';
|
23
|
+
export { unsetBlockType } from './_tsup-dts-rollup.js';
|
24
|
+
export { UnsetBlockTypeOptions } from './_tsup-dts-rollup.js';
|
25
|
+
export { unsetMark } from './_tsup-dts-rollup.js';
|
26
|
+
export { UnsetMarkOptions } from './_tsup-dts-rollup.js';
|
27
|
+
export { wrap } from './_tsup-dts-rollup.js';
|
28
|
+
export { WrapOptions } from './_tsup-dts-rollup.js';
|
29
|
+
export { MarkAction } from './_tsup-dts-rollup.js';
|
30
|
+
export { MarkBuilder } from './_tsup-dts-rollup.js';
|
31
|
+
export { NodeAction } from './_tsup-dts-rollup.js';
|
32
|
+
export { NodeBuilder } from './_tsup-dts-rollup.js';
|
33
|
+
export { NodeChild } from './_tsup-dts-rollup.js';
|
34
|
+
export { createEditor } from './_tsup-dts-rollup.js';
|
35
|
+
export { Editor } from './_tsup-dts-rollup.js';
|
36
|
+
export { EditorOptions } from './_tsup-dts-rollup.js';
|
37
|
+
export { union } from './_tsup-dts-rollup.js';
|
38
|
+
export { withPriority } from './_tsup-dts-rollup.js';
|
39
|
+
export { EditorNotFoundError_alias_1 as EditorNotFoundError } from './_tsup-dts-rollup.js';
|
40
|
+
export { ProseKitError_alias_1 as ProseKitError } from './_tsup-dts-rollup.js';
|
41
|
+
export { defineBaseCommands } from './_tsup-dts-rollup.js';
|
42
|
+
export { defineCommands } from './_tsup-dts-rollup.js';
|
43
|
+
export { BaseCommandsExtension } from './_tsup-dts-rollup.js';
|
44
|
+
export { defineDefaultState } from './_tsup-dts-rollup.js';
|
45
|
+
export { DefaultStateOptions } from './_tsup-dts-rollup.js';
|
46
|
+
export { defineDoc } from './_tsup-dts-rollup.js';
|
47
|
+
export { DocExtension } from './_tsup-dts-rollup.js';
|
48
|
+
export { defineDocChangeHandler } from './_tsup-dts-rollup.js';
|
49
|
+
export { DocChangeHandler } from './_tsup-dts-rollup.js';
|
50
|
+
export { defineDOMEventHandler } from './_tsup-dts-rollup.js';
|
51
|
+
export { DOMEventHandler } from './_tsup-dts-rollup.js';
|
52
|
+
export { defineClickHandler } from './_tsup-dts-rollup.js';
|
53
|
+
export { defineClickOnHandler } from './_tsup-dts-rollup.js';
|
54
|
+
export { defineDoubleClickHandler } from './_tsup-dts-rollup.js';
|
55
|
+
export { defineDoubleClickOnHandler } from './_tsup-dts-rollup.js';
|
56
|
+
export { defineDropHandler } from './_tsup-dts-rollup.js';
|
57
|
+
export { defineKeyDownHandler } from './_tsup-dts-rollup.js';
|
58
|
+
export { defineKeyPressHandler } from './_tsup-dts-rollup.js';
|
59
|
+
export { definePasteHandler } from './_tsup-dts-rollup.js';
|
60
|
+
export { defineScrollToSelectionHandler } from './_tsup-dts-rollup.js';
|
61
|
+
export { defineTextInputHandler } from './_tsup-dts-rollup.js';
|
62
|
+
export { defineTripleClickHandler } from './_tsup-dts-rollup.js';
|
63
|
+
export { defineTripleClickOnHandler } from './_tsup-dts-rollup.js';
|
64
|
+
export { editorEventFacet } from './_tsup-dts-rollup.js';
|
65
|
+
export { ClickHandler } from './_tsup-dts-rollup.js';
|
66
|
+
export { ClickOnHandler } from './_tsup-dts-rollup.js';
|
67
|
+
export { DoubleClickHandler } from './_tsup-dts-rollup.js';
|
68
|
+
export { DoubleClickOnHandler } from './_tsup-dts-rollup.js';
|
69
|
+
export { DropHandler } from './_tsup-dts-rollup.js';
|
70
|
+
export { EditorEventPayload } from './_tsup-dts-rollup.js';
|
71
|
+
export { KeyDownHandler } from './_tsup-dts-rollup.js';
|
72
|
+
export { KeyPressHandler } from './_tsup-dts-rollup.js';
|
73
|
+
export { PasteHandler } from './_tsup-dts-rollup.js';
|
74
|
+
export { ScrollToSelectionHandler } from './_tsup-dts-rollup.js';
|
75
|
+
export { TextInputHandler } from './_tsup-dts-rollup.js';
|
76
|
+
export { TripleClickHandler } from './_tsup-dts-rollup.js';
|
77
|
+
export { TripleClickOnHandler } from './_tsup-dts-rollup.js';
|
78
|
+
export { defineFocusChangeHandler } from './_tsup-dts-rollup.js';
|
79
|
+
export { FocusChangeHandler } from './_tsup-dts-rollup.js';
|
80
|
+
export { defineMountHandler } from './_tsup-dts-rollup.js';
|
81
|
+
export { defineUnmountHandler } from './_tsup-dts-rollup.js';
|
82
|
+
export { defineUpdateHandler } from './_tsup-dts-rollup.js';
|
83
|
+
export { MountHandler } from './_tsup-dts-rollup.js';
|
84
|
+
export { UnmountHandler } from './_tsup-dts-rollup.js';
|
85
|
+
export { UpdateHandler } from './_tsup-dts-rollup.js';
|
86
|
+
export { defineHistory } from './_tsup-dts-rollup.js';
|
87
|
+
export { HistoryExtension } from './_tsup-dts-rollup.js';
|
88
|
+
export { HistoryOptions } from './_tsup-dts-rollup.js';
|
89
|
+
export { defineKeymap } from './_tsup-dts-rollup.js';
|
90
|
+
export { keymapFacet } from './_tsup-dts-rollup.js';
|
91
|
+
export { Keymap } from './_tsup-dts-rollup.js';
|
92
|
+
export { KeymapPayload } from './_tsup-dts-rollup.js';
|
93
|
+
export { defineBaseKeymap } from './_tsup-dts-rollup.js';
|
94
|
+
export { BaseKeymapExtension } from './_tsup-dts-rollup.js';
|
95
|
+
export { defineMarkAttr } from './_tsup-dts-rollup.js';
|
96
|
+
export { defineMarkSpec } from './_tsup-dts-rollup.js';
|
97
|
+
export { MarkAttrOptions } from './_tsup-dts-rollup.js';
|
98
|
+
export { MarkSpecOptions } from './_tsup-dts-rollup.js';
|
99
|
+
export { defineMarkView } from './_tsup-dts-rollup.js';
|
100
|
+
export { MarkViewOptions } from './_tsup-dts-rollup.js';
|
101
|
+
export { defineMarkViewComponent } from './_tsup-dts-rollup.js';
|
102
|
+
export { defineMarkViewFactory } from './_tsup-dts-rollup.js';
|
103
|
+
export { MarkViewComponentOptions } from './_tsup-dts-rollup.js';
|
104
|
+
export { MarkViewFactoryOptions } from './_tsup-dts-rollup.js';
|
105
|
+
export { defineNodeAttr } from './_tsup-dts-rollup.js';
|
106
|
+
export { defineNodeSpec } from './_tsup-dts-rollup.js';
|
107
|
+
export { NodeAttrOptions } from './_tsup-dts-rollup.js';
|
108
|
+
export { NodeSpecOptions } from './_tsup-dts-rollup.js';
|
109
|
+
export { defineNodeView } from './_tsup-dts-rollup.js';
|
110
|
+
export { NodeViewOptions } from './_tsup-dts-rollup.js';
|
111
|
+
export { defineNodeViewComponent } from './_tsup-dts-rollup.js';
|
112
|
+
export { defineNodeViewFactory } from './_tsup-dts-rollup.js';
|
113
|
+
export { NodeViewComponentOptions } from './_tsup-dts-rollup.js';
|
114
|
+
export { NodeViewFactoryOptions } from './_tsup-dts-rollup.js';
|
115
|
+
export { defineParagraph } from './_tsup-dts-rollup.js';
|
116
|
+
export { ParagraphExtension } from './_tsup-dts-rollup.js';
|
117
|
+
export { definePlugin } from './_tsup-dts-rollup.js';
|
118
|
+
export { pluginFacet } from './_tsup-dts-rollup.js';
|
119
|
+
export { PluginPayload } from './_tsup-dts-rollup.js';
|
120
|
+
export { defineText } from './_tsup-dts-rollup.js';
|
121
|
+
export { TextExtension } from './_tsup-dts-rollup.js';
|
122
|
+
export { defineFacet } from './_tsup-dts-rollup.js';
|
123
|
+
export { Facet } from './_tsup-dts-rollup.js';
|
124
|
+
export { defineFacetPayload } from './_tsup-dts-rollup.js';
|
125
|
+
export { AnyFunction } from './_tsup-dts-rollup.js';
|
126
|
+
export { AnyAttrs } from './_tsup-dts-rollup.js';
|
127
|
+
export { AttrSpec } from './_tsup-dts-rollup.js';
|
128
|
+
export { BaseNodeViewOptions } from './_tsup-dts-rollup.js';
|
129
|
+
export { Extension } from './_tsup-dts-rollup.js';
|
130
|
+
export { ExtensionTyping } from './_tsup-dts-rollup.js';
|
131
|
+
export { ExtractCommandActions } from './_tsup-dts-rollup.js';
|
132
|
+
export { ExtractCommandAppliers } from './_tsup-dts-rollup.js';
|
133
|
+
export { ExtractCommandCreators } from './_tsup-dts-rollup.js';
|
134
|
+
export { ExtractMarkActions } from './_tsup-dts-rollup.js';
|
135
|
+
export { ExtractMarks } from './_tsup-dts-rollup.js';
|
136
|
+
export { ExtractNodeActions } from './_tsup-dts-rollup.js';
|
137
|
+
export { ExtractNodes } from './_tsup-dts-rollup.js';
|
138
|
+
export { PlainExtension } from './_tsup-dts-rollup.js';
|
139
|
+
export { Union } from './_tsup-dts-rollup.js';
|
140
|
+
export { UnionExtension } from './_tsup-dts-rollup.js';
|
141
|
+
export { CommandAction } from './_tsup-dts-rollup.js';
|
142
|
+
export { CommandTyping } from './_tsup-dts-rollup.js';
|
143
|
+
export { MarkTyping } from './_tsup-dts-rollup.js';
|
144
|
+
export { ToMarkAction } from './_tsup-dts-rollup.js';
|
145
|
+
export { NodeTyping } from './_tsup-dts-rollup.js';
|
146
|
+
export { ToNodeAction } from './_tsup-dts-rollup.js';
|
147
|
+
export { NodeJSON } from './_tsup-dts-rollup.js';
|
148
|
+
export { SelectionJSON } from './_tsup-dts-rollup.js';
|
149
|
+
export { StateJSON } from './_tsup-dts-rollup.js';
|
150
|
+
export { StepJSON } from './_tsup-dts-rollup.js';
|
151
|
+
export { PickSubType } from './_tsup-dts-rollup.js';
|
152
|
+
export { Priority } from './_tsup-dts-rollup.js';
|
153
|
+
export { SimplifyDeeper } from './_tsup-dts-rollup.js';
|
154
|
+
export { SimplifyUnion } from './_tsup-dts-rollup.js';
|
155
|
+
export { assert } from './_tsup-dts-rollup.js';
|
156
|
+
export { canUseRegexLookbehind } from './_tsup-dts-rollup.js';
|
157
|
+
export { clsx } from './_tsup-dts-rollup.js';
|
158
|
+
export { collectChildren } from './_tsup-dts-rollup.js';
|
159
|
+
export { collectNodes } from './_tsup-dts-rollup.js';
|
160
|
+
export { NodeContent } from './_tsup-dts-rollup.js';
|
161
|
+
export { containsInlineNode } from './_tsup-dts-rollup.js';
|
162
|
+
export { defaultBlockAt } from './_tsup-dts-rollup.js';
|
163
|
+
export { isApple } from './_tsup-dts-rollup.js';
|
164
|
+
export { findParentNode } from './_tsup-dts-rollup.js';
|
165
|
+
export { FindParentNodeResult } from './_tsup-dts-rollup.js';
|
166
|
+
export { findParentNodeOfType } from './_tsup-dts-rollup.js';
|
167
|
+
export { _getId } from './_tsup-dts-rollup.js';
|
168
|
+
export { getMarkType } from './_tsup-dts-rollup.js';
|
169
|
+
export { getNodeType } from './_tsup-dts-rollup.js';
|
170
|
+
export { isAtBlockStart } from './_tsup-dts-rollup.js';
|
171
|
+
export { isInCodeBlock } from './_tsup-dts-rollup.js';
|
172
|
+
export { isMarkAbsent } from './_tsup-dts-rollup.js';
|
173
|
+
export { isMarkActive } from './_tsup-dts-rollup.js';
|
174
|
+
export { maybeRun } from './_tsup-dts-rollup.js';
|
175
|
+
export { elementFromJSON } from './_tsup-dts-rollup.js';
|
176
|
+
export { elementFromNode } from './_tsup-dts-rollup.js';
|
177
|
+
export { htmlFromJSON } from './_tsup-dts-rollup.js';
|
178
|
+
export { htmlFromNode } from './_tsup-dts-rollup.js';
|
179
|
+
export { jsonFromHTML } from './_tsup-dts-rollup.js';
|
180
|
+
export { jsonFromNode } from './_tsup-dts-rollup.js';
|
181
|
+
export { jsonFromState } from './_tsup-dts-rollup.js';
|
182
|
+
export { nodeFromElement } from './_tsup-dts-rollup.js';
|
183
|
+
export { nodeFromHTML } from './_tsup-dts-rollup.js';
|
184
|
+
export { nodeFromJSON } from './_tsup-dts-rollup.js';
|
185
|
+
export { stateFromJSON } from './_tsup-dts-rollup.js';
|
186
|
+
export { DOMDocumentOptions } from './_tsup-dts-rollup.js';
|
187
|
+
export { DOMParserOptions } from './_tsup-dts-rollup.js';
|
188
|
+
export { DOMSerializerOptions } from './_tsup-dts-rollup.js';
|
189
|
+
export { JSONParserOptions } from './_tsup-dts-rollup.js';
|
190
|
+
export { setSelectionAround } from './_tsup-dts-rollup.js';
|
191
|
+
export { isAllSelection } from './_tsup-dts-rollup.js';
|
192
|
+
export { isFragment } from './_tsup-dts-rollup.js';
|
193
|
+
export { isMark } from './_tsup-dts-rollup.js';
|
194
|
+
export { isNodeSelection } from './_tsup-dts-rollup.js';
|
195
|
+
export { isProseMirrorNode } from './_tsup-dts-rollup.js';
|
196
|
+
export { isSelection } from './_tsup-dts-rollup.js';
|
197
|
+
export { isSlice } from './_tsup-dts-rollup.js';
|
198
|
+
export { isTextSelection } from './_tsup-dts-rollup.js';
|
199
|
+
export { withSkipCodeBlock } from './_tsup-dts-rollup.js';
|
200
|
+
export { OBJECT_REPLACEMENT_CHARACTER } from './_tsup-dts-rollup.js';
|