@remirror/extension-yjs 3.0.13 → 3.0.15

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.
@@ -2,7 +2,6 @@ var __defProp = Object.defineProperty;
2
2
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
3
  var __getOwnPropNames = Object.getOwnPropertyNames;
4
4
  var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
6
5
  var __export = (target, all) => {
7
6
  for (var name in all)
8
7
  __defProp(target, name, { get: all[name], enumerable: true });
@@ -25,10 +24,6 @@ var __decorateClass = (decorators, target, key, kind) => {
25
24
  __defProp(target, key, result);
26
25
  return result;
27
26
  };
28
- var __publicField = (obj, key, value) => {
29
- __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
30
- return value;
31
- };
32
27
 
33
28
  // packages/remirror__extension-yjs/src/index.ts
34
29
  var src_exports = {};
@@ -44,23 +39,24 @@ var import_yjs = require("yjs");
44
39
  var import_core = require("@remirror/core");
45
40
  var import_messages = require("@remirror/messages");
46
41
  var YjsExtension = class extends import_core.PlainExtension {
47
- constructor() {
48
- super(...arguments);
49
- __publicField(this, "_provider");
50
- }
51
42
  get name() {
52
43
  return "yjs";
53
44
  }
45
+ /**
46
+ * The provider that is being used for the editor.
47
+ */
54
48
  get provider() {
55
- var _a;
56
49
  const { getProvider } = this.options;
57
- return (_a = this._provider) != null ? _a : this._provider = getLazyValue(getProvider);
50
+ return this._provider ?? (this._provider = getLazyValue(getProvider));
58
51
  }
59
52
  getBinding() {
60
53
  const state = this.store.getState();
61
54
  const { binding } = import_y_prosemirror.ySyncPluginKey.getState(state);
62
55
  return binding;
63
56
  }
57
+ /**
58
+ * Create the yjs plugins.
59
+ */
64
60
  createExternalPlugins() {
65
61
  const {
66
62
  syncPluginOptions,
@@ -76,7 +72,11 @@ var YjsExtension = class extends import_core.PlainExtension {
76
72
  const type = yDoc.getXmlFragment("prosemirror");
77
73
  const plugins = [
78
74
  (0, import_y_prosemirror.ySyncPlugin)(type, syncPluginOptions),
79
- (0, import_y_prosemirror.yCursorPlugin)(this.provider.awareness, { cursorBuilder, getSelection, selectionBuilder }, cursorStateField)
75
+ (0, import_y_prosemirror.yCursorPlugin)(
76
+ this.provider.awareness,
77
+ { cursorBuilder, getSelection, selectionBuilder },
78
+ cursorStateField
79
+ )
80
80
  ];
81
81
  if (!disableUndo) {
82
82
  const undoManager = new import_yjs.UndoManager(type, {
@@ -87,6 +87,9 @@ var YjsExtension = class extends import_core.PlainExtension {
87
87
  }
88
88
  return plugins;
89
89
  }
90
+ /**
91
+ * This managers the updates of the collaboration provider.
92
+ */
90
93
  onSetOptions(props) {
91
94
  var _a, _b;
92
95
  const { changes, pickChanged } = props;
@@ -110,6 +113,9 @@ var YjsExtension = class extends import_core.PlainExtension {
110
113
  this.store.updateExtensionPlugins(this);
111
114
  }
112
115
  }
116
+ /**
117
+ * Remove the provider from the manager.
118
+ */
113
119
  onDestroy() {
114
120
  if (!this._provider) {
115
121
  return;
@@ -210,4 +216,8 @@ function defaultDestroyProvider(provider) {
210
216
  function getLazyValue(lazyValue) {
211
217
  return (0, import_core.isFunction)(lazyValue) ? lazyValue() : lazyValue;
212
218
  }
213
- //# sourceMappingURL=remirror-extension-yjs.cjs.map
219
+ // Annotate the CommonJS export names for ESM import in node:
220
+ 0 && (module.exports = {
221
+ YjsExtension,
222
+ defaultDestroyProvider
223
+ });
@@ -0,0 +1,133 @@
1
+ import { Doc } from 'yjs';
2
+ import { AcceptUndefined, Shape, EditorState, Selection, Static, PlainExtension, ProsemirrorPlugin, OnSetOptionsProps, NonChainableCommandFunction, KeyBindingProps } from '@remirror/core';
3
+ import { DecorationAttrs } from '@remirror/pm/view';
4
+
5
+ interface ColorDef {
6
+ light: string;
7
+ dark: string;
8
+ }
9
+ interface YSyncOpts {
10
+ colors?: ColorDef[];
11
+ colorMapping?: Map<string, ColorDef>;
12
+ permanentUserData?: any | null;
13
+ }
14
+ /**
15
+ * yjs typings are very rough; so we define here the interface that we require
16
+ * (y-webrtc and y-websocket providers are both compatible with this interface;
17
+ * no other providers have been checked).
18
+ */
19
+ interface YjsRealtimeProvider {
20
+ doc: Doc;
21
+ awareness: any;
22
+ destroy: () => void;
23
+ disconnect: () => void;
24
+ }
25
+ interface YjsOptions<Provider extends YjsRealtimeProvider = YjsRealtimeProvider> {
26
+ /**
27
+ * Get the provider for this extension.
28
+ */
29
+ getProvider: Provider | (() => Provider);
30
+ /**
31
+ * Remove the active provider. This should only be set at initial construction
32
+ * of the editor.
33
+ */
34
+ destroyProvider?: (provider: Provider) => void;
35
+ /**
36
+ * The options which are passed through to the Yjs sync plugin.
37
+ */
38
+ syncPluginOptions?: AcceptUndefined<YSyncOpts>;
39
+ /**
40
+ * Take the user data and transform it into a html element which is used for
41
+ * the cursor. This is passed into the cursor builder.
42
+ *
43
+ * See https://github.com/yjs/y-prosemirror#remote-cursors
44
+ */
45
+ cursorBuilder?: (user: Shape) => HTMLElement;
46
+ /**
47
+ * Generator for the selection attributes
48
+ */
49
+ selectionBuilder?: (user: Shape) => DecorationAttrs;
50
+ /**
51
+ * By default all editor bindings use the awareness 'cursor' field to
52
+ * propagate cursor information.
53
+ *
54
+ * @defaultValue 'cursor'
55
+ */
56
+ cursorStateField?: string;
57
+ /**
58
+ * Get the current editor selection.
59
+ *
60
+ * @defaultValue `(state) => state.selection`
61
+ */
62
+ getSelection?: (state: EditorState) => Selection;
63
+ disableUndo?: Static<boolean>;
64
+ /**
65
+ * Names of nodes in the editor which should be protected.
66
+ *
67
+ * @defaultValue `new Set('paragraph')`
68
+ */
69
+ protectedNodes?: Static<Set<string>>;
70
+ trackedOrigins?: Static<any[]>;
71
+ }
72
+ /**
73
+ * The YJS extension is the recommended extension for creating a collaborative
74
+ * editor.
75
+ */
76
+ declare class YjsExtension extends PlainExtension<YjsOptions> {
77
+ get name(): "yjs";
78
+ private _provider?;
79
+ /**
80
+ * The provider that is being used for the editor.
81
+ */
82
+ get provider(): YjsRealtimeProvider;
83
+ getBinding(): {
84
+ mapping: Map<any, any>;
85
+ } | undefined;
86
+ /**
87
+ * Create the yjs plugins.
88
+ */
89
+ createExternalPlugins(): ProsemirrorPlugin[];
90
+ /**
91
+ * This managers the updates of the collaboration provider.
92
+ */
93
+ onSetOptions(props: OnSetOptionsProps<YjsOptions>): void;
94
+ /**
95
+ * Remove the provider from the manager.
96
+ */
97
+ onDestroy(): void;
98
+ /**
99
+ * Undo that last Yjs transaction(s)
100
+ *
101
+ * This command does **not** support chaining.
102
+ * This command is a no-op and always returns `false` when the `disableUndo` option is set.
103
+ */
104
+ yUndo(): NonChainableCommandFunction;
105
+ /**
106
+ * Redo the last transaction undone with a previous `yUndo` command.
107
+ *
108
+ * This command does **not** support chaining.
109
+ * This command is a no-op and always returns `false` when the `disableUndo` option is set.
110
+ */
111
+ yRedo(): NonChainableCommandFunction;
112
+ /**
113
+ * Handle the undo keybinding.
114
+ */
115
+ undoShortcut(props: KeyBindingProps): boolean;
116
+ /**
117
+ * Handle the redo keybinding for the editor.
118
+ */
119
+ redoShortcut(props: KeyBindingProps): boolean;
120
+ }
121
+ /**
122
+ * The default destroy provider method.
123
+ */
124
+ declare function defaultDestroyProvider(provider: YjsRealtimeProvider): void;
125
+ declare global {
126
+ namespace Remirror {
127
+ interface AllExtensions {
128
+ yjs: YjsExtension;
129
+ }
130
+ }
131
+ }
132
+
133
+ export { YjsExtension, YjsOptions, defaultDestroyProvider };
@@ -1,6 +1,5 @@
1
1
  var __defProp = Object.defineProperty;
2
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
3
  var __decorateClass = (decorators, target, key, kind) => {
5
4
  var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
6
5
  for (var i = decorators.length - 1, decorator; i >= 0; i--)
@@ -10,10 +9,6 @@ var __decorateClass = (decorators, target, key, kind) => {
10
9
  __defProp(target, key, result);
11
10
  return result;
12
11
  };
13
- var __publicField = (obj, key, value) => {
14
- __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
15
- return value;
16
- };
17
12
 
18
13
  // packages/remirror__extension-yjs/src/yjs-extension.ts
19
14
  import {
@@ -45,23 +40,24 @@ import {
45
40
  } from "@remirror/core";
46
41
  import { ExtensionHistoryMessages as Messages } from "@remirror/messages";
47
42
  var YjsExtension = class extends PlainExtension {
48
- constructor() {
49
- super(...arguments);
50
- __publicField(this, "_provider");
51
- }
52
43
  get name() {
53
44
  return "yjs";
54
45
  }
46
+ /**
47
+ * The provider that is being used for the editor.
48
+ */
55
49
  get provider() {
56
- var _a;
57
50
  const { getProvider } = this.options;
58
- return (_a = this._provider) != null ? _a : this._provider = getLazyValue(getProvider);
51
+ return this._provider ?? (this._provider = getLazyValue(getProvider));
59
52
  }
60
53
  getBinding() {
61
54
  const state = this.store.getState();
62
55
  const { binding } = ySyncPluginKey.getState(state);
63
56
  return binding;
64
57
  }
58
+ /**
59
+ * Create the yjs plugins.
60
+ */
65
61
  createExternalPlugins() {
66
62
  const {
67
63
  syncPluginOptions,
@@ -77,7 +73,11 @@ var YjsExtension = class extends PlainExtension {
77
73
  const type = yDoc.getXmlFragment("prosemirror");
78
74
  const plugins = [
79
75
  ySyncPlugin(type, syncPluginOptions),
80
- yCursorPlugin(this.provider.awareness, { cursorBuilder, getSelection, selectionBuilder }, cursorStateField)
76
+ yCursorPlugin(
77
+ this.provider.awareness,
78
+ { cursorBuilder, getSelection, selectionBuilder },
79
+ cursorStateField
80
+ )
81
81
  ];
82
82
  if (!disableUndo) {
83
83
  const undoManager = new UndoManager(type, {
@@ -88,6 +88,9 @@ var YjsExtension = class extends PlainExtension {
88
88
  }
89
89
  return plugins;
90
90
  }
91
+ /**
92
+ * This managers the updates of the collaboration provider.
93
+ */
91
94
  onSetOptions(props) {
92
95
  var _a, _b;
93
96
  const { changes, pickChanged } = props;
@@ -111,6 +114,9 @@ var YjsExtension = class extends PlainExtension {
111
114
  this.store.updateExtensionPlugins(this);
112
115
  }
113
116
  }
117
+ /**
118
+ * Remove the provider from the manager.
119
+ */
114
120
  onDestroy() {
115
121
  if (!this._provider) {
116
122
  return;
@@ -215,4 +221,3 @@ export {
215
221
  YjsExtension,
216
222
  defaultDestroyProvider
217
223
  };
218
- //# sourceMappingURL=remirror-extension-yjs.js.map
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@4.9.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.19.0/node_modules/prosemirror-model/dist/index.d.ts","../../../node_modules/.pnpm/prosemirror-transform@1.7.1/node_modules/prosemirror-transform/dist/index.d.ts","../../../node_modules/.pnpm/prosemirror-state@1.4.2/node_modules/prosemirror-state/dist/index.d.ts","../../../node_modules/.pnpm/prosemirror-view@1.30.1/node_modules/prosemirror-view/dist/index.d.ts","../../../node_modules/.pnpm/y-prosemirror@1.0.19_t5kcpxhndfuhzh76jo2ys3ynha/node_modules/y-prosemirror/dist/src/plugins/cursor-plugin.d.ts","../../../node_modules/.pnpm/y-prosemirror@1.0.19_t5kcpxhndfuhzh76jo2ys3ynha/node_modules/y-prosemirror/dist/src/plugins/undo-plugin.d.ts","../../../node_modules/.pnpm/y-prosemirror@1.0.19_t5kcpxhndfuhzh76jo2ys3ynha/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_t5kcpxhndfuhzh76jo2ys3ynha/node_modules/y-prosemirror/dist/src/plugins/sync-plugin.d.ts","../../../node_modules/.pnpm/y-prosemirror@1.0.19_t5kcpxhndfuhzh76jo2ys3ynha/node_modules/y-prosemirror/dist/src/lib.d.ts","../../../node_modules/.pnpm/y-prosemirror@1.0.19_t5kcpxhndfuhzh76jo2ys3ynha/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@2.12.2/node_modules/type-fest/source/primitive.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/typed-array.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/basic.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/observable-like.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/internal.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/except.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/simplify.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/mutable.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/merge.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/merge-exclusive.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/require-at-least-one.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/require-exactly-one.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/require-all-or-none.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/remove-index-signature.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/partial-deep.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/readonly-deep.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/literal-union.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/promisable.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/opaque.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/invariant-of.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/set-optional.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/set-required.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/value-of.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/promise-value.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/async-return-type.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/conditional-keys.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/conditional-except.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/conditional-pick.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/union-to-intersection.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/stringified.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/fixed-length-array.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/multidimensional-array.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/multidimensional-readonly-array.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/iterable-element.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/entry.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/entries.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/set-return-type.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/asyncify.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/jsonify.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/schema.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/literal-to-primitive.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/numeric.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/string-key-of.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/utilities.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/split.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/camel-case.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/camel-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/camel-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/delimiter-case.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/kebab-case.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/delimiter-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/kebab-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/kebab-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/pascal-case.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/pascal-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/pascal-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/snake-case.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/snake-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/snake-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/includes.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/screaming-snake-case.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/join.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/trim.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/get.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/last-array-element.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/package-json.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/source/tsconfig-json.d.ts","../../../node_modules/.pnpm/type-fest@2.12.2/node_modules/type-fest/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/make-plural@6.2.2/node_modules/make-plural/plurals.d.ts","../../../node_modules/.pnpm/@lingui+core@3.17.1/node_modules/@lingui/core/build/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-horizontal-rule-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/default-import.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":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","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":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","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","71bd660739fe4abcbfb243123ebd912f31138f1fa8ada363e8b5056163d7de83","1ef7565ffec4456d8a50e72f1cc254f46f2d35e0f34692f9096b11266fdfc6b9","317472709ac00c5bfe9bd6d916909729632ac53597fdad6fb9a56e8f56e7f7f5",{"version":"c33202bcd0a7790ba81bdafa258be82df2a0ecbbb49ec3ed9139b548ea00194f","affectsGlobalScope":true},"83cbf5fef4a71a41c955443dec93b272005d8c649149d508598f622b4d7f95db","451a4385cf84ab9c358908bbfe285d486797487d85037cc91327ff41797ffc13","bd673edcd2bb82bdd3c7d3ce1ed532a6999173ac5dabec1fdb8a244e931896ea","450c3f3ce95c5411b719e9347359f7f04bacaf0e5a1636e6afabf5643864ce3b","98855002461a71896d185e2d35e23fbadb2e5427c6ecd4710bf49a4c50422d38","c42fb8e24bf737f2f22585a08a274eab119fad42c4938b6e477b29eeea644fc4","bc11fc8c89ca7651d0d8b0687a04643ee80908b2f547fb9bc3c57c4cd08edf25","278b91531540f4d1d4b4f9e065e733d057d70dc8fa7d995aba6077567e541e8f","cfd5cd3560f111d6025dd6ed498fc9f6d6f4463018b4b0f1418bf2dc5a4655ea","710f5b3b77e5ff0c97418b7beeaa77413fe5da95266cc248406f4eee6115f8f4","4f1dc8e5a629b7e5a4c7567c4b497b87e5c0493d53fb3d4d7695a7325da7c317",{"version":"1a083c6ff2c8237de0c04375a37b69883dc28567e0b380193a7106b2ad54d0e6","affectsGlobalScope":true},"0278fb4eb96c568ee0ec1b31bfa8dea43897578529ac72440db6033aeca3951a","8d468f2ec82f301adbebd6dda379f8071bdd40132284eead142eaf410c56ee79","cd51ceafea7762ad639afb3ca5b68e1e4ffeaacaa402d7ef2cae17016e29e098","1b8357b3fef5be61b5de6d6a4805a534d68fe3e040c11f1944e27d4aec85936a","4a15fc59b27b65b9894952048be2afc561865ec37606cd0f5e929ee4a102233b",{"version":"744e7c636288493667d553c8f8ebd666ccbc0e715df445a4a7c4a48812f20544","affectsGlobalScope":true},"7e54932a41fec3a9c7e0753e52c8b18cc67b3ffdd01aaacd49b73d638186ee22","af4e1dce65c1820f6fe21bdf2c3931209c539cb498da760f05ab709f2033f2b3","73ab4f2d7964bbad113751c4d13dac7b834407ef4570b50ff67b3b765c07d312","d70d12830ae15bd5967b2b38cb7e24b3ba43bff853e305b33ed519253055ce08","c0618e33d0191171349412c9c7b983bc05081c29c635da9003a6cf7bc5d81746","c974e1ad2639f94de0b566947273e3f3b2dad004c9383bf0ea8df7cf96b1afea","5ab8773f7671da7bafa0f95a5530425a3e8374b8de4f352e64f6dd48c65681ed","bcaa4b2494b205265de37f2b4d5def521055753e8ac8aaabdfb53fd514e2bfb4","2c04fbe9e9b0ca02a0e6a549d21274b72424f3b091416fd63229114c6ac255b7","c19d76cf730f70c239ddcdc84cb78123f43964866e3cedf1ec98f640c5f3ea25","99e9a144144565db9b916035289ee80760c7542170a182312d8c9f4dcca1c276","248957877dde8ba14cd9b8d45947523da23e2fb467646e57cd902a76b2fc693b","1043a791036b9136fe8b3e287b24f14df803a503f6abb3f347b48d1c444a6954","094501dd2107ce40723bbcf30fbc0012631031c3337cbcc2dad153d8d550d7bc","bc1ed67a1d1491918740d86502e5b86369f4b7d6af10ca86340e6df9218ed9c9","55b7d009c3e8bae890063ebbb9c299d14edab7bbe9f98bceb12ef6979b1698fe","c5efedb8f1bd29ca1fd7720a45087344e14d1ea66378ac470450ea00d0f63975","161156b76821d27d22affa815f02d96706aa0861751aece957b5740dd33139ca","4023372ecd33decd9e17cd21272a86403ad60a4a913ccde6b01982a8535db442","d62e0155e4e6eb3d7a799e1fb555bb24ed6ecbebd158f87fc31e98ec6b5fcf73","c38b9f9179364943113b3eb1dd1d86d580dd1b56b68203ced15a013e9e317f29","e157c542921a03c19bafc06a1ae6bfc377359b0d88d8995591a8cdc66d7bf027","491357771c3101332dbd241a58b3733c194a1ed1ca92e371361e702c8849afe2","d1406b0eee2a415d31130b6e8771b6d0eddf70658efbafe9723aad38f58dc63c","b05b738e0e28dfa84e59a038c8287335b6ca9f16c858bd95ed930de0845f18af","dff0fdb7dc8f8ed00db44b493f77b921312ce9ed8493cda4cc82a92e48914756","338aeec8241a5d326cf4afd96408f6ff36b20ff461ee35597bf84a8f707a2745","13b6d7b987a6c306c0f7d27d77136797edc88ac47fd5893c93b8ed51f9912be9","cfa6b71c0cb889d2a210dac350ef928d532cadb26f4035bc405ef03f80b4ce17","4de53c71c9fc54d7fa8870b95b44092ff53eb6fddcfd402e360ac421318f1ca8","1c6c29857deb02e33ec045a67c375eb210a3ea4bc61b5e8078d2fab2ebf7831e","8f36a2e511f634b14983b31199a813b6d91e9f5c8ca1a81c446cfcbe3a8cda45","7e7bf5e592f90ac5784005a7d10f9960d6ff02edebdc18ab87f8cb154d5c16ab","e1b74834e5baec5460bd44dd7c5e389337ebe9eb7903743d1a9dd5b75702ac73","5d4143cf9c0350f01ed6e3d72953c4d22b4abda0a0b2c6d83a595ca061a367a4","9aaf4ee44bdac023b659f1b5e8cfdf56f774edd182c4fec46708d79f6a762298","87b0641dd8bb365de2f97ec5be3ea7aa1bd714ea43f76b6b36039c5dd194e3eb","a47240f5153913c434c66cd660bbcbb01c97f6717756a14c2f59ac7feb49a134","b415d8fc78ef908cc3f02d031e5e9a1cf269dd386212aedd273a0601de175bac","679a500b60fdb879af3ff20dab0bc5937098dd1ea5b75f786c672fde09faaeef","4372b912f51cbf9f0da164599e0934031bff3f5135af1cd6425bd9e384167e0b","5a988bc94b1937ee835a83ae7bb7555a21b8bbcdfd4c8c705d1789d7a8244bc2","0eda42cf7a88e5186bbab20c42eef4cc3a7377da80c71a7bae01f224223f667c","3b2f213b50c0a3abc9ee877b3af6cb7d42bd7939c00801bfc39cb44fb9a4ac05","b484c72c73b4ae0cdee6bfb85f0ae6152b4435b59169fb460044305ef18429cf","d9df799b7d4d7d9a24b201ddffc575b1840e25f1a273650de6eef40f384b6239","ca89e452207fee3233d2cb45c28ad0a4a7e30ddf40b9ac69891dd2242859c6f9","dac79ace008b4b9147644e4d8834b4a62378990e1a1730843ac488fdf6ff5f32","54f6aeeb17ad58793455ad005027bc452b722f31755ac4d15c46bef05f941e58","48fc89daea2775641083563b0671d541dfa464f4aed9ecd6d1e1f61647e759d1","55eb179223f788fcb055cba854b63effc973f7d51cf130ab866fc161c30dd918","03107dc521b6273cf190f0be264b6f69cb43355c24320cc9e760c9ab6a7fdb22","8fb7a5ccc8533b5950772a7722d1f99c846274c7dec01d40c8f96f4fb559a7b8","1a9958339bc9d1092c53a7f13c08d29eac812534c3f61c7c7a2157ef558131a1","30137eda48ba9ccce5dfd6fa79dea587739cddfab6e280fc85f019d21488b393","e6c5a9682cb3328d41eb7f25fa231075f29307319a9d7ac679e52a7b74b6539c","0617c0c6bc0e35226b6000ef3e47fc45697348d33c305e61484b7d264f4737da","73a5569de4e23f58160c68e74b48587950b118d0105f9d71b86ae40fa5c258c4","16d7f5de02bfb62a7a69ef9497c790ed4a8119ce159b14cb763f2432298286e8","c79b44c1518bd3d1ad75aa82f2e54be1bde86cd7663624874c4047a8fc97f833","047f4ee6646463fb4fa44cd6d8083342713a4704693ce64942e77f62a1da0c38","1ccd27d6127a24d5abe36413f68b5e928c9e6f2cbab9825898379ecf18108dc2","baa32aa38cd8ac7128c5a5817a32d8dc8fd8d635a647b16a12485ae27df107ed","2641aff32336e35a5b702aa2d870a0891da29dc1c19ae48602678e2050614041","afb49d6869006d1ecab1c821fffaba08ff9fcbee6a23d1c25b1d894f7e2a727e",{"version":"66ecfe7b415ee9820dd1e3d059efcfb4b0dfb909b94f0631dde46ab57f39edec","affectsGlobalScope":true},"0145b14c440d0b1543f2ac8204988e77aeec2e9f389e9887e60241503ae9341c",{"version":"5f0a58a32138d4855d2e873172ad4bf33c273262bdf8daa9dda50fbca205c805","affectsGlobalScope":true},"478e59ac0830a0f6360236632d0d589fb0211183aa1ab82292fbca529c0cce35","1b4ed9deaba72d4bc8495bf46db690dbf91040da0cb2401db10bad162732c0e2","e689cc8cd8a102d31c9d3a7b0db0028594202093c4aca25982b425e8ae744556","50614bd64da0cdc193d8cc72f1009c829dedaa0aa5cc5e2c154bbf476ee2573c","f41d91b2db1112fcc673a6862fe68cadcbdd0a66ed16b47ac74a0a6da8932bb4","3e94295f73335c9122308a858445d2348949842579ac2bacd30728ab46fe75a7","3e4f0fd25da407d81ba173314bd96c0610902edbf01a382bf6a2ef0c751a4aa8","434420936e9d57b978889818a6158b4eaef096d28e87dd27b03ce52b512d4eab","578cfbf494c3859247d4b506478efde72b5a4c9a27a31e1be9656cb73fc6ff31","51351041866c41c3af73f97b3188b0cf90352b07edfe0985457f37b9c21d4ee3","847a94112e7d9c7df4779b3f5c8af6432ffd0789e6d2de675c2bbe83bba3f610","34be08a3e536797251c8ed5959d64532d4c17b6ff69c646a04375ecf0f280562",{"version":"302bbde4ae64ed46acf0fd5ee4bf9c303168fcef087d8f4662bc0db4e680a72f","affectsGlobalScope":true},"94fbe8821810c6642da9c2323f574ab3ad0d299d4f1784e45fd498d3ece0c1a8",{"version":"74f174313852eaaf55dffedb37120fbe064ce1098dc5edb19d7ad3645c382e19","affectsGlobalScope":true},"a7fb35c39d30f11a8fa2527c4289ed6a58aca1939ef3a718c030f2bb1359434a",{"version":"67f6d784c10aa3cc7604f76a7bb4600c8702d12f7c24e9da2cc80e57ae2a152c","affectsGlobalScope":true},"91da8347f1c5daa8e81a2364dabd219d3093b4ffd2a7c9705240d0ef46be5957",{"version":"9bce8e201b6092abed7516cebab58ee325f778d963ae33f7e3819dee67cd3dd6","affectsGlobalScope":true},"e289342f1ce4c970b9a96b41a620f2d51a758b11e5c200efd6ff1618f87e7f21","c5fa6772b50a4664fecd1e3d9adf04ced30647cc1957378c4bdff52ae496b7c1","86edebfb839c6c66d13647a70ef991e746332d67e852c3e43fd8c7e40be5ec60","df52b87c6f10fb0ba564c775fc87bc728154fc8599e53f6b76178c3c4fa8f23d","37266c7cd764c8f1d231581c4bca031a39491e1fc524cd0d1f2b04fbecfb70ce","040d2bdea98dcd53b0d6343b52052d84586e184ca7e7a6aaaaa339ba00e571b7",{"version":"725e1ecc50a6d2e56d2c8228dc1d1264ce8f94ffdb5f0ad064888b1791da0a6f","affectsGlobalScope":true},"ca526961223c2594f0a8a09d4276262e77b0251b6eacfa7f50cb2bcea0094d84",{"version":"9973d1b9805dd032499d7c211a24c3e2f671f815e9c77215718e86f4b32b6198","affectsGlobalScope":true},"381eeed5fbb2a462c200f1387ae9266589c14430912d393d0c874e6f0dc9d8a8","2d2a9911ab2411ba516daf90d26232317f300beeda3dcb8902e543df45fb14da","e17c4f294a28b8d6f2090b594e32f75082be12a7486e5a619caeed6f0b070134","fe6362eada470fa87cac0e70cadb75e8406d5b61d82633624ba51ad41e077bc4","a3276eb9153fe1ad5982eea7ec7b78fa60fc985d47fbd2c624df56a2caa71307","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","01c5cb2e2294fcd3408f9b59d3833bea0dfcdffad41002f4db8c649ca1f74797","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","01c5cb2e2294fcd3408f9b59d3833bea0dfcdffad41002f4db8c649ca1f74797","a8eb9b9c0c77e426f4a7298da88a30a01df1def814fda96eb732664455caf9c6","dedfc702068fc54e1bd28534095e64670642891f39895cbb3f6f1a797385c4b8","1633e3c985ec02ba0efecd5d1295806d398d455852c2d9256b86a57e8e07d1c1","890fdc1bc1832ecfc2040265d57288174552991394ec77793f6bcb53598c5402","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","8fe8adf0cb8291c7f52a1ccf0c38b47256adfc30a14cd9f2c46fe93bca57cb89","64bd2dadd45c769ed85b6cb60077239d32752db98122facfbab4948e8572f7f8","2ab980b94dbae651e94546327f45d3919bdfbe37f8fde9b774be3aae8b3239cd","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","f346d121a4031df0c92934c25fb1d1065b170e9c92122bc8c2d2933126062a6a","f346d121a4031df0c92934c25fb1d1065b170e9c92122bc8c2d2933126062a6a","95e36af58bac504c0ac5311b9315778ce1cfe9bc175a3a7826be5b68550152a6","67f15aa6c7e91728b040e72f8006a8161a178a256713c4f1d53f9aa051f05033","75236538088faeecc908dffe8db769a29c9536927e7ac41c048d21073fe01e22","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","4250daf780ccc8119e2908c83626a59a30c502889f5390963d9b4657ff328d5e","50f85199f3bb64f83439b2bcced9a2cb51ad78b5eeb0a1c78a94deb91c98377c","aedf0dee82f83182d7f337784bf85260633c8621aebc656defd4c21ca4b2577b","2f339fb8207dae61184c1c8cfa3ee6c17d4bd55269ad8dea193f11014b5a3d42","f731321dd451425851cefe3aae61158f774f731a816742115bad0c8e41ce6c79","f9ddcb7de3ee403b9686a77347b38b4130cfb1eb9ea50ce4bd8dc5f8cf60983e","14a01c0db90f4600d6633f1c9aa634e26a8fc9f97aa57971fc3e03d3d9bb8f49","a08253cae05731e8dc22dfc97648b08aed02937bd24ddfab11892a3e00c1da4c",{"version":"16d6b77eab76fffe32b41198f6e71e3807f07cfc421ebf9656c3e1900e714330","affectsGlobalScope":true},{"version":"2b3f97904a65d345123148d0fa8c4a213a6f5dd37248cba139bb8201bf409de5","affectsGlobalScope":true},"973ad753f27f9d921feaec703154ad0f4666e41fc49ff29e1c57db4eeaff0767",{"version":"a910167a0d75387abe784774b2daaf76063b5c3ed3ccb881385d72eb29a4f553","affectsGlobalScope":true},{"version":"452b843f66b47ccecf70c4689426841b38bdfb67547e9650ab27e89c4c37ff8b","affectsGlobalScope":true},{"version":"0cfa4f1eadb6d369a6fec1c07fbe8957ce89f8eaee2b6946d98afe74286ac901","affectsGlobalScope":true},{"version":"015ee27dd817c17ac9aa430b701803f426c30b860a2a6994daaead80959e594c","affectsGlobalScope":true},"22ba638593eb61958937b904e3f1d33676845e410b5dd2126c20ef4d808470a5","89d126b6df1a1a043e68b321cf6e3dad46f2d0d2461088277780cd63bb2a599d","bc201c28f3cd03d92cf8c921aed3d84f8d64fc491a75278b11e6bd7f9338dc09",{"version":"2185d6dd5ae6a5620d3c897b57d9f0fa536db0dbe5f155a744d277c566308895","affectsGlobalScope":true},{"version":"fdcb21b19e256627efae467fb835ca4836ff7195fe4a34a7775d336f709f3730","affectsGlobalScope":true},{"version":"9f20992be1a62548766e58767dc9e1dbe689b78597360a3c0771066a384943e9","affectsGlobalScope":true},"55218d90ee5449d20199d87d720f3c91140de1b564f59252d5690233b436b9fd","04551568e8e34a07ce40608e3ac506ae0f075ab7e5ea8585c94ac3c5f9535fc7","d8550c2bc866b6d4067a59306c2b32167230388fff0f9204e7cc37d2aebf7016","7aac8b80c50f603d00809b381aebe7230b9bdb9d35363fc487d75ca9327c6786","71b28f0719120b358dad92cbd49fa9930b8b68d75206cb915e51ace0a38595b3","b36ab3c506486e82f574623bdbc2544ca35827aaa30a1f8881164d795f6ae089","10e6b544ced5ac112601ee8da4da5be253143f8ea5eeb74a40792dfc1c448400",{"version":"e67ad57913671b4feba98dc58cb550c81981ecbc2c17ed9dd3bbef48c747d6df","affectsGlobalScope":true},{"version":"dc996306c795dee621bffeb417f554b7db0759be2587b8a4a7931546ce433156","affectsGlobalScope":true},"455f6e36325dc2110a499b36abffaf2666df88c542afb24d60783b6fc1b22e59","4d97aa11647a84c232ff0b6f4d60b742492b0705b6804a8bc40784da03ee7edf","91178aedd4b0d0223bb154fbeb47dbaee1f38eacde9efb3dd046630d7a133a4d","ded764de76437e56fc57ca8ab210e1016f18f5f6fb8c1f4899a4b5461d2c4b5f","7139da1cd9fb0f4d017de16d5982ff8867194538b459842de2cafa72b79d3fc2",{"version":"3b5b8ab0618939383dccedf4b992b9ba9996416901a4a016b03791540aef7e0c","affectsGlobalScope":true},"85d8fda12a71f75c72ef9ec8244dd1ba6824bc94263b6d732e31729c7fa3ded3",{"version":"797e2044d592a4e3beb0d2a87860574ad1f8889743bbceb4d752b83a85cac7d0","affectsGlobalScope":true},{"version":"3d2bc46b97933fd2695651f264e9e03a61faef4846835ab8e35b53470d93dabd","affectsGlobalScope":true},"741464a488e9eba4a1de52e98726f0217075857537f6c1c6a8f4cd971be2390f","2aece5972bdc8f16bc2fd4616056e21bd71580e5c81457e433b83c810c82c06f",{"version":"86a047613c0495eb7fc486e5c7940298c602df135197a574848839b1674c563c","affectsGlobalScope":true},"db3050870ca481a8db9fef8ad6e974a1ebc78841a5f3c78a31a002d99e0508cd",{"version":"d3ff98e698306679659b7932ced53ed00bf5e206513b1563c57e6df5864cb9a4","affectsGlobalScope":true},"1eccfa59880bf67860778ab324d8c21b82681b2f552afc853a173f2657dbb72a","ce1b4edb22dc7e36cf7040c6e2a297b182e1285ae3b51d69154b8617f1587d81","2ced5214fb4159e282ccc5c84fa9eeac92a16ee70be4d2b0b099d460c765d72f","cd274fb8378b343192b7ede8f986b625dd39ab0f803f073cb341328c53321322","7e61def8d1fd9b2db068256f056cfbcd9fb7f7a0f405115ddc048deffed2bceb","99f37160206c3a0e40163345bf10f40fbc4ea60a1a86988b462be6ada34440c1","f8cfb6cc5876b180829e778987d60e6c2e63b3f6d3d1003948bc7136781b0012","c3970154307b129e7b058cae2bfe40a0b6973afde1e3e192673e43d87430f836","4e22b9ea2805fec5f3c120146a690e5604a3117dbdee648c85393f58422eec16","b08c43354b2d6f6feffde4d08d138eae05d1e151751b6ab2acdb58bce1d10447","96e64c261e1dc55ec3399239783e5a6d5009070f87bbcc39fbc7606e12c8a092","d23b9f3c491516c61a8ec1b4f9050b0b359647a5b924df51aa914d06c09ef0f4","cb6d8028ae6c22992e63674ff26f11becf2cac53629360c5e843e9a0cde1e37a","1f066153b05a41ec12a39cc0b61abb66d70ee1a009b5f4d9a47a2450ba0d9039",{"version":"e42fad355fa93a083fcae5b7ae7b8d10729fc672829ad0515cc1e0b56f41027c","signature":"540871c39da04578f4171667e76514021a51d8a70bc0674fe92579206f8ff697","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":[[116,117],[118],[214],[303],[105,107],[104],[105,106,108],[105],[105,106,107],[123,124,125,126,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190],[146],[146,159],[166,167],[168],[128,148],[148],[166],[171],[157],[127],[165,166,167],[123],[141],[125],[175],[173],[128,129],[139],[177],[128],[171,180,183],[102,105],[103,108],[107],[102,105,112],[109,110,111,113,114],[57,102],[101],[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,91,92,93,94,95,96,97,98,99,100],[61,65,69],[61,62,65,72,73],[61,62,65,72,73,82],[61,62,64,65,68,72,73],[65,70,72],[61,62,65,68,69,70,72],[61,64,65,66,67,73,82],[62,64,65,68],[62,64,65,67,68,69,73],[62,67,77,81],[64,65,77,78,81],[62,68,73,77,78,79,80],[62,76],[62,75,78],[57,82],[61,62,65,69,71,72,73],[57,58,64,65,68,72,73,74,75,76,81],[59,60,68],[63,65,69,76,82],[59,60,68,69,82],[61,62,63,65,73,82],[65,69,71,73],[61,63,64,68,69,70,72,73,82],[57,63,68,73,82],[60,69],[59,69],[65,68,70,73],[60,61,62,65,71,72,73,82],[68,73],[68],[61,62,71,73,90],[268],[105,107,108,122],[274,275,276,277,278],[107,274,275],[107,274],[107,108,274],[105,107,108],[193,274],[120,121],[122,299],[119,193,301,302,304,305],[300,306,307,308],[122,193],[122,193,195,196,203,204],[193,194,203,204,205],[193,203],[206],[122,195,197,200,206],[203,221,222,223,224,255,256,257,258],[254],[195,200,206],[199,206],[195,206],[119,206,212],[122,206,207,212,216,219],[206,213,261,262,263,264,265,266,267,271,272,273,281,282,289],[195,196,206,207,212,220,259,260],[196,206,207,212,260],[206,207,212],[206,207,212,220,261],[213,220,261,262,263,264,265,266,267,271,272,273,281,282,289,290,291],[199,206,212,259],[122,206,207,208,212,220],[206,212,270],[197,206,207,212],[122,206,207,212],[206,208,212,280],[122,206,212],[196,197,283],[195,196,285,286],[285],[284,285,286,287,288],[203,212],[122,206,207],[122,206,208,212],[206,207,209],[122,206,207,208],[209,210,211],[119,196,206,207,212,292,293,295],[206,207,212,292,295,296],[296,297],[122,206,207,208,212,219,259,260,292,295,298,309],[294],[122,197,206,207,212,259,292,293,298],[122,197,206],[311],[102,115,196,254,310],[215],[217],[217,218],[215,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253],[195,196,197,199,200],[197,201],[201,202],[198],[269],[279],[106],[108],[191,192],[191],[102,196,310]],"referencedMap":[[118,1],[119,2],[215,3],[304,4],[198,5],[105,6],[107,7],[106,8],[108,9],[191,10],[147,11],[160,12],[168,13],[170,14],[169,14],[149,15],[150,16],[171,17],[175,18],[173,18],[158,19],[128,20],[187,21],[183,20],[127,22],[142,23],[161,24],[172,18],[176,25],[174,26],[139,22],[131,27],[154,20],[155,20],[130,27],[189,28],[137,20],[177,14],[179,29],[178,29],[138,20],[133,30],[184,31],[143,27],[144,27],[180,18],[182,25],[181,26],[114,32],[109,33],[111,34],[113,35],[110,34],[115,36],[103,37],[102,38],[101,39],[70,40],[98,41],[92,41],[93,41],[94,42],[95,41],[96,41],[97,41],[99,41],[100,43],[71,44],[73,45],[90,44],[68,46],[74,47],[76,47],[75,48],[78,49],[80,50],[81,51],[79,52],[77,53],[83,54],[63,55],[82,56],[69,57],[87,58],[88,59],[67,60],[72,61],[65,62],[89,63],[62,64],[61,65],[64,66],[84,67],[85,68],[86,69],[91,70],[269,71],[268,72],[279,73],[276,74],[277,75],[275,76],[274,77],[278,78],[122,79],[300,80],[306,81],[309,82],[194,83],[205,84],[206,85],[204,86],[221,87],[222,88],[223,87],[259,89],[255,90],[256,91],[257,92],[258,93],[213,94],[220,95],[290,96],[261,97],[262,98],[263,99],[264,100],[292,101],[265,102],[266,103],[291,99],[267,99],[271,104],[272,105],[273,106],[281,107],[282,108],[284,109],[287,110],[286,111],[289,112],[288,113],[260,87],[208,114],[210,115],[211,116],[209,117],[212,118],[296,119],[297,120],[298,121],[310,122],[295,123],[294,124],[207,125],[312,126],[311,127],[216,128],[218,129],[219,130],[225,128],[226,128],[227,128],[228,128],[229,128],[230,128],[231,128],[232,128],[233,128],[234,128],[235,128],[236,128],[237,128],[238,128],[239,128],[240,128],[241,128],[242,128],[243,128],[244,128],[245,128],[246,128],[247,128],[248,128],[249,128],[250,128],[251,128],[252,128],[254,131],[253,128],[201,132],[202,133],[203,134],[199,135],[195,8],[270,136],[197,34],[280,137],[200,138],[196,139],[193,140],[192,141]],"exportedModulesMap":[[118,1],[119,2],[215,3],[304,4],[198,5],[105,6],[107,7],[106,8],[108,9],[191,10],[147,11],[160,12],[168,13],[170,14],[169,14],[149,15],[150,16],[171,17],[175,18],[173,18],[158,19],[128,20],[187,21],[183,20],[127,22],[142,23],[161,24],[172,18],[176,25],[174,26],[139,22],[131,27],[154,20],[155,20],[130,27],[189,28],[137,20],[177,14],[179,29],[178,29],[138,20],[133,30],[184,31],[143,27],[144,27],[180,18],[182,25],[181,26],[114,32],[109,33],[111,34],[113,35],[110,34],[115,36],[103,37],[102,38],[101,39],[70,40],[98,41],[92,41],[93,41],[94,42],[95,41],[96,41],[97,41],[99,41],[100,43],[71,44],[73,45],[90,44],[68,46],[74,47],[76,47],[75,48],[78,49],[80,50],[81,51],[79,52],[77,53],[83,54],[63,55],[82,56],[69,57],[87,58],[88,59],[67,60],[72,61],[65,62],[89,63],[62,64],[61,65],[64,66],[84,67],[85,68],[86,69],[91,70],[269,71],[268,72],[279,73],[276,74],[277,75],[275,76],[274,77],[278,78],[122,79],[300,80],[306,81],[309,82],[194,83],[205,84],[206,85],[204,86],[221,87],[222,88],[223,87],[259,89],[255,90],[256,91],[257,92],[258,93],[213,94],[220,95],[290,96],[261,97],[262,98],[263,99],[264,100],[292,101],[265,102],[266,103],[291,99],[267,99],[271,104],[272,105],[273,106],[281,107],[282,108],[284,109],[287,110],[286,111],[289,112],[288,113],[260,87],[208,114],[210,115],[211,116],[209,117],[212,118],[296,119],[297,120],[298,121],[310,122],[295,123],[294,124],[207,125],[312,126],[311,142],[216,128],[218,129],[219,130],[225,128],[226,128],[227,128],[228,128],[229,128],[230,128],[231,128],[232,128],[233,128],[234,128],[235,128],[236,128],[237,128],[238,128],[239,128],[240,128],[241,128],[242,128],[243,128],[244,128],[245,128],[246,128],[247,128],[248,128],[249,128],[250,128],[251,128],[252,128],[254,131],[253,128],[201,132],[202,133],[203,134],[199,135],[195,8],[270,136],[197,34],[280,137],[200,138],[196,139],[193,140],[192,141]],"semanticDiagnosticsPerFile":[116,117,118,119,215,301,302,305,303,304,60,59,112,57,58,299,214,293,104,198,105,107,106,108,191,147,160,125,168,170,169,149,148,150,171,175,173,158,157,128,153,187,183,127,142,156,185,161,172,176,174,188,163,139,132,131,154,155,130,164,126,141,189,137,177,179,178,123,140,146,138,136,135,133,134,162,184,143,144,159,129,180,182,181,167,165,152,186,190,124,151,166,145,11,12,14,13,2,15,16,17,18,19,20,21,22,3,4,26,23,24,25,27,28,29,5,30,31,32,33,6,37,34,35,36,38,7,39,44,45,40,41,42,43,8,49,46,47,48,50,9,51,52,53,54,55,1,10,56,114,109,111,113,110,115,103,102,101,70,98,92,93,94,95,96,97,99,100,71,73,90,68,74,76,75,78,80,81,79,77,83,63,82,66,69,87,88,67,72,65,89,62,61,64,84,85,86,91,269,268,279,276,277,275,274,278,120,121,122,300,306,307,308,309,194,205,206,204,221,222,223,224,259,255,256,257,258,213,220,290,261,262,263,264,292,265,266,291,267,271,272,273,281,282,283,284,287,286,289,285,288,260,208,210,211,209,212,296,297,298,310,295,294,207,312,311,216,218,217,219,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,254,253,201,202,203,199,195,270,197,280,200,196,193,192],"latestChangedDtsFile":"./index.d.ts"},"version":"4.9.5"}
1
+ {"program":{"fileNames":["../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.0.4/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/lib0@0.2.74/node_modules/lib0/observable.d.ts","../../../node_modules/.pnpm/lib0@0.2.74/node_modules/lib0/random.d.ts","../../../node_modules/.pnpm/lib0@0.2.74/node_modules/lib0/encoding.d.ts","../../../node_modules/.pnpm/lib0@0.2.74/node_modules/lib0/decoding.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/utils/UpdateEncoder.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/utils/UpdateDecoder.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/utils/DeleteSet.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/utils/YEvent.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/utils/Transaction.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/utils/EventHandler.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/utils/Snapshot.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/types/AbstractType.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/utils/ID.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/structs/AbstractStruct.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/structs/GC.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/utils/StructStore.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/utils/UndoManager.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/structs/Item.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/types/YArray.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/types/YText.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/types/YMap.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/types/YXmlText.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/types/YXmlElement.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/types/YXmlHook.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/types/YXmlEvent.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/types/YXmlFragment.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/utils/Doc.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/utils/AbstractConnector.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/utils/encoding.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/utils/isParentOf.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/utils/logging.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/utils/PermanentUserData.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/utils/RelativePosition.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/structs/Skip.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/utils/updates.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/structs/ContentBinary.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/structs/ContentDeleted.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/structs/ContentDoc.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/structs/ContentEmbed.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/structs/ContentFormat.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/structs/ContentJSON.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/structs/ContentAny.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/structs/ContentString.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/structs/ContentType.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/node_modules/yjs/dist/src/internals.d.ts","../../../node_modules/.pnpm/yjs@13.6.1/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.19.3/node_modules/prosemirror-model/dist/index.d.ts","../../../node_modules/.pnpm/prosemirror-transform@1.7.4/node_modules/prosemirror-transform/dist/index.d.ts","../../../node_modules/.pnpm/prosemirror-state@1.4.3/node_modules/prosemirror-state/dist/index.d.ts","../../../node_modules/.pnpm/prosemirror-view@1.31.7/node_modules/prosemirror-view/dist/index.d.ts","../../../node_modules/.pnpm/y-prosemirror@1.2.1_patch_hash=qmoqv2ukd266e4uf7e6uwxdto4_prosemirror-model@1.19.3_prosemirro_4f4va6kecszfnlqa2icecz7fcy/node_modules/y-prosemirror/dist/src/plugins/cursor-plugin.d.ts","../../../node_modules/.pnpm/y-prosemirror@1.2.1_patch_hash=qmoqv2ukd266e4uf7e6uwxdto4_prosemirror-model@1.19.3_prosemirro_4f4va6kecszfnlqa2icecz7fcy/node_modules/y-prosemirror/dist/src/plugins/undo-plugin.d.ts","../../../node_modules/.pnpm/y-prosemirror@1.2.1_patch_hash=qmoqv2ukd266e4uf7e6uwxdto4_prosemirror-model@1.19.3_prosemirro_4f4va6kecszfnlqa2icecz7fcy/node_modules/y-prosemirror/dist/src/plugins/keys.d.ts","../../../node_modules/.pnpm/lib0@0.2.74/node_modules/lib0/mutex.d.ts","../../../node_modules/.pnpm/y-prosemirror@1.2.1_patch_hash=qmoqv2ukd266e4uf7e6uwxdto4_prosemirror-model@1.19.3_prosemirro_4f4va6kecszfnlqa2icecz7fcy/node_modules/y-prosemirror/dist/src/plugins/sync-plugin.d.ts","../../../node_modules/.pnpm/y-prosemirror@1.2.1_patch_hash=qmoqv2ukd266e4uf7e6uwxdto4_prosemirror-model@1.19.3_prosemirro_4f4va6kecszfnlqa2icecz7fcy/node_modules/y-prosemirror/dist/src/lib.d.ts","../../../node_modules/.pnpm/y-prosemirror@1.2.1_patch_hash=qmoqv2ukd266e4uf7e6uwxdto4_prosemirror-model@1.19.3_prosemirro_4f4va6kecszfnlqa2icecz7fcy/node_modules/y-prosemirror/dist/src/y-prosemirror.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@3.10.0_typescript@5.1.6/node_modules/type-fest/source/primitive.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/typed-array.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/basic.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/observable-like.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/empty-object.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/is-equal.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/except.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/tagged-union.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/simplify.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/writable.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/trim.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/is-any.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/internal.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/writable-deep.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/omit-index-signature.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/pick-index-signature.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/enforce-optional.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/merge.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/conditional-simplify.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/merge-deep.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/merge-exclusive.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/require-at-least-one.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/require-exactly-one.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/require-all-or-none.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/partial-deep.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/partial-on-undefined-deep.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/readonly-deep.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/literal-union.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/promisable.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/opaque.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/invariant-of.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/set-optional.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/set-required.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/set-non-nullable.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/value-of.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/async-return-type.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/conditional-keys.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/conditional-except.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/conditional-pick.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/conditional-pick-deep.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/union-to-intersection.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/stringified.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/fixed-length-array.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/multidimensional-array.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/multidimensional-readonly-array.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/iterable-element.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/entry.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/entries.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/is-unknown.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/set-return-type.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/asyncify.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/numeric.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/jsonify.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/jsonifiable.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/schema.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/literal-to-primitive.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/literal-to-primitive-deep.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/string-key-of.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/exact.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/readonly-tuple.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/optional-keys-of.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/override-properties.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/has-optional-keys.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/required-keys-of.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/has-required-keys.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/spread.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/tuple-to-union.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/is-never.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/is-literal.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/if-any.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/if-never.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/if-unknown.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/split-words.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/camel-case.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/camel-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/camel-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/delimiter-case.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/kebab-case.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/delimiter-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/kebab-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/kebab-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/pascal-case.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/pascal-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/pascal-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/snake-case.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/snake-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/snake-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/includes.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/screaming-snake-case.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/join.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/split.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/replace.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/get.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/last-array-element.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/global-this.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/package-json.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/source/tsconfig-json.d.ts","../../../node_modules/.pnpm/type-fest@3.10.0_typescript@5.1.6/node_modules/type-fest/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.1/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/helpers.d.ts","../../remirror__core/dist-types/builtins/attributes-extension.d.ts","../../../node_modules/.pnpm/@lingui+message-utils@4.2.0/node_modules/@lingui/message-utils/dist/compileMessage.d.ts","../../../node_modules/.pnpm/@lingui+core@4.2.0/node_modules/@lingui/core/dist/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-horizontal-rule-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.2/node_modules/@types/object.pick/index.d.ts","../../../node_modules/.pnpm/case-anything@2.1.13/node_modules/case-anything/dist/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/default-import.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":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","f4e736d6c8d69ae5b3ab0ddfcaa3dc365c3e76909d6660af5b4e979b3934ac20","eeeb3aca31fbadef8b82502484499dfd1757204799a6f5b33116201c810676ec",{"version":"fcd3ecc9f764f06f4d5c467677f4f117f6abf49dee6716283aa204ff1162498b","affectsGlobalScope":true},{"version":"9a60b92bca4c1257db03b349d58e63e4868cfc0d1c8d0ba60c2dbc63f4e6c9f6","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true},{"version":"b7feb7967c6c6003e11f49efa8f5de989484e0a6ba2e5a6c41b55f8b8bd85dba","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"25de46552b782d43cb7284df22fe2a265de387cf0248b747a7a1b647d81861f6","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"6176320d5d144a771120c6d35d0fa9a62ede0b6032277d50436bf6c53b0743d7","e55d0622a48f393e45681cddd465728359ee4739b394168f5a4b6dd18d1c9286","3e394b9086731ed11bcadda6ccc80e8f346bb6370940da4d57e9a8f3757a15bf","545f6bf60b564ae33c403a3f49414025cb9cb0e17396fae6d7eac1ccf9c2ea04","02e8d6b9f3c89e7ad07c65a486c8387cf862a4c4e7c4d3cb7f51598c7ec057a6","f3745a58f2bd7ed2c210e882e95b67d0707f97b9ed7b2431f68e5cccec0e20ba","ef31e112135506de69dd265d650a12fe0658899266cf49f785f387980fad3e3a","6fbd135705d107efb9b9f94030a41bc2b258a1fbf26d766ecfa2e0f6c2bd847a","300fdf1847066d4cd8c99c545718a456eeeae7b6ba37cbc683bbc51b22476d3f","e7c738913fab4ba4b00fcf1d1eb1ddf8989b64355da34250407340f4894a2384","da23a9065db521ac08ae997289eb4b0a243985fc483e12a5a99f955b9ed485d0","31743cebab9f6d7588e9f87e464e9b09679b6cb6ea98ea9413b0a56faa49cce0","431eef47c55a88198c1cc62ea7c9c7537c3219c3fd652c554d3d5bb7a63658a1","ee5af755629403e296dcc1bb67c3d405ba2996eb2111ce0d6af5cf39df258e73","16b311651dbd580d429938c993c41e1c610ef0b1e83c38229f3ad4d81a35cd39","a45c8c0c99d344b9bdbdf836f3d8fb8a90a2b0adc6ecba2592593d7bcb28ec5f","bcba4dddd9545650b4bdfd4747ec6f87a6a06b0cb04969766f169da3d3404bb3","064733c01462ae496e7b62ffce6a3cb21facb351c0375b151ed66da38de60d69","302301b6291dc914d9eaa4defd4e8036d8430ff40650308b0ca20c5b2fd9d037","9be2251604e566b466fe97183fd191f9dc4f8fd1f0702b1390c45fcd38bbf5ff","41dbf230398610b910ea0a4065fe758209f7fb1dabef801351cfd5333ebde9b4","f5492cf939012c336f4ab84a2496e9e63bb56b42218664d08e3282220f400b2a","5246950b42b373e07b1eac253451b1db16e4ddfef2c22bae1c14d452b57dc9e4","72c9b0f8c9ee268fe755eeab915e5b0897772244aa0ef11f59e15c50a6a55121","796268fc4ef17d30c4aa82e372052d2a73f7e9ebd9c9beadc4d4daf1f8d023ce","545e65d84ae098da26fe81f592384e8f18f8a0794de55e4136307625701fb1f2","2442a13192b9b3fb76584be7375f05edbf6f77f39a5e6d4d1f377fdc1b6d0979","55867e1188ed1f46cbde299df51671901c9de5af5a4b53c274019ed4b08d4f34","d9b96d27372967e8f53b3f7b7cb6e875b8d128080abc4fa204a13f0d3f2b6506","d41b65a0fb48a14a7b52eaa45d9b65988af076e63704cba1dd1f72e961e0e2f5","92b40a9393f937e4bd7eed4b0161ad03296607bfdf26b0bb323cde18c51e0687","fdcbabde604d3123e01b2dc359fe3a0d64e6c1563b8c6a27ec0d626f528f7670","7215a5c611e92a934a4280874c9844cd6b8dba4fd4523badc27203a60303c8ca","59217222f06b2b24784160c8e2eaf0de94906912505101576a1dd744fd90cdcf","c60e185eaab239d465baec8e4a8c2f76fdff641431cb57d12c4e233d61be5474","d8b6dc94bc2761afdcff7a1e29359a383472bd8af2ce03485a2792026f15f458","1955442a305cd1622782ce89c898be431c66c39c36a253abb0543052f4917613","2251d1a89b3d8aac866bc79839c28681886d289d117404276ecf1d4fd5f5c19c","2a55511100028e4af650f52bdd7826fb187b9eee380b7ce9249a69f0713503fa","af95dfea86a72f578f54d68f590a3988a97900b06f6169cdddc0bc40a4c6a918","992442834491efb053df22fb8148f8fd1303c198c97f5b50ebf1dd0f63ae5e8b","092274870bfdbb373ea502c23b8205d30e622fd10a7e5370d752a6d8de761110","e86a45fac2071035f07ade063ad32754edd13f45f3f3b143387ec01b8eb8aec9","9d6fcf45c88c41f81ac9a39df453089cad491812291c260f19d85df9fd6ad130","819ff6185962272453fe11af8d9f3da27f5d3761b21e196272db43ff54e4caa4","496c4e67ab660ecb7cb5ca8dcb781c5adf4c5538321a6c710b3e5969dc60a1b9","64bea12b31a4544bf58ae26c14cf3f1ed6975612acddbb8183b198bf949af20f","3c616cbdf6f11c71a1cadba225121b0733b1c3da2a4855d7247a22bc64ee28cd","89174e30b34e81c4ffabb6d3a477b3c97cb5f81d7d8300f188b7cd8bc6a82193","1ef7565ffec4456d8a50e72f1cc254f46f2d35e0f34692f9096b11266fdfc6b9","e29c3246bccba476f4285c89ea0c026b6bfdf9e3d15b6edf2d50e7ea1a59ecfb",{"version":"7a6288e6314b0f2bcdb0747a9e7ba10b99d7b64106208e7cd3d96465e58569a9","affectsGlobalScope":true},"8fd4df23f3cfe827e99b200731d55330c61165927edd2164c1f6e2c54c3cc14b","a7dbd94d15690c36722004d7b5ed34acc8e5a27f4abde77478494c4bfb09ef51","684ac2028efd1ba8c30631131ec410713fde09d5551748a0eb34c02d2367219a","af2b10bef3a184fa0d328174c16d7cf57cca0c3b2a90f5fc747f3fd1da778242","c4aa20ba7d5447720fd3594c8ce1afa2e73505d7615c198b017ae8ebd4361d2a","2f1daab76ba87b523366ce31a39f15bfca442a85fe74c1316be375acd409e13a","a7f49182fafcfb3baf35ddab0d933f2eaebef76a7844020642ea235000e2b08d",{"version":"1a083c6ff2c8237de0c04375a37b69883dc28567e0b380193a7106b2ad54d0e6","affectsGlobalScope":true},"0278fb4eb96c568ee0ec1b31bfa8dea43897578529ac72440db6033aeca3951a","8d468f2ec82f301adbebd6dda379f8071bdd40132284eead142eaf410c56ee79","cd51ceafea7762ad639afb3ca5b68e1e4ffeaacaa402d7ef2cae17016e29e098","1b8357b3fef5be61b5de6d6a4805a534d68fe3e040c11f1944e27d4aec85936a","5141a3f0cc1bf2b0e8dee747e88a2b4ce0e9d1a4a019334f3b317f00764576c6",{"version":"4f24c2781b21b6cd65eede543669327d68a8cf0c6d9cf106a1146b164a7c8ef9","affectsGlobalScope":true},"86b484bcf6344a27a9ee19dd5cef1a5afbbd96aeb07708cc6d8b43d7dfa8466c","15ab3db8aa099e50e8e6edd5719b05dd8abf2c75f56dc3895432d92ec3f6cd6b","6ff14b0a89cb61cef9424434ee740f91b239c09272c02031db85d388b84b7442","5d6f919e1966d45ea297c2478c1985d213e41e2f9a6789964cdb53669e3f7a6f","884eaf5bcae2539fd5e7219561315c02e6d5cb452df236b7d6a08e961ec11dad","d274da8ba27079a593a7de4fbe82f3aab664724bf4f1b080e977f6e745e690e1","8504003e88870caa5474ab8bd270f318d0985ba7ede4ee30fe37646768b5362a","1cf99fe49768500d01d873870085c68caa2b311fd40c1b05e831de0306f5f257","2fb375811303a0852f21a9472a6c76b7d69c3b241861dee4784b8bf7b5a794b1","5a1e787f0f10f53e574e347c0f4904a743dc93d8989a08b308b7b29365e5964f","4502caaa3fff6c9766bfc145b1b586ef26d53e5f104271db046122b8eef57fd1","382f061a24f63ef8bfb1f7a748e1a2568ea62fb91ed1328901a6cf5ad129d61c","952c4a8d2338e19ef26c1c0758815b1de6c082a485f88368f5bece1e555f39d4","bfa7e8a9830bf5f390b4ccb4286b32239e6ddc4dca515aac187705a478de86ed","ef4c9ef3ec432ccbf6508f8aa12fbb8b7f4d535c8b484258a3888476de2c6c36","dee75c873b20a13839a8ce9ea9d32696682c6db4b1e9f4fb6bc431ed31b0fb8a","f981ffdbd651f67db134479a5352dac96648ca195f981284e79dc0a1dbc53fd5","865f3db83300a1303349cc49ed80943775a858e0596e7e5a052cc65ac03b10bb","a1c85a61ff2b66291676ab84ae03c1b1ff7139ffde1942173f6aee8dc4ee357b","a24c4fe21d5b13a9ecbbb39b5e22f5d4c6fe5feebb074865ba2de273381a73ae","48a9a38d31f33ba5a969cc7028907691e01c26d5341c558b051d27ef302602e9","2169cdcb2e85ec18274590018fc1a12b8fe02708813692d9a1531695c17d3198","231b86b94836e8b22b04812f9bb1cbc564923f39549269da0266516b91854b36","da2aa652d2bf03cc042e2ff31e4194f4f18f042b8344dcb2568f761daaf7869f","03ed68319c97cd4ce8f1c4ded110d9b40b8a283c3242b9fe934ccfa834e45572","de2b56099545de410af72a7e430ead88894e43e4f959de29663d4d0ba464944d","eec9e706eef30b4f1c6ff674738d3fca572829b7fa1715f37742863dabb3d2f2","b0cefbc19466a38f5883079f0845babcb856637f7d4f3f594b746d39b74390f7","49072f70de97818411abf867d7b75787e3d732e4d703f6f2023e833985c6f85b","1f0ee5ddb64540632c6f9a5b63e242b06e49dd6472f3f5bd7dfeb96d12543e15","18b86125c67d99150f54225df07349ddd07acde086b55f3eeac1c34c81e424d8","2d3f23c577a913d0f396184f31998507e18c8712bc74303a433cf47f94fd7e07","4d397c276bd0d41f8a5a0d67a674d5cf3f79b79b0f4df13a0fbefdf0e88f0519","aa79b64f5b3690c66892f292e63dfe3e84eb678a886df86521f67c109d57a0c5","a692e092c3b9860c9554698d84baf308ba51fc8f32ddd6646e01a287810b16c6","3c2e543e5913aca16ba24e406cebbf84bac298f79c249ea255016fabaf8be744","0b9bcc98884f81d8adda2c5d2ebb0361c7a53af6713e72138c4457e6016ff708","1848ebe5252ccb5ca1ca4ff52114516bdbbc7512589d6d0839beeea768bfb400","31073e7d0e51f33b1456ff2ab7f06546c95e24e11c29d5b39a634bc51f86d914","f60149e188145ebf3e6edf735576a2c26e805ac575bfdfa839a27929175e0855","31d18349ccfc45ce4f82990c71aed8901272a8edc9c6d1b2d330aabf36f50aec","a90339d50728b60f761127fe75192e632aa07055712a377acd8d20bb5d61e80c","37569cc8f21262ca62ec9d3aa8eb5740f96e1f325fad3d6aa00a19403bd27b96","fa18c6fe108031717db1ada404c14dc75b8b38c54daa3bb3af4c4999861ca653","3146e973c617598b8e2866b811fdfcafe71e162e907d717758d2412ba9b72c28","a653bd49c09224150d558481f93c4f2a86f9a282747abd39bd2854207d91ceba","efa00be58e65b88ea17c1eafd3efe3bc02ea403be1ee858f128ed79e7b880bd4","f5f716848e9b1e873519aa6408c35ac70c1ec471c460497842f28644dd906cb1","55d3747b2a8949561a78f7327647e54418ab3746f7dced6cfe75d76f2b051aa8","cd8aa48c26b3de057cfd76706c0cff88ace0f23f548b8dee974088497780e5ae","abf140fdc3db44c2cac9415426544d8c2a89e73f13f7838376b2b6d36d74a582","e79e530a8216ee171b4aca8fc7b99bd37f5e84555cba57dc3de4cd57580ff21a","ceb2c0bc630cca2d0fdd48b0f48915d1e768785efaabf50e31c8399926fee5b1","f351eaa598ba2046e3078e5480a7533be7051e4db9212bb40f4eeb84279aa24d","c63a0620a7fa59bbcac4ae218d477fdeafac72b689fede1e3acbbb1b8d90f36c","4ce53edb8fb1d2f8b2f6814084b773cdf5846f49bf5a426fbe4029327bda95bf","1edc9192dfc277c60b92525cdfa1980e1bfd161ae77286c96777d10db36be73c","421703860812c1dc29f83893f89434c855e09354c49012ff63b70c21243d997e","0a0bf0cb43af5e0ac1703b48325ebc18ad86f6bf796bdbe96a429c0e95ca4486","75a7db3b7ddf0ca49651629bb665e0294fda8d19ba04fddc8a14d32bb35eb248","eb31477c87de3309cbe4e9984fa74a052f31581edb89103f8590f01874b4e271","587ce54f0e8ad1eea0c9174d6f274fb859648cebb2b8535c7adb3975aee74c21","1502a23e43fd7e9976a83195dc4eaf54acaff044687e0988a3bd4f19fc26b02b","f9b229aaa696a31f6566b290305f99e5471340b0a041d5ae9bd291f69d96a618","6592ae1f1eec2e4cd4db11033b6936c8d9e009ddc48c164e46ef101a0dfc2c70","d9c6f10eebf03d123396d4fee1efbe88bc967a47655ec040ffe7e94271a34fc7","0f2c77683296ca2d0e0bee84f8aa944a05df23bc4c5b5fef31dda757e75f660f","309586820e31406ed70bb03ea8bca88b7ec15215e82d0aa85392da25d0b68630","11e4e2be18385fa1b4ffa0244c6c626f767058f445bbc66f1c7155cc8e1ec5b4","f47280c45ddbc8aa4909396e1d8b526f64dfad4a845aec2356a6c1dc7b6fe722","7b7f39411329342a28ea19a4ca3aa4c7f7d888c9f01a411b05e4126280026ea6","7f89aebd8a6aa9ff7dfc72d12352478f1db227e2d79d5b5f9d8a59cf1b5c6b48","7d936e6db7d5d73c02471a8e872739f1ddbacf213c159e97d1d94cca315ea3f2","a86492d82baf906c071536e8de073e601eaa5deed138c2d9c42d471d72395d7e","789110b95e963c99ace4e9ad8b60901201ddc4cab59f32bde5458c1359a4d887","92eb8a98444729aa61be5e6e489602363d763da27d1bcfdf89356c1d360484da","074343ca788a38f572d8bdb0985956c0ad1a4d8ca8b6ef8c1a19a0e11cf09db0","d729b8b400507b9b51ff40d11e012379dbf0acd6e2f66bf596a3bc59444d9bf1","fc3ee92b81a6188a545cba5c15dc7c5d38ee0aaca3d8adc29af419d9bdb1fdb9","7d05ac926705ce932b6e41e5e273333b380d08b6a036ad0c8b01139586b34548","0bc13111c65ef1373c84c86c039416127579469828f0e01e03ffe00fb8fd6785","c00b402135ef36fb09d59519e34d03445fd6541c09e68b189abb64151f211b12","e08e58ac493a27b29ceee80da90bb31ec64341b520907d480df6244cdbec01f8","c0fe2b1135ca803efa203408c953e1e12645b8065e1a4c1336ad8bb11ea1101b","d82c245bfb76da44dd573948eca299ff75759b9714f8410468d2d055145a4b64","25b1108faedaf2043a97a76218240b1b537459bbca5ae9e2207c236c40dcfdef","c65a41b9185521fb1d98111fd30fa4b3a5020c0e9cd8bb8c691d5536c8688156","5a4d0b09de173c391d5d50064fc20166becc194248b1ce738e8a56af5196d28c","0e0b8353d6d7f7cc3344adbabf3866e64f2f2813b23477254ba51f69e8fdf0eb","008ed9b6d1fdb68f9d98e6fd238d99be77e738892c3a1c6cf8b7616de4f8b114","08f95bee0619072d2c49854434af3e53d94e7e762fc082b49cea59e77db06905","9e5c7463fc0259a38938c9afbdeda92e802cff87560277fd3e385ad24663f214","5eeb5d720d427325e3701f15363f3c257fdc60a74a52e64a59c0956146efd630","2ab9b3b4938022c0078d38ce47fe7863e259d855f04fd5a92fb8af6649b57632","08fa9546aee48b343bfcb840938597d166e59ba820939514ce5e3022c9788bfe",{"version":"66ecfe7b415ee9820dd1e3d059efcfb4b0dfb909b94f0631dde46ab57f39edec","affectsGlobalScope":true},"28a49a7a077376aefd7f8f1eb421ed2eba2401051b85545426305076491752a6",{"version":"5f0a58a32138d4855d2e873172ad4bf33c273262bdf8daa9dda50fbca205c805","affectsGlobalScope":true},"478e59ac0830a0f6360236632d0d589fb0211183aa1ab82292fbca529c0cce35","1b4ed9deaba72d4bc8495bf46db690dbf91040da0cb2401db10bad162732c0e2","e689cc8cd8a102d31c9d3a7b0db0028594202093c4aca25982b425e8ae744556","50614bd64da0cdc193d8cc72f1009c829dedaa0aa5cc5e2c154bbf476ee2573c","f41d91b2db1112fcc673a6862fe68cadcbdd0a66ed16b47ac74a0a6da8932bb4","3e94295f73335c9122308a858445d2348949842579ac2bacd30728ab46fe75a7","3e4f0fd25da407d81ba173314bd96c0610902edbf01a382bf6a2ef0c751a4aa8","434420936e9d57b978889818a6158b4eaef096d28e87dd27b03ce52b512d4eab","578cfbf494c3859247d4b506478efde72b5a4c9a27a31e1be9656cb73fc6ff31","51351041866c41c3af73f97b3188b0cf90352b07edfe0985457f37b9c21d4ee3","a6e1548f5d4711ae2fdcb85c344e084f30842e63c7d24952b79825633e36efba","34be08a3e536797251c8ed5959d64532d4c17b6ff69c646a04375ecf0f280562",{"version":"302bbde4ae64ed46acf0fd5ee4bf9c303168fcef087d8f4662bc0db4e680a72f","affectsGlobalScope":true},"94fbe8821810c6642da9c2323f574ab3ad0d299d4f1784e45fd498d3ece0c1a8",{"version":"74f174313852eaaf55dffedb37120fbe064ce1098dc5edb19d7ad3645c382e19","affectsGlobalScope":true},"a7fb35c39d30f11a8fa2527c4289ed6a58aca1939ef3a718c030f2bb1359434a",{"version":"a7ae1786971e2c314fd8490b53517e2107c936993b904cbdaa4496f97aa6c827","affectsGlobalScope":true},"91da8347f1c5daa8e81a2364dabd219d3093b4ffd2a7c9705240d0ef46be5957","eea1a0f91eda195f5f77e9e90b6ef7c247171b23a391dc8ae99cc9cd1afbbddf",{"version":"a91846f9234865fbfa2f95d208cedd6508eb90a60d40f8e5d1a12ff894bbc1ff","affectsGlobalScope":true},"bd85c800f4e63247bc07c489208361bd1210d5c63468cef1ad8e32848e8eeb77","a22577782d2ff87037e330c8159f99e33c3891db5d8ecfbe8e41a20bf65670a9","86edebfb839c6c66d13647a70ef991e746332d67e852c3e43fd8c7e40be5ec60","df52b87c6f10fb0ba564c775fc87bc728154fc8599e53f6b76178c3c4fa8f23d","37266c7cd764c8f1d231581c4bca031a39491e1fc524cd0d1f2b04fbecfb70ce","040d2bdea98dcd53b0d6343b52052d84586e184ca7e7a6aaaaa339ba00e571b7",{"version":"725e1ecc50a6d2e56d2c8228dc1d1264ce8f94ffdb5f0ad064888b1791da0a6f","affectsGlobalScope":true},"ca526961223c2594f0a8a09d4276262e77b0251b6eacfa7f50cb2bcea0094d84",{"version":"2af42bcb541927390378f9b8b672c7ea863221d9738c9d17781d8e42fcb0a3b1","affectsGlobalScope":true},"85cbd01831ec80f68f29a52abcb78ef17c1108063756dc6bbe9602eda45c9252","2d2a9911ab2411ba516daf90d26232317f300beeda3dcb8902e543df45fb14da","e17c4f294a28b8d6f2090b594e32f75082be12a7486e5a619caeed6f0b070134","fe6362eada470fa87cac0e70cadb75e8406d5b61d82633624ba51ad41e077bc4","a3276eb9153fe1ad5982eea7ec7b78fa60fc985d47fbd2c624df56a2caa71307","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","a8eb9b9c0c77e426f4a7298da88a30a01df1def814fda96eb732664455caf9c6","dedfc702068fc54e1bd28534095e64670642891f39895cbb3f6f1a797385c4b8","f346d121a4031df0c92934c25fb1d1065b170e9c92122bc8c2d2933126062a6a","890fdc1bc1832ecfc2040265d57288174552991394ec77793f6bcb53598c5402","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","8fe8adf0cb8291c7f52a1ccf0c38b47256adfc30a14cd9f2c46fe93bca57cb89","64bd2dadd45c769ed85b6cb60077239d32752db98122facfbab4948e8572f7f8","2ab980b94dbae651e94546327f45d3919bdfbe37f8fde9b774be3aae8b3239cd","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","f346d121a4031df0c92934c25fb1d1065b170e9c92122bc8c2d2933126062a6a","f346d121a4031df0c92934c25fb1d1065b170e9c92122bc8c2d2933126062a6a","95e36af58bac504c0ac5311b9315778ce1cfe9bc175a3a7826be5b68550152a6","67f15aa6c7e91728b040e72f8006a8161a178a256713c4f1d53f9aa051f05033","75236538088faeecc908dffe8db769a29c9536927e7ac41c048d21073fe01e22","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","9cf1573d0e4cc99b07ceb577919e8686a395bff8a5b2b06ca3034659ca1f9cc8","4250daf780ccc8119e2908c83626a59a30c502889f5390963d9b4657ff328d5e","50f85199f3bb64f83439b2bcced9a2cb51ad78b5eeb0a1c78a94deb91c98377c","aedf0dee82f83182d7f337784bf85260633c8621aebc656defd4c21ca4b2577b","2f339fb8207dae61184c1c8cfa3ee6c17d4bd55269ad8dea193f11014b5a3d42","f731321dd451425851cefe3aae61158f774f731a816742115bad0c8e41ce6c79","f9ddcb7de3ee403b9686a77347b38b4130cfb1eb9ea50ce4bd8dc5f8cf60983e","14a01c0db90f4600d6633f1c9aa634e26a8fc9f97aa57971fc3e03d3d9bb8f49","a08253cae05731e8dc22dfc97648b08aed02937bd24ddfab11892a3e00c1da4c",{"version":"16d6b77eab76fffe32b41198f6e71e3807f07cfc421ebf9656c3e1900e714330","affectsGlobalScope":true},{"version":"2b3f97904a65d345123148d0fa8c4a213a6f5dd37248cba139bb8201bf409de5","affectsGlobalScope":true},"973ad753f27f9d921feaec703154ad0f4666e41fc49ff29e1c57db4eeaff0767",{"version":"a910167a0d75387abe784774b2daaf76063b5c3ed3ccb881385d72eb29a4f553","affectsGlobalScope":true},{"version":"452b843f66b47ccecf70c4689426841b38bdfb67547e9650ab27e89c4c37ff8b","affectsGlobalScope":true},{"version":"0cfa4f1eadb6d369a6fec1c07fbe8957ce89f8eaee2b6946d98afe74286ac901","affectsGlobalScope":true},{"version":"015ee27dd817c17ac9aa430b701803f426c30b860a2a6994daaead80959e594c","affectsGlobalScope":true},"22ba638593eb61958937b904e3f1d33676845e410b5dd2126c20ef4d808470a5","b1e6cb3f4f73385a4f478dfc7227be339e6082c3be41e7f12da10ad9d13bc778","bc201c28f3cd03d92cf8c921aed3d84f8d64fc491a75278b11e6bd7f9338dc09",{"version":"2185d6dd5ae6a5620d3c897b57d9f0fa536db0dbe5f155a744d277c566308895","affectsGlobalScope":true},{"version":"fdcb21b19e256627efae467fb835ca4836ff7195fe4a34a7775d336f709f3730","affectsGlobalScope":true},{"version":"9f20992be1a62548766e58767dc9e1dbe689b78597360a3c0771066a384943e9","affectsGlobalScope":true},"55218d90ee5449d20199d87d720f3c91140de1b564f59252d5690233b436b9fd","04551568e8e34a07ce40608e3ac506ae0f075ab7e5ea8585c94ac3c5f9535fc7","d8550c2bc866b6d4067a59306c2b32167230388fff0f9204e7cc37d2aebf7016","1019fc07b15a27d258793a7f1f40d3a985914349d8905c6f574161851183f484","71b28f0719120b358dad92cbd49fa9930b8b68d75206cb915e51ace0a38595b3","b36ab3c506486e82f574623bdbc2544ca35827aaa30a1f8881164d795f6ae089","10e6b544ced5ac112601ee8da4da5be253143f8ea5eeb74a40792dfc1c448400",{"version":"e67ad57913671b4feba98dc58cb550c81981ecbc2c17ed9dd3bbef48c747d6df","affectsGlobalScope":true},{"version":"dc996306c795dee621bffeb417f554b7db0759be2587b8a4a7931546ce433156","affectsGlobalScope":true},"455f6e36325dc2110a499b36abffaf2666df88c542afb24d60783b6fc1b22e59","4d97aa11647a84c232ff0b6f4d60b742492b0705b6804a8bc40784da03ee7edf","91178aedd4b0d0223bb154fbeb47dbaee1f38eacde9efb3dd046630d7a133a4d","ded764de76437e56fc57ca8ab210e1016f18f5f6fb8c1f4899a4b5461d2c4b5f","7139da1cd9fb0f4d017de16d5982ff8867194538b459842de2cafa72b79d3fc2",{"version":"3b5b8ab0618939383dccedf4b992b9ba9996416901a4a016b03791540aef7e0c","affectsGlobalScope":true},"85d8fda12a71f75c72ef9ec8244dd1ba6824bc94263b6d732e31729c7fa3ded3",{"version":"797e2044d592a4e3beb0d2a87860574ad1f8889743bbceb4d752b83a85cac7d0","affectsGlobalScope":true},{"version":"3d2bc46b97933fd2695651f264e9e03a61faef4846835ab8e35b53470d93dabd","affectsGlobalScope":true},"741464a488e9eba4a1de52e98726f0217075857537f6c1c6a8f4cd971be2390f","2aece5972bdc8f16bc2fd4616056e21bd71580e5c81457e433b83c810c82c06f",{"version":"86a047613c0495eb7fc486e5c7940298c602df135197a574848839b1674c563c","affectsGlobalScope":true},"db3050870ca481a8db9fef8ad6e974a1ebc78841a5f3c78a31a002d99e0508cd",{"version":"54b11e088aa231ab1c6d82c75cd7c3603b0f9f4bb76a5a8068b31ed2c590673c","affectsGlobalScope":true},"1eccfa59880bf67860778ab324d8c21b82681b2f552afc853a173f2657dbb72a","ce1b4edb22dc7e36cf7040c6e2a297b182e1285ae3b51d69154b8617f1587d81","2ced5214fb4159e282ccc5c84fa9eeac92a16ee70be4d2b0b099d460c765d72f","cd274fb8378b343192b7ede8f986b625dd39ab0f803f073cb341328c53321322","7e61def8d1fd9b2db068256f056cfbcd9fb7f7a0f405115ddc048deffed2bceb","27c85ba7958ec4b82b87e7df50d41522d8cc64888ced56e12b6ef633173afbca","28690c5528133931d0220db3ad9811158a176de71839aceaf87d77fc6eee4af7","4e22b9ea2805fec5f3c120146a690e5604a3117dbdee648c85393f58422eec16","5693a732a07209ad52f9fc33a2e80856d746b85be65213ec7e9e73d527c25a33","96e64c261e1dc55ec3399239783e5a6d5009070f87bbcc39fbc7606e12c8a092","d23b9f3c491516c61a8ec1b4f9050b0b359647a5b924df51aa914d06c09ef0f4","cb6d8028ae6c22992e63674ff26f11becf2cac53629360c5e843e9a0cde1e37a","447bfe430c2241d350f04fa826682fc5e944fa6c74e398948e82f45375f62bbf",{"version":"e42fad355fa93a083fcae5b7ae7b8d10729fc672829ad0515cc1e0b56f41027c","signature":"540871c39da04578f4171667e76514021a51d8a70bc0674fe92579206f8ff697","affectsGlobalScope":true},"2dff3bdcf53d4a07c9ab8ac171e81e0bcfc486200bf90ebe9752b680691d5f87"],"root":[342,343],"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":[[246],[110,112],[109],[110,111,113],[110],[110,111,112],[124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221],[173],[196],[197],[130,160],[129,142,153,161],[160],[136],[200],[132],[170],[129,136,153],[129],[136,181,215],[184],[187],[135],[191],[172],[124,132,134,135],[153],[124,136,175,191],[126],[125,126,128,135,136,175],[204],[202],[138,179],[124],[136,138,139,140,141,142],[138,139,140],[129,136],[141],[126,151],[136,141],[206],[130],[200,209,212],[130,132],[130,132,187],[133,136],[107,110],[108,113],[112],[107,110,117],[114,115,116,118,119],[62,107],[106],[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,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105],[66,70,74],[66,67,70,77,79],[66,67,70,77,79,88],[66,67,70,73,77,79],[66,70,75,77],[66,67,68,70,73,74,75,77,78],[66,69,70,71,72,79,88],[67,69,70,73,79,88],[67,69,70,72,73,74,79,88],[67,73,83,87],[69,70,83,84,87],[67,73,79,83,84,85,86,88],[67,82],[67,81,84],[62,88],[66,67,70,74,76,77,79],[62,63,69,70,73,77,79,80,81,82,87],[64,65,73],[68,70,74,82,88],[64,65,73,74,88],[66,67,68,70,79,88],[70,74,76,79],[66,68,69,73,74,75,77,79,88],[62,68,70,73,79,88],[65,74],[64,74],[70,73,75,79],[65,66,67,70,76,77,79,88],[73,79],[73],[66,67,68,76,79,95],[300],[110,112,113,123],[306,307,308,309,310],[112,306,307],[112,306],[112,113,306],[110,112,113],[224,306],[121,122],[123,331],[224,333,334,335,336],[332,337,338,339],[123,224],[123,224,226,227,234,235],[224,225,234,235,236],[224,234],[237],[123,226,228,231,237],[234,253,254,255,256,287,288,289,290],[286],[226,231,237],[230,237],[226,237],[237,243,244],[123,237,238,243,248,251],[237,245,293,294,295,296,297,298,299,303,304,305,313,314,321],[226,227,237,238,243,252,291,292],[227,237,238,243,292],[237,238,243],[237,238,243,252,293],[245,252,293,294,295,296,297,298,299,303,304,305,313,314,321,322,323],[230,237,243,291],[123,237,238,239,243,252],[237,243,302],[228,237,238,243],[123,237,238,243],[237,239,243,312],[123,237,243],[227,228,315],[226,227,317,318],[317],[316,317,318,319,320],[234,243],[123,237,238],[123,237,239,243],[237,238,240],[123,237,238,239],[240,241,242],[227,237,238,243,244,324,325,327],[237,238,243,324,327,328],[328,329],[123,237,238,239,243,244,251,291,292,324,327,330,340],[326],[123,228,237,238,243,291,324,325,330],[123,228,237],[342],[107,120,227,286,341],[247],[249],[249,250],[247,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285],[226,227,228,230,231],[228,232],[232,233],[229],[301],[311],[111],[113],[222,223],[222],[107,227,341]],"referencedMap":[[247,1],[229,2],[110,3],[112,4],[111,5],[113,6],[222,7],[174,8],[197,9],[199,10],[198,10],[161,11],[163,12],[162,13],[200,14],[204,15],[202,15],[140,16],[171,17],[182,18],[130,19],[217,20],[186,21],[188,22],[193,23],[194,24],[195,25],[212,19],[136,26],[154,27],[192,28],[172,14],[177,29],[176,30],[201,15],[205,31],[203,32],[180,33],[151,34],[143,35],[141,36],[167,37],[168,37],[185,38],[220,39],[148,14],[149,40],[206,10],[208,41],[207,41],[150,14],[145,42],[213,43],[155,44],[156,44],[173,25],[209,15],[211,31],[210,32],[196,14],[189,45],[134,14],[137,46],[133,44],[119,47],[114,48],[116,49],[118,50],[115,49],[120,51],[108,52],[107,53],[106,54],[75,55],[103,56],[97,56],[98,56],[99,57],[100,56],[101,56],[102,56],[104,56],[105,58],[76,59],[79,60],[95,59],[73,61],[80,62],[82,62],[81,63],[84,64],[86,65],[87,66],[85,67],[83,68],[89,69],[68,70],[88,71],[74,72],[93,73],[94,74],[72,75],[77,76],[70,77],[78,78],[67,79],[66,80],[69,81],[90,82],[91,83],[92,84],[96,85],[301,86],[300,87],[311,88],[308,89],[309,90],[307,91],[306,92],[310,93],[123,94],[332,95],[337,96],[340,97],[225,98],[236,99],[237,100],[235,101],[253,102],[254,103],[255,102],[291,104],[287,105],[288,106],[289,107],[290,108],[245,109],[252,110],[322,111],[293,112],[294,113],[295,114],[296,115],[324,116],[297,117],[298,118],[323,114],[299,114],[303,119],[304,120],[305,121],[313,122],[314,123],[316,124],[319,125],[318,126],[321,127],[320,128],[292,102],[239,129],[241,130],[242,131],[240,132],[243,133],[328,134],[329,135],[330,136],[244,129],[341,137],[327,138],[326,139],[238,140],[343,141],[342,142],[248,143],[250,144],[251,145],[257,143],[258,143],[259,143],[260,143],[261,143],[262,143],[263,143],[264,143],[265,143],[266,143],[267,143],[268,143],[269,143],[270,143],[271,143],[272,143],[273,143],[274,143],[275,143],[276,143],[277,143],[278,143],[279,143],[280,143],[281,143],[282,143],[283,143],[284,143],[286,146],[285,143],[232,147],[233,148],[234,149],[230,150],[226,5],[302,151],[228,49],[312,152],[231,153],[227,154],[224,155],[223,156]],"exportedModulesMap":[[247,1],[229,2],[110,3],[112,4],[111,5],[113,6],[222,7],[174,8],[197,9],[199,10],[198,10],[161,11],[163,12],[162,13],[200,14],[204,15],[202,15],[140,16],[171,17],[182,18],[130,19],[217,20],[186,21],[188,22],[193,23],[194,24],[195,25],[212,19],[136,26],[154,27],[192,28],[172,14],[177,29],[176,30],[201,15],[205,31],[203,32],[180,33],[151,34],[143,35],[141,36],[167,37],[168,37],[185,38],[220,39],[148,14],[149,40],[206,10],[208,41],[207,41],[150,14],[145,42],[213,43],[155,44],[156,44],[173,25],[209,15],[211,31],[210,32],[196,14],[189,45],[134,14],[137,46],[133,44],[119,47],[114,48],[116,49],[118,50],[115,49],[120,51],[108,52],[107,53],[106,54],[75,55],[103,56],[97,56],[98,56],[99,57],[100,56],[101,56],[102,56],[104,56],[105,58],[76,59],[79,60],[95,59],[73,61],[80,62],[82,62],[81,63],[84,64],[86,65],[87,66],[85,67],[83,68],[89,69],[68,70],[88,71],[74,72],[93,73],[94,74],[72,75],[77,76],[70,77],[78,78],[67,79],[66,80],[69,81],[90,82],[91,83],[92,84],[96,85],[301,86],[300,87],[311,88],[308,89],[309,90],[307,91],[306,92],[310,93],[123,94],[332,95],[337,96],[340,97],[225,98],[236,99],[237,100],[235,101],[253,102],[254,103],[255,102],[291,104],[287,105],[288,106],[289,107],[290,108],[245,109],[252,110],[322,111],[293,112],[294,113],[295,114],[296,115],[324,116],[297,117],[298,118],[323,114],[299,114],[303,119],[304,120],[305,121],[313,122],[314,123],[316,124],[319,125],[318,126],[321,127],[320,128],[292,102],[239,129],[241,130],[242,131],[240,132],[243,133],[328,134],[329,135],[330,136],[244,129],[341,137],[327,138],[326,139],[238,140],[343,141],[342,157],[248,143],[250,144],[251,145],[257,143],[258,143],[259,143],[260,143],[261,143],[262,143],[263,143],[264,143],[265,143],[266,143],[267,143],[268,143],[269,143],[270,143],[271,143],[272,143],[273,143],[274,143],[275,143],[276,143],[277,143],[278,143],[279,143],[280,143],[281,143],[282,143],[283,143],[284,143],[286,146],[285,143],[232,147],[233,148],[234,149],[230,150],[226,5],[302,151],[228,49],[312,152],[231,153],[227,154],[224,155],[223,156]],"semanticDiagnosticsPerFile":[247,246,333,334,336,335,65,64,117,62,63,331,325,109,229,110,112,111,113,222,159,174,126,197,199,198,161,160,163,162,142,200,204,202,128,140,171,170,182,130,166,217,219,186,188,193,194,195,212,136,154,135,129,192,191,172,169,214,177,176,201,205,203,218,180,179,151,143,144,141,167,168,175,127,138,153,184,185,220,148,149,206,208,207,139,124,152,150,183,216,147,145,146,187,178,213,157,155,156,173,132,209,211,210,196,215,189,181,165,131,134,221,190,125,164,158,137,133,60,61,12,13,15,14,2,16,17,18,19,20,21,22,23,3,4,27,24,25,26,28,29,30,5,31,32,33,34,6,38,35,36,37,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,53,54,57,55,56,58,10,1,11,59,119,114,116,118,115,120,108,107,106,75,103,97,98,99,100,101,102,104,105,76,79,95,73,80,82,81,84,86,87,85,83,89,68,88,71,74,93,94,72,77,70,78,67,66,69,90,91,92,96,301,300,311,308,309,307,306,310,121,122,123,332,337,338,339,340,225,236,237,235,253,254,255,256,291,287,288,289,290,245,252,322,293,294,295,296,324,297,298,323,299,303,304,305,313,314,315,316,319,318,321,317,320,292,239,241,242,240,243,328,329,330,244,341,327,326,238,343,342,248,250,249,251,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,286,285,232,233,234,230,226,302,228,312,231,227,224,223],"latestChangedDtsFile":"./index.d.ts"},"version":"5.0.4"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remirror/extension-yjs",
3
- "version": "3.0.13",
3
+ "version": "3.0.15",
4
4
  "description": "Realtime collaboration with yjs",
5
5
  "keywords": [
6
6
  "remirror",
@@ -24,37 +24,37 @@
24
24
  "type": "module",
25
25
  "exports": {
26
26
  ".": {
27
+ "types": "./dist/remirror-extension-yjs.d.ts",
27
28
  "import": "./dist/remirror-extension-yjs.js",
28
- "require": "./dist/remirror-extension-yjs.cjs",
29
- "types": "./dist-types/index.d.ts"
29
+ "require": "./dist/remirror-extension-yjs.cjs"
30
30
  },
31
31
  "./package.json": "./package.json"
32
32
  },
33
33
  "main": "./dist/remirror-extension-yjs.cjs",
34
34
  "module": "./dist/remirror-extension-yjs.js",
35
- "types": "./dist-types/index.d.ts",
35
+ "types": "./dist/remirror-extension-yjs.d.ts",
36
36
  "files": [
37
37
  "dist",
38
38
  "dist-types"
39
39
  ],
40
40
  "dependencies": {
41
- "@babel/runtime": "^7.13.10",
42
- "@remirror/core": "^2.0.12",
43
- "@remirror/messages": "^2.0.2",
44
- "prosemirror-model": "^1.19.0",
45
- "prosemirror-state": "^1.4.2",
46
- "prosemirror-view": "^1.30.1",
41
+ "@babel/runtime": "^7.22.3",
42
+ "@remirror/core": "^2.0.19",
43
+ "@remirror/messages": "^2.0.6",
44
+ "prosemirror-model": "^1.19.3",
45
+ "prosemirror-state": "^1.4.3",
46
+ "prosemirror-view": "^1.31.7",
47
47
  "y-prosemirror": "^1.0.19",
48
48
  "y-protocols": "^1.0.5"
49
49
  },
50
50
  "devDependencies": {
51
- "@remirror/pm": "^2.0.4",
52
- "y-webrtc": "^10.2.2",
53
- "yjs": "^13.5.23"
51
+ "@remirror/pm": "^2.0.8",
52
+ "y-webrtc": "^10.2.5",
53
+ "yjs": "^13.6.1"
54
54
  },
55
55
  "peerDependencies": {
56
- "@remirror/pm": "^2.0.4",
57
- "yjs": "^13.4.0"
56
+ "@remirror/pm": "^2.0.8",
57
+ "yjs": "^13.6.1"
58
58
  },
59
59
  "publishConfig": {
60
60
  "access": "public"
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../src/index.ts", "../src/yjs-extension.ts"],
4
- "sourcesContent": ["export type { YjsOptions } from './yjs-extension';\nexport { defaultDestroyProvider, YjsExtension } from './yjs-extension';\n", "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 * @defaultValue 'cursor'\n */\n cursorStateField?: string;\n\n /**\n * Get the current editor selection.\n *\n * @defaultValue `(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 * @defaultValue `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
- }
@@ -1,7 +0,0 @@
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 * @defaultValue 'cursor'\n */\n cursorStateField?: string;\n\n /**\n * Get the current editor selection.\n *\n * @defaultValue `(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 * @defaultValue `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
- }