@remirror/extension-yjs 2.0.4 → 3.0.0-beta.2
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/remirror-extension-yjs.js +218 -0
- package/dist/remirror-extension-yjs.js.map +7 -0
- package/{dist/declarations/src → dist-types}/index.d.ts +0 -0
- package/dist-types/tsconfig.tsbuildinfo +1 -0
- package/{dist/declarations/src → dist-types}/yjs-extension.d.ts +0 -0
- package/package.json +16 -22
- package/dist/remirror-extension-yjs.browser.cjs.js +0 -250
- package/dist/remirror-extension-yjs.browser.esm.js +0 -245
- package/dist/remirror-extension-yjs.cjs.d.ts +0 -1
- package/dist/remirror-extension-yjs.cjs.dev.js +0 -250
- package/dist/remirror-extension-yjs.cjs.js +0 -7
- package/dist/remirror-extension-yjs.cjs.prod.js +0 -247
- package/dist/remirror-extension-yjs.esm.js +0 -245
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
4
|
+
var __decorateClass = (decorators, target, key, kind) => {
|
|
5
|
+
var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
|
|
6
|
+
for (var i = decorators.length - 1, decorator; i >= 0; i--)
|
|
7
|
+
if (decorator = decorators[i])
|
|
8
|
+
result = (kind ? decorator(target, key, result) : decorator(result)) || result;
|
|
9
|
+
if (kind && result)
|
|
10
|
+
__defProp(target, key, result);
|
|
11
|
+
return result;
|
|
12
|
+
};
|
|
13
|
+
var __publicField = (obj, key, value) => {
|
|
14
|
+
__defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
15
|
+
return value;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
// packages/remirror__extension-yjs/src/yjs-extension.ts
|
|
19
|
+
import {
|
|
20
|
+
defaultCursorBuilder,
|
|
21
|
+
defaultDeleteFilter,
|
|
22
|
+
defaultSelectionBuilder,
|
|
23
|
+
redo,
|
|
24
|
+
undo,
|
|
25
|
+
yCursorPlugin,
|
|
26
|
+
ySyncPlugin,
|
|
27
|
+
ySyncPluginKey,
|
|
28
|
+
yUndoPlugin,
|
|
29
|
+
yUndoPluginKey
|
|
30
|
+
} from "y-prosemirror";
|
|
31
|
+
import { UndoManager } from "yjs";
|
|
32
|
+
import {
|
|
33
|
+
command,
|
|
34
|
+
convertCommand,
|
|
35
|
+
ErrorConstant,
|
|
36
|
+
extension,
|
|
37
|
+
ExtensionPriority,
|
|
38
|
+
invariant,
|
|
39
|
+
isEmptyObject,
|
|
40
|
+
isFunction,
|
|
41
|
+
keyBinding,
|
|
42
|
+
NamedShortcut,
|
|
43
|
+
nonChainable,
|
|
44
|
+
PlainExtension
|
|
45
|
+
} from "@remirror/core";
|
|
46
|
+
import { ExtensionHistoryMessages as Messages } from "@remirror/messages";
|
|
47
|
+
var YjsExtension = class extends PlainExtension {
|
|
48
|
+
constructor() {
|
|
49
|
+
super(...arguments);
|
|
50
|
+
__publicField(this, "_provider");
|
|
51
|
+
}
|
|
52
|
+
get name() {
|
|
53
|
+
return "yjs";
|
|
54
|
+
}
|
|
55
|
+
get provider() {
|
|
56
|
+
var _a;
|
|
57
|
+
const { getProvider } = this.options;
|
|
58
|
+
return (_a = this._provider) != null ? _a : this._provider = getLazyValue(getProvider);
|
|
59
|
+
}
|
|
60
|
+
getBinding() {
|
|
61
|
+
const state = this.store.getState();
|
|
62
|
+
const { binding } = ySyncPluginKey.getState(state);
|
|
63
|
+
return binding;
|
|
64
|
+
}
|
|
65
|
+
createExternalPlugins() {
|
|
66
|
+
const {
|
|
67
|
+
syncPluginOptions,
|
|
68
|
+
cursorBuilder,
|
|
69
|
+
getSelection,
|
|
70
|
+
cursorStateField,
|
|
71
|
+
disableUndo,
|
|
72
|
+
protectedNodes,
|
|
73
|
+
trackedOrigins,
|
|
74
|
+
selectionBuilder
|
|
75
|
+
} = this.options;
|
|
76
|
+
const yDoc = this.provider.doc;
|
|
77
|
+
const type = yDoc.getXmlFragment("prosemirror");
|
|
78
|
+
const plugins = [
|
|
79
|
+
ySyncPlugin(type, syncPluginOptions),
|
|
80
|
+
yCursorPlugin(this.provider.awareness, { cursorBuilder, getSelection, selectionBuilder }, cursorStateField)
|
|
81
|
+
];
|
|
82
|
+
if (!disableUndo) {
|
|
83
|
+
const undoManager = new UndoManager(type, {
|
|
84
|
+
trackedOrigins: /* @__PURE__ */ new Set([ySyncPluginKey, ...trackedOrigins]),
|
|
85
|
+
deleteFilter: (item) => defaultDeleteFilter(item, protectedNodes)
|
|
86
|
+
});
|
|
87
|
+
plugins.push(yUndoPlugin({ undoManager }));
|
|
88
|
+
}
|
|
89
|
+
return plugins;
|
|
90
|
+
}
|
|
91
|
+
onSetOptions(props) {
|
|
92
|
+
var _a, _b;
|
|
93
|
+
const { changes, pickChanged } = props;
|
|
94
|
+
const changedPluginOptions = pickChanged([
|
|
95
|
+
"cursorBuilder",
|
|
96
|
+
"cursorStateField",
|
|
97
|
+
"getProvider",
|
|
98
|
+
"getSelection",
|
|
99
|
+
"syncPluginOptions"
|
|
100
|
+
]);
|
|
101
|
+
if (changes.getProvider.changed) {
|
|
102
|
+
this._provider = void 0;
|
|
103
|
+
const previousProvider = getLazyValue(changes.getProvider.previousValue);
|
|
104
|
+
if (changes.destroyProvider.changed) {
|
|
105
|
+
(_b = (_a = changes.destroyProvider).previousValue) == null ? void 0 : _b.call(_a, previousProvider);
|
|
106
|
+
} else {
|
|
107
|
+
this.options.destroyProvider(previousProvider);
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
if (!isEmptyObject(changedPluginOptions)) {
|
|
111
|
+
this.store.updateExtensionPlugins(this);
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
onDestroy() {
|
|
115
|
+
if (!this._provider) {
|
|
116
|
+
return;
|
|
117
|
+
}
|
|
118
|
+
this.options.destroyProvider(this._provider);
|
|
119
|
+
this._provider = void 0;
|
|
120
|
+
}
|
|
121
|
+
yUndo() {
|
|
122
|
+
return nonChainable((props) => {
|
|
123
|
+
if (this.options.disableUndo) {
|
|
124
|
+
return false;
|
|
125
|
+
}
|
|
126
|
+
const { state, dispatch } = props;
|
|
127
|
+
const undoManager = yUndoPluginKey.getState(state).undoManager;
|
|
128
|
+
if (undoManager.undoStack.length === 0) {
|
|
129
|
+
return false;
|
|
130
|
+
}
|
|
131
|
+
if (!dispatch) {
|
|
132
|
+
return true;
|
|
133
|
+
}
|
|
134
|
+
return convertCommand(undo)(props);
|
|
135
|
+
});
|
|
136
|
+
}
|
|
137
|
+
yRedo() {
|
|
138
|
+
return nonChainable((props) => {
|
|
139
|
+
if (this.options.disableUndo) {
|
|
140
|
+
return false;
|
|
141
|
+
}
|
|
142
|
+
const { state, dispatch } = props;
|
|
143
|
+
const undoManager = yUndoPluginKey.getState(state).undoManager;
|
|
144
|
+
if (undoManager.redoStack.length === 0) {
|
|
145
|
+
return false;
|
|
146
|
+
}
|
|
147
|
+
if (!dispatch) {
|
|
148
|
+
return true;
|
|
149
|
+
}
|
|
150
|
+
return convertCommand(redo)(props);
|
|
151
|
+
});
|
|
152
|
+
}
|
|
153
|
+
undoShortcut(props) {
|
|
154
|
+
return this.yUndo()(props);
|
|
155
|
+
}
|
|
156
|
+
redoShortcut(props) {
|
|
157
|
+
return this.yRedo()(props);
|
|
158
|
+
}
|
|
159
|
+
};
|
|
160
|
+
__decorateClass([
|
|
161
|
+
command({
|
|
162
|
+
disableChaining: true,
|
|
163
|
+
description: ({ t }) => t(Messages.UNDO_DESCRIPTION),
|
|
164
|
+
label: ({ t }) => t(Messages.UNDO_LABEL),
|
|
165
|
+
icon: "arrowGoBackFill"
|
|
166
|
+
})
|
|
167
|
+
], YjsExtension.prototype, "yUndo", 1);
|
|
168
|
+
__decorateClass([
|
|
169
|
+
command({
|
|
170
|
+
disableChaining: true,
|
|
171
|
+
description: ({ t }) => t(Messages.REDO_DESCRIPTION),
|
|
172
|
+
label: ({ t }) => t(Messages.REDO_LABEL),
|
|
173
|
+
icon: "arrowGoForwardFill"
|
|
174
|
+
})
|
|
175
|
+
], YjsExtension.prototype, "yRedo", 1);
|
|
176
|
+
__decorateClass([
|
|
177
|
+
keyBinding({ shortcut: NamedShortcut.Undo, command: "yUndo" })
|
|
178
|
+
], YjsExtension.prototype, "undoShortcut", 1);
|
|
179
|
+
__decorateClass([
|
|
180
|
+
keyBinding({ shortcut: NamedShortcut.Redo, command: "yRedo" })
|
|
181
|
+
], YjsExtension.prototype, "redoShortcut", 1);
|
|
182
|
+
YjsExtension = __decorateClass([
|
|
183
|
+
extension({
|
|
184
|
+
defaultOptions: {
|
|
185
|
+
getProvider: () => {
|
|
186
|
+
invariant(false, {
|
|
187
|
+
code: ErrorConstant.EXTENSION,
|
|
188
|
+
message: "You must provide a YJS Provider to the `YjsExtension`."
|
|
189
|
+
});
|
|
190
|
+
},
|
|
191
|
+
destroyProvider: defaultDestroyProvider,
|
|
192
|
+
syncPluginOptions: void 0,
|
|
193
|
+
cursorBuilder: defaultCursorBuilder,
|
|
194
|
+
selectionBuilder: defaultSelectionBuilder,
|
|
195
|
+
cursorStateField: "cursor",
|
|
196
|
+
getSelection: (state) => state.selection,
|
|
197
|
+
disableUndo: false,
|
|
198
|
+
protectedNodes: new Set("paragraph"),
|
|
199
|
+
trackedOrigins: []
|
|
200
|
+
},
|
|
201
|
+
staticKeys: ["disableUndo", "protectedNodes", "trackedOrigins"],
|
|
202
|
+
defaultPriority: ExtensionPriority.High
|
|
203
|
+
})
|
|
204
|
+
], YjsExtension);
|
|
205
|
+
function defaultDestroyProvider(provider) {
|
|
206
|
+
const { doc } = provider;
|
|
207
|
+
provider.disconnect();
|
|
208
|
+
provider.destroy();
|
|
209
|
+
doc.destroy();
|
|
210
|
+
}
|
|
211
|
+
function getLazyValue(lazyValue) {
|
|
212
|
+
return isFunction(lazyValue) ? lazyValue() : lazyValue;
|
|
213
|
+
}
|
|
214
|
+
export {
|
|
215
|
+
YjsExtension,
|
|
216
|
+
defaultDestroyProvider
|
|
217
|
+
};
|
|
218
|
+
//# sourceMappingURL=remirror-extension-yjs.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../src/yjs-extension.ts"],
|
|
4
|
+
"sourcesContent": ["import {\n defaultCursorBuilder,\n defaultDeleteFilter,\n defaultSelectionBuilder,\n redo,\n undo,\n yCursorPlugin,\n ySyncPlugin,\n ySyncPluginKey,\n yUndoPlugin,\n yUndoPluginKey,\n} from 'y-prosemirror';\nimport type { Doc } from 'yjs';\nimport { UndoManager } from 'yjs';\nimport {\n AcceptUndefined,\n command,\n convertCommand,\n EditorState,\n ErrorConstant,\n extension,\n ExtensionPriority,\n invariant,\n isEmptyObject,\n isFunction,\n keyBinding,\n KeyBindingProps,\n NamedShortcut,\n nonChainable,\n NonChainableCommandFunction,\n OnSetOptionsProps,\n PlainExtension,\n ProsemirrorPlugin,\n Selection,\n Shape,\n Static,\n} from '@remirror/core';\nimport { ExtensionHistoryMessages as Messages } from '@remirror/messages';\nimport { DecorationAttrs } from '@remirror/pm/view';\n\nexport interface ColorDef {\n light: string;\n dark: string;\n}\n\nexport interface YSyncOpts {\n colors?: ColorDef[];\n colorMapping?: Map<string, ColorDef>;\n permanentUserData?: any | null;\n}\n\n/**\n * yjs typings are very rough; so we define here the interface that we require\n * (y-webrtc and y-websocket providers are both compatible with this interface;\n * no other providers have been checked).\n */\ninterface YjsRealtimeProvider {\n doc: Doc;\n awareness: any;\n destroy: () => void;\n disconnect: () => void;\n}\n\nexport interface YjsOptions<Provider extends YjsRealtimeProvider = YjsRealtimeProvider> {\n /**\n * Get the provider for this extension.\n */\n getProvider: Provider | (() => Provider);\n\n /**\n * Remove the active provider. This should only be set at initial construction\n * of the editor.\n */\n destroyProvider?: (provider: Provider) => void;\n\n /**\n * The options which are passed through to the Yjs sync plugin.\n */\n syncPluginOptions?: AcceptUndefined<YSyncOpts>;\n\n /**\n * Take the user data and transform it into a html element which is used for\n * the cursor. This is passed into the cursor builder.\n *\n * See https://github.com/yjs/y-prosemirror#remote-cursors\n */\n cursorBuilder?: (user: Shape) => HTMLElement;\n\n /**\n * Generator for the selection attributes\n */\n selectionBuilder?: (user: Shape) => DecorationAttrs;\n\n /**\n * By default all editor bindings use the awareness 'cursor' field to\n * propagate cursor information.\n *\n * @default 'cursor'\n */\n cursorStateField?: string;\n\n /**\n * Get the current editor selection.\n *\n * @default `(state) => state.selection`\n */\n getSelection?: (state: EditorState) => Selection;\n\n disableUndo?: Static<boolean>;\n\n /**\n * Names of nodes in the editor which should be protected.\n *\n * @default `new Set('paragraph')`\n */\n protectedNodes?: Static<Set<string>>;\n trackedOrigins?: Static<any[]>;\n}\n\n/**\n * The YJS extension is the recommended extension for creating a collaborative\n * editor.\n */\n@extension<YjsOptions>({\n defaultOptions: {\n getProvider: (): never => {\n invariant(false, {\n code: ErrorConstant.EXTENSION,\n message: 'You must provide a YJS Provider to the `YjsExtension`.',\n });\n },\n destroyProvider: defaultDestroyProvider,\n syncPluginOptions: undefined,\n cursorBuilder: defaultCursorBuilder,\n selectionBuilder: defaultSelectionBuilder,\n cursorStateField: 'cursor',\n getSelection: (state) => state.selection,\n disableUndo: false,\n protectedNodes: new Set('paragraph'),\n trackedOrigins: [],\n },\n staticKeys: ['disableUndo', 'protectedNodes', 'trackedOrigins'],\n defaultPriority: ExtensionPriority.High,\n})\nexport class YjsExtension extends PlainExtension<YjsOptions> {\n get name() {\n return 'yjs' as const;\n }\n\n private _provider?: YjsRealtimeProvider;\n\n /**\n * The provider that is being used for the editor.\n */\n get provider(): YjsRealtimeProvider {\n const { getProvider } = this.options;\n\n return (this._provider ??= getLazyValue(getProvider));\n }\n\n getBinding(): { mapping: Map<any, any> } | undefined {\n const state = this.store.getState();\n const { binding } = ySyncPluginKey.getState(state);\n return binding;\n }\n\n /**\n * Create the yjs plugins.\n */\n createExternalPlugins(): ProsemirrorPlugin[] {\n const {\n syncPluginOptions,\n cursorBuilder,\n getSelection,\n cursorStateField,\n disableUndo,\n protectedNodes,\n trackedOrigins,\n selectionBuilder,\n } = this.options;\n\n const yDoc = this.provider.doc;\n const type = yDoc.getXmlFragment('prosemirror');\n\n const plugins = [\n ySyncPlugin(type, syncPluginOptions),\n yCursorPlugin(\n this.provider.awareness,\n { cursorBuilder, getSelection, selectionBuilder },\n cursorStateField,\n ),\n ];\n\n if (!disableUndo) {\n const undoManager = new UndoManager(type, {\n trackedOrigins: new Set([ySyncPluginKey, ...trackedOrigins]),\n deleteFilter: (item) => defaultDeleteFilter(item, protectedNodes),\n });\n plugins.push(yUndoPlugin({ undoManager }));\n }\n\n return plugins;\n }\n\n /**\n * This managers the updates of the collaboration provider.\n */\n onSetOptions(props: OnSetOptionsProps<YjsOptions>): void {\n const { changes, pickChanged } = props;\n const changedPluginOptions = pickChanged([\n 'cursorBuilder',\n 'cursorStateField',\n 'getProvider',\n 'getSelection',\n 'syncPluginOptions',\n ]);\n\n if (changes.getProvider.changed) {\n this._provider = undefined;\n const previousProvider = getLazyValue(changes.getProvider.previousValue);\n\n // Check whether the values have changed.\n if (changes.destroyProvider.changed) {\n changes.destroyProvider.previousValue?.(previousProvider);\n } else {\n this.options.destroyProvider(previousProvider);\n }\n }\n\n if (!isEmptyObject(changedPluginOptions)) {\n this.store.updateExtensionPlugins(this);\n }\n }\n\n /**\n * Remove the provider from the manager.\n */\n onDestroy(): void {\n if (!this._provider) {\n return;\n }\n\n this.options.destroyProvider(this._provider);\n this._provider = undefined;\n }\n\n /**\n * Undo that last Yjs transaction(s)\n *\n * This command does **not** support chaining.\n * This command is a no-op and always returns `false` when the `disableUndo` option is set.\n */\n @command({\n disableChaining: true,\n description: ({ t }) => t(Messages.UNDO_DESCRIPTION),\n label: ({ t }) => t(Messages.UNDO_LABEL),\n icon: 'arrowGoBackFill',\n })\n yUndo(): NonChainableCommandFunction {\n return nonChainable((props) => {\n if (this.options.disableUndo) {\n return false;\n }\n\n const { state, dispatch } = props;\n const undoManager: UndoManager = yUndoPluginKey.getState(state).undoManager;\n\n if (undoManager.undoStack.length === 0) {\n return false;\n }\n\n if (!dispatch) {\n return true;\n }\n\n return convertCommand(undo)(props);\n });\n }\n\n /**\n * Redo the last transaction undone with a previous `yUndo` command.\n *\n * This command does **not** support chaining.\n * This command is a no-op and always returns `false` when the `disableUndo` option is set.\n */\n @command({\n disableChaining: true,\n description: ({ t }) => t(Messages.REDO_DESCRIPTION),\n label: ({ t }) => t(Messages.REDO_LABEL),\n icon: 'arrowGoForwardFill',\n })\n yRedo(): NonChainableCommandFunction {\n return nonChainable((props) => {\n if (this.options.disableUndo) {\n return false;\n }\n\n const { state, dispatch } = props;\n const undoManager: UndoManager = yUndoPluginKey.getState(state).undoManager;\n\n if (undoManager.redoStack.length === 0) {\n return false;\n }\n\n if (!dispatch) {\n return true;\n }\n\n return convertCommand(redo)(props);\n });\n }\n\n /**\n * Handle the undo keybinding.\n */\n @keyBinding({ shortcut: NamedShortcut.Undo, command: 'yUndo' })\n undoShortcut(props: KeyBindingProps): boolean {\n return this.yUndo()(props);\n }\n\n /**\n * Handle the redo keybinding for the editor.\n */\n @keyBinding({ shortcut: NamedShortcut.Redo, command: 'yRedo' })\n redoShortcut(props: KeyBindingProps): boolean {\n return this.yRedo()(props);\n }\n}\n\n/**\n * The default destroy provider method.\n */\nexport function defaultDestroyProvider(provider: YjsRealtimeProvider): void {\n const { doc } = provider;\n provider.disconnect();\n provider.destroy();\n doc.destroy();\n}\n\nfunction getLazyValue<Type>(lazyValue: Type | (() => Type)): Type {\n return isFunction(lazyValue) ? lazyValue() : lazyValue;\n}\n\ndeclare global {\n namespace Remirror {\n interface AllExtensions {\n yjs: YjsExtension;\n }\n }\n}\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@4.5.5/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/lib0@0.2.43/node_modules/lib0/observable.d.ts","../../../node_modules/.pnpm/lib0@0.2.43/node_modules/lib0/random.d.ts","../../../node_modules/.pnpm/lib0@0.2.43/node_modules/lib0/encoding.d.ts","../../../node_modules/.pnpm/lib0@0.2.43/node_modules/lib0/decoding.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/utils/UpdateEncoder.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/utils/UpdateDecoder.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/utils/DeleteSet.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/utils/YEvent.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/utils/Transaction.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/utils/EventHandler.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/utils/Snapshot.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/types/AbstractType.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/utils/ID.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/structs/AbstractStruct.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/structs/GC.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/utils/StructStore.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/structs/Item.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/types/YArray.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/types/YText.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/types/YMap.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/types/YXmlText.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/types/YXmlElement.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/types/YXmlHook.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/types/YXmlEvent.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/types/YXmlFragment.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/utils/Doc.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/utils/AbstractConnector.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/utils/encoding.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/utils/isParentOf.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/utils/logging.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/utils/PermanentUserData.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/utils/RelativePosition.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/utils/UndoManager.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/structs/Skip.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/utils/updates.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/structs/ContentBinary.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/structs/ContentDeleted.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/structs/ContentDoc.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/structs/ContentEmbed.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/structs/ContentFormat.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/structs/ContentJSON.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/structs/ContentAny.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/structs/ContentString.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/structs/ContentType.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/internals.d.ts","../../../node_modules/.pnpm/yjs@13.5.23/node_modules/yjs/dist/src/index.d.ts","../../../node_modules/.pnpm/y-protocols@1.0.5/node_modules/y-protocols/awareness.d.ts","../../../node_modules/.pnpm/orderedmap@2.0.0/node_modules/orderedmap/dist/index.d.ts","../../../node_modules/.pnpm/prosemirror-model@1.18.1/node_modules/prosemirror-model/dist/index.d.ts","../../../node_modules/.pnpm/prosemirror-transform@1.6.0/node_modules/prosemirror-transform/dist/index.d.ts","../../../node_modules/.pnpm/prosemirror-state@1.4.1/node_modules/prosemirror-state/dist/index.d.ts","../../../node_modules/.pnpm/prosemirror-view@1.26.2/node_modules/prosemirror-view/dist/index.d.ts","../../../node_modules/.pnpm/y-prosemirror@1.0.19_y-protocols@1.0.5+yjs@13.5.23/node_modules/y-prosemirror/dist/src/plugins/cursor-plugin.d.ts","../../../node_modules/.pnpm/y-prosemirror@1.0.19_y-protocols@1.0.5+yjs@13.5.23/node_modules/y-prosemirror/dist/src/plugins/undo-plugin.d.ts","../../../node_modules/.pnpm/y-prosemirror@1.0.19_y-protocols@1.0.5+yjs@13.5.23/node_modules/y-prosemirror/dist/src/plugins/keys.d.ts","../../../node_modules/.pnpm/lib0@0.2.43/node_modules/lib0/mutex.d.ts","../../../node_modules/.pnpm/y-prosemirror@1.0.19_y-protocols@1.0.5+yjs@13.5.23/node_modules/y-prosemirror/dist/src/plugins/sync-plugin.d.ts","../../../node_modules/.pnpm/y-prosemirror@1.0.19_y-protocols@1.0.5+yjs@13.5.23/node_modules/y-prosemirror/dist/src/lib.d.ts","../../../node_modules/.pnpm/y-prosemirror@1.0.19_y-protocols@1.0.5+yjs@13.5.23/node_modules/y-prosemirror/dist/src/y-prosemirror.d.ts","../../../node_modules/.pnpm/@linaria+core@3.0.0-beta.13/node_modules/@linaria/core/types/CSSProperties.d.ts","../../../node_modules/.pnpm/@linaria+core@3.0.0-beta.13/node_modules/@linaria/core/types/StyledMeta.d.ts","../../../node_modules/.pnpm/@linaria+core@3.0.0-beta.13/node_modules/@linaria/core/types/css.d.ts","../../../node_modules/.pnpm/@linaria+core@3.0.0-beta.13/node_modules/@linaria/core/types/cx.d.ts","../../remirror__core-constants/dist-types/core-constants.d.ts","../../remirror__core-constants/dist-types/error-constants.d.ts","../../remirror__core-constants/dist-types/index.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/primitive.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/typed-array.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/basic.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/observable-like.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/except.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/simplify.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/mutable.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/merge.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/merge-exclusive.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/require-at-least-one.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/require-exactly-one.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/partial-deep.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/readonly-deep.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/literal-union.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/promisable.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/opaque.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/set-optional.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/set-required.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/value-of.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/promise-value.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/async-return-type.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/conditional-keys.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/conditional-except.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/conditional-pick.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/union-to-intersection.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/stringified.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/fixed-length-array.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/iterable-element.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/entry.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/entries.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/set-return-type.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/asyncify.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/package-json.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/tsconfig-json.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/base.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/source/utilities.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/ts41/utilities.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/ts41/camel-case.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/ts41/camel-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/ts41/camel-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/ts41/delimiter-case.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/ts41/kebab-case.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/ts41/delimiter-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/ts41/kebab-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/ts41/delimiter-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/ts41/kebab-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/ts41/pascal-case.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/ts41/pascal-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/ts41/pascal-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/ts41/snake-case.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/ts41/snake-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/ts41/snake-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/ts41/includes.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/ts41/screaming-snake-case.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/ts41/split.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/ts41/trim.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/ts41/get.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/ts41/last-array-element.d.ts","../../../node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest/ts41/index.d.ts","../../remirror__types/dist-types/types.d.ts","../../remirror__types/dist-types/index.d.ts","../../remirror__core-types/dist-types/annotation-types.d.ts","../../remirror__pm/dist-types/model.d.ts","../../remirror__pm/dist-types/view.d.ts","../../remirror__pm/dist-types/state.d.ts","../../../node_modules/.pnpm/prosemirror-inputrules@1.2.0/node_modules/prosemirror-inputrules/dist/index.d.ts","../../remirror__pm/dist-types/inputrules.d.ts","../../remirror__pm/dist-types/transform.d.ts","../../remirror__pm/dist-types/extra/pm-types.d.ts","../../remirror__pm/dist-types/extra/pm-utils.d.ts","../../remirror__pm/dist-types/index.d.ts","../../remirror__core-types/dist-types/props-types.d.ts","../../remirror__core-types/dist-types/core-types.d.ts","../../remirror__core-types/dist-types/index.d.ts","../../remirror__core/dist-types/types.d.ts","../../remirror__core/dist-types/extension/base-class.d.ts","../../remirror__core/dist-types/extension/extension.d.ts","../../remirror__core/dist-types/extension/extension-decorator.d.ts","../../remirror__core/dist-types/extension/extension-types.d.ts","../../remirror__core/dist-types/extension/index.d.ts","../../remirror__core/dist-types/builtins/attributes-extension.d.ts","../../../node_modules/.pnpm/@lingui+core@3.13.3/node_modules/@lingui/core/cjs/eventEmitter.d.ts","../../../node_modules/.pnpm/@lingui+core@3.13.3/node_modules/@lingui/core/cjs/i18n.d.ts","../../../node_modules/.pnpm/@lingui+core@3.13.3/node_modules/@lingui/core/cjs/formats.d.ts","../../../node_modules/.pnpm/@lingui+core@3.13.3/node_modules/@lingui/core/cjs/index.d.ts","../../remirror__i18n/dist-types/index.d.ts","../../remirror__icons/dist-types/icon-types.d.ts","../../remirror__icons/dist-types/core-icons.d.ts","../../remirror__icons/dist-types/index.d.ts","../../remirror__core/dist-types/builtins/builtin-decorators.d.ts","../../remirror__core-utils/dist-types/command-utils.d.ts","../../remirror__core-utils/dist-types/core-utils.d.ts","../../remirror__core-utils/dist-types/dom-utils.d.ts","../../remirror__core-utils/dist-types/environment.d.ts","../../remirror__messages/dist-types/core-messages.d.ts","../../remirror__messages/dist-types/core-utils-messages.d.ts","../../remirror__messages/dist-types/extension-annotation-messages.d.ts","../../remirror__messages/dist-types/extension-bidi-messages.d.ts","../../remirror__messages/dist-types/extension-blockquote-messages.d.ts","../../remirror__messages/dist-types/extension-bold-messages.d.ts","../../remirror__messages/dist-types/extension-callout-messages.d.ts","../../remirror__messages/dist-types/extension-code-block-messages.d.ts","../../remirror__messages/dist-types/extension-code-messages.d.ts","../../remirror__messages/dist-types/extension-columns-messages.d.ts","../../remirror__messages/dist-types/extension-emoji-messages.d.ts","../../remirror__messages/dist-types/extension-font-size-messages.d.ts","../../remirror__messages/dist-types/extension-heading-messages.d.ts","../../remirror__messages/dist-types/extension-history-messages.d.ts","../../remirror__messages/dist-types/extension-italic-messages.d.ts","../../remirror__messages/dist-types/extension-list-messages.d.ts","../../remirror__messages/dist-types/extension-node-formatting-messages.d.ts","../../remirror__messages/dist-types/extension-paragraph-messages.d.ts","../../remirror__messages/dist-types/extension-strike-messages.d.ts","../../remirror__messages/dist-types/extension-sub-messages.d.ts","../../remirror__messages/dist-types/extension-sup-messages.d.ts","../../remirror__messages/dist-types/extension-tables-messages.d.ts","../../remirror__messages/dist-types/extension-text-case-messages.d.ts","../../remirror__messages/dist-types/extension-text-color-messages.d.ts","../../remirror__messages/dist-types/extension-text-highlight-messages.d.ts","../../remirror__messages/dist-types/extension-underline-messages.d.ts","../../remirror__messages/dist-types/extension-whitespace-messages.d.ts","../../remirror__messages/dist-types/react-components-messages.d.ts","../../remirror__messages/dist-types/index.d.ts","../../remirror__core-utils/dist-types/keyboard-utils.d.ts","../../remirror__core-utils/dist-types/prosemirror-node-utils.d.ts","../../remirror__core-utils/dist-types/prosemirror-rules.d.ts","../../remirror__core-utils/dist-types/prosemirror-utils.d.ts","../../remirror__core-utils/dist-types/index.d.ts","../../remirror__core/dist-types/commands.d.ts","../../remirror__core/dist-types/builtins/commands-extension.d.ts","../../remirror__core/dist-types/builtins/decorations-extension.d.ts","../../remirror__core/dist-types/builtins/doc-changed-extension.d.ts","../../remirror__core/dist-types/builtins/helpers-extension.d.ts","../../remirror__core/dist-types/builtins/input-rules-extension.d.ts","../../remirror__core/dist-types/builtins/keymap-extension.d.ts","../../remirror__core/dist-types/builtins/node-views-extension.d.ts","../../prosemirror-paste-rules/dist-types/paste-rules-plugin.d.ts","../../prosemirror-paste-rules/dist-types/index.d.ts","../../remirror__pm/dist-types/paste-rules.d.ts","../../remirror__core/dist-types/builtins/paste-rules-extension.d.ts","../../remirror__core/dist-types/builtins/plugins-extension.d.ts","../../remirror__core/dist-types/builtins/schema-extension.d.ts","../../prosemirror-suggest/dist-types/suggest-types.d.ts","../../prosemirror-suggest/dist-types/suggest-state.d.ts","../../prosemirror-suggest/dist-types/suggest-plugin.d.ts","../../prosemirror-suggest/dist-types/suggest-predicates.d.ts","../../prosemirror-suggest/dist-types/suggest-utils.d.ts","../../prosemirror-suggest/dist-types/index.d.ts","../../remirror__pm/dist-types/suggest.d.ts","../../remirror__core/dist-types/builtins/suggest-extension.d.ts","../../remirror__core/dist-types/builtins/tags-extension.d.ts","../../remirror__core/dist-types/builtins/upload-extension/file-placeholder-actions.d.ts","../../remirror__core/dist-types/builtins/upload-extension/file-placeholder-plugin.d.ts","../../remirror__core/dist-types/builtins/upload-extension/upload-context.d.ts","../../remirror__core/dist-types/builtins/upload-extension/file-uploader.d.ts","../../remirror__core/dist-types/builtins/upload-extension/file-upload.d.ts","../../remirror__core/dist-types/builtins/upload-extension/upload-extension.d.ts","../../remirror__core/dist-types/builtins/upload-extension/index.d.ts","../../remirror__core/dist-types/builtins/builtin-preset.d.ts","../../remirror__core/dist-types/builtins/meta-extension.d.ts","../../remirror__core/dist-types/builtins/index.d.ts","../../../node_modules/.pnpm/nanoevents@5.1.13/node_modules/nanoevents/index.d.ts","../../remirror__core/dist-types/manager/remirror-manager.d.ts","../../remirror__core/dist-types/manager/index.d.ts","../../remirror__core/dist-types/framework/base-framework.d.ts","../../remirror__core/dist-types/framework/framework.d.ts","../../remirror__core/dist-types/framework/index.d.ts","../../../node_modules/.pnpm/make-error@1.3.6/node_modules/make-error/index.d.ts","../../remirror__core-helpers/dist-types/core-errors.d.ts","../../../node_modules/.pnpm/@types+object.omit@3.0.0/node_modules/@types/object.omit/index.d.ts","../../../node_modules/.pnpm/@types+object.pick@1.3.1/node_modules/@types/object.pick/index.d.ts","../../../node_modules/.pnpm/case-anything@2.1.10/node_modules/case-anything/dist/types/core.d.ts","../../../node_modules/.pnpm/case-anything@2.1.10/node_modules/case-anything/dist/types/index.d.ts","../../../node_modules/.pnpm/@types+throttle-debounce@2.1.0/node_modules/@types/throttle-debounce/index.d.ts","../../remirror__core-helpers/dist-types/core-helpers.d.ts","../../remirror__core-helpers/dist-types/freeze.d.ts","../../remirror__core-helpers/dist-types/index.d.ts","../../remirror__core/dist-types/index.d.ts","../src/yjs-extension.ts","../src/index.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","2cc028cd0bdb35b1b5eb723d84666a255933fffbea607f72cbd0c7c7b4bee144",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"927cb2b60048e1395b183bf74b2b80a75bdb1dbe384e1d9fac654313ea2fb136","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"e8c9f4e445a489991ca1a4232667de3ac36b07ba75ea335971fbeacf2d26fe67","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"8677c84dd96426659c02d8204af67d286b4ff1e647a7b94d0fe174fdb81b7f05","1693c15bbff444e98c1b3a73001bc25d34d2b02062cabd540d4999a1013418e7","cf8cb39427c47c7eaa7c9a28b88c315e26b3d73dbc18503d81e55cda9009493f","628d5df7f8ef586aad586aa41d180436929f7860813dc1c19ec418e328225f66","02e8d6b9f3c89e7ad07c65a486c8387cf862a4c4e7c4d3cb7f51598c7ec057a6","f3745a58f2bd7ed2c210e882e95b67d0707f97b9ed7b2431f68e5cccec0e20ba","ef31e112135506de69dd265d650a12fe0658899266cf49f785f387980fad3e3a","4112f1cc336d892dfef4af1067b68afcfc206d008a8bf4c122de6e63af3624a5","19aa7f71571f7c4c9cff5180ba9deec1ee76d1e679c3174bda44e790c81e5709","e7c738913fab4ba4b00fcf1d1eb1ddf8989b64355da34250407340f4894a2384","da23a9065db521ac08ae997289eb4b0a243985fc483e12a5a99f955b9ed485d0","15d5e08509641a32cd2a678b1753f2164c6a12bcaea14d63f02352f997ed4ae5","431eef47c55a88198c1cc62ea7c9c7537c3219c3fd652c554d3d5bb7a63658a1","ee5af755629403e296dcc1bb67c3d405ba2996eb2111ce0d6af5cf39df258e73","bff0c7f141843b45d97a0bf25543a5584668c4226ef0d638d5fc47da882556e5","c206de0c479b525406ae29fd4399b18ae6177235e1f46e59fc3065e83542f683","d31b2bf699e90b8b60c11711f01486106de3c714b1beaf9892df472cc81108b4","e53997284dc9306b029b78ca40b62b3e23a04527a4a397e539a40efa25e2192a","68b79ed33fa15886f022e7107ae404e3f37b42b323892e44f0cb529666782ff8","4ade9f7e06104562f158caedf1f769a8b21a66a7c615454dbc80f0dbebc0ba86","a597bb0db47c83cff3e2ce1aab5a779176f81e9641232c731a870bc1fefe1b84","32af324257550af5c5699ef07cda44333073a7ddd8afde7abff9e02a21455370","8a9064f06f6cbc30b2462837ad67b74594fb00f184a9ff086f688c68cfbce8dd","d126152f77e5c053a43a48204e91e92ed6efda9e105cc84de6f8e8d306c9dd90","95819ba92a64fc431f24c9e95d4287255eae94e15017fbd6ad4ed701efd8731e","75305d77f4722792c4ad9706c909f3d9e583a274309db334b28606f97a89fce5","55867e1188ed1f46cbde299df51671901c9de5af5a4b53c274019ed4b08d4f34","d9b96d27372967e8f53b3f7b7cb6e875b8d128080abc4fa204a13f0d3f2b6506","d41b65a0fb48a14a7b52eaa45d9b65988af076e63704cba1dd1f72e961e0e2f5","92b40a9393f937e4bd7eed4b0161ad03296607bfdf26b0bb323cde18c51e0687","ef4af984fed6b1d73093c2d92619690ccf43e392ad0606a813fe7eb096bfb2ca","7215a5c611e92a934a4280874c9844cd6b8dba4fd4523badc27203a60303c8ca","82d08308874e14b269c8e099b0bf1e576e28ad5585696ff83359e47a36fd5cfb","3db81b8e01971bca76bb42aa9df43048ca1e65386548a3a6df3d54a9afba2e47","b18986bae3e480ab5b7d794feca92ae7ab0991b3b3ef975547d2c5218386d85f","d8b6dc94bc2761afdcff7a1e29359a383472bd8af2ce03485a2792026f15f458","1955442a305cd1622782ce89c898be431c66c39c36a253abb0543052f4917613","2251d1a89b3d8aac866bc79839c28681886d289d117404276ecf1d4fd5f5c19c","2a55511100028e4af650f52bdd7826fb187b9eee380b7ce9249a69f0713503fa","af95dfea86a72f578f54d68f590a3988a97900b06f6169cdddc0bc40a4c6a918","992442834491efb053df22fb8148f8fd1303c198c97f5b50ebf1dd0f63ae5e8b","092274870bfdbb373ea502c23b8205d30e622fd10a7e5370d752a6d8de761110","e86a45fac2071035f07ade063ad32754edd13f45f3f3b143387ec01b8eb8aec9","3ceb8a1cb18a9023c08853e30461ea7661f742ccf496f32640d41e8b46a66569","819ff6185962272453fe11af8d9f3da27f5d3761b21e196272db43ff54e4caa4","8e0cc8ec920b2090c2b1a26c5a65686d01302bb7b30c2c4c3723d999aeaa7b12","6b630576d462988579afb9ad6b59f4475e3d87a4d105e52ff041263d23760283","3c616cbdf6f11c71a1cadba225121b0733b1c3da2a4855d7247a22bc64ee28cd","88be0f1753d0d5047c96e6e3579e18bc36883284c3c620f3f30c4b5a47d91963","26c9dbecccd896d6ede0ae2bb3012b1f11ae9a7c1d828d0ffb17bbd33156ccbd","1985be5a64d4b51e8cffead0c151e7cd1e345d0a103471192ec0d50fc6965f4b",{"version":"8f1e2cbe3066bb9edac3a3231e06e5689944e4bc71c33a2d275f75770ad11879","affectsGlobalScope":true},"83cbf5fef4a71a41c955443dec93b272005d8c649149d508598f622b4d7f95db","451a4385cf84ab9c358908bbfe285d486797487d85037cc91327ff41797ffc13","bd673edcd2bb82bdd3c7d3ce1ed532a6999173ac5dabec1fdb8a244e931896ea","450c3f3ce95c5411b719e9347359f7f04bacaf0e5a1636e6afabf5643864ce3b","98855002461a71896d185e2d35e23fbadb2e5427c6ecd4710bf49a4c50422d38","c42fb8e24bf737f2f22585a08a274eab119fad42c4938b6e477b29eeea644fc4","bc11fc8c89ca7651d0d8b0687a04643ee80908b2f547fb9bc3c57c4cd08edf25","278b91531540f4d1d4b4f9e065e733d057d70dc8fa7d995aba6077567e541e8f","cfd5cd3560f111d6025dd6ed498fc9f6d6f4463018b4b0f1418bf2dc5a4655ea","710f5b3b77e5ff0c97418b7beeaa77413fe5da95266cc248406f4eee6115f8f4","4f1dc8e5a629b7e5a4c7567c4b497b87e5c0493d53fb3d4d7695a7325da7c317",{"version":"fc4794f5ccbfd8d54e89cc371af2c65d4db5bde87e75b7b27222299805304806","affectsGlobalScope":true},"0278fb4eb96c568ee0ec1b31bfa8dea43897578529ac72440db6033aeca3951a","8d468f2ec82f301adbebd6dda379f8071bdd40132284eead142eaf410c56ee79","ee4c2b821cdb6bb1b2ee139f8b39c3090b85ee9f21ef0c4e6da85ccc37c27190","abf86bf93468ee47bb82ef281ede349a9a5cdaa79f7623cb0c38b3b8f4d6d16d","b3adea08320fa04c6e67b5a2571f2b1835cbc09d3a1d9f9491e248ddd523ad80",{"version":"febefb735835bcc7c7f512a9ac6583d39e60b77a381a6ebfe5d065893d931f44","affectsGlobalScope":true},"869121668002b9cf188bba1b107acd7ee744c9446e66a1449dbfcc5bca521f9d","8219de3b0d8d9562babc19fe66d6d9b06a259aec7728b0ee3d05c690c0bc7ebd","523650e6460edf906889a51cd3996350e3a072ab81445b8703ad712406f4e86f","43726bb507c00fad304764a0b1e7d1e1e2485693d5748565853b84bcc76eae2c","b00a6a38b27ac8da6d1f290fcf91821a0ea76eda17409a6b776584bbf323b928","e0f585012eb7a61df9c139924d46f178a762ebf0a4f32e22656482891278f048","c2389f38d4f97b0ede032aee00627816037dd362d66150436245811bb9de3b3b","33babe20c9adb21832bf548abd2e71fbf12d2ef7712c0c77f6dd58d80cb42650","0bcf96ec816d5f3d30aac24de98373c7892724934971cc6e81c3318b6124245b","1e859aa44b6cb8edf1b42b38f5b45d7a4d4b7c5d157537a65ad9d6b38227321b","c5d5f4d1c61ba66e03a1c5dee152ae53e7f956f0a4ac867d42fedd0b222e8ae5","771043a81c343f37b3ca003c52639eea34b759cfe603ea9ee500748869d1db19","66847422c47f51670aa3c4a63c36b03e8b350c47b88cc3a595fccc6fcb1e700b","6373a6a0129bfedb2e2ffa1858a813137fc4656a01ae6973a86778d20fd4647f","eb7fbf4e57b111b45002e4b50fb2bf0f3c8267a5a4bdd5b3e1142fe198ab4797","71ed5df98c13d32d55e2941ac3951408cf56d636dc4d3e064b3fb99804c69d06","bbfdccb50fbe35e3cde5b4cd4a7b86a2694958da28a085153c0dc9753d89427e","36c05e7b3586aefb636d84a555dbec0055c85d3955ff2c388656fb6a914d5830","b7a81d9ddd3fcf7d4154b570c3f9d25e5095bcfd95fc2fd33ee89c30d4785f19","d103de0a2913b9441f245c70582cb5f94f62534d52470f854addf9bee999d826","9bd59851e397abd2bce281c8841510a96907bac3592291403400557f30d68efd","0fcaba280a7fb59281c01e7b39f2830187eabd0664bf8a8da465fa85955aac15","c956baa533de1c7d04f16c941c962f3d81f3d2463ac1ddbc76b6236a2271aad5","7cb93870a50a26953ab4ce10abe37a3722ce46aa56aa7606de3d9fb0ae0c7cab","19e20dff584ff4da2d0740ad9bc3acac618350764d8cb14ef104f1b9d07d7f17","6790ec7df08e8eaa46bd62dc4e2ace6f84e6035011c806313dc38c533dc2a5af","7ca52cabaaef26f719c4bbd54faa88fe391252fc5a2b7de2388ae872f306addd","84c013084535dcbe6edba14e9783ac43fdb6dd9f2d8f3517eee15375c780eeac","004142d65d3fe8f9eb7c98d25a72a6a1b756e7aa1ce2a29ef79ed6f75362b058","96a4e37864153ffb215a3b562e237572df79770a1ccea9e121a2a9c6a2b7c1bc","acbb1e9d529e1d8899ec719b76bcd1d7db080e00cdbb17cbf067b932f3ce24a6","679a500b60fdb879af3ff20dab0bc5937098dd1ea5b75f786c672fde09faaeef","035c74cad659923dd64bf6d84038675b352adca39eb1db2c5fb2aaad706ddb06","a15147866807eff433c82a49f14722fffae34d236b8209d2fe482e01d17827da","bd32eb2524c83f21252f825296b82bbe9861c006becb899bd65e0e3ccfef27b3","8700a6edece324a740e8c4814e066a28b59a6f82ae411fa546697ae0f160bab5","a3646c068d83643c687a9a774e4601a5859f29ff8524fdc2107aa309c06e541c","bf745adef30390f9ce2fb2e1289ead832d7cdc0e8b24a81c1466aba67146aa2e","f5c28deb6a28f159a47d235572232d42ed0e6bd8defcb8b1ca060e5e5a922949","3f7e2c3e68f5608b4ebffc2d6b7b9f241237bf4999b46c595deb32fd961ea936","61b89bcfa97b71163088a68c7a2c4236c241ef36bdd49e57d58d50ed55ecee97","c2a7c738eac005906514dcd53803f03196adbdc07959c22540a058edf45dd78f","f9eaefa84f17bd2eccdb58b2b315299f0a00e9417a0235766061233695ff3f4f","2d1ea98405903025396cba227b2ee05c43f005f83bce6ca33afe37759e691378","731d8cd4570c24819b660a60bd89e0e1f12b6e512c23827458c667a7cdb0a49e","1143318400a0da3b23951a6ec8e5ba7f787d8603064a02c9d023f6dc383bf709","7a7c3a30c1040c027c68951441667576bafeb769c1bbd1119dfe35f97d027506","d280c3b34e25d02998825aca95848a73550edc0e6cc9d7e3fb59fab7caffd023","e8b405807261832262e75fc6e511b912267db4d66b52a6319a906bf273458e61","17fd39370a6ff62e85f93b571504c0f458d22fdc0618bf8e00550375a2b8e593","b5e6514e67caeecb665d4df53669951c672de30abd1aa10a1c1da98c7b9f0de7","1d4127595cdf32eff6baa0eb1361902820309231c8796e81c61a9794a62ea23f","5e42bca6b52fd095640a945f0ed429ebda6ab011d400f0e74287d37e55ad7984","b04bbf66d68477ed776a5f0fc7de26c4e6ff71474341b3566531177db5befe21","25304de59a5dd68db6ff329ba711fa6139b25c16fb45db8fd9009875205d8e0b",{"version":"fcf26d03046152ca394803ba040b1c6e0c419f8fe515d588a50b10247eba176f","affectsGlobalScope":true},"0145b14c440d0b1543f2ac8204988e77aeec2e9f389e9887e60241503ae9341c",{"version":"cd80b08d62d2cbda476071c3bcf4fc9e011b5132a1b8ed09fedf4ce6aff593d4","affectsGlobalScope":true},"478e59ac0830a0f6360236632d0d589fb0211183aa1ab82292fbca529c0cce35","1b4ed9deaba72d4bc8495bf46db690dbf91040da0cb2401db10bad162732c0e2","e689cc8cd8a102d31c9d3a7b0db0028594202093c4aca25982b425e8ae744556","50614bd64da0cdc193d8cc72f1009c829dedaa0aa5cc5e2c154bbf476ee2573c","f41d91b2db1112fcc673a6862fe68cadcbdd0a66ed16b47ac74a0a6da8932bb4","3e94295f73335c9122308a858445d2348949842579ac2bacd30728ab46fe75a7","79e2863c8e11982f23d717f1a9a58b2b31e290032c52cd25191b69a5af95644c","434420936e9d57b978889818a6158b4eaef096d28e87dd27b03ce52b512d4eab","578cfbf494c3859247d4b506478efde72b5a4c9a27a31e1be9656cb73fc6ff31","369da6140c9ac16930d0006123a8df4d2661c626c7fba7f0d27be98d0034e6ea","6a26db6db5b21377136e02e406fc27345a42af8817692c498d22bf827ca99150","34be08a3e536797251c8ed5959d64532d4c17b6ff69c646a04375ecf0f280562",{"version":"e9aaa599c0e1a28b13d669485ebc05dbe5fbd717f9d963b7604254a0c330bdda","affectsGlobalScope":true},"0396d02dc47d81e5e0965f475f70bbd93fdc348c28a21d620f47582ac756fb70",{"version":"7c5ac6bd3bea88ab8f6b199a0f48881d0dff78bee67b740fa639084455d31787","affectsGlobalScope":true},"df24ab70719695b787e9ec8fd8851dc57d5591b0ee9659e761c7117aa7fe05ea",{"version":"ec1610f1c3b0b26cc428773392ff2dd4ae7692c9d17cb1f9fb9dddc55a35de1c","affectsGlobalScope":true},"91da8347f1c5daa8e81a2364dabd219d3093b4ffd2a7c9705240d0ef46be5957",{"version":"6457cb68c92c3cec6e2ae154e37c685bdb79c8b56ae9bc6711417b74da8e24e9","affectsGlobalScope":true},"7dd38959628fde6a80a152d03e551f0796bff4f8d5cb9d5cfd923c89d5c3f0f0","b456a1e182550432e518dc5f68c3b291333c4f7f021be333157a44c627c52690","7bc8b44f45559fdc68fd91c088bf42b777cb9ebaaa36acd1438be640c7bf1eed","9c65e5fe1f6188da0fe0daebe286914b17c3e9792285f4eba345269cd47db2a1","86edebfb839c6c66d13647a70ef991e746332d67e852c3e43fd8c7e40be5ec60","df52b87c6f10fb0ba564c775fc87bc728154fc8599e53f6b76178c3c4fa8f23d","fcd638ca1360bce57b020f04ff9494f931e80dcd8b29905dcba52459751e6e00","e9eea2ee0f6172ba252c24f195e70ed256b162446be8bc32e155f1253fc08867",{"version":"390e8bc0d9d48699b6bc346f7b919a6f3f1b688bf8d4e819e3064263132ae4ef","affectsGlobalScope":true},"c1ad5421fe9181241387f15ed453ce4f9de626509968ef7cfc944622dc4ad090",{"version":"70b5c9f81e5e68ee4ff0f9f96b11623f7e77b56857ad722ad5488bb0b3e300d2","affectsGlobalScope":true},"8d9633a8e8f7554035f83769d462844268af23d399e43dd443c785deb8bb61bc","2d2a9911ab2411ba516daf90d26232317f300beeda3dcb8902e543df45fb14da","e17c4f294a28b8d6f2090b594e32f75082be12a7486e5a619caeed6f0b070134","fe6362eada470fa87cac0e70cadb75e8406d5b61d82633624ba51ad41e077bc4","a3276eb9153fe1ad5982eea7ec7b78fa60fc985d47fbd2c624df56a2caa71307","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","01c5cb2e2294fcd3408f9b59d3833bea0dfcdffad41002f4db8c649ca1f74797","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","01c5cb2e2294fcd3408f9b59d3833bea0dfcdffad41002f4db8c649ca1f74797","a8eb9b9c0c77e426f4a7298da88a30a01df1def814fda96eb732664455caf9c6","dedfc702068fc54e1bd28534095e64670642891f39895cbb3f6f1a797385c4b8","1633e3c985ec02ba0efecd5d1295806d398d455852c2d9256b86a57e8e07d1c1","890fdc1bc1832ecfc2040265d57288174552991394ec77793f6bcb53598c5402","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","8fe8adf0cb8291c7f52a1ccf0c38b47256adfc30a14cd9f2c46fe93bca57cb89","64bd2dadd45c769ed85b6cb60077239d32752db98122facfbab4948e8572f7f8","2ab980b94dbae651e94546327f45d3919bdfbe37f8fde9b774be3aae8b3239cd","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","f346d121a4031df0c92934c25fb1d1065b170e9c92122bc8c2d2933126062a6a","f346d121a4031df0c92934c25fb1d1065b170e9c92122bc8c2d2933126062a6a","95e36af58bac504c0ac5311b9315778ce1cfe9bc175a3a7826be5b68550152a6","67f15aa6c7e91728b040e72f8006a8161a178a256713c4f1d53f9aa051f05033","75236538088faeecc908dffe8db769a29c9536927e7ac41c048d21073fe01e22","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","4250daf780ccc8119e2908c83626a59a30c502889f5390963d9b4657ff328d5e","fcf3104869d5b0e7f5f2e783697082139dae0cf911b7a940c42e59ad4d5ba997","ee9542b6c3526013f39e17af59bf642e8102dcbbbf98f6d67d3bdedd31b0145e","19a980cfa1d3ee18bae418d856fca09b825e8903b49a1c26a829974f5376b27b","3a07cd8a2c2d543406e7b079f8b958b1563efda5f395fdfe34438070348dcef4","ad91425e046c6914d3131c4b2797ba3dc6a3364ce63f0fd2c7609c16ed7be4b9","8940061905f730c245e5488145a7e36a7218faa1ba14e4adc797d403bda6a2fb","cd81f86697af747b4abdd886c0299c733e84fced8175dff15669460176dca0fc",{"version":"fbe7ff2419e9f27b225a5b85e52c6ad1d196f13cb3e521bee171327e0c3a9d61","affectsGlobalScope":true},{"version":"f07e4b2a918b15f4e8f2988a9da864508a4728deff23113b23dcd7f00068cf85","affectsGlobalScope":true},"973ad753f27f9d921feaec703154ad0f4666e41fc49ff29e1c57db4eeaff0767",{"version":"bb282c93cf60e427b2a27e281029cf0e06a583935dee4ddf128a7f51af2470bc","affectsGlobalScope":true},{"version":"424bbb7bd7eb70d2271764de16fc5510305acbd6fc23d94f65bb9e3242e73af9","affectsGlobalScope":true},{"version":"51702f673ad1d32b3be0736161244deca14a931717f47fc457cb165ac11a67ae","affectsGlobalScope":true},{"version":"015ee27dd817c17ac9aa430b701803f426c30b860a2a6994daaead80959e594c","affectsGlobalScope":true},"4fb8b95dd4f911bae870338b7fc2f200896478e600f6b9eca6a0c72723a14e86","89d126b6df1a1a043e68b321cf6e3dad46f2d0d2461088277780cd63bb2a599d","bc201c28f3cd03d92cf8c921aed3d84f8d64fc491a75278b11e6bd7f9338dc09",{"version":"7faf769f3892770fba460ed56fce7b42789c1c2873f453b722480d27aef577f2","affectsGlobalScope":true},{"version":"cd7c914cdc79588f058eb1f9973181e3402e04b1a5379cb312153b1456bb7e33","affectsGlobalScope":true},{"version":"a6f0feebe9faab2b16070df42d24b3f62756d1f5f32f4d8d0820052d363f2ff9","affectsGlobalScope":true},"29344e52fff278da0dc88efd92d4779e62c9bf5e25d5a0640c917f09d450ccec","cc5b91cb8dea1f5b4462e61e48e05a6e9c305b347e380e425c358cfd91cbf168","d8550c2bc866b6d4067a59306c2b32167230388fff0f9204e7cc37d2aebf7016","7aac8b80c50f603d00809b381aebe7230b9bdb9d35363fc487d75ca9327c6786","9b5e0c215280d1d02e8715aa01fc0a5b9998302126e70a971771ade56e7314f5","b36ab3c506486e82f574623bdbc2544ca35827aaa30a1f8881164d795f6ae089","10e6b544ced5ac112601ee8da4da5be253143f8ea5eeb74a40792dfc1c448400",{"version":"42eb8e33cfb8004cb2880659deb79537c3b154e9090d7482480f51aed2458c64","affectsGlobalScope":true},{"version":"1319dd2ba3ba9ddac707487d6eee500e2659db72081162ad9474c5cf73c76571","affectsGlobalScope":true},"989ccaf039b758f7b6860278e616878c02196b25d8738675b06f1b876a2d28c0","52ca87077ba9a4131aa62e2bff9d99b0f501354884de043c7ab8c067098c02ae","e12b1b62d9f42523fb19d158ba7cdae58b8467db8c5c5109894c074cf1b09fff","ded764de76437e56fc57ca8ab210e1016f18f5f6fb8c1f4899a4b5461d2c4b5f","6650877fd7995e660b11283bd175dbc82f0a50469b37dc851c80fe503eae331d",{"version":"3b5b8ab0618939383dccedf4b992b9ba9996416901a4a016b03791540aef7e0c","affectsGlobalScope":true},"85d8fda12a71f75c72ef9ec8244dd1ba6824bc94263b6d732e31729c7fa3ded3",{"version":"4d397840fa20b9d56ed7dc9b5c0a73d55c9a9ec0d9fa3e83d8cb56ecbd9847ef","affectsGlobalScope":true},{"version":"823f22f725bf6b1306b2437b40f47e599aa21da60d637e96b39c5afaad4b6f0c","affectsGlobalScope":true},"741464a488e9eba4a1de52e98726f0217075857537f6c1c6a8f4cd971be2390f","2aece5972bdc8f16bc2fd4616056e21bd71580e5c81457e433b83c810c82c06f",{"version":"7a01dc41e55a77df3d7170772503d41dc2ba7a4d188fcbdbe15a95feb5b7ef7f","affectsGlobalScope":true},"db3050870ca481a8db9fef8ad6e974a1ebc78841a5f3c78a31a002d99e0508cd",{"version":"b9a3182402a77bdeea1c8660d0cde37d6b744e5d6df396e5aec572c183cac44f","affectsGlobalScope":true},"04cf9580444dbfc4fdfaa9ea8cd37de743135a0dad8220d95f53c1a8852fac34","ce1b4edb22dc7e36cf7040c6e2a297b182e1285ae3b51d69154b8617f1587d81","2ced5214fb4159e282ccc5c84fa9eeac92a16ee70be4d2b0b099d460c765d72f","d1b33696e8b588993f1cd91e8ef7cf763f261f7a4c3bbf3bf50f78fc64a63562","7e61def8d1fd9b2db068256f056cfbcd9fb7f7a0f405115ddc048deffed2bceb","99f37160206c3a0e40163345bf10f40fbc4ea60a1a86988b462be6ada34440c1","f8cfb6cc5876b180829e778987d60e6c2e63b3f6d3d1003948bc7136781b0012","c3970154307b129e7b058cae2bfe40a0b6973afde1e3e192673e43d87430f836","4e22b9ea2805fec5f3c120146a690e5604a3117dbdee648c85393f58422eec16","c5d069242057212dbb3b0a9233734cca9089cd4b0e7d84c147e234f56103c526","0dbf6c976685c4ec255db3a0ac40bb542b4c3c713feba72ac3c047979c9a725f","129d1f6bfe08199783faec93e334d589102af24ea9e71b1372683ece3a6d8e8b","1f066153b05a41ec12a39cc0b61abb66d70ee1a009b5f4d9a47a2450ba0d9039",{"version":"f725db634d4dd4df8c3696dd22a705f1318df5d141c926a29a54cf7a6a628b62","affectsGlobalScope":true},"2dff3bdcf53d4a07c9ab8ac171e81e0bcfc486200bf90ebe9752b680691d5f87"],"options":{"allowSyntheticDefaultImports":true,"allowUnreachableCode":false,"composite":true,"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"experimentalDecorators":true,"importsNotUsedAsValues":0,"jsx":2,"module":99,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":99,"useDefineForClassFields":true},"fileIdsList":[[106,107],[108],[195],[194],[195,196],[284],[95,97],[94],[95,96,98],[95],[95,96,97],[113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146],[132],[132,143],[117,134],[134],[141],[113],[117,118],[126],[117],[148,149],[150],[148],[153],[147,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],[157],[155],[159],[153,162,165],[92,95],[93,98],[97],[92,95,102],[99,100,101,103,104],[47,92],[91],[51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90],[51,55,59],[51,52,55,62,63],[51,52,55,62,63,72],[51,52,54,55,58,62,63],[55,60,62],[51,52,55,58,59,60,62],[51,54,55,56,57,63,72],[52,54,55,58],[52,54,55,57,58,59,63],[52,57,67,71],[54,55,67,68,71],[52,58,63,67,68,69,70],[52,66],[52,65,68],[47,72],[51,52,55,59,61,62,63],[47,48,54,55,58,62,63,64,65,66,71],[49,50,58],[53,55,59,66,72],[49,50,58,59,72],[51,52,53,55,63,72],[55,59,61,63],[51,53,54,58,59,60,62,63,72],[47,53,58,63,72],[50,59],[49,59],[55,58,60,63],[50,51,52,55,61,62,63,72],[58,63],[58],[51,52,61,63,80],[249],[95,97,98,112],[255,256,257,258,259],[97,255,256],[97,255],[97,98,255],[95,97,98],[173,255],[110,111],[112,280],[109,173,282,283,285,286],[281,287,288],[112,173],[112,173,175,176,183,184],[173,174,183,184,185],[173,183],[186],[112,175,177,180,186],[183,203,204,205,206,236,237,238,239],[235],[175,180,186],[179,186],[175,186],[109,186,192],[112,186,187,192,198,201],[186,193,242,243,244,245,246,247,248,252,253,254,262,263,270],[175,176,186,187,192,202,240,241],[176,186,187,192,241],[186,187,192],[186,187,192,202,242],[193,202,242,243,244,245,246,247,248,252,253,254,262,263,270,271,272],[179,186,192,240],[112,186,187,188,192,202],[186,192,251],[177,186,187,192],[112,186,187,192],[186,188,192,261],[112,186,192],[176,177,264],[175,176,266,267],[266],[265,266,267,268,269],[183,192],[112,186,187],[112,186,188,192],[186,187,189],[112,186,187,188],[189,190,191],[109,176,186,187,192,273,274,276],[186,187,192,273,276,277],[277,278],[112,186,187,188,192,201,240,241,273,276,279,289],[275],[112,177,186,187,192,240,273,274,279],[112,177,186],[291],[92,105,176,235,290],[197],[199],[199,200],[197,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234],[175,176,177,179,180],[177,181],[181,182],[178],[250],[260],[96],[98],[171,172],[171]],"referencedMap":[[108,1],[109,2],[196,3],[195,4],[197,5],[285,6],[178,7],[95,8],[97,9],[96,10],[98,11],[147,12],[133,13],[144,14],[135,15],[136,16],[142,17],[126,18],[120,19],[119,19],[145,20],[124,18],[125,18],[122,21],[129,19],[130,19],[150,22],[152,23],[151,23],[153,24],[157,25],[155,25],[169,22],[171,26],[154,25],[158,27],[156,28],[159,23],[161,29],[160,29],[166,30],[162,25],[164,27],[163,28],[104,31],[99,32],[101,33],[103,34],[100,33],[105,35],[93,36],[92,37],[91,38],[60,39],[88,40],[82,40],[83,40],[84,41],[85,40],[86,40],[87,40],[89,40],[90,42],[61,43],[63,44],[80,43],[58,45],[64,46],[66,46],[65,47],[68,48],[70,49],[71,50],[69,51],[67,52],[73,53],[53,54],[72,55],[59,56],[77,57],[78,58],[57,59],[62,60],[55,61],[79,62],[52,63],[51,64],[54,65],[74,66],[75,67],[76,68],[81,69],[250,70],[249,71],[260,72],[257,73],[258,74],[256,75],[255,76],[259,77],[112,78],[281,79],[287,80],[289,81],[174,82],[185,83],[186,84],[184,85],[203,86],[204,87],[205,86],[240,88],[236,89],[237,90],[238,91],[239,92],[193,93],[202,94],[271,95],[242,96],[243,97],[244,98],[245,99],[273,100],[246,101],[247,102],[272,98],[248,98],[252,103],[253,104],[254,105],[262,106],[263,107],[265,108],[268,109],[267,110],[270,111],[269,112],[241,86],[188,113],[190,114],[191,115],[189,116],[192,117],[277,118],[278,119],[279,120],[290,121],[276,122],[275,123],[187,124],[292,125],[291,126],[198,127],[200,128],[201,129],[207,127],[208,127],[209,127],[210,127],[211,127],[212,127],[213,127],[214,127],[215,127],[216,127],[217,127],[218,127],[219,127],[220,127],[221,127],[222,127],[223,127],[224,127],[225,127],[226,127],[227,127],[228,127],[229,127],[230,127],[231,127],[232,127],[233,127],[235,130],[234,127],[181,131],[182,132],[183,133],[179,134],[175,10],[251,135],[177,33],[261,136],[180,137],[176,138],[173,139],[172,140]],"exportedModulesMap":[[108,1],[109,2],[196,3],[195,4],[197,5],[285,6],[178,7],[95,8],[97,9],[96,10],[98,11],[147,12],[133,13],[144,14],[135,15],[136,16],[142,17],[126,18],[120,19],[119,19],[145,20],[124,18],[125,18],[122,21],[129,19],[130,19],[150,22],[152,23],[151,23],[153,24],[157,25],[155,25],[169,22],[171,26],[154,25],[158,27],[156,28],[159,23],[161,29],[160,29],[166,30],[162,25],[164,27],[163,28],[104,31],[99,32],[101,33],[103,34],[100,33],[105,35],[93,36],[92,37],[91,38],[60,39],[88,40],[82,40],[83,40],[84,41],[85,40],[86,40],[87,40],[89,40],[90,42],[61,43],[63,44],[80,43],[58,45],[64,46],[66,46],[65,47],[68,48],[70,49],[71,50],[69,51],[67,52],[73,53],[53,54],[72,55],[59,56],[77,57],[78,58],[57,59],[62,60],[55,61],[79,62],[52,63],[51,64],[54,65],[74,66],[75,67],[76,68],[81,69],[250,70],[249,71],[260,72],[257,73],[258,74],[256,75],[255,76],[259,77],[112,78],[281,79],[287,80],[289,81],[174,82],[185,83],[186,84],[184,85],[203,86],[204,87],[205,86],[240,88],[236,89],[237,90],[238,91],[239,92],[193,93],[202,94],[271,95],[242,96],[243,97],[244,98],[245,99],[273,100],[246,101],[247,102],[272,98],[248,98],[252,103],[253,104],[254,105],[262,106],[263,107],[265,108],[268,109],[267,110],[270,111],[269,112],[241,86],[188,113],[190,114],[191,115],[189,116],[192,117],[277,118],[278,119],[279,120],[290,121],[276,122],[275,123],[187,124],[292,125],[291,126],[198,127],[200,128],[201,129],[207,127],[208,127],[209,127],[210,127],[211,127],[212,127],[213,127],[214,127],[215,127],[216,127],[217,127],[218,127],[219,127],[220,127],[221,127],[222,127],[223,127],[224,127],[225,127],[226,127],[227,127],[228,127],[229,127],[230,127],[231,127],[232,127],[233,127],[235,130],[234,127],[181,131],[182,132],[183,133],[179,134],[175,10],[251,135],[177,33],[261,136],[180,137],[176,138],[173,139],[172,140]],"semanticDiagnosticsPerFile":[106,107,108,109,194,196,195,197,282,283,286,284,285,50,49,102,47,48,280,274,94,178,95,97,96,98,147,133,144,115,135,134,136,142,141,117,139,140,126,121,120,119,116,128,145,124,113,127,132,125,122,123,129,130,143,118,138,146,114,137,148,131,150,152,151,153,157,155,169,165,171,154,158,156,170,159,161,160,166,162,164,163,167,168,149,10,11,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,41,37,38,39,40,8,45,42,43,44,1,9,46,104,99,101,103,100,105,93,92,91,60,88,82,83,84,85,86,87,89,90,61,63,80,58,64,66,65,68,70,71,69,67,73,53,72,56,59,77,78,57,62,55,79,52,51,54,74,75,76,81,250,249,260,257,258,256,255,259,110,111,112,281,287,288,289,174,185,186,184,203,204,205,206,240,236,237,238,239,193,202,271,242,243,244,245,273,246,247,272,248,252,253,254,262,263,264,265,268,267,270,266,269,241,188,190,191,189,192,277,278,279,290,276,275,187,292,291,198,200,199,201,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,235,234,181,182,183,179,175,251,177,261,180,176,173,172]},"version":"4.5.5"}
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remirror/extension-yjs",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-beta.2",
|
|
4
4
|
"description": "Realtime collaboration with yjs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"remirror",
|
|
@@ -21,41 +21,36 @@
|
|
|
21
21
|
"Ifiok Jr. <ifiokotung@gmail.com>"
|
|
22
22
|
],
|
|
23
23
|
"sideEffects": false,
|
|
24
|
+
"type": "module",
|
|
24
25
|
"exports": {
|
|
25
26
|
".": {
|
|
26
|
-
"import": "./dist/remirror-extension-yjs.
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"types": "./dist/remirror-extension-yjs.cjs.d.ts",
|
|
30
|
-
"default": "./dist/remirror-extension-yjs.esm.js"
|
|
27
|
+
"import": "./dist/remirror-extension-yjs.js",
|
|
28
|
+
"types": "./dist-types/index.d.ts",
|
|
29
|
+
"default": "./dist/remirror-extension-yjs.js"
|
|
31
30
|
},
|
|
32
|
-
"./package.json": "./package.json"
|
|
33
|
-
"./types/*": "./dist/declarations/src/*.d.ts"
|
|
31
|
+
"./package.json": "./package.json"
|
|
34
32
|
},
|
|
35
|
-
"main": "dist/remirror-extension-yjs.
|
|
36
|
-
"module": "dist/remirror-extension-yjs.
|
|
37
|
-
"
|
|
38
|
-
"./dist/remirror-extension-yjs.cjs.js": "./dist/remirror-extension-yjs.browser.cjs.js",
|
|
39
|
-
"./dist/remirror-extension-yjs.esm.js": "./dist/remirror-extension-yjs.browser.esm.js"
|
|
40
|
-
},
|
|
41
|
-
"types": "./dist/remirror-extension-yjs.cjs.d.ts",
|
|
33
|
+
"main": "./dist/remirror-extension-yjs.js",
|
|
34
|
+
"module": "./dist/remirror-extension-yjs.js",
|
|
35
|
+
"types": "./dist-types/index.d.ts",
|
|
42
36
|
"files": [
|
|
43
|
-
"dist"
|
|
37
|
+
"dist",
|
|
38
|
+
"dist-types"
|
|
44
39
|
],
|
|
45
40
|
"dependencies": {
|
|
46
41
|
"@babel/runtime": "^7.13.10",
|
|
47
|
-
"@remirror/core": "^
|
|
48
|
-
"@remirror/messages": "^
|
|
42
|
+
"@remirror/core": "^2.0.0-beta.2",
|
|
43
|
+
"@remirror/messages": "^2.0.0-beta.2",
|
|
49
44
|
"y-prosemirror": "^1.0.19",
|
|
50
45
|
"y-protocols": "^1.0.5"
|
|
51
46
|
},
|
|
52
47
|
"devDependencies": {
|
|
53
|
-
"@remirror/pm": "^
|
|
48
|
+
"@remirror/pm": "^2.0.0-beta.2",
|
|
54
49
|
"y-webrtc": "^10.2.2",
|
|
55
50
|
"yjs": "^13.5.23"
|
|
56
51
|
},
|
|
57
52
|
"peerDependencies": {
|
|
58
|
-
"@remirror/pm": "^
|
|
53
|
+
"@remirror/pm": "^2.0.0-beta.2",
|
|
59
54
|
"yjs": "^13.4.0"
|
|
60
55
|
},
|
|
61
56
|
"publishConfig": {
|
|
@@ -63,6 +58,5 @@
|
|
|
63
58
|
},
|
|
64
59
|
"@remirror": {
|
|
65
60
|
"sizeLimit": "115 KB"
|
|
66
|
-
}
|
|
67
|
-
"rn:dev": "src/index.ts"
|
|
61
|
+
}
|
|
68
62
|
}
|