@jvs-milkdown/utils 1.2.4 → 1.2.7

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.
@@ -1 +1 @@
1
- {"version":3,"file":"$input-rule.d.ts","sourceRoot":"","sources":["../../src/composable/$input-rule.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAC5D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,gCAAgC,CAAA;AAO/D,MAAM,MAAM,UAAU,GAAG,cAAc,GAAG;IACxC,SAAS,EAAE,SAAS,CAAA;CACrB,CAAA;AAOD,wBAAgB,UAAU,CAAC,SAAS,EAAE,CAAC,GAAG,EAAE,GAAG,KAAK,SAAS,GAAG,UAAU,CAazE;AAOD,wBAAgB,eAAe,CAC7B,SAAS,EAAE,CAAC,GAAG,EAAE,GAAG,KAAK,OAAO,CAAC,SAAS,CAAC,EAC3C,SAAS,CAAC,EAAE,MAAM,2CAenB"}
1
+ {"version":3,"file":"$input-rule.d.ts","sourceRoot":"","sources":["../../src/composable/$input-rule.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAC5D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,gCAAgC,CAAA;AAW/D,MAAM,MAAM,UAAU,GAAG,cAAc,GAAG;IACxC,SAAS,EAAE,SAAS,CAAA;CACrB,CAAA;AAOD,wBAAgB,UAAU,CAAC,SAAS,EAAE,CAAC,GAAG,EAAE,GAAG,KAAK,SAAS,GAAG,UAAU,CAazE;AAOD,wBAAgB,eAAe,CAC7B,SAAS,EAAE,CAAC,GAAG,EAAE,GAAG,KAAK,OAAO,CAAC,SAAS,CAAC,EAC3C,SAAS,CAAC,EAAE,MAAM,2CAenB"}
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","names":[],"sources":["../src/composable/utils.ts","../src/composable/$command.ts","../src/composable/$input-rule.ts","../src/composable/$paste-rule.ts","../src/composable/$mark.ts","../src/composable/$node.ts","../src/composable/$prose.ts","../src/composable/$shortcut.ts","../src/composable/$view.ts","../src/composable/$ctx.ts","../src/composable/composed/$node-schema.ts","../src/composable/composed/$mark-schema.ts","../src/composable/composed/$use-keymap.ts","../src/composable/composed/$attr.ts","../src/composable/composed/$remark.ts","../src/macro/call-command.ts","../src/macro/force-update.ts","../src/macro/get-html.ts","../src/macro/get-markdown.ts","../src/macro/insert.ts","../src/macro/outline.ts","../src/macro/replace-all.ts","../src/macro/set-attr.ts","../src/macro/markdown-to-slice.ts","../src/macro/insert-pos.ts","../src/macro/replace-range.ts","../src/pipe.ts"],"sourcesContent":["import type {\n Cleanup,\n Ctx,\n MilkdownPlugin,\n SliceType,\n TimerType,\n} from '@jvs-milkdown/ctx'\n\nimport { createTimer } from '@jvs-milkdown/ctx'\nimport { customAlphabet } from 'nanoid'\n\n/// @internal\nexport const nanoid = customAlphabet('abcedfghicklmn', 10)\n\n/// @internal\nexport type WithTimer<T> = T & { timer: TimerType }\n\n/// @internal\nexport function addTimer<\n T extends MilkdownPlugin,\n PluginWithTimer extends T = WithTimer<T>,\n>(\n runner: (\n ctx: Ctx,\n plugin: PluginWithTimer,\n done: () => void\n ) => Promise<void | Cleanup>,\n injectTo: SliceType<TimerType[], string>,\n timerName?: string\n): PluginWithTimer {\n const timer = createTimer(timerName || nanoid())\n let doneCalled = false\n\n const plugin: MilkdownPlugin = (ctx) => {\n ctx.record(timer)\n ctx.update(injectTo, (x) => x.concat(timer))\n\n return async () => {\n const done = () => {\n ctx.done(timer)\n doneCalled = true\n }\n\n const cleanup = await runner(ctx, <PluginWithTimer>plugin, done)\n\n if (!doneCalled) ctx.done(timer)\n\n return () => {\n ctx.update(injectTo, (x) => x.filter((y) => y !== timer))\n ctx.clearTimer(timer)\n if (cleanup) {\n const result = cleanup()\n if (result && 'then' in result) {\n result.catch(console.error)\n }\n }\n }\n }\n }\n ;(<T & { timer: TimerType }>plugin).timer = timer\n\n return <PluginWithTimer>plugin\n}\n","import type { Cmd, CmdKey } from '@jvs-milkdown/core'\nimport type { Ctx, MilkdownPlugin } from '@jvs-milkdown/ctx'\n\nimport {\n CommandsReady,\n commandsCtx,\n commandsTimerCtx,\n createCmdKey,\n} from '@jvs-milkdown/core'\n\nimport { addTimer } from './utils'\n\n/// @internal\nexport type $Command<T> = MilkdownPlugin & {\n run: (payload?: T) => boolean\n key: CmdKey<T>\n}\n\n/// Create a command plugin. The command will be registered in the `commandsCtx` and can be called by other parts of the editor.\n/// It takes a key and a factory function. The factory function will be called when the plugin is created.\n/// The factory should return a function that will be called when the command is executed.\n/// The function should receive at **most one parameter**, which is the payload of the command.\n/// And the payload should always be **optional**.\n///\n/// ```ts\n/// import { setBlockType } from '@jvs-milkdown/prose/commands'\n///\n/// const commandPlugin = $command('SetAsHeading', (ctx) => {\n/// return (level = 1) => setBlockType(headingSchema.type(), { level });\n/// });\n/// ```\n///\n/// Additional property:\n/// - `key`: The key of the command.\n/// - `run`: The function to run the command.\n///\n/// You can use `callCommand` in `editor.action` to call the command.\n///\n/// ```ts\n/// import { callCommand } from '@jvs-milkdown/utils';\n/// const editor = Editor.make().use(/* some plugins */).use(commandPlugin).create();\n///\n/// editor.action(callCommand(commandPlugin.key, 3));\n/// ```\nexport function $command<T, K extends string>(\n key: K,\n cmd: (ctx: Ctx) => Cmd<T>\n): $Command<T> {\n const cmdKey = createCmdKey<T>(key)\n\n const plugin: MilkdownPlugin = (ctx) => async () => {\n ;(<$Command<T>>plugin).key = cmdKey\n await ctx.wait(CommandsReady)\n const command = cmd(ctx)\n ctx.get(commandsCtx).create(cmdKey, command)\n ;(<$Command<T>>plugin).run = (payload?: T) =>\n ctx.get(commandsCtx).call(key, payload)\n\n return () => {\n ctx.get(commandsCtx).remove(cmdKey)\n }\n }\n\n return <$Command<T>>plugin\n}\n\n/// The async version for `$command`. You can use `await` in the factory when creating the command.\n/// ```ts\n/// const commandPlugin = $commandASync('LoadRemoteDoc', (ctx) => {\n/// return async (url = 'my-remote-api') => {\n/// const doc = await LoadRemoteDoc(url);\n/// return addDoc(doc);\n/// }\n/// });\n/// ```\n///\n/// Additional property:\n/// - `key`: The key of the command.\n/// - `run`: The function to run the command.\n/// - `timer`: The timer which will be resolved when the command is ready.\nexport function $commandAsync<T, K extends string>(\n key: K,\n cmd: (ctx: Ctx) => Promise<Cmd<T>>,\n timerName?: string\n) {\n const cmdKey = createCmdKey<T>(key)\n return addTimer<$Command<T>>(\n async (ctx, plugin) => {\n await ctx.wait(CommandsReady)\n const command = await cmd(ctx)\n ctx.get(commandsCtx).create(cmdKey, command)\n ;(<$Command<T>>plugin).run = (payload?: T) =>\n ctx.get(commandsCtx).call(key, payload)\n ;(<$Command<T>>plugin).key = cmdKey\n return () => {\n ctx.get(commandsCtx).remove(cmdKey)\n }\n },\n commandsTimerCtx,\n timerName\n )\n}\n","import type { Ctx, MilkdownPlugin } from '@jvs-milkdown/ctx'\nimport type { InputRule } from '@jvs-milkdown/prose/inputrules'\n\nimport { SchemaReady, editorStateTimerCtx, inputRulesCtx } from '@jvs-milkdown/core'\n\nimport { addTimer } from './utils'\n\n/// @internal\nexport type $InputRule = MilkdownPlugin & {\n inputRule: InputRule\n}\n\n/// Create an input rule plugin.\n/// It takes a factory function which returns a [prosemirror input rule](https://prosemirror.net/docs/ref/#inputrules.InputRule).\n///\n/// Additional property:\n/// - `inputRule`: The prosemirror input rule created.\nexport function $inputRule(inputRule: (ctx: Ctx) => InputRule): $InputRule {\n const plugin: MilkdownPlugin = (ctx) => async () => {\n await ctx.wait(SchemaReady)\n const ir = inputRule(ctx)\n ctx.update(inputRulesCtx, (irs) => [...irs, ir])\n ;(<$InputRule>plugin).inputRule = ir\n\n return () => {\n ctx.update(inputRulesCtx, (irs) => irs.filter((x) => x !== ir))\n }\n }\n\n return <$InputRule>plugin\n}\n\n/// The async version for `$inputRule`. You can use `await` in the factory when creating the input rule.\n///\n/// Additional property:\n/// - `inputRule`: The prosemirror input rule created.\n/// - `timer`: The timer which will be resolved when the input rule is ready.\nexport function $inputRuleAsync(\n inputRule: (ctx: Ctx) => Promise<InputRule>,\n timerName?: string\n) {\n return addTimer<$InputRule>(\n async (ctx, plugin) => {\n await ctx.wait(SchemaReady)\n const ir = await inputRule(ctx)\n ctx.update(inputRulesCtx, (irs) => [...irs, ir])\n plugin.inputRule = ir\n return () => {\n ctx.update(inputRulesCtx, (irs) => irs.filter((x) => x !== ir))\n }\n },\n editorStateTimerCtx,\n timerName\n )\n}\n","import type { Ctx, MilkdownPlugin } from '@jvs-milkdown/ctx'\n\nimport {\n pasteRulesCtx,\n pasteRulesTimerCtx,\n SchemaReady,\n type PasteRule,\n} from '@jvs-milkdown/core'\n\nimport { addTimer } from './utils'\n\n/// @internal\nexport type $PasteRule = MilkdownPlugin & {\n pasteRule: PasteRule\n}\n\n/// Create a paste rule plugin.\n/// It takes a factory function which returns a paste rule.\n///\n/// Additional property:\n/// - `pasteRule`: The paste rule created.\nexport function $pasteRule(pasteRule: (ctx: Ctx) => PasteRule): $PasteRule {\n const plugin: MilkdownPlugin = (ctx) => async () => {\n await ctx.wait(SchemaReady)\n const pr = pasteRule(ctx)\n ctx.update(pasteRulesCtx, (prs) => [...prs, pr])\n ;(<$PasteRule>plugin).pasteRule = pr\n\n return () => {\n ctx.update(pasteRulesCtx, (prs) => prs.filter((x) => x !== pr))\n }\n }\n\n return <$PasteRule>plugin\n}\n\n/// The async version for `$pasteRule`. You can use `await` in the factory when creating the paste rule.\n///\n/// Additional property:\n/// - `pasteRule`: The paste rule created.\n/// - `timer`: The timer which will be resolved when the paste rule is ready.\nexport function $pasteRuleAsync(\n pasteRule: (ctx: Ctx) => Promise<PasteRule>,\n timerName?: string\n) {\n return addTimer<$PasteRule>(\n async (ctx, plugin) => {\n await ctx.wait(SchemaReady)\n const pr = await pasteRule(ctx)\n ctx.update(pasteRulesCtx, (prs) => [...prs, pr])\n plugin.pasteRule = pr\n return () => {\n ctx.update(pasteRulesCtx, (prs) => prs.filter((x) => x !== pr))\n }\n },\n pasteRulesTimerCtx,\n timerName\n )\n}\n","import type { Ctx, MilkdownPlugin } from '@jvs-milkdown/ctx'\nimport type { MarkType } from '@jvs-milkdown/prose/model'\nimport type { MarkSchema } from '@jvs-milkdown/transformer'\n\nimport { marksCtx, schemaCtx, schemaTimerCtx } from '@jvs-milkdown/core'\nimport { missingMarkInSchema } from '@jvs-milkdown/exception'\n\nimport { addTimer } from './utils'\n\n/// @internal\nexport type $Mark = MilkdownPlugin & {\n id: string\n schema: MarkSchema\n type: (ctx: Ctx) => MarkType\n}\n\n/// Create a mark plugin.\n/// It takes a mark id and a factory function.\n/// The factory should return a function that returns a [mark schema](/transformer#interface-markschema).\n///\n/// Additional property:\n/// - `id`: The id of the mark.\n/// - `schema`: The mark schema created.\n/// - `type`: A function that will return the [prosemirror mark type](https://prosemirror.net/docs/ref/#model.MarkType).\nexport function $mark(id: string, schema: (ctx: Ctx) => MarkSchema): $Mark {\n const plugin: MilkdownPlugin = (ctx) => async () => {\n const markSchema = schema(ctx)\n ctx.update(marksCtx, (ns) => [\n ...ns.filter((n) => n[0] !== id),\n [id, markSchema] as [string, MarkSchema],\n ])\n ;(<$Mark>plugin).id = id\n ;(<$Mark>plugin).schema = markSchema\n\n return () => {\n ctx.update(marksCtx, (ns) => ns.filter(([x]) => x !== id))\n }\n }\n ;(<$Mark>plugin).type = (ctx) => {\n const markType = ctx.get(schemaCtx).marks[id]\n if (!markType) throw missingMarkInSchema(id)\n return markType\n }\n\n return <$Mark>plugin\n}\n\n/// The async version for `$mark`. You can use `await` in the factory when creating the mark schema.\n///\n/// Additional property:\n/// - `id`: The id of the mark.\n/// - `schema`: The mark schema created.\n/// - `type`: A function that will return the [prosemirror mark type](https://prosemirror.net/docs/ref/#model.MarkType).\n/// - `timer`: The timer which will be resolved when the mark schema is ready.\nexport function $markAsync(\n id: string,\n schema: (ctx: Ctx) => Promise<MarkSchema>,\n timerName?: string\n) {\n const plugin = addTimer<$Mark>(\n async (ctx, plugin, done) => {\n const markSchema = await schema(ctx)\n ctx.update(marksCtx, (ns) => [\n ...ns.filter((n) => n[0] !== id),\n [id, markSchema] as [string, MarkSchema],\n ])\n\n plugin.id = id\n plugin.schema = markSchema\n done()\n\n return () => {\n ctx.update(marksCtx, (ns) => ns.filter(([x]) => x !== id))\n }\n },\n schemaTimerCtx,\n timerName\n )\n\n plugin.type = (ctx) => {\n const markType = ctx.get(schemaCtx).marks[id]\n if (!markType) throw missingMarkInSchema(id)\n return markType\n }\n\n return plugin\n}\n","import type { Ctx, MilkdownPlugin } from '@jvs-milkdown/ctx'\nimport type { NodeType } from '@jvs-milkdown/prose/model'\nimport type { NodeSchema } from '@jvs-milkdown/transformer'\n\nimport { nodesCtx, schemaCtx, schemaTimerCtx } from '@jvs-milkdown/core'\nimport { missingNodeInSchema } from '@jvs-milkdown/exception'\n\nimport { addTimer } from './utils'\n\n/// @internal\nexport type $Node = MilkdownPlugin & {\n id: string\n schema: NodeSchema\n type: (ctx: Ctx) => NodeType\n}\n\n/// Create a node plugin.\n/// It takes a node id and a factory function.\n/// The factory should return a function that returns a [node schema](/transformer#interface-nodeschema).\n///\n/// Additional property:\n/// - `id`: The id of the node.\n/// - `schema`: The node schema created.\n/// - `type`: A function that will return the [prosemirror node type](https://prosemirror.net/docs/ref/#model.NodeType).\nexport function $node(id: string, schema: (ctx: Ctx) => NodeSchema): $Node {\n const plugin: MilkdownPlugin = (ctx) => async () => {\n const nodeSchema = schema(ctx)\n ctx.update(nodesCtx, (ns) => [\n ...ns.filter((n) => n[0] !== id),\n [id, nodeSchema] as [string, NodeSchema],\n ])\n ;(<$Node>plugin).id = id\n ;(<$Node>plugin).schema = nodeSchema\n\n return () => {\n ctx.update(nodesCtx, (ns) => ns.filter(([x]) => x !== id))\n }\n }\n\n ;(<$Node>plugin).type = (ctx) => {\n const nodeType = ctx.get(schemaCtx).nodes[id]\n if (!nodeType) throw missingNodeInSchema(id)\n\n return nodeType\n }\n\n return <$Node>plugin\n}\n\n/// The async version for `$node`. You can use `await` in the factory when creating the node schema.\n///\n/// Additional property:\n/// - `id`: The id of the node.\n/// - `schema`: The node schema created.\n/// - `type`: A function that will return the [prosemirror node type](https://prosemirror.net/docs/ref/#model.NodeType).\n/// - `timer`: The timer which will be resolved when the node schema is ready.\nexport function $nodeAsync(\n id: string,\n schema: (ctx: Ctx) => Promise<NodeSchema>,\n timerName?: string\n) {\n const plugin = addTimer<$Node>(\n async (ctx, plugin, done) => {\n const nodeSchema = await schema(ctx)\n ctx.update(nodesCtx, (ns) => [\n ...ns.filter((n) => n[0] !== id),\n [id, nodeSchema] as [string, NodeSchema],\n ])\n\n plugin.id = id\n plugin.schema = nodeSchema\n done()\n\n return () => {\n ctx.update(nodesCtx, (ns) => ns.filter(([x]) => x !== id))\n }\n },\n schemaTimerCtx,\n timerName\n )\n\n plugin.type = (ctx) => {\n const nodeType = ctx.get(schemaCtx).nodes[id]\n if (!nodeType) throw missingNodeInSchema(id)\n\n return nodeType\n }\n\n return plugin\n}\n","import type { Ctx, MilkdownPlugin } from '@jvs-milkdown/ctx'\nimport type { Plugin, PluginKey } from '@jvs-milkdown/prose/state'\n\nimport {\n SchemaReady,\n editorStateTimerCtx,\n prosePluginsCtx,\n} from '@jvs-milkdown/core'\n\nimport { addTimer } from './utils'\n\n/// @internal\nexport type $Prose = MilkdownPlugin & {\n plugin: () => Plugin\n key: () => PluginKey | undefined\n}\n\n/// Create a milkdown wrapper for [prosemirror plugin](https://prosemirror.net/docs/ref/#state.Plugin).\n/// It takes a factory function which returns a [prosemirror plugin](https://prosemirror.net/docs/ref/#state.Plugin).\n///\n/// Additional property:\n/// - `plugin`: The prosemirror plugin created.\n/// - `key`: The [prosemirror plugin key](https://prosemirror.net/docs/ref/#state.PluginKey) of the plugin.\nexport function $prose(prose: (ctx: Ctx) => Plugin): $Prose {\n let prosePlugin: Plugin | undefined\n const plugin: MilkdownPlugin = (ctx) => async () => {\n await ctx.wait(SchemaReady)\n prosePlugin = prose(ctx)\n ctx.update(prosePluginsCtx, (ps) => [...ps, prosePlugin!])\n\n return () => {\n ctx.update(prosePluginsCtx, (ps) => ps.filter((x) => x !== prosePlugin))\n }\n }\n ;(<$Prose>plugin).plugin = () => prosePlugin!\n ;(<$Prose>plugin).key = () => prosePlugin!.spec.key\n\n return <$Prose>plugin\n}\n\n/// The async version for `$prose`. You can use `await` in the factory when creating the plugin.\n///\n/// Additional property:\n/// - `plugin`: The prosemirror plugin created.\n/// - `key`: The [prosemirror plugin key](https://prosemirror.net/docs/ref/#state.PluginKey) of the plugin.\n/// - `timer`: The timer which will be resolved when the plugin is ready.\nexport function $proseAsync(\n prose: (ctx: Ctx) => Promise<Plugin>,\n timerName?: string\n) {\n let prosePlugin: Plugin | undefined\n const plugin = addTimer<$Prose>(\n async (ctx) => {\n await ctx.wait(SchemaReady)\n prosePlugin = await prose(ctx)\n ctx.update(prosePluginsCtx, (ps) => [...ps, prosePlugin!])\n\n return () => {\n ctx.update(prosePluginsCtx, (ps) => ps.filter((x) => x !== prosePlugin))\n }\n },\n editorStateTimerCtx,\n timerName\n )\n\n plugin.plugin = () => prosePlugin!\n plugin.key = () => prosePlugin!.spec.key\n\n return plugin\n}\n","import type { Ctx, MilkdownPlugin } from '@jvs-milkdown/ctx'\nimport type { Command } from '@jvs-milkdown/prose/state'\n\nimport {\n KeymapReady,\n editorStateTimerCtx,\n keymapCtx,\n type KeymapItem,\n} from '@jvs-milkdown/core'\n\nimport { addTimer } from './utils'\n\n/// @internal\nexport type Keymap = Record<string, Command | KeymapItem>\n\n/// @internal\nexport type $Shortcut = MilkdownPlugin & {\n keymap: Keymap\n}\n\n/// Create a shortcut for the editor.\n/// It takes a factory function which returns a [prosemirror keymap](https://prosemirror.net/docs/ref/#keymap).\n///\n/// Additional property:\n/// - `keymap`: The prosemirror keymap created.\nexport function $shortcut(shortcut: (ctx: Ctx) => Keymap): $Shortcut {\n const plugin: MilkdownPlugin = (ctx) => async () => {\n await ctx.wait(KeymapReady)\n const km = ctx.get(keymapCtx)\n const keymap = shortcut(ctx)\n const dispose = km.addObjectKeymap(keymap)\n ;(<$Shortcut>plugin).keymap = keymap\n\n return () => {\n dispose()\n }\n }\n\n return <$Shortcut>plugin\n}\n\n/// The async version for `$shortcut`. You can use `await` in the factory when creating the keymap.\n///\n/// Additional property:\n/// - `keymap`: The prosemirror keymap created.\n/// - `timer`: The timer which will be resolved when the plugin is ready.\nexport function $shortcutAsync(\n shortcut: (ctx: Ctx) => Promise<Keymap>,\n timerName?: string\n) {\n return addTimer<$Shortcut>(\n async (ctx, plugin) => {\n await ctx.wait(KeymapReady)\n const km = ctx.get(keymapCtx)\n const keymap = await shortcut(ctx)\n const dispose = km.addObjectKeymap(keymap)\n plugin.keymap = keymap\n\n return () => {\n dispose()\n }\n },\n editorStateTimerCtx,\n timerName\n )\n}\n","import type { Ctx, MilkdownPlugin } from '@jvs-milkdown/ctx'\nimport type {\n MarkViewConstructor,\n NodeViewConstructor,\n} from '@jvs-milkdown/prose/view'\n\nimport {\n SchemaReady,\n editorViewTimerCtx,\n markViewCtx,\n nodeViewCtx,\n} from '@jvs-milkdown/core'\nimport { NodeType } from '@jvs-milkdown/prose/model'\n\nimport type { $Mark, $Node } from '.'\n\nimport { addTimer } from './utils'\n\n/// @internal\nexport type $View<\n T extends $Node | $Mark,\n V extends NodeViewConstructor | MarkViewConstructor,\n> = MilkdownPlugin & {\n view: V\n type: T\n}\n\n/// @internal\nexport type GetConstructor<T extends $Node | $Mark> = T extends $Node\n ? NodeViewConstructor\n : T extends $Mark\n ? MarkViewConstructor\n : NodeViewConstructor | MarkViewConstructor\n\n/// Create a [prosemirror node/mark view](https://prosemirror.net/docs/ref/#view.NodeView) plugin.\n/// It takes two arguments\n/// - `type`: The node/mark plugin that needs to add a view.\n/// - `view`: The factory that creates the view. It should return a function that returns a [node/mark view constructor](https://prosemirror.net/docs/ref/#view.NodeView).\n///\n/// Additional property:\n/// - `view`: The view created.\n/// - `type`: The node/mark plugin that needs to add a view.\nexport function $view<\n T extends $Node | $Mark,\n V extends NodeViewConstructor | MarkViewConstructor = GetConstructor<T>,\n>(type: T, view: (ctx: Ctx) => V): $View<T, V> {\n const plugin: MilkdownPlugin = (ctx) => async () => {\n await ctx.wait(SchemaReady)\n const v = view(ctx)\n if (type.type(ctx) instanceof NodeType)\n ctx.update(nodeViewCtx, (ps) => [\n ...ps,\n [type.id, v] as [string, NodeViewConstructor],\n ])\n else\n ctx.update(markViewCtx, (ps) => [\n ...ps,\n [type.id, v] as [string, MarkViewConstructor],\n ])\n ;(<$View<T, V>>plugin).view = v\n ;(<$View<T, V>>plugin).type = type\n\n return () => {\n if (type.type(ctx) instanceof NodeType)\n ctx.update(nodeViewCtx, (ps) => ps.filter((x) => x[0] !== type.id))\n else ctx.update(markViewCtx, (ps) => ps.filter((x) => x[0] !== type.id))\n }\n }\n\n return <$View<T, V>>plugin\n}\n\n/// The async version for `$view`. You can use `await` in the factory when creating the view.\n///\n/// Additional property:\n/// - `view`: The view created.\n/// - `type`: The node/mark plugin that needs to add a view.\n/// - `timer`: The timer which will be resolved when the view is ready.\nexport function $viewAsync<\n T extends $Node | $Mark,\n V extends NodeViewConstructor | MarkViewConstructor = GetConstructor<T>,\n>(type: T, view: (ctx: Ctx) => Promise<V>, timerName?: string) {\n return addTimer<$View<T, V>>(\n async (ctx, plugin) => {\n await ctx.wait(SchemaReady)\n const v = await view(ctx)\n if (type.type(ctx) instanceof NodeType)\n ctx.update(nodeViewCtx, (ps) => [\n ...ps,\n [type.id, v] as [string, NodeViewConstructor],\n ])\n else\n ctx.update(markViewCtx, (ps) => [\n ...ps,\n [type.id, v] as [string, MarkViewConstructor],\n ])\n\n plugin.view = v\n plugin.type = type\n\n return () => {\n if (type.type(ctx) instanceof NodeType)\n ctx.update(nodeViewCtx, (ps) => ps.filter((x) => x[0] !== type.id))\n else ctx.update(markViewCtx, (ps) => ps.filter((x) => x[0] !== type.id))\n }\n },\n editorViewTimerCtx,\n timerName\n )\n}\n","import type { MilkdownPlugin, SliceType } from '@jvs-milkdown/ctx'\n\nimport { createSlice } from '@jvs-milkdown/ctx'\n\n/// @internal\nexport type $Ctx<T, N extends string> = MilkdownPlugin & {\n key: SliceType<T, N>\n}\n\n/// Create a slice plugin. The plugin will be registered in the `ctx` and can be accessed by other parts of the editor.\n/// ```ts\n/// const counterCtx = $ctx(0, 'counter');\n/// ```\n///\n/// Additional property:\n/// - `key`: The key of the slice.\nexport function $ctx<T, N extends string>(value: T, name: N): $Ctx<T, N> {\n const slice = createSlice(value, name)\n const plugin: $Ctx<T, N> = (ctx) => {\n ctx.inject(slice)\n return () => {\n return () => {\n ctx.remove(slice)\n }\n }\n }\n\n plugin.key = slice\n\n return plugin\n}\n","import type { Ctx } from '@jvs-milkdown/ctx'\nimport type { NodeSchema } from '@jvs-milkdown/transformer'\n\nimport type { $Ctx } from '../$ctx'\nimport type { $Node } from '../$node'\n\nimport { $ctx } from '../$ctx'\nimport { $node } from '../$node'\n\n/// @internal\nexport type GetNodeSchema = (ctx: Ctx) => NodeSchema\n\n/// @internal\nexport type $NodeSchema<T extends string> = [\n schemaCtx: $Ctx<GetNodeSchema, T>,\n schema: $Node,\n] & {\n id: $Node['id']\n type: $Node['type']\n node: $Node\n ctx: $Ctx<GetNodeSchema, T>\n key: $Ctx<GetNodeSchema, T>['key']\n extendSchema: (\n handler: (prev: GetNodeSchema) => GetNodeSchema\n ) => $NodeSchema<T>\n}\n\n/// Create a plugin for node schema.\n/// The first parameter is the id of the node schema.\n/// The second parameter is the function that returns the node schema.\n///\n/// The function will return a plugin with additional properties:\n/// - `id`: The id of the node schema.\n/// - `type`: A function witch will return the type of the node schema.\n/// - `ctx`: The context of the node schema.\n/// - `node`: The node schema plugin.\n/// - `schema`: The node schema.\n/// - `key`: The key of slice which contains the node schema factory.\n/// - `extendSchema`: A function witch will return a plugin that can extend the node schema.\nexport function $nodeSchema<T extends string>(\n id: T,\n schema: GetNodeSchema\n): $NodeSchema<T> {\n const schemaCtx = $ctx(schema, id)\n\n const nodeSchema = $node(id, (ctx) => {\n const userSchema = ctx.get(schemaCtx.key)\n return userSchema(ctx)\n })\n\n const result = [schemaCtx, nodeSchema] as $NodeSchema<T>\n result.id = nodeSchema.id\n result.node = nodeSchema\n\n result.type = (ctx: Ctx) => nodeSchema.type(ctx)\n result.ctx = schemaCtx\n result.key = schemaCtx.key\n result.extendSchema = (handler) => {\n const nextSchema = handler(schema)\n\n return $nodeSchema(id, nextSchema)\n }\n\n return result\n}\n","import type { Ctx } from '@jvs-milkdown/ctx'\nimport type { MarkSchema } from '@jvs-milkdown/transformer'\n\nimport type { $Ctx } from '../$ctx'\nimport type { $Mark } from '../$mark'\n\nimport { $ctx } from '../$ctx'\nimport { $mark } from '../$mark'\n\n/// @internal\nexport type GetMarkSchema = (ctx: Ctx) => MarkSchema\n\n/// @internal\nexport type $MarkSchema<T extends string> = [\n schemaCtx: $Ctx<GetMarkSchema, T>,\n schema: $Mark,\n] & {\n id: $Mark['id']\n type: $Mark['type']\n mark: $Mark\n ctx: $Ctx<GetMarkSchema, T>\n key: $Ctx<GetMarkSchema, T>['key']\n extendSchema: (\n handler: (prev: GetMarkSchema) => GetMarkSchema\n ) => $MarkSchema<T>\n}\n\n/// Create a plugin for mark schema.\n/// The first parameter is the id of the mark schema.\n/// The second parameter is the function that returns the mark schema.\n///\n/// The function will return a plugin with additional properties:\n/// - `id`: The id of the mark schema.\n/// - `type`: A function witch will return the type of the mark schema.\n/// - `ctx`: The context of the mark schema.\n/// - `mark`: The mark schema plugin.\n/// - `schema`: The mark schema.\n/// - `key`: The key of slice which contains the mark schema factory.\n/// - `extendSchema`: A function witch will return a plugin that can extend the mark schema.\nexport function $markSchema<T extends string>(\n id: T,\n schema: GetMarkSchema\n): $MarkSchema<T> {\n const schemaCtx = $ctx(schema, id)\n\n const markSchema = $mark(id, (ctx) => {\n const userSchema = ctx.get(schemaCtx.key)\n return userSchema(ctx)\n })\n\n const result = [schemaCtx, markSchema] as $MarkSchema<T>\n result.id = markSchema.id\n result.mark = markSchema\n\n result.type = (ctx: Ctx) => markSchema.type(ctx)\n result.ctx = schemaCtx\n result.key = schemaCtx.key\n result.extendSchema = (handler) => {\n const nextSchema = handler(schema)\n\n return $markSchema(id, nextSchema)\n }\n\n return result\n}\n","import type { Ctx, SliceType } from '@jvs-milkdown/ctx'\nimport type { Command } from '@jvs-milkdown/prose/state'\n\nimport type { $Ctx } from '../$ctx'\nimport type { $Shortcut, Keymap } from '../$shortcut'\n\nimport { $ctx } from '../$ctx'\nimport { $shortcut } from '../$shortcut'\n\n/// @internal\nexport type KeymapConfig<K extends string> = Record<\n K,\n {\n shortcuts: string | string[]\n priority?: number\n }\n>\n\n/// @internal\nexport interface KeymapItem {\n shortcuts: string | string[]\n priority?: number\n command: (ctx: Ctx) => Command\n}\n\n/// @internal\nexport type UserKeymapConfig<Key extends string> = Record<Key, KeymapItem>\n\n/// @internal\nexport type $UserKeymap<N extends string, Key extends string> = [\n $Ctx<KeymapConfig<Key>, `${N}Keymap`>,\n $Shortcut,\n] & {\n key: SliceType<KeymapConfig<Key>, `${N}Keymap`>\n keymap: Keymap\n ctx: $Ctx<KeymapConfig<Key>, `${N}Keymap`>\n shortcuts: $Shortcut\n}\n\n/// Create a keymap which can be customized by user.\n/// It takes two arguments:\n/// - `name`: The name of the keymap.\n/// - `userKeymap`: The keymap config which contains the shortcuts and the command.\nexport function $useKeymap<N extends string, Key extends string>(\n name: N,\n userKeymap: UserKeymapConfig<Key>\n) {\n const key = Object.fromEntries(\n Object.entries<KeymapItem>(userKeymap).map(\n ([key, { shortcuts, priority }]) => {\n return [key, { shortcuts, priority }]\n }\n )\n ) as KeymapConfig<Key>\n\n const keymapDef = $ctx<KeymapConfig<Key>, `${N}Keymap`>(key, `${name}Keymap`)\n\n const shortcuts = $shortcut((ctx) => {\n const keys = ctx.get(keymapDef.key)\n\n const keymapTuple = Object.entries<KeymapItem>(userKeymap).flatMap(\n ([key, { command }]) => {\n const target = keys[key as Key]\n const targetKeys = [target.shortcuts].flat()\n const priority = target.priority\n\n return targetKeys.map(\n (targetKey) =>\n [\n targetKey,\n {\n key: targetKey,\n onRun: command,\n priority,\n },\n ] as const\n )\n }\n )\n\n return Object.fromEntries(keymapTuple)\n })\n\n const result = [keymapDef, shortcuts] as $UserKeymap<N, Key>\n result.ctx = keymapDef\n result.shortcuts = shortcuts\n result.key = keymapDef.key\n result.keymap = shortcuts.keymap\n\n return result\n}\n","import type { Mark, Node } from '@jvs-milkdown/prose/model'\n\nimport type { $Ctx } from '../$ctx'\n\nimport { $ctx } from '../$ctx'\n\n/// @internal\nexport type $NodeAttr = $Ctx<\n (node: Node) => Record<string, any>,\n `${string}Attr`\n>\n\n/// Create a slice which contains the attributes for node schema.\nexport const $nodeAttr = (\n name: string,\n value: (node: Node) => Record<string, any> = () => ({})\n): $NodeAttr => $ctx(value, `${name}Attr`)\n\n/// @internal\nexport type $MarkAttr = $Ctx<\n (node: Mark) => Record<string, any>,\n `${string}Attr`\n>\n\n/// Create a slice which contains the attributes for mark schema.\nexport const $markAttr = (\n name: string,\n value: (mark: Mark) => Record<string, any> = () => ({})\n): $MarkAttr => $ctx(value, `${name}Attr`)\n","import type { Ctx, MilkdownPlugin } from '@jvs-milkdown/ctx'\nimport type { RemarkPlugin, RemarkPluginRaw } from '@jvs-milkdown/transformer'\n\nimport { InitReady, remarkPluginsCtx } from '@jvs-milkdown/core'\n\nimport type { $Ctx } from '../$ctx'\n\nimport { $ctx } from '../$ctx'\n\n/// @internal\nexport type $Remark<Id extends string, Options> = [\n optionsCtx: $Ctx<Options, Id>,\n plugin: MilkdownPlugin,\n] & {\n id: Id\n plugin: MilkdownPlugin\n options: $Ctx<Options, Id>\n}\n\n/// Create a milkdown wrapper for [remark plugin](https://github.com/remarkjs/remark/blob/main/doc/plugins.md).\n/// It takes a factory function which returns a [remark plugin](https://github.com/remarkjs/remark/blob/main/doc/plugins.md).\n///\n/// Additional property:\n/// - `id`: The id of the remark plugin.\n/// - `plugin`: The remark plugin created.\n/// - `options`: The ctx contains the options of the remark plugin.\nexport function $remark<Id extends string, Options>(\n id: Id,\n remark: (ctx: Ctx) => RemarkPluginRaw<Options>,\n initialOptions?: Options\n): $Remark<Id, Options> {\n const options = $ctx<Options, Id>(initialOptions ?? ({} as Options), id)\n const plugin: MilkdownPlugin = (ctx) => async () => {\n await ctx.wait(InitReady)\n const re = remark(ctx)\n const remarkPlugin: RemarkPlugin<Options> = {\n plugin: re,\n options: ctx.get(options.key),\n }\n ctx.update(remarkPluginsCtx, (rp) => [...rp, remarkPlugin as RemarkPlugin])\n\n return () => {\n ctx.update(remarkPluginsCtx, (rp) => rp.filter((x) => x !== remarkPlugin))\n }\n }\n\n const result = [options, plugin] as $Remark<Id, Options>\n result.id = id\n result.plugin = plugin\n result.options = options\n\n return result\n}\n","import type { CmdKey } from '@jvs-milkdown/core'\nimport type { Ctx } from '@jvs-milkdown/ctx'\n\nimport { commandsCtx } from '@jvs-milkdown/core'\n\ntype InferParams<T> = T extends CmdKey<infer U> ? U : never\n\n/// Call a command. You can pass the command key and the payload to the macro.\nexport function callCommand<T extends CmdKey<any>>(\n slice: string,\n payload?: InferParams<T>\n): (ctx: Ctx) => boolean\nexport function callCommand<T>(\n slice: CmdKey<T>,\n payload?: T\n): (ctx: Ctx) => boolean\nexport function callCommand(\n slice: string | CmdKey<any>,\n payload?: any\n): (ctx: Ctx) => boolean\nexport function callCommand(\n slice: string | CmdKey<any>,\n payload?: any\n): (ctx: Ctx) => boolean {\n return (ctx: Ctx) => {\n return ctx.get(commandsCtx).call(slice, payload)\n }\n}\n","import type { Ctx } from '@jvs-milkdown/ctx'\n\nimport { editorViewCtx } from '@jvs-milkdown/core'\n\n/// Force update the editor.\nexport function forceUpdate() {\n return (ctx: Ctx): void => {\n const view = ctx.get(editorViewCtx)\n const { tr } = view.state\n\n const nextTr = Object.assign(Object.create(tr), tr).setTime(Date.now())\n return view.dispatch(nextTr)\n }\n}\n","import type { Ctx } from '@jvs-milkdown/ctx'\n\nimport { editorViewCtx, schemaCtx } from '@jvs-milkdown/core'\nimport { DOMSerializer } from '@jvs-milkdown/prose/model'\n\n/// Get content of the editor as HTML string.\nexport function getHTML() {\n return (ctx: Ctx): string => {\n const div = document.createElement('div')\n const schema = ctx.get(schemaCtx)\n const view = ctx.get(editorViewCtx)\n const fragment = DOMSerializer.fromSchema(schema).serializeFragment(\n view.state.doc.content\n )\n\n div.appendChild(fragment)\n\n return div.innerHTML\n }\n}\n","import type { Ctx } from '@jvs-milkdown/ctx'\n\nimport { editorViewCtx, schemaCtx, serializerCtx } from '@jvs-milkdown/core'\n\n/// Get content of the editor as markdown string.\n/// If range is provided, it will return the markdown string of the range.\n/// If range is not provided, it will return the markdown string of the whole document.\nexport function getMarkdown(range?: { from: number; to: number }) {\n return (ctx: Ctx): string => {\n const view = ctx.get(editorViewCtx)\n const schema = ctx.get(schemaCtx)\n const serializer = ctx.get(serializerCtx)\n\n if (!range) {\n return serializer(view.state.doc)\n }\n\n const state = view.state\n const slice = state.doc.slice(range.from, range.to, true)\n const doc = schema.topNodeType.createAndFill(null, slice.content)\n if (!doc) {\n console.error('No document found')\n return ''\n }\n return serializer(doc)\n }\n}\n","import type { Ctx } from '@jvs-milkdown/ctx'\n\nimport { editorViewCtx, parserCtx, schemaCtx } from '@jvs-milkdown/core'\nimport { isTextOnlySlice } from '@jvs-milkdown/prose'\nimport { DOMParser, DOMSerializer, Slice } from '@jvs-milkdown/prose/model'\n\n/// Insert markdown string into the editor.\nexport function insert(markdown: string, inline: boolean = false) {\n return (ctx: Ctx) => {\n const view = ctx.get(editorViewCtx)\n const parser = ctx.get(parserCtx)\n const doc = parser(markdown)\n if (!doc) return\n\n if (!inline) {\n const contentSlice = view.state.selection.content()\n return view.dispatch(\n view.state.tr\n .replaceSelection(\n new Slice(doc.content, contentSlice.openStart, contentSlice.openEnd)\n )\n .scrollIntoView()\n )\n }\n\n const schema = ctx.get(schemaCtx)\n const dom = DOMSerializer.fromSchema(schema).serializeFragment(doc.content)\n const domParser = DOMParser.fromSchema(schema)\n const slice = domParser.parseSlice(dom)\n const node = isTextOnlySlice(slice)\n if (node) {\n view.dispatch(view.state.tr.replaceSelectionWith(node, true))\n return\n }\n\n view.dispatch(view.state.tr.replaceSelection(slice))\n }\n}\n","import type { Ctx } from '@jvs-milkdown/ctx'\n\nimport { editorViewCtx } from '@jvs-milkdown/core'\n\n/// Get outline of the editor.\nexport function outline() {\n return (ctx: Ctx): Array<{ text: string; level: number; id: string }> => {\n const view = ctx.get(editorViewCtx)\n const data: { text: string; level: number; id: string }[] = []\n const doc = view.state.doc\n doc.descendants((node) => {\n if (node.type.name === 'heading' && node.attrs.level)\n data.push({\n text: node.textContent,\n level: node.attrs.level,\n id: node.attrs.id,\n })\n })\n return data\n }\n}\n","import type { Ctx } from '@jvs-milkdown/ctx'\n\nimport {\n editorStateOptionsCtx,\n editorViewCtx,\n parserCtx,\n prosePluginsCtx,\n schemaCtx,\n} from '@jvs-milkdown/core'\nimport { Slice } from '@jvs-milkdown/prose/model'\nimport { EditorState } from '@jvs-milkdown/prose/state'\n\n/// Replace all content of the editor with markdown string.\n/// If flush is true, the editor state will be re-created.\nexport function replaceAll(markdown: string, flush = false) {\n return (ctx: Ctx): void => {\n const view = ctx.get(editorViewCtx)\n const parser = ctx.get(parserCtx)\n const doc = parser(markdown)\n if (!doc) return\n\n if (!flush) {\n const { state } = view\n return view.dispatch(\n state.tr.replace(\n 0,\n state.doc.content.size,\n new Slice(doc.content, 0, 0)\n )\n )\n }\n\n const schema = ctx.get(schemaCtx)\n const overrideOptions = ctx.get(editorStateOptionsCtx)\n const plugins = ctx.get(prosePluginsCtx)\n const newOptions = overrideOptions({\n schema,\n doc,\n plugins,\n })\n\n const state = EditorState.create(newOptions)\n\n view.updateState(state)\n }\n}\n","import type { Ctx } from '@jvs-milkdown/ctx'\nimport type { Attrs } from '@jvs-milkdown/prose/model'\n\nimport { editorViewCtx } from '@jvs-milkdown/core'\n\n/// Set the attributes of the node at the given position.\nexport function setAttr(pos: number, update: (prevAttrs: Attrs) => Attrs) {\n return (ctx: Ctx) => {\n const view = ctx.get(editorViewCtx)\n const { tr } = view.state\n const node = tr.doc.nodeAt(pos)\n if (!node) return\n const nextAttr = update(node.attrs)\n return view.dispatch(tr.setNodeMarkup(pos, undefined, nextAttr))\n }\n}\n","import type { Ctx } from '@jvs-milkdown/ctx'\n\nimport { parserCtx, schemaCtx } from '@jvs-milkdown/core'\nimport { DOMSerializer, DOMParser } from '@jvs-milkdown/prose/model'\n\n/// Convert markdown string to slice.\nexport function markdownToSlice(markdown: string) {\n return (ctx: Ctx) => {\n const parser = ctx.get(parserCtx)\n const doc = parser(markdown)\n const schema = ctx.get(schemaCtx)\n const dom = DOMSerializer.fromSchema(schema).serializeFragment(doc.content)\n const domParser = DOMParser.fromSchema(schema)\n const slice = domParser.parseSlice(dom)\n\n return slice\n }\n}\n","import type { Ctx } from '@jvs-milkdown/ctx'\n\nimport { editorViewCtx } from '@jvs-milkdown/core'\n\nimport { markdownToSlice } from './markdown-to-slice'\n\n/// Insert markdown string to the given position.\n/// If inline is true, the markdown will be inserted as inline text.\n/// If inline is false, the markdown will be inserted as block text.\nexport function insertPos(\n markdown: string,\n pos: number,\n inline: boolean = false\n) {\n return (ctx: Ctx) => {\n const slice = markdownToSlice(markdown)(ctx)\n const view = ctx.get(editorViewCtx)\n const toPos = view.state.doc.resolve(pos)\n\n const min = 0\n const max = view.state.doc.content.size\n const resolved = inline ? toPos.pos : toPos.after(toPos.depth - 1)\n const to = Math.min(Math.max(resolved, min), max)\n\n view.dispatch(view.state.tr.replace(resolved, to, slice))\n }\n}\n","import type { Ctx } from '@jvs-milkdown/ctx'\n\nimport { editorViewCtx } from '@jvs-milkdown/core'\n\nimport { markdownToSlice } from './markdown-to-slice'\n\n/// Replace the content of the given range with the markdown string.\nexport function replaceRange(\n markdown: string,\n range: { from: number; to: number }\n) {\n return (ctx: Ctx) => {\n const view = ctx.get(editorViewCtx)\n const slice = markdownToSlice(markdown)(ctx)\n\n view.dispatch(view.state.tr.replace(range.from, range.to, slice))\n }\n}\n","/// @internal\nexport type Many<T> = T | ReadonlyArray<T>\n\ninterface Pipe {\n pipe: (<A extends any[], R1, R2, R3, R4, R5, R6, R7>(\n f1: (...args: A) => R1,\n f2: (a: R1) => R2,\n f3: (a: R2) => R3,\n f4: (a: R3) => R4,\n f5: (a: R4) => R5,\n f6: (a: R5) => R6,\n f7: (a: R6) => R7\n ) => (...args: A) => R7) &\n (<A extends any[], R1, R2, R3, R4, R5, R6, R7>(\n f1: (...args: A) => R1,\n f2: (a: R1) => R2,\n f3: (a: R2) => R3,\n f4: (a: R3) => R4,\n f5: (a: R4) => R5,\n f6: (a: R5) => R6,\n f7: (a: R6) => R7,\n ...func: Array<Many<(a: any) => any>>\n ) => (...args: A) => any) &\n (<A extends any[], R1, R2, R3, R4, R5, R6>(\n f1: (...args: A) => R1,\n f2: (a: R1) => R2,\n f3: (a: R2) => R3,\n f4: (a: R3) => R4,\n f5: (a: R4) => R5,\n f6: (a: R5) => R6\n ) => (...args: A) => R6) &\n (<A extends any[], R1, R2, R3, R4, R5>(\n f1: (...args: A) => R1,\n f2: (a: R1) => R2,\n f3: (a: R2) => R3,\n f4: (a: R3) => R4,\n f5: (a: R4) => R5\n ) => (...args: A) => R5) &\n (<A extends any[], R1, R2, R3, R4>(\n f1: (...args: A) => R1,\n f2: (a: R1) => R2,\n f3: (a: R2) => R3,\n f4: (a: R3) => R4\n ) => (...args: A) => R4) &\n (<A extends any[], R1, R2, R3>(\n f1: (...args: A) => R1,\n f2: (a: R1) => R2,\n f3: (a: R2) => R3\n ) => (...args: A) => R3) &\n (<A extends any[], R1, R2>(\n f1: (...args: A) => R1,\n f2: (a: R1) => R2\n ) => (...args: A) => R2) &\n ((...func: Array<Many<(...args: any[]) => any>>) => (...args: any[]) => any)\n}\n\n/// @internal\nexport const pipe: Pipe['pipe'] = (...funcs: any[]) => {\n const length = funcs.length\n let index = length\n while (index--) {\n if (typeof funcs[index] !== 'function')\n throw new TypeError('Expected a function')\n }\n return (...args: any[]) => {\n let index = 0\n let result = length ? funcs[index](...args) : args[0]\n while (++index < length) result = funcs[index](result)\n\n return result\n }\n}\n"],"mappings":"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"}
1
+ {"version":3,"file":"index.js","names":[],"sources":["../src/composable/utils.ts","../src/composable/$command.ts","../src/composable/$input-rule.ts","../src/composable/$paste-rule.ts","../src/composable/$mark.ts","../src/composable/$node.ts","../src/composable/$prose.ts","../src/composable/$shortcut.ts","../src/composable/$view.ts","../src/composable/$ctx.ts","../src/composable/composed/$node-schema.ts","../src/composable/composed/$mark-schema.ts","../src/composable/composed/$use-keymap.ts","../src/composable/composed/$attr.ts","../src/composable/composed/$remark.ts","../src/macro/call-command.ts","../src/macro/force-update.ts","../src/macro/get-html.ts","../src/macro/get-markdown.ts","../src/macro/insert.ts","../src/macro/outline.ts","../src/macro/replace-all.ts","../src/macro/set-attr.ts","../src/macro/markdown-to-slice.ts","../src/macro/insert-pos.ts","../src/macro/replace-range.ts","../src/pipe.ts"],"sourcesContent":["import type {\n Cleanup,\n Ctx,\n MilkdownPlugin,\n SliceType,\n TimerType,\n} from '@jvs-milkdown/ctx'\n\nimport { createTimer } from '@jvs-milkdown/ctx'\nimport { customAlphabet } from 'nanoid'\n\n/// @internal\nexport const nanoid = customAlphabet('abcedfghicklmn', 10)\n\n/// @internal\nexport type WithTimer<T> = T & { timer: TimerType }\n\n/// @internal\nexport function addTimer<\n T extends MilkdownPlugin,\n PluginWithTimer extends T = WithTimer<T>,\n>(\n runner: (\n ctx: Ctx,\n plugin: PluginWithTimer,\n done: () => void\n ) => Promise<void | Cleanup>,\n injectTo: SliceType<TimerType[], string>,\n timerName?: string\n): PluginWithTimer {\n const timer = createTimer(timerName || nanoid())\n let doneCalled = false\n\n const plugin: MilkdownPlugin = (ctx) => {\n ctx.record(timer)\n ctx.update(injectTo, (x) => x.concat(timer))\n\n return async () => {\n const done = () => {\n ctx.done(timer)\n doneCalled = true\n }\n\n const cleanup = await runner(ctx, <PluginWithTimer>plugin, done)\n\n if (!doneCalled) ctx.done(timer)\n\n return () => {\n ctx.update(injectTo, (x) => x.filter((y) => y !== timer))\n ctx.clearTimer(timer)\n if (cleanup) {\n const result = cleanup()\n if (result && 'then' in result) {\n result.catch(console.error)\n }\n }\n }\n }\n }\n ;(<T & { timer: TimerType }>plugin).timer = timer\n\n return <PluginWithTimer>plugin\n}\n","import type { Cmd, CmdKey } from '@jvs-milkdown/core'\nimport type { Ctx, MilkdownPlugin } from '@jvs-milkdown/ctx'\n\nimport {\n CommandsReady,\n commandsCtx,\n commandsTimerCtx,\n createCmdKey,\n} from '@jvs-milkdown/core'\n\nimport { addTimer } from './utils'\n\n/// @internal\nexport type $Command<T> = MilkdownPlugin & {\n run: (payload?: T) => boolean\n key: CmdKey<T>\n}\n\n/// Create a command plugin. The command will be registered in the `commandsCtx` and can be called by other parts of the editor.\n/// It takes a key and a factory function. The factory function will be called when the plugin is created.\n/// The factory should return a function that will be called when the command is executed.\n/// The function should receive at **most one parameter**, which is the payload of the command.\n/// And the payload should always be **optional**.\n///\n/// ```ts\n/// import { setBlockType } from '@jvs-milkdown/prose/commands'\n///\n/// const commandPlugin = $command('SetAsHeading', (ctx) => {\n/// return (level = 1) => setBlockType(headingSchema.type(), { level });\n/// });\n/// ```\n///\n/// Additional property:\n/// - `key`: The key of the command.\n/// - `run`: The function to run the command.\n///\n/// You can use `callCommand` in `editor.action` to call the command.\n///\n/// ```ts\n/// import { callCommand } from '@jvs-milkdown/utils';\n/// const editor = Editor.make().use(/* some plugins */).use(commandPlugin).create();\n///\n/// editor.action(callCommand(commandPlugin.key, 3));\n/// ```\nexport function $command<T, K extends string>(\n key: K,\n cmd: (ctx: Ctx) => Cmd<T>\n): $Command<T> {\n const cmdKey = createCmdKey<T>(key)\n\n const plugin: MilkdownPlugin = (ctx) => async () => {\n ;(<$Command<T>>plugin).key = cmdKey\n await ctx.wait(CommandsReady)\n const command = cmd(ctx)\n ctx.get(commandsCtx).create(cmdKey, command)\n ;(<$Command<T>>plugin).run = (payload?: T) =>\n ctx.get(commandsCtx).call(key, payload)\n\n return () => {\n ctx.get(commandsCtx).remove(cmdKey)\n }\n }\n\n return <$Command<T>>plugin\n}\n\n/// The async version for `$command`. You can use `await` in the factory when creating the command.\n/// ```ts\n/// const commandPlugin = $commandASync('LoadRemoteDoc', (ctx) => {\n/// return async (url = 'my-remote-api') => {\n/// const doc = await LoadRemoteDoc(url);\n/// return addDoc(doc);\n/// }\n/// });\n/// ```\n///\n/// Additional property:\n/// - `key`: The key of the command.\n/// - `run`: The function to run the command.\n/// - `timer`: The timer which will be resolved when the command is ready.\nexport function $commandAsync<T, K extends string>(\n key: K,\n cmd: (ctx: Ctx) => Promise<Cmd<T>>,\n timerName?: string\n) {\n const cmdKey = createCmdKey<T>(key)\n return addTimer<$Command<T>>(\n async (ctx, plugin) => {\n await ctx.wait(CommandsReady)\n const command = await cmd(ctx)\n ctx.get(commandsCtx).create(cmdKey, command)\n ;(<$Command<T>>plugin).run = (payload?: T) =>\n ctx.get(commandsCtx).call(key, payload)\n ;(<$Command<T>>plugin).key = cmdKey\n return () => {\n ctx.get(commandsCtx).remove(cmdKey)\n }\n },\n commandsTimerCtx,\n timerName\n )\n}\n","import type { Ctx, MilkdownPlugin } from '@jvs-milkdown/ctx'\nimport type { InputRule } from '@jvs-milkdown/prose/inputrules'\n\nimport {\n SchemaReady,\n editorStateTimerCtx,\n inputRulesCtx,\n} from '@jvs-milkdown/core'\n\nimport { addTimer } from './utils'\n\n/// @internal\nexport type $InputRule = MilkdownPlugin & {\n inputRule: InputRule\n}\n\n/// Create an input rule plugin.\n/// It takes a factory function which returns a [prosemirror input rule](https://prosemirror.net/docs/ref/#inputrules.InputRule).\n///\n/// Additional property:\n/// - `inputRule`: The prosemirror input rule created.\nexport function $inputRule(inputRule: (ctx: Ctx) => InputRule): $InputRule {\n const plugin: MilkdownPlugin = (ctx) => async () => {\n await ctx.wait(SchemaReady)\n const ir = inputRule(ctx)\n ctx.update(inputRulesCtx, (irs) => [...irs, ir])\n ;(<$InputRule>plugin).inputRule = ir\n\n return () => {\n ctx.update(inputRulesCtx, (irs) => irs.filter((x) => x !== ir))\n }\n }\n\n return <$InputRule>plugin\n}\n\n/// The async version for `$inputRule`. You can use `await` in the factory when creating the input rule.\n///\n/// Additional property:\n/// - `inputRule`: The prosemirror input rule created.\n/// - `timer`: The timer which will be resolved when the input rule is ready.\nexport function $inputRuleAsync(\n inputRule: (ctx: Ctx) => Promise<InputRule>,\n timerName?: string\n) {\n return addTimer<$InputRule>(\n async (ctx, plugin) => {\n await ctx.wait(SchemaReady)\n const ir = await inputRule(ctx)\n ctx.update(inputRulesCtx, (irs) => [...irs, ir])\n plugin.inputRule = ir\n return () => {\n ctx.update(inputRulesCtx, (irs) => irs.filter((x) => x !== ir))\n }\n },\n editorStateTimerCtx,\n timerName\n )\n}\n","import type { Ctx, MilkdownPlugin } from '@jvs-milkdown/ctx'\n\nimport {\n pasteRulesCtx,\n pasteRulesTimerCtx,\n SchemaReady,\n type PasteRule,\n} from '@jvs-milkdown/core'\n\nimport { addTimer } from './utils'\n\n/// @internal\nexport type $PasteRule = MilkdownPlugin & {\n pasteRule: PasteRule\n}\n\n/// Create a paste rule plugin.\n/// It takes a factory function which returns a paste rule.\n///\n/// Additional property:\n/// - `pasteRule`: The paste rule created.\nexport function $pasteRule(pasteRule: (ctx: Ctx) => PasteRule): $PasteRule {\n const plugin: MilkdownPlugin = (ctx) => async () => {\n await ctx.wait(SchemaReady)\n const pr = pasteRule(ctx)\n ctx.update(pasteRulesCtx, (prs) => [...prs, pr])\n ;(<$PasteRule>plugin).pasteRule = pr\n\n return () => {\n ctx.update(pasteRulesCtx, (prs) => prs.filter((x) => x !== pr))\n }\n }\n\n return <$PasteRule>plugin\n}\n\n/// The async version for `$pasteRule`. You can use `await` in the factory when creating the paste rule.\n///\n/// Additional property:\n/// - `pasteRule`: The paste rule created.\n/// - `timer`: The timer which will be resolved when the paste rule is ready.\nexport function $pasteRuleAsync(\n pasteRule: (ctx: Ctx) => Promise<PasteRule>,\n timerName?: string\n) {\n return addTimer<$PasteRule>(\n async (ctx, plugin) => {\n await ctx.wait(SchemaReady)\n const pr = await pasteRule(ctx)\n ctx.update(pasteRulesCtx, (prs) => [...prs, pr])\n plugin.pasteRule = pr\n return () => {\n ctx.update(pasteRulesCtx, (prs) => prs.filter((x) => x !== pr))\n }\n },\n pasteRulesTimerCtx,\n timerName\n )\n}\n","import type { Ctx, MilkdownPlugin } from '@jvs-milkdown/ctx'\nimport type { MarkType } from '@jvs-milkdown/prose/model'\nimport type { MarkSchema } from '@jvs-milkdown/transformer'\n\nimport { marksCtx, schemaCtx, schemaTimerCtx } from '@jvs-milkdown/core'\nimport { missingMarkInSchema } from '@jvs-milkdown/exception'\n\nimport { addTimer } from './utils'\n\n/// @internal\nexport type $Mark = MilkdownPlugin & {\n id: string\n schema: MarkSchema\n type: (ctx: Ctx) => MarkType\n}\n\n/// Create a mark plugin.\n/// It takes a mark id and a factory function.\n/// The factory should return a function that returns a [mark schema](/transformer#interface-markschema).\n///\n/// Additional property:\n/// - `id`: The id of the mark.\n/// - `schema`: The mark schema created.\n/// - `type`: A function that will return the [prosemirror mark type](https://prosemirror.net/docs/ref/#model.MarkType).\nexport function $mark(id: string, schema: (ctx: Ctx) => MarkSchema): $Mark {\n const plugin: MilkdownPlugin = (ctx) => async () => {\n const markSchema = schema(ctx)\n ctx.update(marksCtx, (ns) => [\n ...ns.filter((n) => n[0] !== id),\n [id, markSchema] as [string, MarkSchema],\n ])\n ;(<$Mark>plugin).id = id\n ;(<$Mark>plugin).schema = markSchema\n\n return () => {\n ctx.update(marksCtx, (ns) => ns.filter(([x]) => x !== id))\n }\n }\n ;(<$Mark>plugin).type = (ctx) => {\n const markType = ctx.get(schemaCtx).marks[id]\n if (!markType) throw missingMarkInSchema(id)\n return markType\n }\n\n return <$Mark>plugin\n}\n\n/// The async version for `$mark`. You can use `await` in the factory when creating the mark schema.\n///\n/// Additional property:\n/// - `id`: The id of the mark.\n/// - `schema`: The mark schema created.\n/// - `type`: A function that will return the [prosemirror mark type](https://prosemirror.net/docs/ref/#model.MarkType).\n/// - `timer`: The timer which will be resolved when the mark schema is ready.\nexport function $markAsync(\n id: string,\n schema: (ctx: Ctx) => Promise<MarkSchema>,\n timerName?: string\n) {\n const plugin = addTimer<$Mark>(\n async (ctx, plugin, done) => {\n const markSchema = await schema(ctx)\n ctx.update(marksCtx, (ns) => [\n ...ns.filter((n) => n[0] !== id),\n [id, markSchema] as [string, MarkSchema],\n ])\n\n plugin.id = id\n plugin.schema = markSchema\n done()\n\n return () => {\n ctx.update(marksCtx, (ns) => ns.filter(([x]) => x !== id))\n }\n },\n schemaTimerCtx,\n timerName\n )\n\n plugin.type = (ctx) => {\n const markType = ctx.get(schemaCtx).marks[id]\n if (!markType) throw missingMarkInSchema(id)\n return markType\n }\n\n return plugin\n}\n","import type { Ctx, MilkdownPlugin } from '@jvs-milkdown/ctx'\nimport type { NodeType } from '@jvs-milkdown/prose/model'\nimport type { NodeSchema } from '@jvs-milkdown/transformer'\n\nimport { nodesCtx, schemaCtx, schemaTimerCtx } from '@jvs-milkdown/core'\nimport { missingNodeInSchema } from '@jvs-milkdown/exception'\n\nimport { addTimer } from './utils'\n\n/// @internal\nexport type $Node = MilkdownPlugin & {\n id: string\n schema: NodeSchema\n type: (ctx: Ctx) => NodeType\n}\n\n/// Create a node plugin.\n/// It takes a node id and a factory function.\n/// The factory should return a function that returns a [node schema](/transformer#interface-nodeschema).\n///\n/// Additional property:\n/// - `id`: The id of the node.\n/// - `schema`: The node schema created.\n/// - `type`: A function that will return the [prosemirror node type](https://prosemirror.net/docs/ref/#model.NodeType).\nexport function $node(id: string, schema: (ctx: Ctx) => NodeSchema): $Node {\n const plugin: MilkdownPlugin = (ctx) => async () => {\n const nodeSchema = schema(ctx)\n ctx.update(nodesCtx, (ns) => [\n ...ns.filter((n) => n[0] !== id),\n [id, nodeSchema] as [string, NodeSchema],\n ])\n ;(<$Node>plugin).id = id\n ;(<$Node>plugin).schema = nodeSchema\n\n return () => {\n ctx.update(nodesCtx, (ns) => ns.filter(([x]) => x !== id))\n }\n }\n\n ;(<$Node>plugin).type = (ctx) => {\n const nodeType = ctx.get(schemaCtx).nodes[id]\n if (!nodeType) throw missingNodeInSchema(id)\n\n return nodeType\n }\n\n return <$Node>plugin\n}\n\n/// The async version for `$node`. You can use `await` in the factory when creating the node schema.\n///\n/// Additional property:\n/// - `id`: The id of the node.\n/// - `schema`: The node schema created.\n/// - `type`: A function that will return the [prosemirror node type](https://prosemirror.net/docs/ref/#model.NodeType).\n/// - `timer`: The timer which will be resolved when the node schema is ready.\nexport function $nodeAsync(\n id: string,\n schema: (ctx: Ctx) => Promise<NodeSchema>,\n timerName?: string\n) {\n const plugin = addTimer<$Node>(\n async (ctx, plugin, done) => {\n const nodeSchema = await schema(ctx)\n ctx.update(nodesCtx, (ns) => [\n ...ns.filter((n) => n[0] !== id),\n [id, nodeSchema] as [string, NodeSchema],\n ])\n\n plugin.id = id\n plugin.schema = nodeSchema\n done()\n\n return () => {\n ctx.update(nodesCtx, (ns) => ns.filter(([x]) => x !== id))\n }\n },\n schemaTimerCtx,\n timerName\n )\n\n plugin.type = (ctx) => {\n const nodeType = ctx.get(schemaCtx).nodes[id]\n if (!nodeType) throw missingNodeInSchema(id)\n\n return nodeType\n }\n\n return plugin\n}\n","import type { Ctx, MilkdownPlugin } from '@jvs-milkdown/ctx'\nimport type { Plugin, PluginKey } from '@jvs-milkdown/prose/state'\n\nimport {\n SchemaReady,\n editorStateTimerCtx,\n prosePluginsCtx,\n} from '@jvs-milkdown/core'\n\nimport { addTimer } from './utils'\n\n/// @internal\nexport type $Prose = MilkdownPlugin & {\n plugin: () => Plugin\n key: () => PluginKey | undefined\n}\n\n/// Create a milkdown wrapper for [prosemirror plugin](https://prosemirror.net/docs/ref/#state.Plugin).\n/// It takes a factory function which returns a [prosemirror plugin](https://prosemirror.net/docs/ref/#state.Plugin).\n///\n/// Additional property:\n/// - `plugin`: The prosemirror plugin created.\n/// - `key`: The [prosemirror plugin key](https://prosemirror.net/docs/ref/#state.PluginKey) of the plugin.\nexport function $prose(prose: (ctx: Ctx) => Plugin): $Prose {\n let prosePlugin: Plugin | undefined\n const plugin: MilkdownPlugin = (ctx) => async () => {\n await ctx.wait(SchemaReady)\n prosePlugin = prose(ctx)\n ctx.update(prosePluginsCtx, (ps) => [...ps, prosePlugin!])\n\n return () => {\n ctx.update(prosePluginsCtx, (ps) => ps.filter((x) => x !== prosePlugin))\n }\n }\n ;(<$Prose>plugin).plugin = () => prosePlugin!\n ;(<$Prose>plugin).key = () => prosePlugin!.spec.key\n\n return <$Prose>plugin\n}\n\n/// The async version for `$prose`. You can use `await` in the factory when creating the plugin.\n///\n/// Additional property:\n/// - `plugin`: The prosemirror plugin created.\n/// - `key`: The [prosemirror plugin key](https://prosemirror.net/docs/ref/#state.PluginKey) of the plugin.\n/// - `timer`: The timer which will be resolved when the plugin is ready.\nexport function $proseAsync(\n prose: (ctx: Ctx) => Promise<Plugin>,\n timerName?: string\n) {\n let prosePlugin: Plugin | undefined\n const plugin = addTimer<$Prose>(\n async (ctx) => {\n await ctx.wait(SchemaReady)\n prosePlugin = await prose(ctx)\n ctx.update(prosePluginsCtx, (ps) => [...ps, prosePlugin!])\n\n return () => {\n ctx.update(prosePluginsCtx, (ps) => ps.filter((x) => x !== prosePlugin))\n }\n },\n editorStateTimerCtx,\n timerName\n )\n\n plugin.plugin = () => prosePlugin!\n plugin.key = () => prosePlugin!.spec.key\n\n return plugin\n}\n","import type { Ctx, MilkdownPlugin } from '@jvs-milkdown/ctx'\nimport type { Command } from '@jvs-milkdown/prose/state'\n\nimport {\n KeymapReady,\n editorStateTimerCtx,\n keymapCtx,\n type KeymapItem,\n} from '@jvs-milkdown/core'\n\nimport { addTimer } from './utils'\n\n/// @internal\nexport type Keymap = Record<string, Command | KeymapItem>\n\n/// @internal\nexport type $Shortcut = MilkdownPlugin & {\n keymap: Keymap\n}\n\n/// Create a shortcut for the editor.\n/// It takes a factory function which returns a [prosemirror keymap](https://prosemirror.net/docs/ref/#keymap).\n///\n/// Additional property:\n/// - `keymap`: The prosemirror keymap created.\nexport function $shortcut(shortcut: (ctx: Ctx) => Keymap): $Shortcut {\n const plugin: MilkdownPlugin = (ctx) => async () => {\n await ctx.wait(KeymapReady)\n const km = ctx.get(keymapCtx)\n const keymap = shortcut(ctx)\n const dispose = km.addObjectKeymap(keymap)\n ;(<$Shortcut>plugin).keymap = keymap\n\n return () => {\n dispose()\n }\n }\n\n return <$Shortcut>plugin\n}\n\n/// The async version for `$shortcut`. You can use `await` in the factory when creating the keymap.\n///\n/// Additional property:\n/// - `keymap`: The prosemirror keymap created.\n/// - `timer`: The timer which will be resolved when the plugin is ready.\nexport function $shortcutAsync(\n shortcut: (ctx: Ctx) => Promise<Keymap>,\n timerName?: string\n) {\n return addTimer<$Shortcut>(\n async (ctx, plugin) => {\n await ctx.wait(KeymapReady)\n const km = ctx.get(keymapCtx)\n const keymap = await shortcut(ctx)\n const dispose = km.addObjectKeymap(keymap)\n plugin.keymap = keymap\n\n return () => {\n dispose()\n }\n },\n editorStateTimerCtx,\n timerName\n )\n}\n","import type { Ctx, MilkdownPlugin } from '@jvs-milkdown/ctx'\nimport type {\n MarkViewConstructor,\n NodeViewConstructor,\n} from '@jvs-milkdown/prose/view'\n\nimport {\n SchemaReady,\n editorViewTimerCtx,\n markViewCtx,\n nodeViewCtx,\n} from '@jvs-milkdown/core'\nimport { NodeType } from '@jvs-milkdown/prose/model'\n\nimport type { $Mark, $Node } from '.'\n\nimport { addTimer } from './utils'\n\n/// @internal\nexport type $View<\n T extends $Node | $Mark,\n V extends NodeViewConstructor | MarkViewConstructor,\n> = MilkdownPlugin & {\n view: V\n type: T\n}\n\n/// @internal\nexport type GetConstructor<T extends $Node | $Mark> = T extends $Node\n ? NodeViewConstructor\n : T extends $Mark\n ? MarkViewConstructor\n : NodeViewConstructor | MarkViewConstructor\n\n/// Create a [prosemirror node/mark view](https://prosemirror.net/docs/ref/#view.NodeView) plugin.\n/// It takes two arguments\n/// - `type`: The node/mark plugin that needs to add a view.\n/// - `view`: The factory that creates the view. It should return a function that returns a [node/mark view constructor](https://prosemirror.net/docs/ref/#view.NodeView).\n///\n/// Additional property:\n/// - `view`: The view created.\n/// - `type`: The node/mark plugin that needs to add a view.\nexport function $view<\n T extends $Node | $Mark,\n V extends NodeViewConstructor | MarkViewConstructor = GetConstructor<T>,\n>(type: T, view: (ctx: Ctx) => V): $View<T, V> {\n const plugin: MilkdownPlugin = (ctx) => async () => {\n await ctx.wait(SchemaReady)\n const v = view(ctx)\n if (type.type(ctx) instanceof NodeType)\n ctx.update(nodeViewCtx, (ps) => [\n ...ps,\n [type.id, v] as [string, NodeViewConstructor],\n ])\n else\n ctx.update(markViewCtx, (ps) => [\n ...ps,\n [type.id, v] as [string, MarkViewConstructor],\n ])\n ;(<$View<T, V>>plugin).view = v\n ;(<$View<T, V>>plugin).type = type\n\n return () => {\n if (type.type(ctx) instanceof NodeType)\n ctx.update(nodeViewCtx, (ps) => ps.filter((x) => x[0] !== type.id))\n else ctx.update(markViewCtx, (ps) => ps.filter((x) => x[0] !== type.id))\n }\n }\n\n return <$View<T, V>>plugin\n}\n\n/// The async version for `$view`. You can use `await` in the factory when creating the view.\n///\n/// Additional property:\n/// - `view`: The view created.\n/// - `type`: The node/mark plugin that needs to add a view.\n/// - `timer`: The timer which will be resolved when the view is ready.\nexport function $viewAsync<\n T extends $Node | $Mark,\n V extends NodeViewConstructor | MarkViewConstructor = GetConstructor<T>,\n>(type: T, view: (ctx: Ctx) => Promise<V>, timerName?: string) {\n return addTimer<$View<T, V>>(\n async (ctx, plugin) => {\n await ctx.wait(SchemaReady)\n const v = await view(ctx)\n if (type.type(ctx) instanceof NodeType)\n ctx.update(nodeViewCtx, (ps) => [\n ...ps,\n [type.id, v] as [string, NodeViewConstructor],\n ])\n else\n ctx.update(markViewCtx, (ps) => [\n ...ps,\n [type.id, v] as [string, MarkViewConstructor],\n ])\n\n plugin.view = v\n plugin.type = type\n\n return () => {\n if (type.type(ctx) instanceof NodeType)\n ctx.update(nodeViewCtx, (ps) => ps.filter((x) => x[0] !== type.id))\n else ctx.update(markViewCtx, (ps) => ps.filter((x) => x[0] !== type.id))\n }\n },\n editorViewTimerCtx,\n timerName\n )\n}\n","import type { MilkdownPlugin, SliceType } from '@jvs-milkdown/ctx'\n\nimport { createSlice } from '@jvs-milkdown/ctx'\n\n/// @internal\nexport type $Ctx<T, N extends string> = MilkdownPlugin & {\n key: SliceType<T, N>\n}\n\n/// Create a slice plugin. The plugin will be registered in the `ctx` and can be accessed by other parts of the editor.\n/// ```ts\n/// const counterCtx = $ctx(0, 'counter');\n/// ```\n///\n/// Additional property:\n/// - `key`: The key of the slice.\nexport function $ctx<T, N extends string>(value: T, name: N): $Ctx<T, N> {\n const slice = createSlice(value, name)\n const plugin: $Ctx<T, N> = (ctx) => {\n ctx.inject(slice)\n return () => {\n return () => {\n ctx.remove(slice)\n }\n }\n }\n\n plugin.key = slice\n\n return plugin\n}\n","import type { Ctx } from '@jvs-milkdown/ctx'\nimport type { NodeSchema } from '@jvs-milkdown/transformer'\n\nimport type { $Ctx } from '../$ctx'\nimport type { $Node } from '../$node'\n\nimport { $ctx } from '../$ctx'\nimport { $node } from '../$node'\n\n/// @internal\nexport type GetNodeSchema = (ctx: Ctx) => NodeSchema\n\n/// @internal\nexport type $NodeSchema<T extends string> = [\n schemaCtx: $Ctx<GetNodeSchema, T>,\n schema: $Node,\n] & {\n id: $Node['id']\n type: $Node['type']\n node: $Node\n ctx: $Ctx<GetNodeSchema, T>\n key: $Ctx<GetNodeSchema, T>['key']\n extendSchema: (\n handler: (prev: GetNodeSchema) => GetNodeSchema\n ) => $NodeSchema<T>\n}\n\n/// Create a plugin for node schema.\n/// The first parameter is the id of the node schema.\n/// The second parameter is the function that returns the node schema.\n///\n/// The function will return a plugin with additional properties:\n/// - `id`: The id of the node schema.\n/// - `type`: A function witch will return the type of the node schema.\n/// - `ctx`: The context of the node schema.\n/// - `node`: The node schema plugin.\n/// - `schema`: The node schema.\n/// - `key`: The key of slice which contains the node schema factory.\n/// - `extendSchema`: A function witch will return a plugin that can extend the node schema.\nexport function $nodeSchema<T extends string>(\n id: T,\n schema: GetNodeSchema\n): $NodeSchema<T> {\n const schemaCtx = $ctx(schema, id)\n\n const nodeSchema = $node(id, (ctx) => {\n const userSchema = ctx.get(schemaCtx.key)\n return userSchema(ctx)\n })\n\n const result = [schemaCtx, nodeSchema] as $NodeSchema<T>\n result.id = nodeSchema.id\n result.node = nodeSchema\n\n result.type = (ctx: Ctx) => nodeSchema.type(ctx)\n result.ctx = schemaCtx\n result.key = schemaCtx.key\n result.extendSchema = (handler) => {\n const nextSchema = handler(schema)\n\n return $nodeSchema(id, nextSchema)\n }\n\n return result\n}\n","import type { Ctx } from '@jvs-milkdown/ctx'\nimport type { MarkSchema } from '@jvs-milkdown/transformer'\n\nimport type { $Ctx } from '../$ctx'\nimport type { $Mark } from '../$mark'\n\nimport { $ctx } from '../$ctx'\nimport { $mark } from '../$mark'\n\n/// @internal\nexport type GetMarkSchema = (ctx: Ctx) => MarkSchema\n\n/// @internal\nexport type $MarkSchema<T extends string> = [\n schemaCtx: $Ctx<GetMarkSchema, T>,\n schema: $Mark,\n] & {\n id: $Mark['id']\n type: $Mark['type']\n mark: $Mark\n ctx: $Ctx<GetMarkSchema, T>\n key: $Ctx<GetMarkSchema, T>['key']\n extendSchema: (\n handler: (prev: GetMarkSchema) => GetMarkSchema\n ) => $MarkSchema<T>\n}\n\n/// Create a plugin for mark schema.\n/// The first parameter is the id of the mark schema.\n/// The second parameter is the function that returns the mark schema.\n///\n/// The function will return a plugin with additional properties:\n/// - `id`: The id of the mark schema.\n/// - `type`: A function witch will return the type of the mark schema.\n/// - `ctx`: The context of the mark schema.\n/// - `mark`: The mark schema plugin.\n/// - `schema`: The mark schema.\n/// - `key`: The key of slice which contains the mark schema factory.\n/// - `extendSchema`: A function witch will return a plugin that can extend the mark schema.\nexport function $markSchema<T extends string>(\n id: T,\n schema: GetMarkSchema\n): $MarkSchema<T> {\n const schemaCtx = $ctx(schema, id)\n\n const markSchema = $mark(id, (ctx) => {\n const userSchema = ctx.get(schemaCtx.key)\n return userSchema(ctx)\n })\n\n const result = [schemaCtx, markSchema] as $MarkSchema<T>\n result.id = markSchema.id\n result.mark = markSchema\n\n result.type = (ctx: Ctx) => markSchema.type(ctx)\n result.ctx = schemaCtx\n result.key = schemaCtx.key\n result.extendSchema = (handler) => {\n const nextSchema = handler(schema)\n\n return $markSchema(id, nextSchema)\n }\n\n return result\n}\n","import type { Ctx, SliceType } from '@jvs-milkdown/ctx'\nimport type { Command } from '@jvs-milkdown/prose/state'\n\nimport type { $Ctx } from '../$ctx'\nimport type { $Shortcut, Keymap } from '../$shortcut'\n\nimport { $ctx } from '../$ctx'\nimport { $shortcut } from '../$shortcut'\n\n/// @internal\nexport type KeymapConfig<K extends string> = Record<\n K,\n {\n shortcuts: string | string[]\n priority?: number\n }\n>\n\n/// @internal\nexport interface KeymapItem {\n shortcuts: string | string[]\n priority?: number\n command: (ctx: Ctx) => Command\n}\n\n/// @internal\nexport type UserKeymapConfig<Key extends string> = Record<Key, KeymapItem>\n\n/// @internal\nexport type $UserKeymap<N extends string, Key extends string> = [\n $Ctx<KeymapConfig<Key>, `${N}Keymap`>,\n $Shortcut,\n] & {\n key: SliceType<KeymapConfig<Key>, `${N}Keymap`>\n keymap: Keymap\n ctx: $Ctx<KeymapConfig<Key>, `${N}Keymap`>\n shortcuts: $Shortcut\n}\n\n/// Create a keymap which can be customized by user.\n/// It takes two arguments:\n/// - `name`: The name of the keymap.\n/// - `userKeymap`: The keymap config which contains the shortcuts and the command.\nexport function $useKeymap<N extends string, Key extends string>(\n name: N,\n userKeymap: UserKeymapConfig<Key>\n) {\n const key = Object.fromEntries(\n Object.entries<KeymapItem>(userKeymap).map(\n ([key, { shortcuts, priority }]) => {\n return [key, { shortcuts, priority }]\n }\n )\n ) as KeymapConfig<Key>\n\n const keymapDef = $ctx<KeymapConfig<Key>, `${N}Keymap`>(key, `${name}Keymap`)\n\n const shortcuts = $shortcut((ctx) => {\n const keys = ctx.get(keymapDef.key)\n\n const keymapTuple = Object.entries<KeymapItem>(userKeymap).flatMap(\n ([key, { command }]) => {\n const target = keys[key as Key]\n const targetKeys = [target.shortcuts].flat()\n const priority = target.priority\n\n return targetKeys.map(\n (targetKey) =>\n [\n targetKey,\n {\n key: targetKey,\n onRun: command,\n priority,\n },\n ] as const\n )\n }\n )\n\n return Object.fromEntries(keymapTuple)\n })\n\n const result = [keymapDef, shortcuts] as $UserKeymap<N, Key>\n result.ctx = keymapDef\n result.shortcuts = shortcuts\n result.key = keymapDef.key\n result.keymap = shortcuts.keymap\n\n return result\n}\n","import type { Mark, Node } from '@jvs-milkdown/prose/model'\n\nimport type { $Ctx } from '../$ctx'\n\nimport { $ctx } from '../$ctx'\n\n/// @internal\nexport type $NodeAttr = $Ctx<\n (node: Node) => Record<string, any>,\n `${string}Attr`\n>\n\n/// Create a slice which contains the attributes for node schema.\nexport const $nodeAttr = (\n name: string,\n value: (node: Node) => Record<string, any> = () => ({})\n): $NodeAttr => $ctx(value, `${name}Attr`)\n\n/// @internal\nexport type $MarkAttr = $Ctx<\n (node: Mark) => Record<string, any>,\n `${string}Attr`\n>\n\n/// Create a slice which contains the attributes for mark schema.\nexport const $markAttr = (\n name: string,\n value: (mark: Mark) => Record<string, any> = () => ({})\n): $MarkAttr => $ctx(value, `${name}Attr`)\n","import type { Ctx, MilkdownPlugin } from '@jvs-milkdown/ctx'\nimport type { RemarkPlugin, RemarkPluginRaw } from '@jvs-milkdown/transformer'\n\nimport { InitReady, remarkPluginsCtx } from '@jvs-milkdown/core'\n\nimport type { $Ctx } from '../$ctx'\n\nimport { $ctx } from '../$ctx'\n\n/// @internal\nexport type $Remark<Id extends string, Options> = [\n optionsCtx: $Ctx<Options, Id>,\n plugin: MilkdownPlugin,\n] & {\n id: Id\n plugin: MilkdownPlugin\n options: $Ctx<Options, Id>\n}\n\n/// Create a milkdown wrapper for [remark plugin](https://github.com/remarkjs/remark/blob/main/doc/plugins.md).\n/// It takes a factory function which returns a [remark plugin](https://github.com/remarkjs/remark/blob/main/doc/plugins.md).\n///\n/// Additional property:\n/// - `id`: The id of the remark plugin.\n/// - `plugin`: The remark plugin created.\n/// - `options`: The ctx contains the options of the remark plugin.\nexport function $remark<Id extends string, Options>(\n id: Id,\n remark: (ctx: Ctx) => RemarkPluginRaw<Options>,\n initialOptions?: Options\n): $Remark<Id, Options> {\n const options = $ctx<Options, Id>(initialOptions ?? ({} as Options), id)\n const plugin: MilkdownPlugin = (ctx) => async () => {\n await ctx.wait(InitReady)\n const re = remark(ctx)\n const remarkPlugin: RemarkPlugin<Options> = {\n plugin: re,\n options: ctx.get(options.key),\n }\n ctx.update(remarkPluginsCtx, (rp) => [...rp, remarkPlugin as RemarkPlugin])\n\n return () => {\n ctx.update(remarkPluginsCtx, (rp) => rp.filter((x) => x !== remarkPlugin))\n }\n }\n\n const result = [options, plugin] as $Remark<Id, Options>\n result.id = id\n result.plugin = plugin\n result.options = options\n\n return result\n}\n","import type { CmdKey } from '@jvs-milkdown/core'\nimport type { Ctx } from '@jvs-milkdown/ctx'\n\nimport { commandsCtx } from '@jvs-milkdown/core'\n\ntype InferParams<T> = T extends CmdKey<infer U> ? U : never\n\n/// Call a command. You can pass the command key and the payload to the macro.\nexport function callCommand<T extends CmdKey<any>>(\n slice: string,\n payload?: InferParams<T>\n): (ctx: Ctx) => boolean\nexport function callCommand<T>(\n slice: CmdKey<T>,\n payload?: T\n): (ctx: Ctx) => boolean\nexport function callCommand(\n slice: string | CmdKey<any>,\n payload?: any\n): (ctx: Ctx) => boolean\nexport function callCommand(\n slice: string | CmdKey<any>,\n payload?: any\n): (ctx: Ctx) => boolean {\n return (ctx: Ctx) => {\n return ctx.get(commandsCtx).call(slice, payload)\n }\n}\n","import type { Ctx } from '@jvs-milkdown/ctx'\n\nimport { editorViewCtx } from '@jvs-milkdown/core'\n\n/// Force update the editor.\nexport function forceUpdate() {\n return (ctx: Ctx): void => {\n const view = ctx.get(editorViewCtx)\n const { tr } = view.state\n\n const nextTr = Object.assign(Object.create(tr), tr).setTime(Date.now())\n return view.dispatch(nextTr)\n }\n}\n","import type { Ctx } from '@jvs-milkdown/ctx'\n\nimport { editorViewCtx, schemaCtx } from '@jvs-milkdown/core'\nimport { DOMSerializer } from '@jvs-milkdown/prose/model'\n\n/// Get content of the editor as HTML string.\nexport function getHTML() {\n return (ctx: Ctx): string => {\n const div = document.createElement('div')\n const schema = ctx.get(schemaCtx)\n const view = ctx.get(editorViewCtx)\n const fragment = DOMSerializer.fromSchema(schema).serializeFragment(\n view.state.doc.content\n )\n\n div.appendChild(fragment)\n\n return div.innerHTML\n }\n}\n","import type { Ctx } from '@jvs-milkdown/ctx'\n\nimport { editorViewCtx, schemaCtx, serializerCtx } from '@jvs-milkdown/core'\n\n/// Get content of the editor as markdown string.\n/// If range is provided, it will return the markdown string of the range.\n/// If range is not provided, it will return the markdown string of the whole document.\nexport function getMarkdown(range?: { from: number; to: number }) {\n return (ctx: Ctx): string => {\n const view = ctx.get(editorViewCtx)\n const schema = ctx.get(schemaCtx)\n const serializer = ctx.get(serializerCtx)\n\n if (!range) {\n return serializer(view.state.doc)\n }\n\n const state = view.state\n const slice = state.doc.slice(range.from, range.to, true)\n const doc = schema.topNodeType.createAndFill(null, slice.content)\n if (!doc) {\n console.error('No document found')\n return ''\n }\n return serializer(doc)\n }\n}\n","import type { Ctx } from '@jvs-milkdown/ctx'\n\nimport { editorViewCtx, parserCtx, schemaCtx } from '@jvs-milkdown/core'\nimport { isTextOnlySlice } from '@jvs-milkdown/prose'\nimport { DOMParser, DOMSerializer, Slice } from '@jvs-milkdown/prose/model'\n\n/// Insert markdown string into the editor.\nexport function insert(markdown: string, inline: boolean = false) {\n return (ctx: Ctx) => {\n const view = ctx.get(editorViewCtx)\n const parser = ctx.get(parserCtx)\n const doc = parser(markdown)\n if (!doc) return\n\n if (!inline) {\n const contentSlice = view.state.selection.content()\n return view.dispatch(\n view.state.tr\n .replaceSelection(\n new Slice(doc.content, contentSlice.openStart, contentSlice.openEnd)\n )\n .scrollIntoView()\n )\n }\n\n const schema = ctx.get(schemaCtx)\n const dom = DOMSerializer.fromSchema(schema).serializeFragment(doc.content)\n const domParser = DOMParser.fromSchema(schema)\n const slice = domParser.parseSlice(dom)\n const node = isTextOnlySlice(slice)\n if (node) {\n view.dispatch(view.state.tr.replaceSelectionWith(node, true))\n return\n }\n\n view.dispatch(view.state.tr.replaceSelection(slice))\n }\n}\n","import type { Ctx } from '@jvs-milkdown/ctx'\n\nimport { editorViewCtx } from '@jvs-milkdown/core'\n\n/// Get outline of the editor.\nexport function outline() {\n return (ctx: Ctx): Array<{ text: string; level: number; id: string }> => {\n const view = ctx.get(editorViewCtx)\n const data: { text: string; level: number; id: string }[] = []\n const doc = view.state.doc\n doc.descendants((node) => {\n if (node.type.name === 'heading' && node.attrs.level)\n data.push({\n text: node.textContent,\n level: node.attrs.level,\n id: node.attrs.id,\n })\n })\n return data\n }\n}\n","import type { Ctx } from '@jvs-milkdown/ctx'\n\nimport {\n editorStateOptionsCtx,\n editorViewCtx,\n parserCtx,\n prosePluginsCtx,\n schemaCtx,\n} from '@jvs-milkdown/core'\nimport { Slice } from '@jvs-milkdown/prose/model'\nimport { EditorState } from '@jvs-milkdown/prose/state'\n\n/// Replace all content of the editor with markdown string.\n/// If flush is true, the editor state will be re-created.\nexport function replaceAll(markdown: string, flush = false) {\n return (ctx: Ctx): void => {\n const view = ctx.get(editorViewCtx)\n const parser = ctx.get(parserCtx)\n const doc = parser(markdown)\n if (!doc) return\n\n if (!flush) {\n const { state } = view\n return view.dispatch(\n state.tr.replace(\n 0,\n state.doc.content.size,\n new Slice(doc.content, 0, 0)\n )\n )\n }\n\n const schema = ctx.get(schemaCtx)\n const overrideOptions = ctx.get(editorStateOptionsCtx)\n const plugins = ctx.get(prosePluginsCtx)\n const newOptions = overrideOptions({\n schema,\n doc,\n plugins,\n })\n\n const state = EditorState.create(newOptions)\n\n view.updateState(state)\n }\n}\n","import type { Ctx } from '@jvs-milkdown/ctx'\nimport type { Attrs } from '@jvs-milkdown/prose/model'\n\nimport { editorViewCtx } from '@jvs-milkdown/core'\n\n/// Set the attributes of the node at the given position.\nexport function setAttr(pos: number, update: (prevAttrs: Attrs) => Attrs) {\n return (ctx: Ctx) => {\n const view = ctx.get(editorViewCtx)\n const { tr } = view.state\n const node = tr.doc.nodeAt(pos)\n if (!node) return\n const nextAttr = update(node.attrs)\n return view.dispatch(tr.setNodeMarkup(pos, undefined, nextAttr))\n }\n}\n","import type { Ctx } from '@jvs-milkdown/ctx'\n\nimport { parserCtx, schemaCtx } from '@jvs-milkdown/core'\nimport { DOMSerializer, DOMParser } from '@jvs-milkdown/prose/model'\n\n/// Convert markdown string to slice.\nexport function markdownToSlice(markdown: string) {\n return (ctx: Ctx) => {\n const parser = ctx.get(parserCtx)\n const doc = parser(markdown)\n const schema = ctx.get(schemaCtx)\n const dom = DOMSerializer.fromSchema(schema).serializeFragment(doc.content)\n const domParser = DOMParser.fromSchema(schema)\n const slice = domParser.parseSlice(dom)\n\n return slice\n }\n}\n","import type { Ctx } from '@jvs-milkdown/ctx'\n\nimport { editorViewCtx } from '@jvs-milkdown/core'\n\nimport { markdownToSlice } from './markdown-to-slice'\n\n/// Insert markdown string to the given position.\n/// If inline is true, the markdown will be inserted as inline text.\n/// If inline is false, the markdown will be inserted as block text.\nexport function insertPos(\n markdown: string,\n pos: number,\n inline: boolean = false\n) {\n return (ctx: Ctx) => {\n const slice = markdownToSlice(markdown)(ctx)\n const view = ctx.get(editorViewCtx)\n const toPos = view.state.doc.resolve(pos)\n\n const min = 0\n const max = view.state.doc.content.size\n const resolved = inline ? toPos.pos : toPos.after(toPos.depth - 1)\n const to = Math.min(Math.max(resolved, min), max)\n\n view.dispatch(view.state.tr.replace(resolved, to, slice))\n }\n}\n","import type { Ctx } from '@jvs-milkdown/ctx'\n\nimport { editorViewCtx } from '@jvs-milkdown/core'\n\nimport { markdownToSlice } from './markdown-to-slice'\n\n/// Replace the content of the given range with the markdown string.\nexport function replaceRange(\n markdown: string,\n range: { from: number; to: number }\n) {\n return (ctx: Ctx) => {\n const view = ctx.get(editorViewCtx)\n const slice = markdownToSlice(markdown)(ctx)\n\n view.dispatch(view.state.tr.replace(range.from, range.to, slice))\n }\n}\n","/// @internal\nexport type Many<T> = T | ReadonlyArray<T>\n\ninterface Pipe {\n pipe: (<A extends any[], R1, R2, R3, R4, R5, R6, R7>(\n f1: (...args: A) => R1,\n f2: (a: R1) => R2,\n f3: (a: R2) => R3,\n f4: (a: R3) => R4,\n f5: (a: R4) => R5,\n f6: (a: R5) => R6,\n f7: (a: R6) => R7\n ) => (...args: A) => R7) &\n (<A extends any[], R1, R2, R3, R4, R5, R6, R7>(\n f1: (...args: A) => R1,\n f2: (a: R1) => R2,\n f3: (a: R2) => R3,\n f4: (a: R3) => R4,\n f5: (a: R4) => R5,\n f6: (a: R5) => R6,\n f7: (a: R6) => R7,\n ...func: Array<Many<(a: any) => any>>\n ) => (...args: A) => any) &\n (<A extends any[], R1, R2, R3, R4, R5, R6>(\n f1: (...args: A) => R1,\n f2: (a: R1) => R2,\n f3: (a: R2) => R3,\n f4: (a: R3) => R4,\n f5: (a: R4) => R5,\n f6: (a: R5) => R6\n ) => (...args: A) => R6) &\n (<A extends any[], R1, R2, R3, R4, R5>(\n f1: (...args: A) => R1,\n f2: (a: R1) => R2,\n f3: (a: R2) => R3,\n f4: (a: R3) => R4,\n f5: (a: R4) => R5\n ) => (...args: A) => R5) &\n (<A extends any[], R1, R2, R3, R4>(\n f1: (...args: A) => R1,\n f2: (a: R1) => R2,\n f3: (a: R2) => R3,\n f4: (a: R3) => R4\n ) => (...args: A) => R4) &\n (<A extends any[], R1, R2, R3>(\n f1: (...args: A) => R1,\n f2: (a: R1) => R2,\n f3: (a: R2) => R3\n ) => (...args: A) => R3) &\n (<A extends any[], R1, R2>(\n f1: (...args: A) => R1,\n f2: (a: R1) => R2\n ) => (...args: A) => R2) &\n ((...func: Array<Many<(...args: any[]) => any>>) => (...args: any[]) => any)\n}\n\n/// @internal\nexport const pipe: Pipe['pipe'] = (...funcs: any[]) => {\n const length = funcs.length\n let index = length\n while (index--) {\n if (typeof funcs[index] !== 'function')\n throw new TypeError('Expected a function')\n }\n return (...args: any[]) => {\n let index = 0\n let result = length ? funcs[index](...args) : args[0]\n while (++index < length) result = funcs[index](result)\n\n return result\n }\n}\n"],"mappings":"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"}
@@ -1 +1 @@
1
- {"fileNames":["../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../ctx/lib/context/slice.d.ts","../../ctx/lib/context/container.d.ts","../../ctx/lib/context/index.d.ts","../../ctx/lib/inspector/meta.d.ts","../../ctx/lib/timer/timer.d.ts","../../ctx/lib/timer/clock.d.ts","../../ctx/lib/timer/index.d.ts","../../ctx/lib/inspector/inspector.d.ts","../../ctx/lib/inspector/index.d.ts","../../ctx/lib/plugin/ctx.d.ts","../../ctx/lib/plugin/types.d.ts","../../ctx/lib/plugin/index.d.ts","../../ctx/lib/index.d.ts","../../../node_modules/.pnpm/orderedmap@2.1.1/node_modules/orderedmap/dist/index.d.ts","../../../node_modules/.pnpm/prosemirror-model@1.25.4/node_modules/prosemirror-model/dist/index.d.ts","../../../node_modules/.pnpm/prosemirror-transform@1.11.0/node_modules/prosemirror-transform/dist/index.d.ts","../../../node_modules/.pnpm/prosemirror-view@1.41.7/node_modules/prosemirror-view/dist/index.d.ts","../../../node_modules/.pnpm/prosemirror-state@1.4.4/node_modules/prosemirror-state/dist/index.d.ts","../../../node_modules/.pnpm/prosemirror-inputrules@1.5.1/node_modules/prosemirror-inputrules/dist/index.d.ts","../../prose/lib/inputrules.d.ts","../../prose/lib/state.d.ts","../../prose/lib/view.d.ts","../../prose/lib/model.d.ts","../../../node_modules/.pnpm/@types+unist@3.0.3/node_modules/@types/unist/index.d.ts","../../../node_modules/.pnpm/@types+mdast@4.0.4/node_modules/@types/mdast/index.d.ts","../../../node_modules/.pnpm/micromark-util-types@2.0.2/node_modules/micromark-util-types/index.d.ts","../../../node_modules/.pnpm/mdast-util-from-markdown@2.0.3/node_modules/mdast-util-from-markdown/lib/types.d.ts","../../../node_modules/.pnpm/mdast-util-from-markdown@2.0.3/node_modules/mdast-util-from-markdown/lib/index.d.ts","../../../node_modules/.pnpm/mdast-util-from-markdown@2.0.3/node_modules/mdast-util-from-markdown/index.d.ts","../../../node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/lib/index.d.ts","../../../node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/index.d.ts","../../../node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/index.d.ts","../../../node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/index.d.ts","../../../node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/callable-instance.d.ts","../../../node_modules/.pnpm/trough@2.2.0/node_modules/trough/lib/index.d.ts","../../../node_modules/.pnpm/trough@2.2.0/node_modules/trough/index.d.ts","../../../node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/index.d.ts","../../../node_modules/.pnpm/unified@11.0.5/node_modules/unified/index.d.ts","../../../node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/lib/index.d.ts","../../../node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/index.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/types.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/index.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/blockquote.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/break.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/code.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/definition.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/emphasis.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/heading.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/html.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image-reference.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/inline-code.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link-reference.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list-item.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/paragraph.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/root.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/strong.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/text.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/index.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/index.d.ts","../../../node_modules/.pnpm/remark-stringify@11.0.0/node_modules/remark-stringify/lib/index.d.ts","../../../node_modules/.pnpm/remark-stringify@11.0.0/node_modules/remark-stringify/index.d.ts","../../../node_modules/.pnpm/remark@15.0.1/node_modules/remark/index.d.ts","../../transformer/lib/utility/stack.d.ts","../../transformer/lib/utility/index.d.ts","../../transformer/lib/serializer/stack-element.d.ts","../../transformer/lib/serializer/state.d.ts","../../transformer/lib/serializer/types.d.ts","../../transformer/lib/utility/types.d.ts","../../transformer/lib/parser/stack-element.d.ts","../../transformer/lib/parser/state.d.ts","../../transformer/lib/parser/types.d.ts","../../transformer/lib/parser/index.d.ts","../../transformer/lib/serializer/index.d.ts","../../transformer/lib/index.d.ts","../../core/lib/internal-plugin/atoms.d.ts","../../core/lib/internal-plugin/commands.d.ts","../../core/lib/internal-plugin/config.d.ts","../../core/lib/internal-plugin/editor-state.d.ts","../../core/lib/internal-plugin/editor-view.d.ts","../../core/lib/internal-plugin/init.d.ts","../../core/lib/internal-plugin/parser.d.ts","../../core/lib/internal-plugin/schema.d.ts","../../core/lib/internal-plugin/serializer.d.ts","../../core/lib/internal-plugin/keymap.d.ts","../../core/lib/internal-plugin/paste-rule.d.ts","../../core/lib/internal-plugin/index.d.ts","../../core/lib/editor/editor.d.ts","../../core/lib/editor/index.d.ts","../../core/lib/index.d.ts","../../../node_modules/.pnpm/nanoid@5.1.7/node_modules/nanoid/index.d.ts","../src/composable/utils.ts","../src/composable/$command.ts","../src/composable/$input-rule.ts","../src/composable/$paste-rule.ts","../../exception/lib/code.d.ts","../../exception/lib/error.d.ts","../../exception/lib/index.d.ts","../src/composable/$mark.ts","../src/composable/$node.ts","../src/composable/$prose.ts","../src/composable/$shortcut.ts","../src/composable/$view.ts","../src/composable/$ctx.ts","../src/composable/composed/$node-schema.ts","../src/composable/composed/$mark-schema.ts","../src/composable/composed/$use-keymap.ts","../src/composable/composed/$attr.ts","../src/composable/composed/$remark.ts","../src/composable/composed/index.ts","../src/composable/index.ts","../src/macro/call-command.ts","../src/macro/force-update.ts","../src/macro/get-html.ts","../src/macro/get-markdown.ts","../../prose/lib/index.d.ts","../src/macro/insert.ts","../src/macro/outline.ts","../src/macro/replace-all.ts","../src/macro/set-attr.ts","../src/macro/markdown-to-slice.ts","../src/macro/insert-pos.ts","../src/macro/replace-range.ts","../src/macro/index.ts","../src/pipe.ts","../src/index.ts","../../../node_modules/.pnpm/@vitest+pretty-format@4.1.0/node_modules/@vitest/pretty-format/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+utils@4.1.0/node_modules/@vitest/utils/dist/display.d.ts","../../../node_modules/.pnpm/@vitest+utils@4.1.0/node_modules/@vitest/utils/dist/types.d.ts","../../../node_modules/.pnpm/@vitest+utils@4.1.0/node_modules/@vitest/utils/dist/helpers.d.ts","../../../node_modules/.pnpm/@vitest+utils@4.1.0/node_modules/@vitest/utils/dist/timers.d.ts","../../../node_modules/.pnpm/@vitest+utils@4.1.0/node_modules/@vitest/utils/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+utils@4.1.0/node_modules/@vitest/utils/dist/types.d-bcelap-c.d.ts","../../../node_modules/.pnpm/@vitest+utils@4.1.0/node_modules/@vitest/utils/dist/diff.d.ts","../../../node_modules/.pnpm/@vitest+runner@4.1.0/node_modules/@vitest/runner/dist/tasks.d-d2gkpdwq.d.ts","../../../node_modules/.pnpm/@vitest+runner@4.1.0/node_modules/@vitest/runner/dist/index.d.ts","../../../node_modules/.pnpm/vitest@4.1.0_@types+node@24_44b8d052b1a18cdf1651bd8d8e21974e/node_modules/vitest/dist/chunks/traces.d.402v_yfi.d.ts","../../../node_modules/.pnpm/vite@8.0.1_@types+node@24.1_876433a21c88fe1552cff9da3a930571/node_modules/vite/types/hmrpayload.d.ts","../../../node_modules/.pnpm/vite@8.0.1_@types+node@24.1_876433a21c88fe1552cff9da3a930571/node_modules/vite/dist/node/chunks/modulerunnertransport.d.ts","../../../node_modules/.pnpm/vite@8.0.1_@types+node@24.1_876433a21c88fe1552cff9da3a930571/node_modules/vite/types/customevent.d.ts","../../../node_modules/.pnpm/vite@8.0.1_@types+node@24.1_876433a21c88fe1552cff9da3a930571/node_modules/vite/types/hot.d.ts","../../../node_modules/.pnpm/vite@8.0.1_@types+node@24.1_876433a21c88fe1552cff9da3a930571/node_modules/vite/dist/node/module-runner.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@4.1.0/node_modules/@vitest/snapshot/dist/environment.d-dojxxzv9.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@4.1.0/node_modules/@vitest/snapshot/dist/rawsnapshot.d-u2kjuxdr.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@4.1.0/node_modules/@vitest/snapshot/dist/index.d.ts","../../../node_modules/.pnpm/vitest@4.1.0_@types+node@24_44b8d052b1a18cdf1651bd8d8e21974e/node_modules/vitest/dist/chunks/config.d.ejlve3es.d.ts","../../../node_modules/.pnpm/vitest@4.1.0_@types+node@24_44b8d052b1a18cdf1651bd8d8e21974e/node_modules/vitest/dist/chunks/environment.d.crsxczp1.d.ts","../../../node_modules/.pnpm/vitest@4.1.0_@types+node@24_44b8d052b1a18cdf1651bd8d8e21974e/node_modules/vitest/dist/chunks/rpc.d.bfmwpdph.d.ts","../../../node_modules/.pnpm/vitest@4.1.0_@types+node@24_44b8d052b1a18cdf1651bd8d8e21974e/node_modules/vitest/dist/chunks/worker.d.b84svry0.d.ts","../../../node_modules/.pnpm/vitest@4.1.0_@types+node@24_44b8d052b1a18cdf1651bd8d8e21974e/node_modules/vitest/dist/chunks/browser.d.x3sxoocv.d.ts","../../../node_modules/.pnpm/@vitest+spy@4.1.0/node_modules/@vitest/spy/dist/index.d.ts","../../../node_modules/.pnpm/tinyrainbow@3.1.0/node_modules/tinyrainbow/dist/index.d.ts","../../../node_modules/.pnpm/@standard-schema+spec@1.1.0/node_modules/@standard-schema/spec/dist/index.d.ts","../../../node_modules/.pnpm/@types+deep-eql@4.0.2/node_modules/@types/deep-eql/index.d.ts","../../../node_modules/.pnpm/assertion-error@2.0.1/node_modules/assertion-error/index.d.ts","../../../node_modules/.pnpm/@types+chai@5.2.3/node_modules/@types/chai/index.d.ts","../../../node_modules/.pnpm/@vitest+expect@4.1.0/node_modules/@vitest/expect/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+runner@4.1.0/node_modules/@vitest/runner/dist/utils.d.ts","../../../node_modules/.pnpm/tinybench@2.9.0/node_modules/tinybench/dist/index.d.ts","../../../node_modules/.pnpm/vitest@4.1.0_@types+node@24_44b8d052b1a18cdf1651bd8d8e21974e/node_modules/vitest/dist/chunks/benchmark.d.daahlpsq.d.ts","../../../node_modules/.pnpm/vitest@4.1.0_@types+node@24_44b8d052b1a18cdf1651bd8d8e21974e/node_modules/vitest/dist/chunks/global.d.x-ilcfae.d.ts","../../../node_modules/.pnpm/@vitest+mocker@4.1.0_vite@8_4e6228533c587271678a054b13744890/node_modules/@vitest/mocker/dist/types.d-bji5eawu.d.ts","../../../node_modules/.pnpm/@vitest+mocker@4.1.0_vite@8_4e6228533c587271678a054b13744890/node_modules/@vitest/mocker/dist/index.d-b41z0auw.d.ts","../../../node_modules/.pnpm/@vitest+mocker@4.1.0_vite@8_4e6228533c587271678a054b13744890/node_modules/@vitest/mocker/dist/index.d.ts","../../../node_modules/.pnpm/vitest@4.1.0_@types+node@24_44b8d052b1a18cdf1651bd8d8e21974e/node_modules/vitest/dist/chunks/suite.d.udjtyagw.d.ts","../../../node_modules/.pnpm/vitest@4.1.0_@types+node@24_44b8d052b1a18cdf1651bd8d8e21974e/node_modules/vitest/dist/chunks/evaluatedmodules.d.bxj5omdx.d.ts","../../../node_modules/.pnpm/vitest@4.1.0_@types+node@24_44b8d052b1a18cdf1651bd8d8e21974e/node_modules/vitest/dist/runners.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/utils.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/overloads.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/branding.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/messages.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/index.d.ts","../../../node_modules/.pnpm/vitest@4.1.0_@types+node@24_44b8d052b1a18cdf1651bd8d8e21974e/node_modules/vitest/dist/index.d.ts","../src/composable/composed/$node-schema.spec.ts"],"fileIdsList":[[215,216],[82],[189,195,197,212,213,214,217,222],[223],[223,224],[193,195,196],[193,195],[193],[188,193,204,205],[188,204],[188,194],[188],[190],[188,189,190,191,192],[229,230],[229,230,231,232],[229,231],[229],[84,85,86,87],[83,84,85,87],[83,84,87],[99,100,120],[83,121],[83],[101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119],[82,83],[73,76],[72],[73,74,75],[73],[73,74,76],[83,84,87,96,97,98,123],[83,87,91,96,98,123],[83,96,98,121,122,123],[83,91,96,98,121,123],[83,96,98,123],[93],[91,95],[82,91,92,94,96,98,123],[88],[89,90],[82,89,91],[199],[199,200,201,202],[201],[197,219,220,222],[197,198,210,222],[188,195,197,206,222],[203],[188,197,206,209,218,221,222],[197,198,203,206,222],[197,219,220,221,222],[197,203,207,208,209,222],[188,193,195,197,198,203,206,207,208,209,210,211,212,218,219,220,221,222,225,226,227,228,233],[188,195,197,198,206,207,219,220,221,222,226],[71,148],[149],[148,150],[71,78,79,80,123,136,150],[71,79],[71],[71,79,81,136],[71,80],[137,138,139,140,141,142,143,144,145,146,147],[71,150],[71,136],[71,80,81],[71,81,136],[59],[59,60],[60],[61,65,67,70],[62,66],[61,62,65],[61,65,67,71],[68,69],[67,68],[63],[63,64],[64],[157],[158],[73,75,76,77],[77],[76],[75],[126,134,135],[132,133],[81,126],[81,126,131,133],[81,130,132],[128,129],[126,136],[81,126,127,129],[81,128],[125,130],[81,96,98,123,124,129,133],[71,151,153],[71,78,151,153],[71,81,136,151,153,159],[71,79,151,153],[71,80,81,151,153,172],[81,165],[71,136,160,165],[151,166,234],[71,136,161,165],[71,136,151,165],[71,79,163,165],[166,167,168,169,170],[153,154,155,156,160,161,162,163,164,165,171],[71,152],[172,185,186],[71,151],[71,81,151],[173,174,175,176,178,179,180,181,182,183,184],[71,151,182],[71,81,151,177],[71,79,81,151]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},"73cc073d7a102374d6b9bcdbde8072f3aa3c8f86767f562086b6a7a7df5f22c0","e66deb230968faf1a8f37ea6f217f319dd0dad7a39ead1bf5d4f54e2eb5ce4bd","13ee17bbdd42459d6450899cea1999aab64c723328e773c0be5e8a13b51b6259","f79062b892847b4e33d0b730bf9dcf66ac24fc3fe9df7bba4d0997c6bdf6cbde","20f3a5481b2c009533e9e6b864cbd4ae3c09ccfca0577918b3587cda295e7071","2797c77cc0da0836a37c8c1fe64942a999c73f811f5481d827ac7d8cb9ddedd3","5a40849c3a5d5a8c2aa754fc964830ea344c94bfeddd4b442bdeae899e2f5339","848836f528d4ac80a5b3212c719225a3ba09406d44fea755cb642299a68d7056","fae981646738728f2b882c14625b99c23c430400a21c081dc6888d9703bd6c68","45c8a077eb724bae4e1fc0d15f76618650e32e55c4582dc1f27153ecdeb66ca6","302c082712d8fe41be387cd34af45b163b5314c04ddeefe53b1cb57fe46d3221","0c1a84d7b974db1961c6e9ab71d5257dfa38d99fb6300f22de55750526c9daef","69bc40bb169ea922cab72dc2142f37e75b44095cf1e79ca1b2809164c284de57",{"version":"264f935450101e4b000eb351cf75c9d799ca20a278b260a9e5770303b5f2b6a3","impliedFormat":99},{"version":"f6f171b23ae6db93454343f1b788960f799c8f37043904874a752c0990c6fca6","impliedFormat":99},{"version":"089f9928e7ab1ca2c225e167a80ff1cb5ed0a71c98be7e81f040a51e2cc6bf5e","impliedFormat":99},{"version":"b11acc27c280988d7256bbd8ffe9f1cb5a0e5ed17cddf5335289ee0e81500369","affectsGlobalScope":true,"impliedFormat":99},{"version":"02ab5dbcaa58da1d58c46c7cdfa7f94792c5ccf0fc7c0622ef33755fe415366c","impliedFormat":99},{"version":"2a04530c2579ddcf996e1cf017caaba573e0ebf8a5b9e45d3bc25ba4489fb5a3","impliedFormat":99},"f41d91b2db1112fcc673a6862fe68cadcbdd0a66ed16b47ac74a0a6da8932bb4","e689cc8cd8a102d31c9d3a7b0db0028594202093c4aca25982b425e8ae744556","1b4ed9deaba72d4bc8495bf46db690dbf91040da0cb2401db10bad162732c0e2","478e59ac0830a0f6360236632d0d589fb0211183aa1ab82292fbca529c0cce35",{"version":"89121c1bf2990f5219bfd802a3e7fc557de447c62058d6af68d6b6348d64499a","impliedFormat":1},{"version":"d4a22007b481fe2a2e6bfd3a42c00cd62d41edb36d30fc4697df2692e9891fc8","impliedFormat":1},{"version":"a5dbd4c9941b614526619bad31047ddd5f504ec4cdad88d6117b549faef34dd3","impliedFormat":99},{"version":"d36518bd617ff673c7d9f372706f241932a43f27673187f2a8472e93c40041c6","impliedFormat":99},{"version":"f8eb2909590ec619643841ead2fc4b4b183fbd859848ef051295d35fef9d8469","impliedFormat":99},{"version":"fe784567dd721417e2c4c7c1d7306f4b8611a4f232f5b7ce734382cf34b417d2","impliedFormat":99},{"version":"2b37ba54ec067598bf912d56fcb81f6d8ad86a045c757e79440bdef97b52fe1b","impliedFormat":99},{"version":"1bc9dd465634109668661f998485a32da369755d9f32b5a55ed64a525566c94b","impliedFormat":99},{"version":"5702b3c2f5d248290ed99419d77ca1cc3e6c29db5847172377659c50e6303768","impliedFormat":99},{"version":"9764b2eb5b4fc0b8951468fb3dbd6cd922d7752343ef5fbf1a7cd3dfcd54a75e","impliedFormat":99},{"version":"1fc2d3fe8f31c52c802c4dee6c0157c5a1d1f6be44ece83c49174e316cf931ad","impliedFormat":99},{"version":"dc4aae103a0c812121d9db1f7a5ea98231801ed405bf577d1c9c46a893177e36","impliedFormat":99},{"version":"106d3f40907ba68d2ad8ce143a68358bad476e1cc4a5c710c11c7dbaac878308","impliedFormat":99},{"version":"42ad582d92b058b88570d5be95393cf0a6c09a29ba9aa44609465b41d39d2534","impliedFormat":99},{"version":"36e051a1e0d2f2a808dbb164d846be09b5d98e8b782b37922a3b75f57ee66698","impliedFormat":99},{"version":"4f7e6730a707b0d4971d96de3b562819ce304af770723707a58a578dd55a5e52","impliedFormat":99},{"version":"d1c1213e9176398b4d1d9aa543691181fd5ae23ae5415e80ede41f1ec1ccf72a","impliedFormat":99},{"version":"45d1e8fb4fd3e265b15f5a77866a8e21870eae4c69c473c33289a4b971e93704","impliedFormat":99},{"version":"cd40919f70c875ca07ecc5431cc740e366c008bcbe08ba14b8c78353fb4680df","impliedFormat":99},{"version":"ddfd9196f1f83997873bbe958ce99123f11b062f8309fc09d9c9667b2c284391","impliedFormat":99},{"version":"2999ba314a310f6a333199848166d008d088c6e36d090cbdcc69db67d8ae3154","impliedFormat":99},{"version":"62c1e573cd595d3204dfc02b96eba623020b181d2aa3ce6a33e030bc83bebb41","impliedFormat":99},{"version":"ca1616999d6ded0160fea978088a57df492b6c3f8c457a5879837a7e68d69033","impliedFormat":99},{"version":"835e3d95251bbc48918bb874768c13b8986b87ea60471ad8eceb6e38ddd8845e","impliedFormat":99},{"version":"de54e18f04dbcc892a4b4241b9e4c233cfce9be02ac5f43a631bbc25f479cd84","impliedFormat":99},{"version":"453fb9934e71eb8b52347e581b36c01d7751121a75a5cd1a96e3237e3fd9fc7e","impliedFormat":99},{"version":"bc1a1d0eba489e3eb5c2a4aa8cd986c700692b07a76a60b73a3c31e52c7ef983","impliedFormat":99},{"version":"4098e612efd242b5e203c5c0b9afbf7473209905ab2830598be5c7b3942643d0","impliedFormat":99},{"version":"28410cfb9a798bd7d0327fbf0afd4c4038799b1d6a3f86116dc972e31156b6d2","impliedFormat":99},{"version":"514ae9be6724e2164eb38f2a903ef56cf1d0e6ddb62d0d40f155f32d1317c116","impliedFormat":99},{"version":"970e5e94a9071fd5b5c41e2710c0ef7d73e7f7732911681592669e3f7bd06308","impliedFormat":99},{"version":"491fb8b0e0aef777cec1339cb8f5a1a599ed4973ee22a2f02812dd0f48bd78c1","impliedFormat":99},{"version":"6acf0b3018881977d2cfe4382ac3e3db7e103904c4b634be908f1ade06eb302d","impliedFormat":99},{"version":"2dbb2e03b4b7f6524ad5683e7b5aa2e6aef9c83cab1678afd8467fde6d5a3a92","impliedFormat":99},{"version":"135b12824cd5e495ea0a8f7e29aba52e1adb4581bb1e279fb179304ba60c0a44","impliedFormat":99},{"version":"e4c784392051f4bbb80304d3a909da18c98bc58b093456a09b3e3a1b7b10937f","impliedFormat":99},{"version":"2e87c3480512f057f2e7f44f6498b7e3677196e84e0884618fc9e8b6d6228bed","impliedFormat":99},{"version":"66984309d771b6b085e3369227077da237b40e798570f0a2ddbfea383db39812","impliedFormat":99},{"version":"e41be8943835ad083a4f8a558bd2a89b7fe39619ed99f1880187c75e231d033e","impliedFormat":99},{"version":"260558fff7344e4985cfc78472ae58cbc2487e406d23c1ddaf4d484618ce4cfd","impliedFormat":99},{"version":"e6274d956641c1cbd5a01a221a85a6671fd85104ed6b530f8d34ad3086804133","impliedFormat":99},{"version":"77516308358982bb05209e8c0ed6f321860e03393587d89f61055941e5bbcdd2","impliedFormat":99},{"version":"dc8652855a95ef9b9c12be8d2f5e6fc37b96aa2144f6c6f195cd1d2e07f721ee","impliedFormat":99},"e2cb25ca55e10ba874410188a53331a6b0b2bc13c0ee4d538bde50460a4e1b77","041afde4e1ac27e6fabdc2ca87882a3a766443fcfe1a1cfc3ed78bcc1c25b28a","c2049793874bbeafd60402bab915f3d285f4057e718dfdefe8a54ccc80c991dd","8a2b6f999a708119f4fa55fc58c5803ca9563340d0a54b9fe2a4fa14838f148c","2db5b1bbf946e20cef3c889cb7be46e3da384bdd1b4b53964253d97635718774","79e620484ae1a7011482631159563e4729f7f4d4c316b914125cb95f678ffbb9","6434c2976daf446cfd95935af4e0a0b6b369ce81af183579dab3ac6567dbbfd0","f50c1778b48a9275078ad81abaa5b4cb13a295b3889986f8e72fe61dd9cd8b86","6e935a5aec1b1f86cfa97fb93ec13c8759479712014d7dc4c13f140f7d409357","8cd4c86b90f9a96ba804585a4b6a998f484a860af3dfd12641ecb9eca109274b","8cd4c86b90f9a96ba804585a4b6a998f484a860af3dfd12641ecb9eca109274b","1b92de1f5b74cf4bda283aa7688c80781e9c7273f44a4ef2db084747a94be933","8c24aeb14985e8089f29e1fea075e95a7c8825077277079d5dc4130ceb6339de","ff041f34cc1936cb45f94de1924d396abd69b3d6e0cc887dfaa0b6ec176e27e1","6abd2f68e6651205f5d7763dcf7a5b5e5dc28b6194b097b467913d2cf19c1dd2","c04c352fc277c57e16519814a13e1b84e6c54c461b89ee63c8bff94ddf615555","e406a8398f12e8bb0d7661b9974a9ce78043a916cd2c652f7b82b7889e57f9e8","441c8ea68ff583cefd0f77d2a1699f6328d714ebfb9435ffedad5470392de2e7","cc60d13b9e2058908f082cca058357d2ebd83143b3dc4e3a01731e8a4b7ae2fe","5ca4d7a999b9fa8c7e2ef9746968eaeabb8e69a904cc62a3c18ac23b9664c8a8","bff722032fb479d76cdd167e0aa05e2e3ca9b728cff777e893aa694bad01e3a9","3fc92b50147ec179c1db1355901683a7f48646c6203ae982f2bc31dc8959f4ff","ad43cfeea2ffc4f26107e49ae92bed3fe01b0c2aa3e328e293d7b0dceb01300f","50e52950b1b92455f40c3fba61ee9a43e74bf9bdf6a25e01ad2e3a2226bbb2ec","cd2e2d6ffad8a1de80249fd4aa35f6c6f9160c18f69fbaf6507072eba208abda","3b8dd8f967501f6193f2d31f8a124e05186264f37f1b73d073cf39c6e123fe50","bc699cb86e1528d370a29ae99fe8f89e3a838bb620ad4071a4c9999a390c8361",{"version":"3637e4089eaf583a1675743fa74e25ff09144b400782ed787d37980fc36fa085","impliedFormat":99},{"version":"1933133fa359c4bbfd2f2a91418231d86d88e20f53a0342379b6ad7f1fdbd4c0","signature":"487ae9dd80a97c7c7fa8cb272b81033c4252b064047f8b10b2d421e3a909dacf"},{"version":"ebc93d4e5c0c5acd476bc4a71c933e9337ec07b1167cb9aca22cd3e74ed8e755","signature":"0e0f762a06bd12f01872c86e03fd88a6830c3991ea17734ea2859a43a96b6ac5"},{"version":"70a1e5c348e3ae1b90a48548de6699aa0fd2543e8cacf9f09da990cd8a93e44a","signature":"88738bfae85b658c5728b5d84e7e9b78788281edc397bc6a75da4d1b554d2041"},{"version":"6f8f7a81841530153b4c777a69ae877db31ec7050bf9a947bac08c70e2ca12a0","signature":"af1e3e5216a3a605be2384495ea43d50684dc0b674b0fc795cdaaaa51f979db6"},"16976e5481a0abbe56fa82010ecd47c152e76d9c7ecb5977d68a1b2c4a785c91","749f3bd08d4fc5cc1c95e3c3b07dede327898a51cf6fa7f156456c0d46aae680","7797184093e9b9f6203d001829de6f91d142497913c67a8d0c2a5b25de005a68",{"version":"4b37b88158c9366c4fceb595973d2794d4b301defa021f4861ce8803e92c33b1","signature":"d531e9345fbc0cb9e1fa9428752f675b40f2c32c8bda0c1547fc64522e3295d5"},{"version":"ca79fc12a15de6558a69e8b92f0e567b5993bf68ee29d98b9d851821a9c8f4f3","signature":"33be8125f7170aedbf456f05059014f0fbbfbf4842eb76d3c43a86bb82045df6"},{"version":"bc3d0ec34c59f89bc85efb8ebd3b26200d064ba196bab18a84e80d294fdbe68e","signature":"2246cd9c0a20fdf3df7fa37ee25c4e8d3989d38eb6274203fb0e9d43020a5cfc"},{"version":"78a28d37c45f13690e3940c57df9275d2f2289a4fe24683c043295baf1bc5f29","signature":"f6d2f543d91edabb84f53c26e611514f0ecec59b72f6e5321145c00c70d0f1e7"},{"version":"bdc257c47e45b5560fb169927e9e6e2795e69bb8f42f9c77feeb32cbb73457aa","signature":"6e12e26efaaeb591c891d49658152d874a1fc869c1231176172a4e90a78320c4"},{"version":"6a7c21ead4a656b7de058d86333fd47a8d98efe651a0b8d4770867ec5c858bc6","signature":"8e0872445888b4eac9c8915022cc2b58291db248fc33b0994c7e3296d7af306a"},{"version":"73ef1c220fb888de44caa63d060824570a1e3aca22e75b23443eafc7e97391bd","signature":"7064efe511093c8ab839f6c8bbe2ffc2911bc299ec8880f2129b541e2e32cc4c"},{"version":"e827d861bb2a49b825e17f2456604853752953a1cb3ac1eac76bcf68361ee205","signature":"41259a2d0eac0369e1581e08e5aef6ffef48f9ffc3d06d874524c9da6f1e4f29"},{"version":"099a8f50c86406e126dc14d04a796ab7b02e0bb5cffde56169cb31d6b5b32d3a","signature":"9722d152fcdb95a635c8132764b7ded085073b4734daf2b19798be965fb10160"},{"version":"f04098ffdee404b958aea855d31b686e532087aacfd1c5d2dfa42a367a6356a2","signature":"db3f677fdf3de11b7a334e5c8e677df05686b3d6e172d46ad3a1674790e5d03c"},{"version":"c6dff3dc3b359ae972b0b4a8e79eed36047cb14a10708c8e09cf9535d0b48a4b","signature":"3a5ebec0a04030822776a5dcc7f9b053a38d79aa4b15e7c4df009ee5ac813dbf"},{"version":"4ec2bdfbd822da10691dbf7fa0f6f2d22b1c44c91d7ee88815b30ef64a83955b","signature":"77b54b2bf7d6e4a05b79d286903ad9f71141f91409729c5deb8bfa417d7f0960"},{"version":"431cd46724c7e174594c9c51902efa2616726814dcf1067ecade82acce38a453","signature":"573f356148118ea54c7b9a2eff374329022b1e38d5a1070cae53c97d7b0ef355"},{"version":"5992835346f60c381e9b34f6beba1cb46838df54cd8286e5e4397638b5213ea4","signature":"ef5ae01c8b2b11403554c319af51db9c3dc26051cb077b75c8885b5d02821557"},{"version":"9f97a53d22b919d511e419dfdc5991a88e26134890828412f1a8cfe9d207e14b","signature":"1da18878fb9f757426713faa0c4b289ff717f1bb26bcefc358c2b03aae5f11be"},{"version":"ac1a81b2eb31f1fa0ec4a13e2055c0acd43f1e920b4be98f58a408a05c4f83c4","signature":"5d7c0080e6e16f13e23ec822364b951a8135242ec61db38d230725c4cc8bba00"},{"version":"fd61e95ecc456c1f03c08dac1162772de3bc699a66700cd05f2d4604b87ad6e4","signature":"9fe63d563259a1a7e32332cd5cc24bccd9f0a34d0d9f2e80df7370d4205e91cb"},"5399c605927513bf84fadca98140f7d1fb2b5bd13e1b95c63245c5cf0889a97b",{"version":"b1c6c408fcf06038f43457ceb9da822442ec7ad0e32d76bdeeade212247fc449","signature":"947c6ccd6a0b2805b4e3479b51112d8affc4b64ecb209ee15a480a10c44a48a1"},{"version":"4d3dfc0acd123839e7bff097e94faaea926568ad8684eb4ba03900beeff52369","signature":"c4f0b3fb0d90e865c3ab69b9fff9c8eb13ff8fd49bcfce1f10f696bf5db9cdc9"},{"version":"8cd5a04eb7f5001acd21617a8b856d2266efa789108f3eb5a0ed2d8c3fb8e98f","signature":"e39e74456caf2be7616c1327e6447e6559e64d5ffb161d43bb44f50b3461ee59"},{"version":"6ea1c33c1a97126642493bfe1bd7b84e1d6390bb4777ad1ea7335f66b0dec47f","signature":"8c3dde564136c2b88384fa63c823c9b4282b5b813ad8287a1c8f3734efb801a0"},{"version":"6eda3611f992a2dc2d40b1818174482a3979da38814f70151914f4da5011f36b","signature":"d6faa230dcddc146229e72291ed444476e5c3fcf75b102fb0c78a46510e82424"},{"version":"d7721bf475212e8300ba6b3af4b96f89d5c5a1b8f06607a87c5a785fc2102645","signature":"defdff60f915e05c089175d08b85199747f561dc318ac8dceacc844753060e6d"},{"version":"ad3b759c49df66160ceb01f83e87dc4dd98c288c9225c035e3485ca417a487ed","signature":"1a3dbaf2ef5ba30576b22fe1a26c868d9c76646670afb0c90ce7b6e1233211b2"},{"version":"be4d73c204e61a264e6d2846564cb7b7d3ceb1cc4baf4738a28325143d14ce94","signature":"bfa14541c2b697d5a73041bfa7a318b47db2301e2045856c7ab9db7bb3f4d21b"},{"version":"15a391764015ac5f4779efbe3130e026811317237cea8069b11ec13bb11a403c","signature":"caee8e88a02710517f1d1849b48fa8793878f4ab0c51cde5c025ba6f21b946df"},{"version":"acc41367f9da87a45e9219e3740ed62d8b2e8bb22922153d620e0b788628c522","signature":"bbf57449e9341dc4b6f56e7ce74d0edee6cd7c4ca55b52664469de0c7d384445"},{"version":"cadeb2c96f1c964d7e49c0f17d6805e1b4dee62f0862c49bb178dae6ab277e8e","impliedFormat":99},{"version":"0528f6d21f7a02d4092895090d2dd86104bd5a3e79eced96d5a1a7dd90943d17","impliedFormat":99},{"version":"b5ce343886d23392be9c8280e9f24a87f1d7d3667f6672c2fe4aa61fa4ece7d4","impliedFormat":99},{"version":"eb64a68249f1ee45e496a23cd0be8fe8c84aecb4c038b86d4abcc765c5ba115e","impliedFormat":99},{"version":"b0857bb28fd5236ace84280f79a25093f919fd0eff13e47cc26ea03de60a7294","impliedFormat":99},{"version":"5e43e0824f10cd8c48e7a8c5c673638488925a12c31f0f9e0957965c290eb14c","impliedFormat":99},{"version":"ef13c73d6157a32933c612d476c1524dd674cf5b9a88571d7d6a0d147544d529","impliedFormat":99},{"version":"3b0a56d056d81a011e484b9c05d5e430711aaecd561a788bad1d0498aad782c7","impliedFormat":99},{"version":"3354286ef917d22c72e0c830324062f950134d8882e9ea57ad6ade3d8ad943cf","impliedFormat":99},{"version":"3dedc468e9b0ed804c0226482e344bd769417f834988af838d814504af81cba6","impliedFormat":99},{"version":"ac3d263474022e9a14c43f588f485d549641d839b159ecc971978b90f34bdf6b","impliedFormat":99},{"version":"3b89216a7e38a454985ad17bb2ff85792837dc812f2a89fa5f60ad0a2e216fa7","impliedFormat":99},{"version":"10073cdcf56982064c5337787cc59b79586131e1b28c106ede5bff362f912b70","impliedFormat":99},{"version":"82179358c2d9d7347f1602dc9300039a2250e483137b38ebf31d4d2e5519c181","impliedFormat":99},{"version":"4e003c868b0d8f8ad200b96cbc653e18e513fa23e1c19c4fe3cc25d4394efc47","impliedFormat":99},{"version":"091546ac9077cddcd7b9479cc2e0c677238bf13e39eab4b13e75046c3328df93","impliedFormat":99},{"version":"42a12f2faa483c9b48195ed794d22698162274e755f6e07219c2351c4f08d732","impliedFormat":99},{"version":"727858fb893b87791876dee5e3cd4c187a721d2de516fd19d3d00dc6e8a894b3","impliedFormat":99},{"version":"5bfaa2ee33e63a1b17b08dbefd7a3c42d1e0f914e52aca5bef679b420bd7a07c","impliedFormat":99},{"version":"7d5c6cc5d537c47c7723a1fe76411b99373eb55c487045dfd076c1956e87389a","impliedFormat":99},{"version":"bcbd3becd08b4515225880abea0dbfbbf0d1181ce3af8f18f72f61edbe4febfb","impliedFormat":99},{"version":"a86701e56b10a6d1ef9b2ecaeedbab94ed7b957a646cd71fd09d02b323c6d3d7","impliedFormat":99},{"version":"b3f0791a73b6521da68107c5ba1bfed4bc21ff7099b892700fd65670e88ef6ee","impliedFormat":99},{"version":"d0411dddbef50f9ad568ee9d24b108153bcb8f0db1094de6dfbadf02feb3aa70","impliedFormat":99},{"version":"25249ca5fe64ca60d7bfb7fbbf0cb084324853b03a265dbbbc45fb4949de7567","impliedFormat":99},{"version":"06db2f8ba1d1dfacf04529cb731081ab23f133f29c7608ebdfbcab356996827c","impliedFormat":99},{"version":"bdd14f07b4eca0b4b5203b85b8dbc4d084c749fa590bee5ea613e1641dcd3b29","impliedFormat":99},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"2eeffcee5c1661ddca53353929558037b8cf305ffb86a803512982f99bcab50d","impliedFormat":99},{"version":"9afb4cb864d297e4092a79ee2871b5d3143ea14153f62ef0bb04ede25f432030","affectsGlobalScope":true,"impliedFormat":99},{"version":"31d5fb0aeb0368909fbe8cd9b893c16350aa94d48a2f909fdd393982ceb4814d","affectsGlobalScope":true,"impliedFormat":99},{"version":"90fe5875e2c7519711442683a9489416819c6cec8d395e48ff568e94254533e7","impliedFormat":99},{"version":"69bf2422313487956e4dacf049f30cb91b34968912058d244cb19e4baa24da97","impliedFormat":99},{"version":"6987dfb4b0c4e02112cc4e548e7a77b3d9ddfeffa8c8a2db13ceac361a4567d9","impliedFormat":99},{"version":"72a863bc6c0fc7a6263d8e07279167d86467a3869b5f002b1df6eaf5000ccc7b","impliedFormat":99},{"version":"5e2ba3d18d78aebbde1f34bde356e41e9c76eeaeaeee56a37036596a9eff4211","impliedFormat":99},{"version":"8280ae8ccc0493b32d1742d585357ab9f0a508ea050af25a5a20d64010d0a5cf","impliedFormat":99},{"version":"7adfd9f9056ecd4ae6c65fde2a98654960c662714c73f048478959d04c09e144","impliedFormat":99},{"version":"32b35cf0dc3a1b1a7118b61c34ce2ad1a29695851679f9ec34e0776f2ece2a69","impliedFormat":99},{"version":"b413fbc6658fe2774f8bf9a15cf4c53e586fc38a2d5256b3b9647da242c14389","impliedFormat":99},{"version":"42f0f7e74d73ae5873ed666373e09a367d62232ca378677094d0dc06020d6e00","impliedFormat":99},{"version":"c30a41267fc04c6518b17e55dcb2b810f267af4314b0b6d7df1c33a76ce1b330","impliedFormat":1},{"version":"72422d0bac4076912385d0c10911b82e4694fc106e2d70added091f88f0824ba","impliedFormat":1},{"version":"da251b82c25bee1d93f9fd80c5a61d945da4f708ca21285541d7aff83ecb8200","impliedFormat":1},{"version":"64db14db2bf37ac089766fdb3c7e1160fabc10e9929bc2deeede7237e4419fc8","impliedFormat":1},{"version":"98b94085c9f78eba36d3d2314affe973e8994f99864b8708122750788825c771","impliedFormat":1},{"version":"ebb9b9fa684d70aef64614a59b7582f46f4982139b8b632b911ef98e10c4d117","impliedFormat":99},{"version":"34c430feada8934550033b0301ecbefb57399bb51d3cd87abb2d99dd3b3dc067","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"}],"root":[[153,156],[160,176],[178,187],235],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":99,"noEmitOnError":false,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":false,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":5,"tsBuildInfoFile":"./tsconfig.tsbuildinfo","useUnknownInCatchVariables":true,"verbatimModuleSyntax":true},"referencedMap":[[217,1],[83,2],[218,3],[224,4],[225,5],[197,6],[196,7],[219,6],[204,8],[206,9],[205,10],[195,11],[189,12],[191,13],[193,14],[194,12],[231,15],[233,16],[232,17],[230,18],[87,19],[86,20],[85,21],[121,22],[101,23],[102,23],[103,23],[104,23],[105,23],[106,23],[107,24],[109,23],[108,23],[120,25],[110,23],[112,23],[111,23],[114,23],[113,23],[115,23],[116,23],[117,23],[118,23],[119,23],[100,23],[99,26],[77,27],[73,28],[76,29],[74,30],[75,31],[98,32],[97,33],[123,34],[122,35],[124,36],[94,37],[96,38],[95,39],[89,40],[88,2],[91,41],[90,42],[200,43],[203,44],[201,43],[202,45],[221,46],[211,47],[207,48],[208,8],[227,49],[222,50],[209,51],[226,52],[210,53],[234,54],[228,55],[149,56],[150,57],[151,58],[137,59],[138,60],[139,61],[140,62],[141,63],[148,64],[142,65],[146,60],[143,66],[147,67],[144,68],[145,66],[60,69],[61,70],[59,71],[71,72],[67,73],[66,74],[68,75],[70,76],[69,77],[64,78],[65,79],[63,80],[158,81],[159,82],[177,83],[78,84],[81,30],[79,85],[80,86],[136,87],[134,88],[131,89],[132,90],[133,91],[135,92],[127,93],[128,94],[129,95],[126,96],[130,97],[154,98],[165,61],[155,99],[160,100],[161,100],[156,98],[162,101],[163,101],[164,102],[169,103],[167,104],[235,105],[166,106],[170,107],[168,108],[171,109],[172,110],[153,111],[187,112],[173,113],[174,113],[175,114],[176,113],[185,115],[183,116],[178,117],[182,114],[179,113],[180,118],[184,116],[181,114]],"latestChangedDtsFile":"./composable/composed/$node-schema.spec.d.ts","version":"6.0.2"}
1
+ {"fileNames":["../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../ctx/lib/context/slice.d.ts","../../ctx/lib/context/container.d.ts","../../ctx/lib/context/index.d.ts","../../ctx/lib/inspector/meta.d.ts","../../ctx/lib/timer/timer.d.ts","../../ctx/lib/timer/clock.d.ts","../../ctx/lib/timer/index.d.ts","../../ctx/lib/inspector/inspector.d.ts","../../ctx/lib/inspector/index.d.ts","../../ctx/lib/plugin/ctx.d.ts","../../ctx/lib/plugin/types.d.ts","../../ctx/lib/plugin/index.d.ts","../../ctx/lib/index.d.ts","../../../node_modules/.pnpm/orderedmap@2.1.1/node_modules/orderedmap/dist/index.d.ts","../../../node_modules/.pnpm/prosemirror-model@1.25.4/node_modules/prosemirror-model/dist/index.d.ts","../../../node_modules/.pnpm/prosemirror-transform@1.12.0/node_modules/prosemirror-transform/dist/index.d.ts","../../../node_modules/.pnpm/prosemirror-view@1.41.8/node_modules/prosemirror-view/dist/index.d.ts","../../../node_modules/.pnpm/prosemirror-state@1.4.4/node_modules/prosemirror-state/dist/index.d.ts","../../../node_modules/.pnpm/prosemirror-inputrules@1.5.1/node_modules/prosemirror-inputrules/dist/index.d.ts","../../prose/lib/inputrules.d.ts","../../prose/lib/state.d.ts","../../prose/lib/view.d.ts","../../prose/lib/model.d.ts","../../../node_modules/.pnpm/@types+unist@3.0.3/node_modules/@types/unist/index.d.ts","../../../node_modules/.pnpm/@types+mdast@4.0.4/node_modules/@types/mdast/index.d.ts","../../../node_modules/.pnpm/micromark-util-types@2.0.2/node_modules/micromark-util-types/index.d.ts","../../../node_modules/.pnpm/mdast-util-from-markdown@2.0.3/node_modules/mdast-util-from-markdown/lib/types.d.ts","../../../node_modules/.pnpm/mdast-util-from-markdown@2.0.3/node_modules/mdast-util-from-markdown/lib/index.d.ts","../../../node_modules/.pnpm/mdast-util-from-markdown@2.0.3/node_modules/mdast-util-from-markdown/index.d.ts","../../../node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/lib/index.d.ts","../../../node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/index.d.ts","../../../node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/index.d.ts","../../../node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/index.d.ts","../../../node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/callable-instance.d.ts","../../../node_modules/.pnpm/trough@2.2.0/node_modules/trough/lib/index.d.ts","../../../node_modules/.pnpm/trough@2.2.0/node_modules/trough/index.d.ts","../../../node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/index.d.ts","../../../node_modules/.pnpm/unified@11.0.5/node_modules/unified/index.d.ts","../../../node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/lib/index.d.ts","../../../node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/index.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/types.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/index.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/blockquote.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/break.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/code.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/definition.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/emphasis.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/heading.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/html.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image-reference.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/inline-code.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link-reference.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list-item.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/paragraph.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/root.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/strong.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/text.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/index.d.ts","../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/index.d.ts","../../../node_modules/.pnpm/remark-stringify@11.0.0/node_modules/remark-stringify/lib/index.d.ts","../../../node_modules/.pnpm/remark-stringify@11.0.0/node_modules/remark-stringify/index.d.ts","../../../node_modules/.pnpm/remark@15.0.1/node_modules/remark/index.d.ts","../../transformer/lib/utility/stack.d.ts","../../transformer/lib/utility/index.d.ts","../../transformer/lib/serializer/stack-element.d.ts","../../transformer/lib/serializer/state.d.ts","../../transformer/lib/serializer/types.d.ts","../../transformer/lib/utility/types.d.ts","../../transformer/lib/parser/stack-element.d.ts","../../transformer/lib/parser/state.d.ts","../../transformer/lib/parser/types.d.ts","../../transformer/lib/parser/index.d.ts","../../transformer/lib/serializer/index.d.ts","../../transformer/lib/index.d.ts","../../core/lib/internal-plugin/atoms.d.ts","../../core/lib/internal-plugin/commands.d.ts","../../core/lib/internal-plugin/config.d.ts","../../core/lib/internal-plugin/editor-state.d.ts","../../core/lib/internal-plugin/editor-view.d.ts","../../core/lib/internal-plugin/init.d.ts","../../core/lib/internal-plugin/parser.d.ts","../../core/lib/internal-plugin/schema.d.ts","../../core/lib/internal-plugin/serializer.d.ts","../../core/lib/internal-plugin/keymap.d.ts","../../core/lib/internal-plugin/paste-rule.d.ts","../../core/lib/internal-plugin/index.d.ts","../../core/lib/editor/editor.d.ts","../../core/lib/editor/index.d.ts","../../core/lib/index.d.ts","../../../node_modules/.pnpm/nanoid@5.1.11/node_modules/nanoid/index.d.ts","../src/composable/utils.ts","../src/composable/$command.ts","../src/composable/$input-rule.ts","../src/composable/$paste-rule.ts","../../exception/lib/code.d.ts","../../exception/lib/error.d.ts","../../exception/lib/index.d.ts","../src/composable/$mark.ts","../src/composable/$node.ts","../src/composable/$prose.ts","../src/composable/$shortcut.ts","../src/composable/$view.ts","../src/composable/$ctx.ts","../src/composable/composed/$node-schema.ts","../src/composable/composed/$mark-schema.ts","../src/composable/composed/$use-keymap.ts","../src/composable/composed/$attr.ts","../src/composable/composed/$remark.ts","../src/composable/composed/index.ts","../src/composable/index.ts","../src/macro/call-command.ts","../src/macro/force-update.ts","../src/macro/get-html.ts","../src/macro/get-markdown.ts","../../prose/lib/toolkit/browser.d.ts","../../prose/lib/toolkit/input-rules/custom-input-rules.d.ts","../../prose/lib/toolkit/input-rules/common.d.ts","../../prose/lib/toolkit/input-rules/mark-rule.d.ts","../../prose/lib/toolkit/input-rules/node-rule.d.ts","../../prose/lib/toolkit/input-rules/index.d.ts","../../prose/lib/toolkit/position/index.d.ts","../../prose/lib/toolkit/prose/helper.d.ts","../../prose/lib/toolkit/prose/types.d.ts","../../prose/lib/toolkit/prose/node.d.ts","../../prose/lib/toolkit/prose/schema.d.ts","../../prose/lib/toolkit/prose/selection.d.ts","../../prose/lib/toolkit/prose/index.d.ts","../../prose/lib/toolkit/index.d.ts","../../prose/lib/index.d.ts","../src/macro/insert.ts","../src/macro/outline.ts","../src/macro/replace-all.ts","../src/macro/set-attr.ts","../src/macro/markdown-to-slice.ts","../src/macro/insert-pos.ts","../src/macro/replace-range.ts","../src/macro/index.ts","../src/pipe.ts","../src/index.ts","../../../node_modules/.pnpm/@vitest+pretty-format@4.1.5/node_modules/@vitest/pretty-format/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/display.d.ts","../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/types.d.ts","../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/helpers.d.ts","../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/timers.d.ts","../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/types.d-bcelap-c.d.ts","../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/diff.d.ts","../../../node_modules/.pnpm/@vitest+runner@4.1.5/node_modules/@vitest/runner/dist/tasks.d-bh0ijn67.d.ts","../../../node_modules/.pnpm/@vitest+runner@4.1.5/node_modules/@vitest/runner/dist/index.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@24_26bb1af5e7f9c50629dd39afa5fddd4a/node_modules/vitest/dist/chunks/traces.d.d2t_r8rx.d.ts","../../../node_modules/.pnpm/vite@8.0.11_@types+node@24._642ae5a528aae07965976d05c86db514/node_modules/vite/types/hmrpayload.d.ts","../../../node_modules/.pnpm/vite@8.0.11_@types+node@24._642ae5a528aae07965976d05c86db514/node_modules/vite/dist/node/chunks/modulerunnertransport.d.ts","../../../node_modules/.pnpm/vite@8.0.11_@types+node@24._642ae5a528aae07965976d05c86db514/node_modules/vite/types/customevent.d.ts","../../../node_modules/.pnpm/vite@8.0.11_@types+node@24._642ae5a528aae07965976d05c86db514/node_modules/vite/types/hot.d.ts","../../../node_modules/.pnpm/vite@8.0.11_@types+node@24._642ae5a528aae07965976d05c86db514/node_modules/vite/dist/node/module-runner.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@4.1.5/node_modules/@vitest/snapshot/dist/environment.d-dojxxzv9.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@4.1.5/node_modules/@vitest/snapshot/dist/rawsnapshot.d-d_x3-62x.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@4.1.5/node_modules/@vitest/snapshot/dist/index.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@24_26bb1af5e7f9c50629dd39afa5fddd4a/node_modules/vitest/dist/chunks/config.d.a1h_y6jt.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@24_26bb1af5e7f9c50629dd39afa5fddd4a/node_modules/vitest/dist/chunks/environment.d.crsxczp1.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@24_26bb1af5e7f9c50629dd39afa5fddd4a/node_modules/vitest/dist/chunks/rpc.d.b_8spu0w.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@24_26bb1af5e7f9c50629dd39afa5fddd4a/node_modules/vitest/dist/chunks/worker.d.zphpo4yb.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@24_26bb1af5e7f9c50629dd39afa5fddd4a/node_modules/vitest/dist/chunks/browser.d.bcoexmfg.d.ts","../../../node_modules/.pnpm/@vitest+spy@4.1.5/node_modules/@vitest/spy/optional-types.d.ts","../../../node_modules/.pnpm/@vitest+spy@4.1.5/node_modules/@vitest/spy/dist/index.d.ts","../../../node_modules/.pnpm/tinyrainbow@3.1.0/node_modules/tinyrainbow/dist/index.d.ts","../../../node_modules/.pnpm/@standard-schema+spec@1.1.0/node_modules/@standard-schema/spec/dist/index.d.ts","../../../node_modules/.pnpm/@types+deep-eql@4.0.2/node_modules/@types/deep-eql/index.d.ts","../../../node_modules/.pnpm/assertion-error@2.0.1/node_modules/assertion-error/index.d.ts","../../../node_modules/.pnpm/@types+chai@5.2.3/node_modules/@types/chai/index.d.ts","../../../node_modules/.pnpm/@vitest+expect@4.1.5/node_modules/@vitest/expect/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+runner@4.1.5/node_modules/@vitest/runner/dist/utils.d.ts","../../../node_modules/.pnpm/tinybench@2.9.0/node_modules/tinybench/dist/index.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@24_26bb1af5e7f9c50629dd39afa5fddd4a/node_modules/vitest/dist/chunks/benchmark.d.daahlpsq.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@24_26bb1af5e7f9c50629dd39afa5fddd4a/node_modules/vitest/dist/chunks/global.d.dvssrdq5.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@24_26bb1af5e7f9c50629dd39afa5fddd4a/node_modules/vitest/optional-runtime-types.d.ts","../../../node_modules/.pnpm/@vitest+mocker@4.1.5_vite@8_16d3a3dfc5379d8dcba269af1628c7f5/node_modules/@vitest/mocker/dist/types.d-bji5eawu.d.ts","../../../node_modules/.pnpm/@vitest+mocker@4.1.5_vite@8_16d3a3dfc5379d8dcba269af1628c7f5/node_modules/@vitest/mocker/dist/index.d-b41z0auw.d.ts","../../../node_modules/.pnpm/@vitest+mocker@4.1.5_vite@8_16d3a3dfc5379d8dcba269af1628c7f5/node_modules/@vitest/mocker/dist/index.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@24_26bb1af5e7f9c50629dd39afa5fddd4a/node_modules/vitest/dist/chunks/suite.d.udjtyagw.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@24_26bb1af5e7f9c50629dd39afa5fddd4a/node_modules/vitest/dist/chunks/evaluatedmodules.d.bxj5omdx.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@24_26bb1af5e7f9c50629dd39afa5fddd4a/node_modules/vitest/dist/runners.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/utils.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/overloads.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/branding.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/messages.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/index.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@24_26bb1af5e7f9c50629dd39afa5fddd4a/node_modules/vitest/dist/index.d.ts","../src/composable/composed/$node-schema.spec.ts"],"fileIdsList":[[230,231],[82],[203,209,227,228,229,232],[239],[239,240],[207,209,210],[207,209],[207],[202,207,218,219],[202,207,218],[226],[202,208],[202],[204],[202,203,204,205,206],[245,246],[245,246,247,248],[245,247],[245],[84,85,86,87],[83,84,85,87],[83,84,87],[99,100,120],[83,121],[83],[101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119],[82,83],[73,76],[72],[73,74,75],[73],[73,74,76],[83,84,87,96,97,98,123],[83,87,91,96,98,123],[83,96,98,121,122,123],[83,91,96,98,121,123],[83,96,98,123],[93],[91,95],[82,91,92,94,96,98,123],[88],[89,90],[82,89,91],[213],[213,214,215,216],[215],[211,234,235,237],[211,212,224,237],[202,209,211,212,220,237],[217],[202,211,212,220,233,236,237],[211,212,217,220,237],[211,234,235,236,237],[211,217,221,222,223,237],[202,207,209,211,212,217,220,221,222,223,224,225,227,233,234,235,236,237,238,241,242,243,244,249],[202,209,211,212,220,221,234,235,236,237,242],[71,148],[149],[148,150],[71,78,79,80,123,136,150],[71,79],[71],[71,79,81,136],[71,80],[137,138,139,140,141,142,143,144,145,146,147],[71,150],[71,136],[71,80,81],[71,81,136],[59],[59,60],[60],[61,65,67,70],[62,66],[61,62,65],[61,65,67,71],[68,69],[67,68],[63],[63,64],[64],[157],[158],[190],[77],[76],[177,182,183,189],[79,81],[78,79],[178,179,180,181],[78,81,179],[80],[184,186,187,188],[81,185],[81],[79,81,185],[75],[126,134,135],[132,133],[81,126],[81,126,131,133],[81,130,132],[128,129],[126,136],[81,126,127,129],[81,128],[125,130],[81,96,98,123,124,129,133],[71,151,153],[71,78,151,153],[71,81,136,151,153,159],[71,79,151,153],[71,80,81,151,153,172],[81,165],[71,136,160,165],[151,166,250],[71,136,161,165],[71,136,151,165],[71,79,163,165],[166,167,168,169,170],[153,154,155,156,160,161,162,163,164,165,171],[71,152],[172,199,200],[71,151],[71,81,151],[173,174,175,176,192,193,194,195,196,197,198],[71,151,196],[71,81,151,191],[71,79,81,151]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},"73cc073d7a102374d6b9bcdbde8072f3aa3c8f86767f562086b6a7a7df5f22c0","e66deb230968faf1a8f37ea6f217f319dd0dad7a39ead1bf5d4f54e2eb5ce4bd","13ee17bbdd42459d6450899cea1999aab64c723328e773c0be5e8a13b51b6259","f79062b892847b4e33d0b730bf9dcf66ac24fc3fe9df7bba4d0997c6bdf6cbde","20f3a5481b2c009533e9e6b864cbd4ae3c09ccfca0577918b3587cda295e7071","2797c77cc0da0836a37c8c1fe64942a999c73f811f5481d827ac7d8cb9ddedd3","5a40849c3a5d5a8c2aa754fc964830ea344c94bfeddd4b442bdeae899e2f5339","848836f528d4ac80a5b3212c719225a3ba09406d44fea755cb642299a68d7056","fae981646738728f2b882c14625b99c23c430400a21c081dc6888d9703bd6c68","45c8a077eb724bae4e1fc0d15f76618650e32e55c4582dc1f27153ecdeb66ca6","302c082712d8fe41be387cd34af45b163b5314c04ddeefe53b1cb57fe46d3221","0c1a84d7b974db1961c6e9ab71d5257dfa38d99fb6300f22de55750526c9daef","69bc40bb169ea922cab72dc2142f37e75b44095cf1e79ca1b2809164c284de57",{"version":"264f935450101e4b000eb351cf75c9d799ca20a278b260a9e5770303b5f2b6a3","impliedFormat":99},{"version":"f6f171b23ae6db93454343f1b788960f799c8f37043904874a752c0990c6fca6","impliedFormat":99},{"version":"304e41926d3299c9b30bfd418c35fffd2bd9e5ac726d6f758fb4e0f40a738d51","impliedFormat":99},{"version":"7d3b1ddfce35445b76298090a9dcadee8acf20f4c281eb1f2ce14fc7232c9470","affectsGlobalScope":true,"impliedFormat":99},{"version":"02ab5dbcaa58da1d58c46c7cdfa7f94792c5ccf0fc7c0622ef33755fe415366c","impliedFormat":99},{"version":"2a04530c2579ddcf996e1cf017caaba573e0ebf8a5b9e45d3bc25ba4489fb5a3","impliedFormat":99},"f41d91b2db1112fcc673a6862fe68cadcbdd0a66ed16b47ac74a0a6da8932bb4","e689cc8cd8a102d31c9d3a7b0db0028594202093c4aca25982b425e8ae744556","1b4ed9deaba72d4bc8495bf46db690dbf91040da0cb2401db10bad162732c0e2","478e59ac0830a0f6360236632d0d589fb0211183aa1ab82292fbca529c0cce35",{"version":"89121c1bf2990f5219bfd802a3e7fc557de447c62058d6af68d6b6348d64499a","impliedFormat":1},{"version":"d4a22007b481fe2a2e6bfd3a42c00cd62d41edb36d30fc4697df2692e9891fc8","impliedFormat":1},{"version":"a5dbd4c9941b614526619bad31047ddd5f504ec4cdad88d6117b549faef34dd3","impliedFormat":99},{"version":"d36518bd617ff673c7d9f372706f241932a43f27673187f2a8472e93c40041c6","impliedFormat":99},{"version":"f8eb2909590ec619643841ead2fc4b4b183fbd859848ef051295d35fef9d8469","impliedFormat":99},{"version":"fe784567dd721417e2c4c7c1d7306f4b8611a4f232f5b7ce734382cf34b417d2","impliedFormat":99},{"version":"2b37ba54ec067598bf912d56fcb81f6d8ad86a045c757e79440bdef97b52fe1b","impliedFormat":99},{"version":"1bc9dd465634109668661f998485a32da369755d9f32b5a55ed64a525566c94b","impliedFormat":99},{"version":"5702b3c2f5d248290ed99419d77ca1cc3e6c29db5847172377659c50e6303768","impliedFormat":99},{"version":"9764b2eb5b4fc0b8951468fb3dbd6cd922d7752343ef5fbf1a7cd3dfcd54a75e","impliedFormat":99},{"version":"1fc2d3fe8f31c52c802c4dee6c0157c5a1d1f6be44ece83c49174e316cf931ad","impliedFormat":99},{"version":"dc4aae103a0c812121d9db1f7a5ea98231801ed405bf577d1c9c46a893177e36","impliedFormat":99},{"version":"106d3f40907ba68d2ad8ce143a68358bad476e1cc4a5c710c11c7dbaac878308","impliedFormat":99},{"version":"42ad582d92b058b88570d5be95393cf0a6c09a29ba9aa44609465b41d39d2534","impliedFormat":99},{"version":"36e051a1e0d2f2a808dbb164d846be09b5d98e8b782b37922a3b75f57ee66698","impliedFormat":99},{"version":"4f7e6730a707b0d4971d96de3b562819ce304af770723707a58a578dd55a5e52","impliedFormat":99},{"version":"d1c1213e9176398b4d1d9aa543691181fd5ae23ae5415e80ede41f1ec1ccf72a","impliedFormat":99},{"version":"45d1e8fb4fd3e265b15f5a77866a8e21870eae4c69c473c33289a4b971e93704","impliedFormat":99},{"version":"cd40919f70c875ca07ecc5431cc740e366c008bcbe08ba14b8c78353fb4680df","impliedFormat":99},{"version":"ddfd9196f1f83997873bbe958ce99123f11b062f8309fc09d9c9667b2c284391","impliedFormat":99},{"version":"2999ba314a310f6a333199848166d008d088c6e36d090cbdcc69db67d8ae3154","impliedFormat":99},{"version":"62c1e573cd595d3204dfc02b96eba623020b181d2aa3ce6a33e030bc83bebb41","impliedFormat":99},{"version":"ca1616999d6ded0160fea978088a57df492b6c3f8c457a5879837a7e68d69033","impliedFormat":99},{"version":"835e3d95251bbc48918bb874768c13b8986b87ea60471ad8eceb6e38ddd8845e","impliedFormat":99},{"version":"de54e18f04dbcc892a4b4241b9e4c233cfce9be02ac5f43a631bbc25f479cd84","impliedFormat":99},{"version":"453fb9934e71eb8b52347e581b36c01d7751121a75a5cd1a96e3237e3fd9fc7e","impliedFormat":99},{"version":"bc1a1d0eba489e3eb5c2a4aa8cd986c700692b07a76a60b73a3c31e52c7ef983","impliedFormat":99},{"version":"4098e612efd242b5e203c5c0b9afbf7473209905ab2830598be5c7b3942643d0","impliedFormat":99},{"version":"28410cfb9a798bd7d0327fbf0afd4c4038799b1d6a3f86116dc972e31156b6d2","impliedFormat":99},{"version":"514ae9be6724e2164eb38f2a903ef56cf1d0e6ddb62d0d40f155f32d1317c116","impliedFormat":99},{"version":"970e5e94a9071fd5b5c41e2710c0ef7d73e7f7732911681592669e3f7bd06308","impliedFormat":99},{"version":"491fb8b0e0aef777cec1339cb8f5a1a599ed4973ee22a2f02812dd0f48bd78c1","impliedFormat":99},{"version":"6acf0b3018881977d2cfe4382ac3e3db7e103904c4b634be908f1ade06eb302d","impliedFormat":99},{"version":"2dbb2e03b4b7f6524ad5683e7b5aa2e6aef9c83cab1678afd8467fde6d5a3a92","impliedFormat":99},{"version":"135b12824cd5e495ea0a8f7e29aba52e1adb4581bb1e279fb179304ba60c0a44","impliedFormat":99},{"version":"e4c784392051f4bbb80304d3a909da18c98bc58b093456a09b3e3a1b7b10937f","impliedFormat":99},{"version":"2e87c3480512f057f2e7f44f6498b7e3677196e84e0884618fc9e8b6d6228bed","impliedFormat":99},{"version":"66984309d771b6b085e3369227077da237b40e798570f0a2ddbfea383db39812","impliedFormat":99},{"version":"e41be8943835ad083a4f8a558bd2a89b7fe39619ed99f1880187c75e231d033e","impliedFormat":99},{"version":"260558fff7344e4985cfc78472ae58cbc2487e406d23c1ddaf4d484618ce4cfd","impliedFormat":99},{"version":"e6274d956641c1cbd5a01a221a85a6671fd85104ed6b530f8d34ad3086804133","impliedFormat":99},{"version":"77516308358982bb05209e8c0ed6f321860e03393587d89f61055941e5bbcdd2","impliedFormat":99},{"version":"dc8652855a95ef9b9c12be8d2f5e6fc37b96aa2144f6c6f195cd1d2e07f721ee","impliedFormat":99},"e2cb25ca55e10ba874410188a53331a6b0b2bc13c0ee4d538bde50460a4e1b77","041afde4e1ac27e6fabdc2ca87882a3a766443fcfe1a1cfc3ed78bcc1c25b28a","c2049793874bbeafd60402bab915f3d285f4057e718dfdefe8a54ccc80c991dd","8a2b6f999a708119f4fa55fc58c5803ca9563340d0a54b9fe2a4fa14838f148c","2db5b1bbf946e20cef3c889cb7be46e3da384bdd1b4b53964253d97635718774","79e620484ae1a7011482631159563e4729f7f4d4c316b914125cb95f678ffbb9","6434c2976daf446cfd95935af4e0a0b6b369ce81af183579dab3ac6567dbbfd0","f50c1778b48a9275078ad81abaa5b4cb13a295b3889986f8e72fe61dd9cd8b86","6e935a5aec1b1f86cfa97fb93ec13c8759479712014d7dc4c13f140f7d409357","8cd4c86b90f9a96ba804585a4b6a998f484a860af3dfd12641ecb9eca109274b","8cd4c86b90f9a96ba804585a4b6a998f484a860af3dfd12641ecb9eca109274b","1b92de1f5b74cf4bda283aa7688c80781e9c7273f44a4ef2db084747a94be933","8c24aeb14985e8089f29e1fea075e95a7c8825077277079d5dc4130ceb6339de","ff041f34cc1936cb45f94de1924d396abd69b3d6e0cc887dfaa0b6ec176e27e1","6abd2f68e6651205f5d7763dcf7a5b5e5dc28b6194b097b467913d2cf19c1dd2","c04c352fc277c57e16519814a13e1b84e6c54c461b89ee63c8bff94ddf615555","e406a8398f12e8bb0d7661b9974a9ce78043a916cd2c652f7b82b7889e57f9e8","441c8ea68ff583cefd0f77d2a1699f6328d714ebfb9435ffedad5470392de2e7","cc60d13b9e2058908f082cca058357d2ebd83143b3dc4e3a01731e8a4b7ae2fe","5ca4d7a999b9fa8c7e2ef9746968eaeabb8e69a904cc62a3c18ac23b9664c8a8","bff722032fb479d76cdd167e0aa05e2e3ca9b728cff777e893aa694bad01e3a9","3fc92b50147ec179c1db1355901683a7f48646c6203ae982f2bc31dc8959f4ff","ad43cfeea2ffc4f26107e49ae92bed3fe01b0c2aa3e328e293d7b0dceb01300f","50e52950b1b92455f40c3fba61ee9a43e74bf9bdf6a25e01ad2e3a2226bbb2ec","cd2e2d6ffad8a1de80249fd4aa35f6c6f9160c18f69fbaf6507072eba208abda","3b8dd8f967501f6193f2d31f8a124e05186264f37f1b73d073cf39c6e123fe50","bc699cb86e1528d370a29ae99fe8f89e3a838bb620ad4071a4c9999a390c8361",{"version":"3637e4089eaf583a1675743fa74e25ff09144b400782ed787d37980fc36fa085","impliedFormat":99},{"version":"1933133fa359c4bbfd2f2a91418231d86d88e20f53a0342379b6ad7f1fdbd4c0","signature":"487ae9dd80a97c7c7fa8cb272b81033c4252b064047f8b10b2d421e3a909dacf"},{"version":"ebc93d4e5c0c5acd476bc4a71c933e9337ec07b1167cb9aca22cd3e74ed8e755","signature":"0e0f762a06bd12f01872c86e03fd88a6830c3991ea17734ea2859a43a96b6ac5"},{"version":"5d9fb284036c7a427ff1cee40dd451320df81832defe7f5514b0fcb61df3686e","signature":"88738bfae85b658c5728b5d84e7e9b78788281edc397bc6a75da4d1b554d2041"},{"version":"6f8f7a81841530153b4c777a69ae877db31ec7050bf9a947bac08c70e2ca12a0","signature":"af1e3e5216a3a605be2384495ea43d50684dc0b674b0fc795cdaaaa51f979db6"},"16976e5481a0abbe56fa82010ecd47c152e76d9c7ecb5977d68a1b2c4a785c91","749f3bd08d4fc5cc1c95e3c3b07dede327898a51cf6fa7f156456c0d46aae680","7797184093e9b9f6203d001829de6f91d142497913c67a8d0c2a5b25de005a68",{"version":"4b37b88158c9366c4fceb595973d2794d4b301defa021f4861ce8803e92c33b1","signature":"d531e9345fbc0cb9e1fa9428752f675b40f2c32c8bda0c1547fc64522e3295d5"},{"version":"ca79fc12a15de6558a69e8b92f0e567b5993bf68ee29d98b9d851821a9c8f4f3","signature":"33be8125f7170aedbf456f05059014f0fbbfbf4842eb76d3c43a86bb82045df6"},{"version":"bc3d0ec34c59f89bc85efb8ebd3b26200d064ba196bab18a84e80d294fdbe68e","signature":"2246cd9c0a20fdf3df7fa37ee25c4e8d3989d38eb6274203fb0e9d43020a5cfc"},{"version":"78a28d37c45f13690e3940c57df9275d2f2289a4fe24683c043295baf1bc5f29","signature":"f6d2f543d91edabb84f53c26e611514f0ecec59b72f6e5321145c00c70d0f1e7"},{"version":"bdc257c47e45b5560fb169927e9e6e2795e69bb8f42f9c77feeb32cbb73457aa","signature":"6e12e26efaaeb591c891d49658152d874a1fc869c1231176172a4e90a78320c4"},{"version":"6a7c21ead4a656b7de058d86333fd47a8d98efe651a0b8d4770867ec5c858bc6","signature":"8e0872445888b4eac9c8915022cc2b58291db248fc33b0994c7e3296d7af306a"},{"version":"73ef1c220fb888de44caa63d060824570a1e3aca22e75b23443eafc7e97391bd","signature":"7064efe511093c8ab839f6c8bbe2ffc2911bc299ec8880f2129b541e2e32cc4c"},{"version":"e827d861bb2a49b825e17f2456604853752953a1cb3ac1eac76bcf68361ee205","signature":"41259a2d0eac0369e1581e08e5aef6ffef48f9ffc3d06d874524c9da6f1e4f29"},{"version":"099a8f50c86406e126dc14d04a796ab7b02e0bb5cffde56169cb31d6b5b32d3a","signature":"9722d152fcdb95a635c8132764b7ded085073b4734daf2b19798be965fb10160"},{"version":"f04098ffdee404b958aea855d31b686e532087aacfd1c5d2dfa42a367a6356a2","signature":"db3f677fdf3de11b7a334e5c8e677df05686b3d6e172d46ad3a1674790e5d03c"},{"version":"c6dff3dc3b359ae972b0b4a8e79eed36047cb14a10708c8e09cf9535d0b48a4b","signature":"3a5ebec0a04030822776a5dcc7f9b053a38d79aa4b15e7c4df009ee5ac813dbf"},{"version":"4ec2bdfbd822da10691dbf7fa0f6f2d22b1c44c91d7ee88815b30ef64a83955b","signature":"77b54b2bf7d6e4a05b79d286903ad9f71141f91409729c5deb8bfa417d7f0960"},{"version":"431cd46724c7e174594c9c51902efa2616726814dcf1067ecade82acce38a453","signature":"573f356148118ea54c7b9a2eff374329022b1e38d5a1070cae53c97d7b0ef355"},{"version":"5992835346f60c381e9b34f6beba1cb46838df54cd8286e5e4397638b5213ea4","signature":"ef5ae01c8b2b11403554c319af51db9c3dc26051cb077b75c8885b5d02821557"},{"version":"9f97a53d22b919d511e419dfdc5991a88e26134890828412f1a8cfe9d207e14b","signature":"1da18878fb9f757426713faa0c4b289ff717f1bb26bcefc358c2b03aae5f11be"},{"version":"ac1a81b2eb31f1fa0ec4a13e2055c0acd43f1e920b4be98f58a408a05c4f83c4","signature":"5d7c0080e6e16f13e23ec822364b951a8135242ec61db38d230725c4cc8bba00"},{"version":"fd61e95ecc456c1f03c08dac1162772de3bc699a66700cd05f2d4604b87ad6e4","signature":"9fe63d563259a1a7e32332cd5cc24bccd9f0a34d0d9f2e80df7370d4205e91cb"},"d9fc24b35b002a548f4414e49fe3793d9a5b35ee52005272caf4318f2e4f8365","38815495490dbe68097e68af671c9f38d7b7becdc86046701caf27b3aefc1238","4f5fa1f41df5934999037079798a183a672f6a51bf00fecd8a58a40bf8a6ab4b","9228f51f27ecf7b4ea783d9a8ad6fa0b04aedd65f15765ef2e2b4fa993230c71","a4a6eecc3b94a291ecd8001af8bc77860553c1cd0539b7df753db546b90957f1","531aa8b58051f4a06c342c0e058080be43e46ec8caeb686e988f01506dd86e8b","830ef6b30732865e6c28f3a1a5ab6b2d912705dde825638ac06b125ec43d21d0","36a26b110dcea31cd8bab601c2b73930f04e8b5417f9749d9f5fb1eab2a763b6","4c5e77be4579c26825232a95edbf67c1fe38ef7af273b3829831e95cbeb86bb1","fe92ca191d247c305b79d52f46a30ba4d7c93dd1c3e92d7c6c613d330b3da187","89854e488820d88a1b94cf1fd4f156c48859af845d09130f81d516c1aa5db130","0b91eff2dfe722ddce2e4541b66db7b80b83c9912ddd338906bff6e0d1b992c9","7c746be7d0a5cd1a23a4b9f9290669f7c49ca4b315e19c103b1c8ede5037b984","40bcee342fdfb92c1e899d6eb5dfe6e4b1d7c22ec66ddefaec6e287a182e2d9b","717d62319839b9544128ebd5d5d414a2ef6aca2068d40045336d838e2872bdc9",{"version":"b1c6c408fcf06038f43457ceb9da822442ec7ad0e32d76bdeeade212247fc449","signature":"947c6ccd6a0b2805b4e3479b51112d8affc4b64ecb209ee15a480a10c44a48a1"},{"version":"4d3dfc0acd123839e7bff097e94faaea926568ad8684eb4ba03900beeff52369","signature":"c4f0b3fb0d90e865c3ab69b9fff9c8eb13ff8fd49bcfce1f10f696bf5db9cdc9"},{"version":"8cd5a04eb7f5001acd21617a8b856d2266efa789108f3eb5a0ed2d8c3fb8e98f","signature":"e39e74456caf2be7616c1327e6447e6559e64d5ffb161d43bb44f50b3461ee59"},{"version":"6ea1c33c1a97126642493bfe1bd7b84e1d6390bb4777ad1ea7335f66b0dec47f","signature":"8c3dde564136c2b88384fa63c823c9b4282b5b813ad8287a1c8f3734efb801a0"},{"version":"6eda3611f992a2dc2d40b1818174482a3979da38814f70151914f4da5011f36b","signature":"d6faa230dcddc146229e72291ed444476e5c3fcf75b102fb0c78a46510e82424"},{"version":"d7721bf475212e8300ba6b3af4b96f89d5c5a1b8f06607a87c5a785fc2102645","signature":"defdff60f915e05c089175d08b85199747f561dc318ac8dceacc844753060e6d"},{"version":"ad3b759c49df66160ceb01f83e87dc4dd98c288c9225c035e3485ca417a487ed","signature":"1a3dbaf2ef5ba30576b22fe1a26c868d9c76646670afb0c90ce7b6e1233211b2"},{"version":"be4d73c204e61a264e6d2846564cb7b7d3ceb1cc4baf4738a28325143d14ce94","signature":"bfa14541c2b697d5a73041bfa7a318b47db2301e2045856c7ab9db7bb3f4d21b"},{"version":"15a391764015ac5f4779efbe3130e026811317237cea8069b11ec13bb11a403c","signature":"caee8e88a02710517f1d1849b48fa8793878f4ab0c51cde5c025ba6f21b946df"},{"version":"acc41367f9da87a45e9219e3740ed62d8b2e8bb22922153d620e0b788628c522","signature":"bbf57449e9341dc4b6f56e7ce74d0edee6cd7c4ca55b52664469de0c7d384445"},{"version":"3a582c6e8906f5b094ccf0de6cc6f4f8a54b05a34f52517aba5c9c7f704f6b28","impliedFormat":99},{"version":"0528f6d21f7a02d4092895090d2dd86104bd5a3e79eced96d5a1a7dd90943d17","impliedFormat":99},{"version":"b5ce343886d23392be9c8280e9f24a87f1d7d3667f6672c2fe4aa61fa4ece7d4","impliedFormat":99},{"version":"72ce5b734c05da85c85a6f6dc05823b051d6aa41acaedeeb1d17c72f3b4efa72","impliedFormat":99},{"version":"b0857bb28fd5236ace84280f79a25093f919fd0eff13e47cc26ea03de60a7294","impliedFormat":99},{"version":"5e43e0824f10cd8c48e7a8c5c673638488925a12c31f0f9e0957965c290eb14c","impliedFormat":99},{"version":"ef13c73d6157a32933c612d476c1524dd674cf5b9a88571d7d6a0d147544d529","impliedFormat":99},{"version":"3b0a56d056d81a011e484b9c05d5e430711aaecd561a788bad1d0498aad782c7","impliedFormat":99},{"version":"9443967db823b66d1682be7fc66392be7c7924e10c3e54900f456341e94591a6","impliedFormat":99},{"version":"424f71d1fae96ac2e878af92345bb87bea1d29f757228fbc190133b305643f2c","impliedFormat":99},{"version":"61bb64660ee150f3ab618340e15cca0a81664801bede7c966ca0eca3a952fe63","impliedFormat":99},{"version":"3b89216a7e38a454985ad17bb2ff85792837dc812f2a89fa5f60ad0a2e216fa7","impliedFormat":99},{"version":"16fe60bb544cfedfd2b5bb2f7d0b3957be7978706d57d9f06edc9c0c8dbdba23","impliedFormat":99},{"version":"82179358c2d9d7347f1602dc9300039a2250e483137b38ebf31d4d2e5519c181","impliedFormat":99},{"version":"4e003c868b0d8f8ad200b96cbc653e18e513fa23e1c19c4fe3cc25d4394efc47","impliedFormat":99},{"version":"605450898939e8abce51e8085a41b60640278337a969c33cd6b169e7c4f9c3f2","impliedFormat":99},{"version":"42a12f2faa483c9b48195ed794d22698162274e755f6e07219c2351c4f08d732","impliedFormat":99},{"version":"ec0c42bb0f465e4993f2bc68a6ce9df9a2dcbc7b83e21748f82f1b69561938e3","impliedFormat":99},{"version":"f50ff37a9cbbe74475f426474d9827083c7c2c138a954d28f1690df338f69291","impliedFormat":99},{"version":"61fd6c17235d530c40f543dd7c40afab091d91c1ef890baeed30db6d82b04b28","impliedFormat":99},{"version":"bcbd3becd08b4515225880abea0dbfbbf0d1181ce3af8f18f72f61edbe4febfb","impliedFormat":99},{"version":"091767bc841f937654ed597d49e023ed59850355e746ae1a6f20ab31076ee1fb","impliedFormat":99},{"version":"19c6d6135af59693698d384050b45a8a049493500add442f58e4bd7c8a255ab6","impliedFormat":99},{"version":"6a0dba12d55314638a8c51108b20fe2f68f1364a619d098918bda91c22dec154","impliedFormat":99},{"version":"c76c02846ba7d40b9b3488f0e8d75d02cbdee2f0bc5fcd55dd3bd2e1457646ea","impliedFormat":99},{"version":"4ead13a482c539b77394b2a97e3b877b809eac596390371cea490286f53b996a","impliedFormat":99},{"version":"06db2f8ba1d1dfacf04529cb731081ab23f133f29c7608ebdfbcab356996827c","impliedFormat":99},{"version":"bdd14f07b4eca0b4b5203b85b8dbc4d084c749fa590bee5ea613e1641dcd3b29","impliedFormat":99},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"2eeffcee5c1661ddca53353929558037b8cf305ffb86a803512982f99bcab50d","impliedFormat":99},{"version":"9afb4cb864d297e4092a79ee2871b5d3143ea14153f62ef0bb04ede25f432030","affectsGlobalScope":true,"impliedFormat":99},{"version":"5c935b7fc4ddc1410ea1cd7cd4e35ed106a6e4920dd27a9480a40fd224359dc3","affectsGlobalScope":true,"impliedFormat":99},{"version":"ed9bb55ddcbebd5cb3eee991f57ff21438546ee40ee1c310281bd12a6c7cf65b","impliedFormat":99},{"version":"69bf2422313487956e4dacf049f30cb91b34968912058d244cb19e4baa24da97","impliedFormat":99},{"version":"6987dfb4b0c4e02112cc4e548e7a77b3d9ddfeffa8c8a2db13ceac361a4567d9","impliedFormat":99},{"version":"4ffba3c5848b4fe62ee59b754fd5f256ad9656a0db6d37b9a2a8cb40dfc7ac21","impliedFormat":99},{"version":"c76c02846ba7d40b9b3488f0e8d75d02cbdee2f0bc5fcd55dd3bd2e1457646ea","impliedFormat":99},{"version":"5e2ba3d18d78aebbde1f34bde356e41e9c76eeaeaeee56a37036596a9eff4211","impliedFormat":99},{"version":"8280ae8ccc0493b32d1742d585357ab9f0a508ea050af25a5a20d64010d0a5cf","impliedFormat":99},{"version":"7adfd9f9056ecd4ae6c65fde2a98654960c662714c73f048478959d04c09e144","impliedFormat":99},{"version":"32b35cf0dc3a1b1a7118b61c34ce2ad1a29695851679f9ec34e0776f2ece2a69","impliedFormat":99},{"version":"b413fbc6658fe2774f8bf9a15cf4c53e586fc38a2d5256b3b9647da242c14389","impliedFormat":99},{"version":"59e5e964b84fdb2378e9455e4e59405030e4ed2b4c6f891ce395f17796af3cbb","impliedFormat":99},{"version":"c30a41267fc04c6518b17e55dcb2b810f267af4314b0b6d7df1c33a76ce1b330","impliedFormat":1},{"version":"72422d0bac4076912385d0c10911b82e4694fc106e2d70added091f88f0824ba","impliedFormat":1},{"version":"da251b82c25bee1d93f9fd80c5a61d945da4f708ca21285541d7aff83ecb8200","impliedFormat":1},{"version":"64db14db2bf37ac089766fdb3c7e1160fabc10e9929bc2deeede7237e4419fc8","impliedFormat":1},{"version":"98b94085c9f78eba36d3d2314affe973e8994f99864b8708122750788825c771","impliedFormat":1},{"version":"90ba95a763101bb61b8a799731a2ed60b5016b8135c1a2d5186862d4b534d4a1","impliedFormat":99},{"version":"34c430feada8934550033b0301ecbefb57399bb51d3cd87abb2d99dd3b3dc067","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"}],"root":[[153,156],[160,176],[192,201],251],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":99,"noEmitOnError":false,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":false,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":5,"tsBuildInfoFile":"./tsconfig.tsbuildinfo","useUnknownInCatchVariables":true,"verbatimModuleSyntax":true},"referencedMap":[[232,1],[83,2],[233,3],[240,4],[241,5],[211,6],[210,7],[234,6],[218,8],[220,9],[219,10],[227,11],[209,12],[203,13],[205,14],[207,15],[208,13],[247,16],[249,17],[248,18],[246,19],[87,20],[86,21],[85,22],[121,23],[101,24],[102,24],[103,24],[104,24],[105,24],[106,24],[107,25],[109,24],[108,24],[120,26],[110,24],[112,24],[111,24],[114,24],[113,24],[115,24],[116,24],[117,24],[118,24],[119,24],[100,24],[99,27],[77,28],[73,29],[76,30],[74,31],[75,32],[98,33],[97,34],[123,35],[122,36],[124,37],[94,38],[96,39],[95,40],[89,41],[88,2],[91,42],[90,43],[214,44],[217,45],[215,44],[216,46],[236,47],[225,48],[221,49],[222,8],[243,50],[237,51],[223,52],[242,53],[224,54],[250,55],[244,56],[149,57],[150,58],[151,59],[137,60],[138,61],[139,62],[140,63],[141,64],[148,65],[142,66],[146,61],[143,67],[147,68],[144,69],[145,67],[60,70],[61,71],[59,72],[71,73],[67,74],[66,75],[68,76],[70,77],[69,78],[64,79],[65,80],[63,81],[158,82],[159,83],[191,84],[78,85],[81,31],[79,86],[190,87],[179,88],[178,89],[182,90],[180,91],[181,91],[183,92],[184,88],[189,93],[186,94],[187,95],[188,96],[185,95],[80,97],[136,98],[134,99],[131,100],[132,101],[133,102],[135,103],[127,104],[128,105],[129,106],[126,107],[130,108],[154,109],[165,62],[155,110],[160,111],[161,111],[156,109],[162,112],[163,112],[164,113],[169,114],[167,115],[251,116],[166,117],[170,118],[168,119],[171,120],[172,121],[153,122],[201,123],[173,124],[174,124],[175,125],[176,124],[199,126],[197,127],[192,128],[196,125],[193,124],[194,129],[198,127],[195,125]],"latestChangedDtsFile":"./composable/composed/$node-schema.spec.d.ts","version":"6.0.2"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jvs-milkdown/utils",
3
- "version": "1.2.4",
3
+ "version": "1.2.7",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -21,11 +21,11 @@
21
21
  }
22
22
  },
23
23
  "dependencies": {
24
- "@jvs-milkdown/core": "^1.2.4",
25
- "@jvs-milkdown/ctx": "^1.2.4",
26
- "@jvs-milkdown/exception": "^1.2.4",
27
- "@jvs-milkdown/prose": "^1.2.4",
28
- "@jvs-milkdown/transformer": "^1.2.4",
24
+ "@jvs-milkdown/core": "^1.2.7",
25
+ "@jvs-milkdown/ctx": "^1.2.7",
26
+ "@jvs-milkdown/exception": "^1.2.7",
27
+ "@jvs-milkdown/prose": "^1.2.7",
28
+ "@jvs-milkdown/transformer": "^1.2.7",
29
29
  "nanoid": "^5.0.9"
30
30
  },
31
31
  "scripts": {
@@ -1,7 +1,11 @@
1
1
  import type { Ctx, MilkdownPlugin } from '@jvs-milkdown/ctx'
2
2
  import type { InputRule } from '@jvs-milkdown/prose/inputrules'
3
3
 
4
- import { SchemaReady, editorStateTimerCtx, inputRulesCtx } from '@jvs-milkdown/core'
4
+ import {
5
+ SchemaReady,
6
+ editorStateTimerCtx,
7
+ inputRulesCtx,
8
+ } from '@jvs-milkdown/core'
5
9
 
6
10
  import { addTimer } from './utils'
7
11