@luan.sh/pi-subagents 0.3.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.
- package/LICENSE +21 -0
- package/README.md +180 -0
- package/node_modules/@luan.sh/pi-code-mode/LICENSE +21 -0
- package/node_modules/@luan.sh/pi-code-mode/README.md +221 -0
- package/node_modules/@luan.sh/pi-code-mode/package.json +53 -0
- package/node_modules/@luan.sh/pi-code-mode/src/contributions/xsettings.ts +97 -0
- package/node_modules/@luan.sh/pi-code-mode/src/extension.ts +54 -0
- package/node_modules/@luan.sh/pi-code-mode/src/host/binary.ts +9 -0
- package/node_modules/@luan.sh/pi-code-mode/src/host/cell-operations.ts +77 -0
- package/node_modules/@luan.sh/pi-code-mode/src/host/client.ts +116 -0
- package/node_modules/@luan.sh/pi-code-mode/src/host/connection.ts +153 -0
- package/node_modules/@luan.sh/pi-code-mode/src/host/delegation.ts +34 -0
- package/node_modules/@luan.sh/pi-code-mode/src/host/operation.ts +32 -0
- package/node_modules/@luan.sh/pi-code-mode/src/host/process.ts +100 -0
- package/node_modules/@luan.sh/pi-code-mode/src/host/protocol.ts +223 -0
- package/node_modules/@luan.sh/pi-code-mode/src/host/session.ts +97 -0
- package/node_modules/@luan.sh/pi-code-mode/src/index.ts +14 -0
- package/node_modules/@luan.sh/pi-code-mode/src/protocol/hierarchy.ts +49 -0
- package/node_modules/@luan.sh/pi-code-mode/src/protocol/nested-tools.ts +217 -0
- package/node_modules/@luan.sh/pi-code-mode/src/protocol/preflights.ts +87 -0
- package/node_modules/@luan.sh/pi-code-mode/src/protocol/tool-definition-adapter.ts +173 -0
- package/node_modules/@luan.sh/pi-code-mode/src/protocol/types.ts +99 -0
- package/node_modules/@luan.sh/pi-code-mode/src/runtime/code-mode.ts +86 -0
- package/node_modules/@luan.sh/pi-code-mode/src/runtime/delegation.ts +301 -0
- package/node_modules/@luan.sh/pi-code-mode/src/runtime/lifecycle.ts +87 -0
- package/node_modules/@luan.sh/pi-code-mode/src/runtime/trace-values.ts +175 -0
- package/node_modules/@luan.sh/pi-code-mode/src/sdk.ts +23 -0
- package/node_modules/@luan.sh/pi-code-mode/src/tools/exec/definition.ts +51 -0
- package/node_modules/@luan.sh/pi-code-mode/src/tools/exec/description.ts +192 -0
- package/node_modules/@luan.sh/pi-code-mode/src/tools/exec/grammar.ts +14 -0
- package/node_modules/@luan.sh/pi-code-mode/src/tools/result.ts +147 -0
- package/node_modules/@luan.sh/pi-code-mode/src/tools/wait/definition.ts +87 -0
- package/node_modules/@luan.sh/pi-code-mode/src/ui/presentation.ts +944 -0
- package/node_modules/@luan.sh/pi-code-mode/test/extension.test.ts +477 -0
- package/node_modules/@luan.sh/pi-code-mode/test/host/integration.test.ts +185 -0
- package/node_modules/@luan.sh/pi-code-mode/test/host/protocol.test.ts +60 -0
- package/node_modules/@luan.sh/pi-code-mode/test/protocol/nested-tools.test.ts +55 -0
- package/node_modules/@luan.sh/pi-code-mode/test/protocol/preflights.test.ts +72 -0
- package/node_modules/@luan.sh/pi-code-mode/test/runtime/delegation.test.ts +186 -0
- package/node_modules/@luan.sh/pi-code-mode/test/runtime/trace-values.test.ts +39 -0
- package/node_modules/@luan.sh/pi-code-mode/test/tool-definition-adapter.test.ts +135 -0
- package/node_modules/@luan.sh/pi-code-mode/test/tools/result.test.ts +88 -0
- package/node_modules/@luan.sh/pi-code-mode/test/ui/presentation.test.ts +864 -0
- package/node_modules/@luan.sh/pi-code-mode/tsconfig.json +17 -0
- package/node_modules/@luan.sh/pi-libactions/LICENSE +21 -0
- package/node_modules/@luan.sh/pi-libactions/README.md +197 -0
- package/node_modules/@luan.sh/pi-libactions/package.json +43 -0
- package/node_modules/@luan.sh/pi-libactions/src/index.ts +1 -0
- package/node_modules/@luan.sh/pi-libactions/src/keybindings.ts +94 -0
- package/node_modules/@luan.sh/pi-libactions/src/protocol/actions.ts +123 -0
- package/node_modules/@luan.sh/pi-libactions/src/sdk.ts +9 -0
- package/node_modules/@luan.sh/pi-libactions/test/registry.test.ts +36 -0
- package/node_modules/@luan.sh/pi-libactions/tsconfig.json +15 -0
- package/node_modules/@luan.sh/pi-libtui/LICENSE +21 -0
- package/node_modules/@luan.sh/pi-libtui/README.md +208 -0
- package/node_modules/@luan.sh/pi-libtui/native-revision +1 -0
- package/node_modules/@luan.sh/pi-libtui/package.json +58 -0
- package/node_modules/@luan.sh/pi-libtui/src/activity-presentation.ts +75 -0
- package/node_modules/@luan.sh/pi-libtui/src/appearance.ts +632 -0
- package/node_modules/@luan.sh/pi-libtui/src/background-surface.ts +125 -0
- package/node_modules/@luan.sh/pi-libtui/src/color/palette.ts +186 -0
- package/node_modules/@luan.sh/pi-libtui/src/color/preview.ts +157 -0
- package/node_modules/@luan.sh/pi-libtui/src/color/resolver.ts +75 -0
- package/node_modules/@luan.sh/pi-libtui/src/color/theme.ts +531 -0
- package/node_modules/@luan.sh/pi-libtui/src/component-stack.ts +247 -0
- package/node_modules/@luan.sh/pi-libtui/src/content/markdown-code.ts +60 -0
- package/node_modules/@luan.sh/pi-libtui/src/content/terminal-text.ts +135 -0
- package/node_modules/@luan.sh/pi-libtui/src/content/text.ts +105 -0
- package/node_modules/@luan.sh/pi-libtui/src/controls/action-panel.ts +420 -0
- package/node_modules/@luan.sh/pi-libtui/src/controls/dialog-button-bar.ts +287 -0
- package/node_modules/@luan.sh/pi-libtui/src/controls/multi-select.ts +467 -0
- package/node_modules/@luan.sh/pi-libtui/src/controls/picker-panel.ts +447 -0
- package/node_modules/@luan.sh/pi-libtui/src/controls/screen-icon-actions.ts +134 -0
- package/node_modules/@luan.sh/pi-libtui/src/controls/searchable-select.ts +394 -0
- package/node_modules/@luan.sh/pi-libtui/src/controls/select-box.ts +224 -0
- package/node_modules/@luan.sh/pi-libtui/src/controls/selectable-list.ts +433 -0
- package/node_modules/@luan.sh/pi-libtui/src/controls/selection-action-bar.ts +382 -0
- package/node_modules/@luan.sh/pi-libtui/src/controls/semantic-input.ts +23 -0
- package/node_modules/@luan.sh/pi-libtui/src/controls/tab.ts +189 -0
- package/node_modules/@luan.sh/pi-libtui/src/cursor.ts +288 -0
- package/node_modules/@luan.sh/pi-libtui/src/decoration/editor-pills.ts +156 -0
- package/node_modules/@luan.sh/pi-libtui/src/decoration/glyphs.ts +326 -0
- package/node_modules/@luan.sh/pi-libtui/src/decoration/pointer-interaction.ts +123 -0
- package/node_modules/@luan.sh/pi-libtui/src/decoration/powerline-pill.ts +104 -0
- package/node_modules/@luan.sh/pi-libtui/src/decoration/status.ts +185 -0
- package/node_modules/@luan.sh/pi-libtui/src/decoration/transient-pill.ts +176 -0
- package/node_modules/@luan.sh/pi-libtui/src/diff/index.ts +21 -0
- package/node_modules/@luan.sh/pi-libtui/src/diff/model.ts +76 -0
- package/node_modules/@luan.sh/pi-libtui/src/diff/parse.ts +310 -0
- package/node_modules/@luan.sh/pi-libtui/src/diff/pierre-syntax.ts +86 -0
- package/node_modules/@luan.sh/pi-libtui/src/diff/render.ts +504 -0
- package/node_modules/@luan.sh/pi-libtui/src/diff/structured.ts +264 -0
- package/node_modules/@luan.sh/pi-libtui/src/diff/view.ts +75 -0
- package/node_modules/@luan.sh/pi-libtui/src/editor/chrome.ts +341 -0
- package/node_modules/@luan.sh/pi-libtui/src/editor/composition.ts +53 -0
- package/node_modules/@luan.sh/pi-libtui/src/editor/layout.ts +81 -0
- package/node_modules/@luan.sh/pi-libtui/src/editor/presentation.ts +35 -0
- package/node_modules/@luan.sh/pi-libtui/src/editor/protocol.ts +188 -0
- package/node_modules/@luan.sh/pi-libtui/src/editor.ts +41 -0
- package/node_modules/@luan.sh/pi-libtui/src/extension.ts +30 -0
- package/node_modules/@luan.sh/pi-libtui/src/folding.ts +192 -0
- package/node_modules/@luan.sh/pi-libtui/src/host/cursor-bridge.ts +210 -0
- package/node_modules/@luan.sh/pi-libtui/src/host/editor-bridge.ts +148 -0
- package/node_modules/@luan.sh/pi-libtui/src/host/extension-host.ts +231 -0
- package/node_modules/@luan.sh/pi-libtui/src/host/mouse-bridge.ts +212 -0
- package/node_modules/@luan.sh/pi-libtui/src/host/mouse-dispatch.ts +400 -0
- package/node_modules/@luan.sh/pi-libtui/src/host/mouse-input.ts +85 -0
- package/node_modules/@luan.sh/pi-libtui/src/host/mouse-targets.ts +238 -0
- package/node_modules/@luan.sh/pi-libtui/src/host/pi-layout-adapter.ts +298 -0
- package/node_modules/@luan.sh/pi-libtui/src/host/pi-native-selection.ts +227 -0
- package/node_modules/@luan.sh/pi-libtui/src/host/split-pane-bridge.ts +720 -0
- package/node_modules/@luan.sh/pi-libtui/src/host/transcript-bridge.ts +236 -0
- package/node_modules/@luan.sh/pi-libtui/src/index.ts +334 -0
- package/node_modules/@luan.sh/pi-libtui/src/line-layout.ts +6 -0
- package/node_modules/@luan.sh/pi-libtui/src/motion.ts +1409 -0
- package/node_modules/@luan.sh/pi-libtui/src/mouse/events.ts +55 -0
- package/node_modules/@luan.sh/pi-libtui/src/mouse/fullscreen-layout.ts +260 -0
- package/node_modules/@luan.sh/pi-libtui/src/mouse/registry.ts +348 -0
- package/node_modules/@luan.sh/pi-libtui/src/mouse.ts +37 -0
- package/node_modules/@luan.sh/pi-libtui/src/native-binary.ts +189 -0
- package/node_modules/@luan.sh/pi-libtui/src/overlay/anchored.ts +91 -0
- package/node_modules/@luan.sh/pi-libtui/src/overlay/detail-card.ts +158 -0
- package/node_modules/@luan.sh/pi-libtui/src/overlay/dialog.ts +266 -0
- package/node_modules/@luan.sh/pi-libtui/src/overlay/floating.ts +106 -0
- package/node_modules/@luan.sh/pi-libtui/src/overlay/framed-editor.ts +236 -0
- package/node_modules/@luan.sh/pi-libtui/src/overlay/fullscreen.ts +170 -0
- package/node_modules/@luan.sh/pi-libtui/src/overlay/hover-tooltip.ts +109 -0
- package/node_modules/@luan.sh/pi-libtui/src/overlay/modal-mount.ts +118 -0
- package/node_modules/@luan.sh/pi-libtui/src/panels.ts +207 -0
- package/node_modules/@luan.sh/pi-libtui/src/render-cache.ts +80 -0
- package/node_modules/@luan.sh/pi-libtui/src/render-epoch.ts +48 -0
- package/node_modules/@luan.sh/pi-libtui/src/request-animation.ts +160 -0
- package/node_modules/@luan.sh/pi-libtui/src/scrollbar.ts +27 -0
- package/node_modules/@luan.sh/pi-libtui/src/selection.ts +148 -0
- package/node_modules/@luan.sh/pi-libtui/src/split-pane.ts +232 -0
- package/node_modules/@luan.sh/pi-libtui/src/status-presentation.ts +411 -0
- package/node_modules/@luan.sh/pi-libtui/src/stream.ts +543 -0
- package/node_modules/@luan.sh/pi-libtui/src/syntax.ts +316 -0
- package/node_modules/@luan.sh/pi-libtui/src/terminal/bridge-client.ts +243 -0
- package/node_modules/@luan.sh/pi-libtui/src/terminal/embedding.ts +6 -0
- package/node_modules/@luan.sh/pi-libtui/src/terminal/output.ts +151 -0
- package/node_modules/@luan.sh/pi-libtui/src/terminal/projection.ts +362 -0
- package/node_modules/@luan.sh/pi-libtui/src/terminal/pty-host.ts +263 -0
- package/node_modules/@luan.sh/pi-libtui/src/terminal/pty-pane.ts +308 -0
- package/node_modules/@luan.sh/pi-libtui/src/terminal-colors.ts +334 -0
- package/node_modules/@luan.sh/pi-libtui/src/tool/action.ts +170 -0
- package/node_modules/@luan.sh/pi-libtui/src/tool/activity.ts +500 -0
- package/node_modules/@luan.sh/pi-libtui/src/tool/call-preview.ts +44 -0
- package/node_modules/@luan.sh/pi-libtui/src/tool/disclosure-action.ts +89 -0
- package/node_modules/@luan.sh/pi-libtui/src/tool/expanded-region-viewport.ts +103 -0
- package/node_modules/@luan.sh/pi-libtui/src/tool/index.ts +26 -0
- package/node_modules/@luan.sh/pi-libtui/src/tool/output.ts +271 -0
- package/node_modules/@luan.sh/pi-libtui/src/tool/transcript.ts +150 -0
- package/node_modules/@luan.sh/pi-libtui/src/tool/view-region.ts +581 -0
- package/node_modules/@luan.sh/pi-libtui/test/appearance.test.ts +183 -0
- package/node_modules/@luan.sh/pi-libtui/test/bounded-stream.test.ts +150 -0
- package/node_modules/@luan.sh/pi-libtui/test/bridge-client.test.ts +42 -0
- package/node_modules/@luan.sh/pi-libtui/test/color-preview.test.ts +23 -0
- package/node_modules/@luan.sh/pi-libtui/test/component-stack.test.ts +206 -0
- package/node_modules/@luan.sh/pi-libtui/test/components.test.ts +1165 -0
- package/node_modules/@luan.sh/pi-libtui/test/content-text.test.ts +21 -0
- package/node_modules/@luan.sh/pi-libtui/test/cursor-bridge.test.ts +151 -0
- package/node_modules/@luan.sh/pi-libtui/test/cursor.test.ts +147 -0
- package/node_modules/@luan.sh/pi-libtui/test/editor-chrome.test.ts +119 -0
- package/node_modules/@luan.sh/pi-libtui/test/editor-layout.test.ts +30 -0
- package/node_modules/@luan.sh/pi-libtui/test/editor-registry.test.ts +203 -0
- package/node_modules/@luan.sh/pi-libtui/test/editor-theme.test.ts +33 -0
- package/node_modules/@luan.sh/pi-libtui/test/editor-token-pill.test.ts +72 -0
- package/node_modules/@luan.sh/pi-libtui/test/floating-overlay.test.ts +57 -0
- package/node_modules/@luan.sh/pi-libtui/test/folding.test.ts +147 -0
- package/node_modules/@luan.sh/pi-libtui/test/harmonious-theme.test.ts +23 -0
- package/node_modules/@luan.sh/pi-libtui/test/interaction.test.ts +104 -0
- package/node_modules/@luan.sh/pi-libtui/test/key-icons.test.ts +62 -0
- package/node_modules/@luan.sh/pi-libtui/test/markdown-code.test.ts +24 -0
- package/node_modules/@luan.sh/pi-libtui/test/modal-overlay-mount.test.ts +94 -0
- package/node_modules/@luan.sh/pi-libtui/test/motion.test.ts +649 -0
- package/node_modules/@luan.sh/pi-libtui/test/mouse/bridge.test.ts +1302 -0
- package/node_modules/@luan.sh/pi-libtui/test/mouse/extension.test.ts +205 -0
- package/node_modules/@luan.sh/pi-libtui/test/mouse/registry.test.ts +140 -0
- package/node_modules/@luan.sh/pi-libtui/test/mouse/screen-decoration.test.ts +167 -0
- package/node_modules/@luan.sh/pi-libtui/test/native-binary.test.ts +52 -0
- package/node_modules/@luan.sh/pi-libtui/test/palette.test.ts +32 -0
- package/node_modules/@luan.sh/pi-libtui/test/panels.test.ts +74 -0
- package/node_modules/@luan.sh/pi-libtui/test/pointer-components.test.ts +151 -0
- package/node_modules/@luan.sh/pi-libtui/test/progress.test.ts +54 -0
- package/node_modules/@luan.sh/pi-libtui/test/pty-host.test.ts +126 -0
- package/node_modules/@luan.sh/pi-libtui/test/pty-pane.test.ts +62 -0
- package/node_modules/@luan.sh/pi-libtui/test/public-surface.test.ts +75 -0
- package/node_modules/@luan.sh/pi-libtui/test/render-cache.test.ts +25 -0
- package/node_modules/@luan.sh/pi-libtui/test/render-epoch.test.ts +119 -0
- package/node_modules/@luan.sh/pi-libtui/test/request-animation.test.ts +193 -0
- package/node_modules/@luan.sh/pi-libtui/test/screen-icon-actions.test.ts +69 -0
- package/node_modules/@luan.sh/pi-libtui/test/select-box.test.ts +86 -0
- package/node_modules/@luan.sh/pi-libtui/test/select-pointer.test.ts +369 -0
- package/node_modules/@luan.sh/pi-libtui/test/selectable-list.test.ts +258 -0
- package/node_modules/@luan.sh/pi-libtui/test/selection/registry.test.ts +44 -0
- package/node_modules/@luan.sh/pi-libtui/test/selection-action-bar.test.ts +204 -0
- package/node_modules/@luan.sh/pi-libtui/test/split-pane-bridge.test.ts +944 -0
- package/node_modules/@luan.sh/pi-libtui/test/split-pane.test.ts +134 -0
- package/node_modules/@luan.sh/pi-libtui/test/status-presentation.test.ts +39 -0
- package/node_modules/@luan.sh/pi-libtui/test/syntax.test.ts +59 -0
- package/node_modules/@luan.sh/pi-libtui/test/terminal-colors.test.ts +115 -0
- package/node_modules/@luan.sh/pi-libtui/test/terminal-embedding.test.ts +12 -0
- package/node_modules/@luan.sh/pi-libtui/test/terminal-projection.test.ts +312 -0
- package/node_modules/@luan.sh/pi-libtui/test/theme-colors.test.ts +175 -0
- package/node_modules/@luan.sh/pi-libtui/test/tool-output.test.ts +160 -0
- package/node_modules/@luan.sh/pi-libtui/test/tool-transcript.test.ts +1190 -0
- package/node_modules/@luan.sh/pi-libtui/test/unified-diff.test.ts +691 -0
- package/node_modules/@luan.sh/pi-libtui/themes/harmonious.json +61 -0
- package/node_modules/@luan.sh/pi-libtui/tsconfig.json +16 -0
- package/node_modules/@luan.sh/pi-xsettings/LICENSE +21 -0
- package/node_modules/@luan.sh/pi-xsettings/README.md +203 -0
- package/node_modules/@luan.sh/pi-xsettings/package.json +56 -0
- package/node_modules/@luan.sh/pi-xsettings/src/config/pi-settings.ts +534 -0
- package/node_modules/@luan.sh/pi-xsettings/src/config/presentation.ts +23 -0
- package/node_modules/@luan.sh/pi-xsettings/src/config/schema.ts +32 -0
- package/node_modules/@luan.sh/pi-xsettings/src/config/store.ts +202 -0
- package/node_modules/@luan.sh/pi-xsettings/src/config/tui-settings.ts +436 -0
- package/node_modules/@luan.sh/pi-xsettings/src/extension.ts +241 -0
- package/node_modules/@luan.sh/pi-xsettings/src/index.ts +14 -0
- package/node_modules/@luan.sh/pi-xsettings/src/protocol/settings.ts +177 -0
- package/node_modules/@luan.sh/pi-xsettings/src/runtime/actions.ts +29 -0
- package/node_modules/@luan.sh/pi-xsettings/src/runtime/apply.ts +25 -0
- package/node_modules/@luan.sh/pi-xsettings/src/runtime/effort.ts +34 -0
- package/node_modules/@luan.sh/pi-xsettings/src/runtime/options.ts +19 -0
- package/node_modules/@luan.sh/pi-xsettings/src/runtime/settings.ts +77 -0
- package/node_modules/@luan.sh/pi-xsettings/src/sdk.ts +264 -0
- package/node_modules/@luan.sh/pi-xsettings/src/ui/editor-session.ts +141 -0
- package/node_modules/@luan.sh/pi-xsettings/src/ui/fields.ts +109 -0
- package/node_modules/@luan.sh/pi-xsettings/src/ui/settings-editor.ts +918 -0
- package/node_modules/@luan.sh/pi-xsettings/src/ui/string-list-editor.ts +315 -0
- package/node_modules/@luan.sh/pi-xsettings/src/ui/structured-list-editor.ts +730 -0
- package/node_modules/@luan.sh/pi-xsettings/src/ui/xsettings-screen.ts +680 -0
- package/node_modules/@luan.sh/pi-xsettings/test/apply.test.ts +89 -0
- package/node_modules/@luan.sh/pi-xsettings/test/effort.test.ts +49 -0
- package/node_modules/@luan.sh/pi-xsettings/test/pi-settings.test.ts +71 -0
- package/node_modules/@luan.sh/pi-xsettings/test/presentation.test.ts +32 -0
- package/node_modules/@luan.sh/pi-xsettings/test/registry.test.ts +428 -0
- package/node_modules/@luan.sh/pi-xsettings/test/settings-editor.test.ts +985 -0
- package/node_modules/@luan.sh/pi-xsettings/test/store.test.ts +129 -0
- package/node_modules/@luan.sh/pi-xsettings/test/string-list-editor.test.ts +176 -0
- package/node_modules/@luan.sh/pi-xsettings/test/structured-list-editor.test.ts +280 -0
- package/node_modules/@luan.sh/pi-xsettings/test/tui-settings.test.ts +271 -0
- package/node_modules/@luan.sh/pi-xsettings/test/ui-fields.test.ts +326 -0
- package/node_modules/@luan.sh/pi-xsettings/test/xsettings-pointer.test.ts +585 -0
- package/node_modules/@luan.sh/pi-xsettings/tsconfig.json +16 -0
- package/node_modules/@pierre/diffs/LICENSE.md +189 -0
- package/node_modules/@pierre/diffs/README.md +95 -0
- package/node_modules/@pierre/diffs/dist/components/CodeView.d.ts +476 -0
- package/node_modules/@pierre/diffs/dist/components/CodeView.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/CodeView.js +2006 -0
- package/node_modules/@pierre/diffs/dist/components/CodeView.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/File.d.ts +171 -0
- package/node_modules/@pierre/diffs/dist/components/File.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/File.js +956 -0
- package/node_modules/@pierre/diffs/dist/components/File.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/FileDiff.d.ts +257 -0
- package/node_modules/@pierre/diffs/dist/components/FileDiff.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/FileDiff.js +1652 -0
- package/node_modules/@pierre/diffs/dist/components/FileDiff.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/FileStream.d.ts +48 -0
- package/node_modules/@pierre/diffs/dist/components/FileStream.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/FileStream.js +251 -0
- package/node_modules/@pierre/diffs/dist/components/FileStream.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/UnresolvedFile.d.ts +71 -0
- package/node_modules/@pierre/diffs/dist/components/UnresolvedFile.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/UnresolvedFile.js +407 -0
- package/node_modules/@pierre/diffs/dist/components/UnresolvedFile.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/VirtualizedFile.d.ts +68 -0
- package/node_modules/@pierre/diffs/dist/components/VirtualizedFile.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/VirtualizedFile.js +543 -0
- package/node_modules/@pierre/diffs/dist/components/VirtualizedFile.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/VirtualizedFileDiff.d.ts +100 -0
- package/node_modules/@pierre/diffs/dist/components/VirtualizedFileDiff.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/VirtualizedFileDiff.js +1052 -0
- package/node_modules/@pierre/diffs/dist/components/VirtualizedFileDiff.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/Virtualizer.d.ts +82 -0
- package/node_modules/@pierre/diffs/dist/components/Virtualizer.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/Virtualizer.js +433 -0
- package/node_modules/@pierre/diffs/dist/components/Virtualizer.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/VirtulizerDevelopment.d.ts +14 -0
- package/node_modules/@pierre/diffs/dist/components/VirtulizerDevelopment.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/web-components.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/components/web-components.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/components/web-components.js +28 -0
- package/node_modules/@pierre/diffs/dist/components/web-components.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/constants.d.ts +43 -0
- package/node_modules/@pierre/diffs/dist/constants.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/constants.js +80 -0
- package/node_modules/@pierre/diffs/dist/constants.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/edit/index.d.ts +6 -0
- package/node_modules/@pierre/diffs/dist/edit/index.js +3 -0
- package/node_modules/@pierre/diffs/dist/editor/command.d.ts +15 -0
- package/node_modules/@pierre/diffs/dist/editor/command.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/command.js +128 -0
- package/node_modules/@pierre/diffs/dist/editor/command.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/editStack.d.ts +76 -0
- package/node_modules/@pierre/diffs/dist/editor/editStack.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/editStack.js +259 -0
- package/node_modules/@pierre/diffs/dist/editor/editStack.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/editor.d.ts +118 -0
- package/node_modules/@pierre/diffs/dist/editor/editor.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/editor.js +2880 -0
- package/node_modules/@pierre/diffs/dist/editor/editor.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/editor2.js +6 -0
- package/node_modules/@pierre/diffs/dist/editor/editor2.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/languages.d.ts +26 -0
- package/node_modules/@pierre/diffs/dist/editor/languages.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/languages.js +363 -0
- package/node_modules/@pierre/diffs/dist/editor/languages.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/lineAnnotations.d.ts +9 -0
- package/node_modules/@pierre/diffs/dist/editor/lineAnnotations.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/lineAnnotations.js +212 -0
- package/node_modules/@pierre/diffs/dist/editor/lineAnnotations.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/marker.d.ts +38 -0
- package/node_modules/@pierre/diffs/dist/editor/marker.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/marker.js +245 -0
- package/node_modules/@pierre/diffs/dist/editor/marker.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/matchBrackets.d.ts +9 -0
- package/node_modules/@pierre/diffs/dist/editor/matchBrackets.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/matchBrackets.js +138 -0
- package/node_modules/@pierre/diffs/dist/editor/matchBrackets.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/pieceTable.d.ts +40 -0
- package/node_modules/@pierre/diffs/dist/editor/pieceTable.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/pieceTable.js +706 -0
- package/node_modules/@pierre/diffs/dist/editor/pieceTable.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/platform.d.ts +11 -0
- package/node_modules/@pierre/diffs/dist/editor/platform.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/platform.js +31 -0
- package/node_modules/@pierre/diffs/dist/editor/platform.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/popover.d.ts +65 -0
- package/node_modules/@pierre/diffs/dist/editor/popover.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/popover.js +191 -0
- package/node_modules/@pierre/diffs/dist/editor/popover.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/searchPanel.d.ts +41 -0
- package/node_modules/@pierre/diffs/dist/editor/searchPanel.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/searchPanel.js +318 -0
- package/node_modules/@pierre/diffs/dist/editor/searchPanel.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/selection.d.ts +211 -0
- package/node_modules/@pierre/diffs/dist/editor/selection.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/selection.js +1626 -0
- package/node_modules/@pierre/diffs/dist/editor/selection.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/selectionAction.d.ts +47 -0
- package/node_modules/@pierre/diffs/dist/editor/selectionAction.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/selectionAction.js +66 -0
- package/node_modules/@pierre/diffs/dist/editor/selectionAction.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/sprite.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/editor/sprite.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/sprite.js +45 -0
- package/node_modules/@pierre/diffs/dist/editor/sprite.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/stateStorage.d.ts +15 -0
- package/node_modules/@pierre/diffs/dist/editor/stateStorage.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/stateStorage.js +65 -0
- package/node_modules/@pierre/diffs/dist/editor/stateStorage.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/textDocument.d.ts +67 -0
- package/node_modules/@pierre/diffs/dist/editor/textDocument.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/textDocument.js +278 -0
- package/node_modules/@pierre/diffs/dist/editor/textDocument.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/textMeasure.d.ts +61 -0
- package/node_modules/@pierre/diffs/dist/editor/textMeasure.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/textMeasure.js +209 -0
- package/node_modules/@pierre/diffs/dist/editor/textMeasure.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/tokenizer.d.ts +41 -0
- package/node_modules/@pierre/diffs/dist/editor/tokenizer.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/tokenizer.js +596 -0
- package/node_modules/@pierre/diffs/dist/editor/tokenizer.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/utils.d.ts +22 -0
- package/node_modules/@pierre/diffs/dist/editor/utils.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/editor/utils.js +78 -0
- package/node_modules/@pierre/diffs/dist/editor/utils.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/areLanguagesAttached.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/areLanguagesAttached.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/areLanguagesAttached.js +13 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/areLanguagesAttached.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/attachResolvedLanguages.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/attachResolvedLanguages.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/attachResolvedLanguages.js +19 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/attachResolvedLanguages.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/cleanUpResolvedLanguages.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/cleanUpResolvedLanguages.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/cleanUpResolvedLanguages.js +10 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/cleanUpResolvedLanguages.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/constants.d.ts +12 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/constants.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/constants.js +9 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/constants.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/getResolvedLanguages.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/getResolvedLanguages.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/getResolvedLanguages.js +15 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/getResolvedLanguages.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/getResolvedOrResolveLanguage.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/getResolvedOrResolveLanguage.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/getResolvedOrResolveLanguage.js +10 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/getResolvedOrResolveLanguage.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/hasResolvedLanguages.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/hasResolvedLanguages.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/hasResolvedLanguages.js +10 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/hasResolvedLanguages.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/registerCustomLanguage.d.ts +18 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/registerCustomLanguage.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/registerCustomLanguage.js +20 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/registerCustomLanguage.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/resolveLanguage.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/resolveLanguage.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/resolveLanguage.js +30 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/resolveLanguage.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/resolveLanguages.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/resolveLanguages.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/resolveLanguages.js +24 -0
- package/node_modules/@pierre/diffs/dist/highlighter/languages/resolveLanguages.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/shared_highlighter.d.ts +23 -0
- package/node_modules/@pierre/diffs/dist/highlighter/shared_highlighter.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/shared_highlighter.js +66 -0
- package/node_modules/@pierre/diffs/dist/highlighter/shared_highlighter.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/areThemesAttached.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/areThemesAttached.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/areThemesAttached.js +11 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/areThemesAttached.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/attachResolvedThemes.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/attachResolvedThemes.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/attachResolvedThemes.js +24 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/attachResolvedThemes.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/cleanUpResolvedThemes.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/cleanUpResolvedThemes.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/cleanUpResolvedThemes.js +11 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/cleanUpResolvedThemes.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/constants.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/constants.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/constants.js +6 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/constants.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/getResolvedOrResolveTheme.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/getResolvedOrResolveTheme.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/getResolvedOrResolveTheme.js +10 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/getResolvedOrResolveTheme.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/getResolvedThemes.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/getResolvedThemes.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/getResolvedThemes.js +9 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/getResolvedThemes.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/hasResolvedThemes.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/hasResolvedThemes.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/hasResolvedThemes.js +9 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/hasResolvedThemes.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/registerCustomCSSVariableTheme.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/registerCustomCSSVariableTheme.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/registerCustomCSSVariableTheme.js +17 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/registerCustomCSSVariableTheme.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/registerCustomTheme.d.ts +9 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/registerCustomTheme.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/registerCustomTheme.js +23 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/registerCustomTheme.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/resolveTheme.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/resolveTheme.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/resolveTheme.js +13 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/resolveTheme.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/resolveThemes.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/resolveThemes.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/resolveThemes.js +13 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/resolveThemes.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/themeResolution.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/themeResolution.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/themeResolution.js +21 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/themeResolution.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/themeResolver.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/themeResolver.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/themeResolver.js +7 -0
- package/node_modules/@pierre/diffs/dist/highlighter/themes/themeResolver.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/index.d.ts +111 -0
- package/node_modules/@pierre/diffs/dist/index.js +109 -0
- package/node_modules/@pierre/diffs/dist/managers/InteractionManager.d.ts +193 -0
- package/node_modules/@pierre/diffs/dist/managers/InteractionManager.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/managers/InteractionManager.js +1202 -0
- package/node_modules/@pierre/diffs/dist/managers/InteractionManager.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/managers/ResizeManager.d.ts +27 -0
- package/node_modules/@pierre/diffs/dist/managers/ResizeManager.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/managers/ResizeManager.js +283 -0
- package/node_modules/@pierre/diffs/dist/managers/ResizeManager.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/managers/ScrollSyncManager.d.ts +16 -0
- package/node_modules/@pierre/diffs/dist/managers/ScrollSyncManager.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/managers/ScrollSyncManager.js +62 -0
- package/node_modules/@pierre/diffs/dist/managers/ScrollSyncManager.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/managers/UniversalRenderingManager.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/managers/UniversalRenderingManager.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/managers/UniversalRenderingManager.js +33 -0
- package/node_modules/@pierre/diffs/dist/managers/UniversalRenderingManager.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/node_modules/.pnpm/@types_hast@3.0.4/node_modules/@types/hast/index.d.ts +228 -0
- package/node_modules/@pierre/diffs/dist/node_modules/.pnpm/@types_hast@3.0.4/node_modules/@types/hast/index.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/node_modules/.pnpm/@types_unist@3.0.3/node_modules/@types/unist/index.d.ts +84 -0
- package/node_modules/@pierre/diffs/dist/node_modules/.pnpm/@types_unist@3.0.3/node_modules/@types/unist/index.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/CodeView.d.ts +75 -0
- package/node_modules/@pierre/diffs/dist/react/CodeView.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/CodeView.js +387 -0
- package/node_modules/@pierre/diffs/dist/react/CodeView.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/EditContext.d.ts +20 -0
- package/node_modules/@pierre/diffs/dist/react/EditContext.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/EditContext.js +27 -0
- package/node_modules/@pierre/diffs/dist/react/EditContext.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/File.d.ts +26 -0
- package/node_modules/@pierre/diffs/dist/react/File.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/File.js +42 -0
- package/node_modules/@pierre/diffs/dist/react/File.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/FileDiff.d.ts +30 -0
- package/node_modules/@pierre/diffs/dist/react/FileDiff.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/FileDiff.js +42 -0
- package/node_modules/@pierre/diffs/dist/react/FileDiff.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/MultiFileDiff.d.ts +31 -0
- package/node_modules/@pierre/diffs/dist/react/MultiFileDiff.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/MultiFileDiff.js +51 -0
- package/node_modules/@pierre/diffs/dist/react/MultiFileDiff.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/PatchDiff.d.ts +29 -0
- package/node_modules/@pierre/diffs/dist/react/PatchDiff.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/PatchDiff.js +48 -0
- package/node_modules/@pierre/diffs/dist/react/PatchDiff.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/UnresolvedFile.d.ts +45 -0
- package/node_modules/@pierre/diffs/dist/react/UnresolvedFile.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/UnresolvedFile.js +43 -0
- package/node_modules/@pierre/diffs/dist/react/UnresolvedFile.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/Virtualizer.d.ts +25 -0
- package/node_modules/@pierre/diffs/dist/react/Virtualizer.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/Virtualizer.js +35 -0
- package/node_modules/@pierre/diffs/dist/react/Virtualizer.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/WorkerPoolContext.d.ts +19 -0
- package/node_modules/@pierre/diffs/dist/react/WorkerPoolContext.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/WorkerPoolContext.js +40 -0
- package/node_modules/@pierre/diffs/dist/react/WorkerPoolContext.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/constants.d.ts +9 -0
- package/node_modules/@pierre/diffs/dist/react/constants.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/constants.js +17 -0
- package/node_modules/@pierre/diffs/dist/react/constants.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/index.d.ts +21 -0
- package/node_modules/@pierre/diffs/dist/react/index.js +17 -0
- package/node_modules/@pierre/diffs/dist/react/jsx.d.ts +10 -0
- package/node_modules/@pierre/diffs/dist/react/jsx.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/types.d.ts +51 -0
- package/node_modules/@pierre/diffs/dist/react/types.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/types.js +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/renderDiffChildren.d.ts +38 -0
- package/node_modules/@pierre/diffs/dist/react/utils/renderDiffChildren.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/renderDiffChildren.js +62 -0
- package/node_modules/@pierre/diffs/dist/react/utils/renderDiffChildren.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/renderFileChildren.d.ts +31 -0
- package/node_modules/@pierre/diffs/dist/react/utils/renderFileChildren.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/renderFileChildren.js +43 -0
- package/node_modules/@pierre/diffs/dist/react/utils/renderFileChildren.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/templateRender.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/react/utils/templateRender.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/templateRender.js +13 -0
- package/node_modules/@pierre/diffs/dist/react/utils/templateRender.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useFileDiffInstance.d.ts +38 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useFileDiffInstance.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useFileDiffInstance.js +95 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useFileDiffInstance.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useFileInstance.d.ts +39 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useFileInstance.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useFileInstance.js +94 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useFileInstance.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useStableCallback.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useStableCallback.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useStableCallback.js +13 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useStableCallback.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useUnresolvedFileInstance.d.ts +40 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useUnresolvedFileInstance.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useUnresolvedFileInstance.js +107 -0
- package/node_modules/@pierre/diffs/dist/react/utils/useUnresolvedFileInstance.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/renderers/DiffHunksRenderer.d.ts +174 -0
- package/node_modules/@pierre/diffs/dist/renderers/DiffHunksRenderer.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/renderers/DiffHunksRenderer.js +1199 -0
- package/node_modules/@pierre/diffs/dist/renderers/DiffHunksRenderer.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/renderers/FileRenderer.d.ts +86 -0
- package/node_modules/@pierre/diffs/dist/renderers/FileRenderer.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/renderers/FileRenderer.js +542 -0
- package/node_modules/@pierre/diffs/dist/renderers/FileRenderer.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/renderers/UnresolvedFileHunksRenderer.d.ts +40 -0
- package/node_modules/@pierre/diffs/dist/renderers/UnresolvedFileHunksRenderer.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/renderers/UnresolvedFileHunksRenderer.js +199 -0
- package/node_modules/@pierre/diffs/dist/renderers/UnresolvedFileHunksRenderer.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/index.d.ts +4 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/index.js +3 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/stream.d.ts +16 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/stream.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/stream.js +31 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/stream.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/tokenizer.d.ts +24 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/tokenizer.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/tokenizer.js +71 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/tokenizer.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/types.d.ts +44 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/types.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/shiki-stream/types.js +0 -0
- package/node_modules/@pierre/diffs/dist/sprite.d.ts +6 -0
- package/node_modules/@pierre/diffs/dist/sprite.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/sprite.js +58 -0
- package/node_modules/@pierre/diffs/dist/sprite.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/ssr/FileDiffReact.d.ts +21 -0
- package/node_modules/@pierre/diffs/dist/ssr/FileDiffReact.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/ssr/FileDiffReact.js +50 -0
- package/node_modules/@pierre/diffs/dist/ssr/FileDiffReact.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/ssr/index.d.ts +6 -0
- package/node_modules/@pierre/diffs/dist/ssr/index.js +5 -0
- package/node_modules/@pierre/diffs/dist/ssr/preloadDiffs.d.ts +82 -0
- package/node_modules/@pierre/diffs/dist/ssr/preloadDiffs.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/ssr/preloadDiffs.js +105 -0
- package/node_modules/@pierre/diffs/dist/ssr/preloadDiffs.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/ssr/preloadFile.d.ts +23 -0
- package/node_modules/@pierre/diffs/dist/ssr/preloadFile.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/ssr/preloadFile.js +32 -0
- package/node_modules/@pierre/diffs/dist/ssr/preloadFile.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/ssr/preloadPatchFile.d.ts +15 -0
- package/node_modules/@pierre/diffs/dist/ssr/preloadPatchFile.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/ssr/preloadPatchFile.js +16 -0
- package/node_modules/@pierre/diffs/dist/ssr/preloadPatchFile.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/ssr/renderHTML.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/ssr/renderHTML.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/ssr/renderHTML.js +10 -0
- package/node_modules/@pierre/diffs/dist/ssr/renderHTML.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/string-import.d.ts +10 -0
- package/node_modules/@pierre/diffs/dist/string-import.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/style.js +6 -0
- package/node_modules/@pierre/diffs/dist/style.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/types.d.ts +1020 -0
- package/node_modules/@pierre/diffs/dist/types.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/types.js +0 -0
- package/node_modules/@pierre/diffs/dist/utils/annotationHelpers.d.ts +20 -0
- package/node_modules/@pierre/diffs/dist/utils/annotationHelpers.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/annotationHelpers.js +29 -0
- package/node_modules/@pierre/diffs/dist/utils/annotationHelpers.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/applyLineTextWithNewline.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/applyLineTextWithNewline.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/applyLineTextWithNewline.js +11 -0
- package/node_modules/@pierre/diffs/dist/utils/applyLineTextWithNewline.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areDiffLineAnnotationsEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areDiffLineAnnotationsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areDiffLineAnnotationsEqual.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/areDiffLineAnnotationsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areDiffRenderOptionsEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areDiffRenderOptionsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areDiffRenderOptionsEqual.js +9 -0
- package/node_modules/@pierre/diffs/dist/utils/areDiffRenderOptionsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areDiffTargetsEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areDiffTargetsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areDiffTargetsEqual.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/areDiffTargetsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areFileRenderOptionsEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areFileRenderOptionsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areFileRenderOptionsEqual.js +9 -0
- package/node_modules/@pierre/diffs/dist/utils/areFileRenderOptionsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areFilesEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areFilesEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areFilesEqual.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/areFilesEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areHunkDataEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areHunkDataEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areHunkDataEqual.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/areHunkDataEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areLineAnnotationsEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areLineAnnotationsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areLineAnnotationsEqual.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/areLineAnnotationsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areManagedSnapshotsEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areManagedSnapshotsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areManagedSnapshotsEqual.js +20 -0
- package/node_modules/@pierre/diffs/dist/utils/areManagedSnapshotsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areMergeConflictActionsEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areMergeConflictActionsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areMergeConflictActionsEqual.js +11 -0
- package/node_modules/@pierre/diffs/dist/utils/areMergeConflictActionsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areObjectsEqual.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/areObjectsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areObjectsEqual.js +18 -0
- package/node_modules/@pierre/diffs/dist/utils/areObjectsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areOptionsEqual.d.ts +9 -0
- package/node_modules/@pierre/diffs/dist/utils/areOptionsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areOptionsEqual.js +18 -0
- package/node_modules/@pierre/diffs/dist/utils/areOptionsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/arePrePropertiesEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/arePrePropertiesEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/arePrePropertiesEqual.js +18 -0
- package/node_modules/@pierre/diffs/dist/utils/arePrePropertiesEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areRenderRangesEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areRenderRangesEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areRenderRangesEqual.js +9 -0
- package/node_modules/@pierre/diffs/dist/utils/areRenderRangesEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areSelectionPointsEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areSelectionPointsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areSelectionPointsEqual.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/areSelectionPointsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areSelectionsEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areSelectionsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areSelectionsEqual.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/areSelectionsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areThemesEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areThemesEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areThemesEqual.js +9 -0
- package/node_modules/@pierre/diffs/dist/utils/areThemesEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areVirtualWindowSpecsEqual.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/areVirtualWindowSpecsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areVirtualWindowSpecsEqual.js +9 -0
- package/node_modules/@pierre/diffs/dist/utils/areVirtualWindowSpecsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areWorkerStatsEqual.d.ts +6 -0
- package/node_modules/@pierre/diffs/dist/utils/areWorkerStatsEqual.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/areWorkerStatsEqual.js +9 -0
- package/node_modules/@pierre/diffs/dist/utils/areWorkerStatsEqual.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/awaitWithTimeout.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/awaitWithTimeout.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/awaitWithTimeout.js +15 -0
- package/node_modules/@pierre/diffs/dist/utils/awaitWithTimeout.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/cleanLastNewline.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/cleanLastNewline.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/cleanLastNewline.js +13 -0
- package/node_modules/@pierre/diffs/dist/utils/cleanLastNewline.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/cloneFileDiffMetadata.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/cloneFileDiffMetadata.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/cloneFileDiffMetadata.js +16 -0
- package/node_modules/@pierre/diffs/dist/utils/cloneFileDiffMetadata.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/computeEstimatedDiffHeights.d.ts +30 -0
- package/node_modules/@pierre/diffs/dist/utils/computeEstimatedDiffHeights.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/computeEstimatedDiffHeights.js +106 -0
- package/node_modules/@pierre/diffs/dist/utils/computeEstimatedDiffHeights.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/computeFileOffsets.d.ts +21 -0
- package/node_modules/@pierre/diffs/dist/utils/computeFileOffsets.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/computeFileOffsets.js +80 -0
- package/node_modules/@pierre/diffs/dist/utils/computeFileOffsets.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/computeVirtualFileMetrics.d.ts +11 -0
- package/node_modules/@pierre/diffs/dist/utils/computeVirtualFileMetrics.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/computeVirtualFileMetrics.js +31 -0
- package/node_modules/@pierre/diffs/dist/utils/computeVirtualFileMetrics.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createAnnotationElement.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/utils/createAnnotationElement.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createAnnotationElement.js +20 -0
- package/node_modules/@pierre/diffs/dist/utils/createAnnotationElement.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createAnnotationWrapperNode.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/createAnnotationWrapperNode.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createAnnotationWrapperNode.js +12 -0
- package/node_modules/@pierre/diffs/dist/utils/createAnnotationWrapperNode.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createCodeViewHeaderFooterHostElement.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/createCodeViewHeaderFooterHostElement.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createCodeViewHeaderFooterHostElement.js +19 -0
- package/node_modules/@pierre/diffs/dist/utils/createCodeViewHeaderFooterHostElement.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createContentColumn.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/createContentColumn.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createContentColumn.js +16 -0
- package/node_modules/@pierre/diffs/dist/utils/createContentColumn.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createEmptyRowBuffer.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/createEmptyRowBuffer.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createEmptyRowBuffer.js +16 -0
- package/node_modules/@pierre/diffs/dist/utils/createEmptyRowBuffer.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createFileHeaderElement.d.ts +17 -0
- package/node_modules/@pierre/diffs/dist/utils/createFileHeaderElement.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createFileHeaderElement.js +98 -0
- package/node_modules/@pierre/diffs/dist/utils/createFileHeaderElement.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createGutterUtilityContentNode.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/createGutterUtilityContentNode.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createGutterUtilityContentNode.js +16 -0
- package/node_modules/@pierre/diffs/dist/utils/createGutterUtilityContentNode.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createGutterUtilityElement.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/createGutterUtilityElement.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createGutterUtilityElement.js +19 -0
- package/node_modules/@pierre/diffs/dist/utils/createGutterUtilityElement.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createNoNewlineElement.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/utils/createNoNewlineElement.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createNoNewlineElement.js +20 -0
- package/node_modules/@pierre/diffs/dist/utils/createNoNewlineElement.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createPreElement.d.ts +18 -0
- package/node_modules/@pierre/diffs/dist/utils/createPreElement.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createPreElement.js +25 -0
- package/node_modules/@pierre/diffs/dist/utils/createPreElement.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createRowNodes.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/utils/createRowNodes.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createRowNodes.js +20 -0
- package/node_modules/@pierre/diffs/dist/utils/createRowNodes.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createSeparator.d.ts +25 -0
- package/node_modules/@pierre/diffs/dist/utils/createSeparator.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createSeparator.js +87 -0
- package/node_modules/@pierre/diffs/dist/utils/createSeparator.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createSpanNodeFromToken.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/createSpanNodeFromToken.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createSpanNodeFromToken.js +12 -0
- package/node_modules/@pierre/diffs/dist/utils/createSpanNodeFromToken.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createStyleElement.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/utils/createStyleElement.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createStyleElement.js +25 -0
- package/node_modules/@pierre/diffs/dist/utils/createStyleElement.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createTransformerWithState.d.ts +13 -0
- package/node_modules/@pierre/diffs/dist/utils/createTransformerWithState.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createTransformerWithState.js +89 -0
- package/node_modules/@pierre/diffs/dist/utils/createTransformerWithState.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createUnsafeCSSStyleNode.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/createUnsafeCSSStyleNode.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createUnsafeCSSStyleNode.js +11 -0
- package/node_modules/@pierre/diffs/dist/utils/createUnsafeCSSStyleNode.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createWindowFromScrollPosition.d.ts +22 -0
- package/node_modules/@pierre/diffs/dist/utils/createWindowFromScrollPosition.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/createWindowFromScrollPosition.js +27 -0
- package/node_modules/@pierre/diffs/dist/utils/createWindowFromScrollPosition.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/cssWrappers.d.ts +10 -0
- package/node_modules/@pierre/diffs/dist/utils/cssWrappers.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/cssWrappers.js +40 -0
- package/node_modules/@pierre/diffs/dist/utils/cssWrappers.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/detachString.d.ts +6 -0
- package/node_modules/@pierre/diffs/dist/utils/detachString.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/detachString.js +21 -0
- package/node_modules/@pierre/diffs/dist/utils/detachString.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/diffAcceptRejectHunk.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/utils/diffAcceptRejectHunk.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/diffAcceptRejectHunk.js +31 -0
- package/node_modules/@pierre/diffs/dist/utils/diffAcceptRejectHunk.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/editSessionHunks.d.ts +66 -0
- package/node_modules/@pierre/diffs/dist/utils/editSessionHunks.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/editSessionHunks.js +437 -0
- package/node_modules/@pierre/diffs/dist/utils/editSessionHunks.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/formatCSSVariablePrefix.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/formatCSSVariablePrefix.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/formatCSSVariablePrefix.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/formatCSSVariablePrefix.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getDiffFileInput.d.ts +14 -0
- package/node_modules/@pierre/diffs/dist/utils/getDiffFileInput.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getDiffFileInput.js +24 -0
- package/node_modules/@pierre/diffs/dist/utils/getDiffFileInput.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getDiffHunksRendererOptions.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/utils/getDiffHunksRendererOptions.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getDiffHunksRendererOptions.js +33 -0
- package/node_modules/@pierre/diffs/dist/utils/getDiffHunksRendererOptions.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getFileRendererOptions.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/utils/getFileRendererOptions.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getFileRendererOptions.js +25 -0
- package/node_modules/@pierre/diffs/dist/utils/getFileRendererOptions.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getFiletypeFromFileName.d.ts +12 -0
- package/node_modules/@pierre/diffs/dist/utils/getFiletypeFromFileName.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getFiletypeFromFileName.js +390 -0
- package/node_modules/@pierre/diffs/dist/utils/getFiletypeFromFileName.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getHighlighterOptions.d.ts +19 -0
- package/node_modules/@pierre/diffs/dist/utils/getHighlighterOptions.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getHighlighterOptions.js +13 -0
- package/node_modules/@pierre/diffs/dist/utils/getHighlighterOptions.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getHighlighterThemeStyles.d.ts +16 -0
- package/node_modules/@pierre/diffs/dist/utils/getHighlighterThemeStyles.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getHighlighterThemeStyles.js +43 -0
- package/node_modules/@pierre/diffs/dist/utils/getHighlighterThemeStyles.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getHunkSeparatorSlotName.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/getHunkSeparatorSlotName.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getHunkSeparatorSlotName.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/getHunkSeparatorSlotName.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getHunkSideBoundaries.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/getHunkSideBoundaries.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getHunkSideBoundaries.js +12 -0
- package/node_modules/@pierre/diffs/dist/utils/getHunkSideBoundaries.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getIconForType.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/utils/getIconForType.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getIconForType.js +15 -0
- package/node_modules/@pierre/diffs/dist/utils/getIconForType.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getLineAnnotationName.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/getLineAnnotationName.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getLineAnnotationName.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/getLineAnnotationName.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getLineEndingType.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/getLineEndingType.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getLineEndingType.js +11 -0
- package/node_modules/@pierre/diffs/dist/utils/getLineEndingType.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getLineNodes.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/getLineNodes.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getLineNodes.js +15 -0
- package/node_modules/@pierre/diffs/dist/utils/getLineNodes.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getMergeConflictActionSlotName.d.ts +14 -0
- package/node_modules/@pierre/diffs/dist/utils/getMergeConflictActionSlotName.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getMergeConflictActionSlotName.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/getMergeConflictActionSlotName.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getMergeConflictLineTypes.d.ts +14 -0
- package/node_modules/@pierre/diffs/dist/utils/getMergeConflictLineTypes.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getMergeConflictLineTypes.js +75 -0
- package/node_modules/@pierre/diffs/dist/utils/getMergeConflictLineTypes.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getOrCreateCodeNode.d.ts +18 -0
- package/node_modules/@pierre/diffs/dist/utils/getOrCreateCodeNode.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getOrCreateCodeNode.js +18 -0
- package/node_modules/@pierre/diffs/dist/utils/getOrCreateCodeNode.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getSingularPatch.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/getSingularPatch.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getSingularPatch.js +19 -0
- package/node_modules/@pierre/diffs/dist/utils/getSingularPatch.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getThemes.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/getThemes.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getThemes.js +15 -0
- package/node_modules/@pierre/diffs/dist/utils/getThemes.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getTotalLineCountFromHunks.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/getTotalLineCountFromHunks.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/getTotalLineCountFromHunks.js +11 -0
- package/node_modules/@pierre/diffs/dist/utils/getTotalLineCountFromHunks.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/guardWebKitScrollDuringRebuild.d.ts +20 -0
- package/node_modules/@pierre/diffs/dist/utils/guardWebKitScrollDuringRebuild.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/guardWebKitScrollDuringRebuild.js +34 -0
- package/node_modules/@pierre/diffs/dist/utils/guardWebKitScrollDuringRebuild.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/hast_utils.d.ts +35 -0
- package/node_modules/@pierre/diffs/dist/utils/hast_utils.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/hast_utils.js +76 -0
- package/node_modules/@pierre/diffs/dist/utils/hast_utils.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/hostTheme.d.ts +15 -0
- package/node_modules/@pierre/diffs/dist/utils/hostTheme.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/hostTheme.js +21 -0
- package/node_modules/@pierre/diffs/dist/utils/hostTheme.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/hydratePartialDiff.d.ts +10 -0
- package/node_modules/@pierre/diffs/dist/utils/hydratePartialDiff.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/hydratePartialDiff.js +141 -0
- package/node_modules/@pierre/diffs/dist/utils/hydratePartialDiff.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/includesFileAnnotations.d.ts +17 -0
- package/node_modules/@pierre/diffs/dist/utils/includesFileAnnotations.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/includesFileAnnotations.js +19 -0
- package/node_modules/@pierre/diffs/dist/utils/includesFileAnnotations.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/isDefaultRenderRange.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/isDefaultRenderRange.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/isDefaultRenderRange.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/isDefaultRenderRange.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/isDiffPlainText.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/isDiffPlainText.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/isDiffPlainText.js +11 -0
- package/node_modules/@pierre/diffs/dist/utils/isDiffPlainText.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/isFilePlainText.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/isFilePlainText.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/isFilePlainText.js +9 -0
- package/node_modules/@pierre/diffs/dist/utils/isFilePlainText.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/isGutterUtilityPath.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/isGutterUtilityPath.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/isGutterUtilityPath.js +12 -0
- package/node_modules/@pierre/diffs/dist/utils/isGutterUtilityPath.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/isStyleNode.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/isStyleNode.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/isStyleNode.js +10 -0
- package/node_modules/@pierre/diffs/dist/utils/isStyleNode.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/isWorkerContext.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/isWorkerContext.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/isWorkerContext.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/isWorkerContext.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/iterateOverDiff.d.ts +55 -0
- package/node_modules/@pierre/diffs/dist/utils/iterateOverDiff.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/iterateOverDiff.js +493 -0
- package/node_modules/@pierre/diffs/dist/utils/iterateOverDiff.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/normalizeDiffResolution.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/normalizeDiffResolution.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/normalizeDiffResolution.js +11 -0
- package/node_modules/@pierre/diffs/dist/utils/normalizeDiffResolution.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/parseDiffDecorations.d.ts +31 -0
- package/node_modules/@pierre/diffs/dist/utils/parseDiffDecorations.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/parseDiffDecorations.js +33 -0
- package/node_modules/@pierre/diffs/dist/utils/parseDiffDecorations.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/parseDiffFromFile.d.ts +14 -0
- package/node_modules/@pierre/diffs/dist/utils/parseDiffFromFile.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/parseDiffFromFile.js +47 -0
- package/node_modules/@pierre/diffs/dist/utils/parseDiffFromFile.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/parseLineType.d.ts +11 -0
- package/node_modules/@pierre/diffs/dist/utils/parseLineType.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/parseLineType.js +17 -0
- package/node_modules/@pierre/diffs/dist/utils/parseLineType.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/parseMergeConflictDiffFromFile.d.ts +30 -0
- package/node_modules/@pierre/diffs/dist/utils/parseMergeConflictDiffFromFile.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/parseMergeConflictDiffFromFile.js +503 -0
- package/node_modules/@pierre/diffs/dist/utils/parseMergeConflictDiffFromFile.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/parsePatchFiles.d.ts +24 -0
- package/node_modules/@pierre/diffs/dist/utils/parsePatchFiles.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/parsePatchFiles.js +503 -0
- package/node_modules/@pierre/diffs/dist/utils/parsePatchFiles.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/platform.d.ts +14 -0
- package/node_modules/@pierre/diffs/dist/utils/platform.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/platform.js +32 -0
- package/node_modules/@pierre/diffs/dist/utils/platform.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/prefersReducedMotion.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/prefersReducedMotion.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/prefersReducedMotion.js +9 -0
- package/node_modules/@pierre/diffs/dist/utils/prefersReducedMotion.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/prerenderHTMLIfNecessary.d.ts +5 -0
- package/node_modules/@pierre/diffs/dist/utils/prerenderHTMLIfNecessary.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/prerenderHTMLIfNecessary.js +10 -0
- package/node_modules/@pierre/diffs/dist/utils/prerenderHTMLIfNecessary.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/processLine.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/utils/processLine.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/processLine.js +25 -0
- package/node_modules/@pierre/diffs/dist/utils/processLine.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/realignChangeContent.d.ts +33 -0
- package/node_modules/@pierre/diffs/dist/utils/realignChangeContent.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/realignChangeContent.js +148 -0
- package/node_modules/@pierre/diffs/dist/utils/realignChangeContent.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/renderDiffWithHighlighter.d.ts +13 -0
- package/node_modules/@pierre/diffs/dist/utils/renderDiffWithHighlighter.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/renderDiffWithHighlighter.js +264 -0
- package/node_modules/@pierre/diffs/dist/utils/renderDiffWithHighlighter.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/renderFileWithHighlighter.d.ts +16 -0
- package/node_modules/@pierre/diffs/dist/utils/renderFileWithHighlighter.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/renderFileWithHighlighter.js +68 -0
- package/node_modules/@pierre/diffs/dist/utils/renderFileWithHighlighter.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/resolveConflict.d.ts +7 -0
- package/node_modules/@pierre/diffs/dist/utils/resolveConflict.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/resolveConflict.js +22 -0
- package/node_modules/@pierre/diffs/dist/utils/resolveConflict.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/resolveRegion.d.ts +14 -0
- package/node_modules/@pierre/diffs/dist/utils/resolveRegion.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/resolveRegion.js +238 -0
- package/node_modules/@pierre/diffs/dist/utils/resolveRegion.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/roundToDevicePixel.d.ts +14 -0
- package/node_modules/@pierre/diffs/dist/utils/roundToDevicePixel.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/roundToDevicePixel.js +18 -0
- package/node_modules/@pierre/diffs/dist/utils/roundToDevicePixel.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/scrollbarGutter.d.ts +6 -0
- package/node_modules/@pierre/diffs/dist/utils/scrollbarGutter.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/scrollbarGutter.js +27 -0
- package/node_modules/@pierre/diffs/dist/utils/scrollbarGutter.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/setLanguageOverride.d.ts +8 -0
- package/node_modules/@pierre/diffs/dist/utils/setLanguageOverride.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/setLanguageOverride.js +11 -0
- package/node_modules/@pierre/diffs/dist/utils/setLanguageOverride.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/setWrapperNodeProps.d.ts +16 -0
- package/node_modules/@pierre/diffs/dist/utils/setWrapperNodeProps.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/setWrapperNodeProps.js +36 -0
- package/node_modules/@pierre/diffs/dist/utils/setWrapperNodeProps.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/shouldUseTokenTransformer.d.ts +13 -0
- package/node_modules/@pierre/diffs/dist/utils/shouldUseTokenTransformer.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/shouldUseTokenTransformer.js +8 -0
- package/node_modules/@pierre/diffs/dist/utils/shouldUseTokenTransformer.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/splitFileContents.d.ts +12 -0
- package/node_modules/@pierre/diffs/dist/utils/splitFileContents.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/splitFileContents.js +16 -0
- package/node_modules/@pierre/diffs/dist/utils/splitFileContents.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/trimPatchContext.d.ts +11 -0
- package/node_modules/@pierre/diffs/dist/utils/trimPatchContext.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/trimPatchContext.js +97 -0
- package/node_modules/@pierre/diffs/dist/utils/trimPatchContext.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/updateDiffHunks.d.ts +24 -0
- package/node_modules/@pierre/diffs/dist/utils/updateDiffHunks.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/updateDiffHunks.js +236 -0
- package/node_modules/@pierre/diffs/dist/utils/updateDiffHunks.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/virtualDiffLayout.d.ts +127 -0
- package/node_modules/@pierre/diffs/dist/utils/virtualDiffLayout.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/virtualDiffLayout.js +235 -0
- package/node_modules/@pierre/diffs/dist/utils/virtualDiffLayout.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/wrapTokenFragments.d.ts +10 -0
- package/node_modules/@pierre/diffs/dist/utils/wrapTokenFragments.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/utils/wrapTokenFragments.js +81 -0
- package/node_modules/@pierre/diffs/dist/utils/wrapTokenFragments.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/worker/WorkerPoolManager.d.ts +128 -0
- package/node_modules/@pierre/diffs/dist/worker/WorkerPoolManager.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/worker/WorkerPoolManager.js +885 -0
- package/node_modules/@pierre/diffs/dist/worker/WorkerPoolManager.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/worker/getOrCreateWorkerPoolSingleton.d.ts +16 -0
- package/node_modules/@pierre/diffs/dist/worker/getOrCreateWorkerPoolSingleton.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/worker/getOrCreateWorkerPoolSingleton.js +16 -0
- package/node_modules/@pierre/diffs/dist/worker/getOrCreateWorkerPoolSingleton.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/worker/index.d.ts +4 -0
- package/node_modules/@pierre/diffs/dist/worker/index.js +3 -0
- package/node_modules/@pierre/diffs/dist/worker/types.d.ts +173 -0
- package/node_modules/@pierre/diffs/dist/worker/types.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/dist/worker/types.js +0 -0
- package/node_modules/@pierre/diffs/dist/worker/wasm-B9ZqxnKj.js +8 -0
- package/node_modules/@pierre/diffs/dist/worker/wasm-B9ZqxnKj.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/worker/worker-portable.d.ts +1 -0
- package/node_modules/@pierre/diffs/dist/worker/worker-portable.js +13633 -0
- package/node_modules/@pierre/diffs/dist/worker/worker-portable.js.map +1 -0
- package/node_modules/@pierre/diffs/dist/worker/worker.d.ts +1 -0
- package/node_modules/@pierre/diffs/dist/worker/worker.js +1804 -0
- package/node_modules/@pierre/diffs/dist/worker/worker.js.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/CONTRIBUTING.md +28 -0
- package/node_modules/@pierre/diffs/node_modules/diff/LICENSE +29 -0
- package/node_modules/@pierre/diffs/node_modules/diff/README.md +468 -0
- package/node_modules/@pierre/diffs/node_modules/diff/dist/diff.js +2313 -0
- package/node_modules/@pierre/diffs/node_modules/diff/dist/diff.min.js +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/eslint.config.mjs +182 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/convert/dmp.d.ts +8 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/convert/dmp.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/convert/dmp.js +24 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/convert/xml.d.ts +6 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/convert/xml.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/convert/xml.js +34 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/array.d.ts +19 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/array.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/array.js +23 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/base.d.ts +20 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/base.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/base.js +256 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/character.d.ts +19 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/character.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/character.js +14 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/css.d.ts +18 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/css.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/css.js +17 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/json.d.ts +24 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/json.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/json.js +86 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/line.d.ts +24 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/line.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/line.js +74 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/sentence.d.ts +21 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/sentence.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/sentence.js +50 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/word.d.ts +35 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/word.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/diff/word.js +289 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/index.d.ts +20 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/index.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/index.js +67 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/package.json +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/apply.d.ts +62 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/apply.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/apply.js +264 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/create.d.ts +131 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/create.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/create.js +364 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/line-endings.d.ts +17 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/line-endings.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/line-endings.js +50 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/parse.d.ts +16 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/parse.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/parse.js +515 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/reverse.d.ts +22 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/reverse.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/patch/reverse.js +63 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/types.d.ts +260 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/types.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/types.js +2 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/util/array.d.ts +3 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/util/array.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/util/array.js +21 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/util/distance-iterator.d.ts +2 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/util/distance-iterator.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/util/distance-iterator.js +40 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/util/params.d.ts +4 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/util/params.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/util/params.js +17 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/util/string.d.ts +30 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/util/string.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libcjs/util/string.js +199 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/convert/dmp.d.ts +8 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/convert/dmp.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/convert/dmp.js +21 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/convert/xml.d.ts +6 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/convert/xml.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/convert/xml.js +31 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/array.d.ts +19 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/array.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/array.js +16 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/base.d.ts +20 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/base.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/base.js +253 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/character.d.ts +19 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/character.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/character.js +7 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/css.d.ts +18 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/css.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/css.js +10 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/json.d.ts +24 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/json.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/json.js +78 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/line.d.ts +24 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/line.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/line.js +65 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/sentence.d.ts +21 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/sentence.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/sentence.js +43 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/word.d.ts +35 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/word.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/diff/word.js +281 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/index.d.ts +20 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/index.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/index.js +30 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/package.json +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/apply.d.ts +62 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/apply.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/apply.js +257 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/create.d.ts +131 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/create.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/create.js +357 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/line-endings.d.ts +17 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/line-endings.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/line-endings.js +44 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/parse.d.ts +16 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/parse.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/parse.js +512 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/reverse.d.ts +22 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/reverse.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/patch/reverse.js +60 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/types.d.ts +260 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/types.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/types.js +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/util/array.d.ts +3 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/util/array.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/util/array.js +17 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/util/distance-iterator.d.ts +2 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/util/distance-iterator.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/util/distance-iterator.js +37 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/util/params.d.ts +4 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/util/params.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/util/params.js +14 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/util/string.d.ts +30 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/util/string.d.ts.map +1 -0
- package/node_modules/@pierre/diffs/node_modules/diff/libesm/util/string.js +184 -0
- package/node_modules/@pierre/diffs/node_modules/diff/package.json +130 -0
- package/node_modules/@pierre/diffs/node_modules/diff/release-notes.md +474 -0
- package/node_modules/@pierre/diffs/package.json +100 -0
- package/node_modules/@pierre/theme/LICENSE +189 -0
- package/node_modules/@pierre/theme/NOTICE.md +32 -0
- package/node_modules/@pierre/theme/README.md +51 -0
- package/node_modules/@pierre/theme/dist/index.d.mts +1 -0
- package/node_modules/@pierre/theme/dist/index.mjs +1 -0
- package/node_modules/@pierre/theme/dist/pierre-dark-protanopia-deuteranopia.d.mts +16 -0
- package/node_modules/@pierre/theme/dist/pierre-dark-protanopia-deuteranopia.mjs +1 -0
- package/node_modules/@pierre/theme/dist/pierre-dark-soft.d.mts +16 -0
- package/node_modules/@pierre/theme/dist/pierre-dark-soft.mjs +1 -0
- package/node_modules/@pierre/theme/dist/pierre-dark-tritanopia.d.mts +16 -0
- package/node_modules/@pierre/theme/dist/pierre-dark-tritanopia.mjs +1 -0
- package/node_modules/@pierre/theme/dist/pierre-dark-vibrant.d.mts +16 -0
- package/node_modules/@pierre/theme/dist/pierre-dark-vibrant.mjs +1 -0
- package/node_modules/@pierre/theme/dist/pierre-dark.d.mts +16 -0
- package/node_modules/@pierre/theme/dist/pierre-dark.mjs +1 -0
- package/node_modules/@pierre/theme/dist/pierre-light-protanopia-deuteranopia.d.mts +16 -0
- package/node_modules/@pierre/theme/dist/pierre-light-protanopia-deuteranopia.mjs +1 -0
- package/node_modules/@pierre/theme/dist/pierre-light-soft.d.mts +16 -0
- package/node_modules/@pierre/theme/dist/pierre-light-soft.mjs +1 -0
- package/node_modules/@pierre/theme/dist/pierre-light-tritanopia.d.mts +16 -0
- package/node_modules/@pierre/theme/dist/pierre-light-tritanopia.mjs +1 -0
- package/node_modules/@pierre/theme/dist/pierre-light-vibrant.d.mts +16 -0
- package/node_modules/@pierre/theme/dist/pierre-light-vibrant.mjs +1 -0
- package/node_modules/@pierre/theme/dist/pierre-light.d.mts +16 -0
- package/node_modules/@pierre/theme/dist/pierre-light.mjs +1 -0
- package/node_modules/@pierre/theme/icon.png +0 -0
- package/node_modules/@pierre/theme/package.json +158 -0
- package/node_modules/@pierre/theme/themes/pierre-dark-protanopia-deuteranopia.json +1961 -0
- package/node_modules/@pierre/theme/themes/pierre-dark-soft.json +1961 -0
- package/node_modules/@pierre/theme/themes/pierre-dark-tritanopia.json +1961 -0
- package/node_modules/@pierre/theme/themes/pierre-dark-vibrant.json +1961 -0
- package/node_modules/@pierre/theme/themes/pierre-dark.json +1961 -0
- package/node_modules/@pierre/theme/themes/pierre-light-protanopia-deuteranopia.json +1961 -0
- package/node_modules/@pierre/theme/themes/pierre-light-soft.json +1961 -0
- package/node_modules/@pierre/theme/themes/pierre-light-tritanopia.json +1961 -0
- package/node_modules/@pierre/theme/themes/pierre-light-vibrant.json +1961 -0
- package/node_modules/@pierre/theme/themes/pierre-light.json +1961 -0
- package/node_modules/@pierre/theming/LICENSE.md +189 -0
- package/node_modules/@pierre/theming/README.md +590 -0
- package/node_modules/@pierre/theming/dist/collections/pierre.d.ts +7 -0
- package/node_modules/@pierre/theming/dist/collections/pierre.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/collections/pierre.js +62 -0
- package/node_modules/@pierre/theming/dist/collections/pierre.js.map +1 -0
- package/node_modules/@pierre/theming/dist/collections/shiki.d.ts +7 -0
- package/node_modules/@pierre/theming/dist/collections/shiki.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/collections/shiki.js +158 -0
- package/node_modules/@pierre/theming/dist/collections/shiki.js.map +1 -0
- package/node_modules/@pierre/theming/dist/color.d.ts +19 -0
- package/node_modules/@pierre/theming/dist/color.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/color.js +26 -0
- package/node_modules/@pierre/theming/dist/color.js.map +1 -0
- package/node_modules/@pierre/theming/dist/index.d.ts +6 -0
- package/node_modules/@pierre/theming/dist/index.js +5 -0
- package/node_modules/@pierre/theming/dist/modules/color.d.ts +19 -0
- package/node_modules/@pierre/theming/dist/modules/color.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/color.js +145 -0
- package/node_modules/@pierre/theming/dist/modules/color.js.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/createTheme.d.ts +22 -0
- package/node_modules/@pierre/theming/dist/modules/createTheme.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/createTheme.js +21 -0
- package/node_modules/@pierre/theming/dist/modules/createTheme.js.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeCatalog.d.ts +16 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeCatalog.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeCatalog.js +16 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeCatalog.js.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeCollection.d.ts +35 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeCollection.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeCollection.js +94 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeCollection.js.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeController.d.ts +60 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeController.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeController.js +268 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeController.js.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeResolver.d.ts +35 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeResolver.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeResolver.js +115 -0
- package/node_modules/@pierre/theming/dist/modules/createThemeResolver.js.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/normalizeThemeColors.d.ts +7 -0
- package/node_modules/@pierre/theming/dist/modules/normalizeThemeColors.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/normalizeThemeColors.js +88 -0
- package/node_modules/@pierre/theming/dist/modules/normalizeThemeColors.js.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/types.d.ts +13 -0
- package/node_modules/@pierre/theming/dist/modules/types.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/types.js +0 -0
- package/node_modules/@pierre/theming/dist/modules/unwrapDefault.d.ts +8 -0
- package/node_modules/@pierre/theming/dist/modules/unwrapDefault.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/modules/unwrapDefault.js +8 -0
- package/node_modules/@pierre/theming/dist/modules/unwrapDefault.js.map +1 -0
- package/node_modules/@pierre/theming/dist/react.d.ts +7 -0
- package/node_modules/@pierre/theming/dist/react.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/react.js +16 -0
- package/node_modules/@pierre/theming/dist/react.js.map +1 -0
- package/node_modules/@pierre/theming/dist/themes.d.ts +10 -0
- package/node_modules/@pierre/theming/dist/themes.d.ts.map +1 -0
- package/node_modules/@pierre/theming/dist/themes.js +15 -0
- package/node_modules/@pierre/theming/dist/themes.js.map +1 -0
- package/node_modules/@pierre/theming/package.json +86 -0
- package/node_modules/@shikijs/core/LICENSE +22 -0
- package/node_modules/@shikijs/core/README.md +5 -0
- package/node_modules/@shikijs/core/dist/index.d.mts +227 -0
- package/node_modules/@shikijs/core/dist/index.mjs +1425 -0
- package/node_modules/@shikijs/core/dist/textmate.d.mts +1 -0
- package/node_modules/@shikijs/core/dist/textmate.mjs +2 -0
- package/node_modules/@shikijs/core/dist/types.d.mts +1 -0
- package/node_modules/@shikijs/core/dist/types.mjs +2 -0
- package/node_modules/@shikijs/core/package.json +60 -0
- package/node_modules/@shikijs/engine-javascript/LICENSE +22 -0
- package/node_modules/@shikijs/engine-javascript/README.md +9 -0
- package/node_modules/@shikijs/engine-javascript/dist/engine-compile-Bdn9ihA2.d.mts +63 -0
- package/node_modules/@shikijs/engine-javascript/dist/engine-compile.d.mts +2 -0
- package/node_modules/@shikijs/engine-javascript/dist/engine-compile.mjs +47 -0
- package/node_modules/@shikijs/engine-javascript/dist/engine-raw.d.mts +12 -0
- package/node_modules/@shikijs/engine-javascript/dist/engine-raw.mjs +27 -0
- package/node_modules/@shikijs/engine-javascript/dist/index.d.mts +3 -0
- package/node_modules/@shikijs/engine-javascript/dist/index.mjs +4 -0
- package/node_modules/@shikijs/engine-javascript/dist/scanner-DX8LRFGE.mjs +77 -0
- package/node_modules/@shikijs/engine-javascript/package.json +42 -0
- package/node_modules/@shikijs/engine-oniguruma/LICENSE +22 -0
- package/node_modules/@shikijs/engine-oniguruma/README.md +9 -0
- package/node_modules/@shikijs/engine-oniguruma/dist/chunk-index.d.d.mts +70 -0
- package/node_modules/@shikijs/engine-oniguruma/dist/index.d.mts +16 -0
- package/node_modules/@shikijs/engine-oniguruma/dist/index.mjs +449 -0
- package/node_modules/@shikijs/engine-oniguruma/dist/onig.d.mts +1 -0
- package/node_modules/@shikijs/engine-oniguruma/dist/wasm-inlined.d.mts +6 -0
- package/node_modules/@shikijs/engine-oniguruma/dist/wasm-inlined.mjs +8 -0
- package/node_modules/@shikijs/engine-oniguruma/package.json +45 -0
- package/node_modules/@shikijs/langs/LICENSE +22 -0
- package/node_modules/@shikijs/langs/README.md +7 -0
- package/node_modules/@shikijs/langs/dist/1c-query.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/1c-query.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/1c.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/1c.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/abap.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/abap.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/actionscript-3.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/actionscript-3.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/actionscript.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/actionscript.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/ada.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ada.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/adoc.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/adoc.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/ahk.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ahk.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/ahk1.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ahk1.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/ahk2.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ahk2.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/angular-expression.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/angular-expression.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/angular-html.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/angular-html.mjs +16 -0
- package/node_modules/@shikijs/langs/dist/angular-inline-style.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/angular-inline-style.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/angular-inline-template.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/angular-inline-template.mjs +10 -0
- package/node_modules/@shikijs/langs/dist/angular-let-declaration.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/angular-let-declaration.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/angular-template-blocks.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/angular-template-blocks.mjs +10 -0
- package/node_modules/@shikijs/langs/dist/angular-template.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/angular-template.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/angular-ts.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/angular-ts.mjs +18 -0
- package/node_modules/@shikijs/langs/dist/apache.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/apache.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/apex.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/apex.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/apl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/apl.mjs +16 -0
- package/node_modules/@shikijs/langs/dist/applescript.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/applescript.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/ara.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ara.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/as3.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/as3.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/asciidoc.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/asciidoc.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/asm.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/asm.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/astro.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/astro.mjs +18 -0
- package/node_modules/@shikijs/langs/dist/awk.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/awk.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/ballerina.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ballerina.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/bash.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/bash.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/bat.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/bat.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/batch.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/batch.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/be.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/be.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/beancount.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/beancount.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/berry.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/berry.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/bibtex.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/bibtex.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/bicep.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/bicep.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/bird.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/bird.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/bird2.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/bird2.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/blade.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/blade.mjs +20 -0
- package/node_modules/@shikijs/langs/dist/bsl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/bsl.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/c.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/c.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/c3.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/c3.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/cadence.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cadence.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/cairo.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cairo.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/cdc.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cdc.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/chapel.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/chapel.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/chpl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/chpl.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/cjs.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cjs.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/clarity.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/clarity.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/clj.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/clj.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/clojure.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/clojure.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/closure-templates.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/closure-templates.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/cmake.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cmake.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/cmd.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cmd.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/cobol.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cobol.mjs +10 -0
- package/node_modules/@shikijs/langs/dist/codeowners.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/codeowners.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/codeql.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/codeql.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/coffee.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/coffee.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/coffeescript.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/coffeescript.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/common-lisp.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/common-lisp.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/console.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/console.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/coq.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/coq.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/cpp-macro.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cpp-macro.mjs +10 -0
- package/node_modules/@shikijs/langs/dist/cpp.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cpp.mjs +12 -0
- package/node_modules/@shikijs/langs/dist/cql.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cql.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/crystal.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/crystal.mjs +18 -0
- package/node_modules/@shikijs/langs/dist/cs.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cs.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/csharp.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/csharp.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/css.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/css.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/csv.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/csv.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/cts.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cts.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/cue.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cue.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/cypher.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/cypher.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/d.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/d.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/dart.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/dart.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/dax.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/dax.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/desktop.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/desktop.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/diff.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/diff.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/docker.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/docker.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/dockerfile.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/dockerfile.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/dotenv.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/dotenv.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/dream-maker.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/dream-maker.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/edge.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/edge.mjs +12 -0
- package/node_modules/@shikijs/langs/dist/elisp.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/elisp.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/elixir.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/elixir.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/elm.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/elm.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/emacs-lisp.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/emacs-lisp.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/erb.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/erb.mjs +10 -0
- package/node_modules/@shikijs/langs/dist/erl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/erl.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/erlang.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/erlang.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/es-tag-css.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/es-tag-css.mjs +12 -0
- package/node_modules/@shikijs/langs/dist/es-tag-glsl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/es-tag-glsl.mjs +12 -0
- package/node_modules/@shikijs/langs/dist/es-tag-html.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/es-tag-html.mjs +12 -0
- package/node_modules/@shikijs/langs/dist/es-tag-sql.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/es-tag-sql.mjs +10 -0
- package/node_modules/@shikijs/langs/dist/es-tag-xml.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/es-tag-xml.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/f.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/f.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/f03.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/f03.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/f08.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/f08.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/f18.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/f18.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/f77.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/f77.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/f90.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/f90.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/f95.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/f95.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/fennel.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/fennel.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/fish.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/fish.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/fluent.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/fluent.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/for.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/for.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/fortran-fixed-form.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/fortran-fixed-form.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/fortran-free-form.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/fortran-free-form.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/fs.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/fs.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/fsharp.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/fsharp.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/fsl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/fsl.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/ftl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ftl.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/gd.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/gd.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/gdresource.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/gdresource.mjs +10 -0
- package/node_modules/@shikijs/langs/dist/gdscript.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/gdscript.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/gdshader.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/gdshader.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/genie.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/genie.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/gherkin.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/gherkin.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/git-commit.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/git-commit.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/git-rebase.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/git-rebase.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/gjs.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/gjs.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/gleam.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/gleam.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/glimmer-js.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/glimmer-js.mjs +14 -0
- package/node_modules/@shikijs/langs/dist/glimmer-ts.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/glimmer-ts.mjs +14 -0
- package/node_modules/@shikijs/langs/dist/glsl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/glsl.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/gn.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/gn.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/gnuplot.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/gnuplot.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/go.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/go.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/gql.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/gql.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/graphql.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/graphql.mjs +14 -0
- package/node_modules/@shikijs/langs/dist/groovy.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/groovy.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/gts.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/gts.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/hack.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/hack.mjs +10 -0
- package/node_modules/@shikijs/langs/dist/haml.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/haml.mjs +10 -0
- package/node_modules/@shikijs/langs/dist/handlebars.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/handlebars.mjs +14 -0
- package/node_modules/@shikijs/langs/dist/haskell.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/haskell.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/haxe.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/haxe.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/hbs.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/hbs.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/hcl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/hcl.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/hjson.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/hjson.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/hlsl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/hlsl.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/hs.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/hs.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/html-derivative.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/html-derivative.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/html.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/html.mjs +10 -0
- package/node_modules/@shikijs/langs/dist/http.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/http.mjs +14 -0
- package/node_modules/@shikijs/langs/dist/hurl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/hurl.mjs +12 -0
- package/node_modules/@shikijs/langs/dist/hxml.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/hxml.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/hy.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/hy.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/imba.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/imba.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/index.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/index.mjs +367 -0
- package/node_modules/@shikijs/langs/dist/ini.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ini.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/jade.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/jade.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/java.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/java.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/javascript.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/javascript.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/jinja-html.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/jinja-html.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/jinja.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/jinja.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/jison.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/jison.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/jl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/jl.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/js.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/js.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/json.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/json.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/json5.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/json5.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/jsonc.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/jsonc.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/jsonl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/jsonl.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/jsonnet.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/jsonnet.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/jssm.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/jssm.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/jsx.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/jsx.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/julia.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/julia.mjs +16 -0
- package/node_modules/@shikijs/langs/dist/just.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/just.mjs +18 -0
- package/node_modules/@shikijs/langs/dist/justfile.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/justfile.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/kdl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/kdl.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/kotlin.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/kotlin.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/kql.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/kql.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/kt.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/kt.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/kts.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/kts.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/kusto.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/kusto.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/latex.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/latex.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/lean.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/lean.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/lean4.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/lean4.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/less.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/less.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/liquid.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/liquid.mjs +14 -0
- package/node_modules/@shikijs/langs/dist/lisp.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/lisp.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/lit.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/lit.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/llvm.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/llvm.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/log.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/log.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/logo.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/logo.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/lua.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/lua.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/luau.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/luau.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/make.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/make.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/makefile.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/makefile.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/markdown-nix.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/markdown-nix.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/markdown-vue.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/markdown-vue.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/markdown.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/markdown.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/marko.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/marko.mjs +14 -0
- package/node_modules/@shikijs/langs/dist/matlab.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/matlab.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/mbt.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/mbt.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/mbti.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/mbti.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/md.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/md.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/mdc.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/mdc.mjs +12 -0
- package/node_modules/@shikijs/langs/dist/mdx.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/mdx.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/mediawiki.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/mediawiki.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/mermaid.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/mermaid.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/mips.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/mips.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/mipsasm.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/mipsasm.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/mjs.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/mjs.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/mmd.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/mmd.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/mojo.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/mojo.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/moonbit.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/moonbit.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/move.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/move.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/mts.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/mts.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/nar.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/nar.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/narrat.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/narrat.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/nextflow-groovy.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/nextflow-groovy.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/nextflow.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/nextflow.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/nf.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/nf.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/nginx.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/nginx.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/nim.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/nim.mjs +20 -0
- package/node_modules/@shikijs/langs/dist/nix.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/nix.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/nsis.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/nsis.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/nu.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/nu.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/nushell.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/nushell.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/objc.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/objc.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/objective-c.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/objective-c.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/objective-cpp.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/objective-cpp.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/ocaml.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ocaml.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/odin.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/odin.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/openscad.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/openscad.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/org.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/org.mjs +100 -0
- package/node_modules/@shikijs/langs/dist/pascal.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/pascal.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/perl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/perl.mjs +16 -0
- package/node_modules/@shikijs/langs/dist/perl6.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/perl6.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/php.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/php.mjs +18 -0
- package/node_modules/@shikijs/langs/dist/pkl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/pkl.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/plsql.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/plsql.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/po.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/po.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/polar.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/polar.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/postcss.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/postcss.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/pot.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/pot.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/potx.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/potx.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/powerquery.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/powerquery.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/powershell.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/powershell.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/prisma.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/prisma.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/prolog.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/prolog.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/properties.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/properties.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/proto.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/proto.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/protobuf.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/protobuf.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/ps.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ps.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/ps1.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ps1.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/pug.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/pug.mjs +12 -0
- package/node_modules/@shikijs/langs/dist/puppet.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/puppet.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/purescript.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/purescript.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/pwsh.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/pwsh.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/py.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/py.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/python.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/python.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/ql.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ql.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/qml.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/qml.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/qmldir.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/qmldir.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/qss.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/qss.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/r.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/r.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/racket.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/racket.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/raku.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/raku.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/razor.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/razor.mjs +10 -0
- package/node_modules/@shikijs/langs/dist/rb.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/rb.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/rbs.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/rbs.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/reg.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/reg.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/regex.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/regex.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/regexp.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/regexp.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/rel.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/rel.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/riscv.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/riscv.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/ron.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ron.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/rosmsg.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/rosmsg.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/rs.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/rs.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/rst.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/rst.mjs +22 -0
- package/node_modules/@shikijs/langs/dist/ruby-signature.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ruby-signature.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/ruby.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ruby.mjs +30 -0
- package/node_modules/@shikijs/langs/dist/rust.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/rust.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/sas.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/sas.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/sass.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/sass.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/scad.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/scad.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/scala.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/scala.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/scheme.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/scheme.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/scss.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/scss.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/sdbl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/sdbl.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/sh.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/sh.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/shader.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/shader.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/shaderlab.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/shaderlab.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/shell.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/shell.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/shellscript.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/shellscript.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/shellsession.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/shellsession.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/smalltalk.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/smalltalk.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/smithy.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/smithy.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/solidity.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/solidity.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/soy.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/soy.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/sparql.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/sparql.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/spl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/spl.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/splunk.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/splunk.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/sql.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/sql.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/ssh-config.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ssh-config.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/stata.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/stata.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/styl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/styl.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/stylus.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/stylus.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/surql.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/surql.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/surrealql.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/surrealql.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/svelte.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/svelte.mjs +14 -0
- package/node_modules/@shikijs/langs/dist/swift.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/swift.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/system-verilog.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/system-verilog.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/systemd.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/systemd.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/talon.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/talon.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/talonscript.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/talonscript.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/tasl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/tasl.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/tcl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/tcl.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/templ.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/templ.mjs +12 -0
- package/node_modules/@shikijs/langs/dist/terraform.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/terraform.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/tex.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/tex.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/tf.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/tf.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/tfvars.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/tfvars.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/toml.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/toml.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/tres.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/tres.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/ts-tags.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ts-tags.mjs +18 -0
- package/node_modules/@shikijs/langs/dist/ts.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/ts.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/tscn.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/tscn.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/tsp.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/tsp.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/tsv.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/tsv.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/tsx.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/tsx.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/turtle.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/turtle.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/twig.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/twig.mjs +18 -0
- package/node_modules/@shikijs/langs/dist/typ.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/typ.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/typescript.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/typescript.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/typespec.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/typespec.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/typst.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/typst.mjs +120 -0
- package/node_modules/@shikijs/langs/dist/v.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/v.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/vala.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vala.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/vb.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vb.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/verilog.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/verilog.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/vhdl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vhdl.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/vim.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vim.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/viml.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/viml.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/vimscript.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vimscript.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/vue-directives.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vue-directives.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/vue-html.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vue-html.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/vue-interpolations.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vue-interpolations.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/vue-sfc-style-variable-injection.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vue-sfc-style-variable-injection.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/vue-vine.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vue-vine.mjs +18 -0
- package/node_modules/@shikijs/langs/dist/vue.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vue.mjs +26 -0
- package/node_modules/@shikijs/langs/dist/vy.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vy.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/vyper.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/vyper.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/wasm.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/wasm.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/wenyan.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/wenyan.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/wgsl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/wgsl.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/wiki.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/wiki.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/wikitext.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/wikitext.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/wit.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/wit.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/wl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/wl.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/wolfram.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/wolfram.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/xml.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/xml.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/xsl.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/xsl.mjs +8 -0
- package/node_modules/@shikijs/langs/dist/yaml.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/yaml.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/yml.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/yml.mjs +2 -0
- package/node_modules/@shikijs/langs/dist/zenscript.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/zenscript.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/zig.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/zig.mjs +5 -0
- package/node_modules/@shikijs/langs/dist/zsh.d.mts +3 -0
- package/node_modules/@shikijs/langs/dist/zsh.mjs +2 -0
- package/node_modules/@shikijs/langs/package.json +401 -0
- package/node_modules/@shikijs/primitive/LICENSE +22 -0
- package/node_modules/@shikijs/primitive/dist/index.d.mts +189 -0
- package/node_modules/@shikijs/primitive/dist/index.mjs +834 -0
- package/node_modules/@shikijs/primitive/dist/textmate.d.mts +1 -0
- package/node_modules/@shikijs/primitive/dist/textmate.mjs +2 -0
- package/node_modules/@shikijs/primitive/dist/types.d.mts +1 -0
- package/node_modules/@shikijs/primitive/dist/types.mjs +2 -0
- package/node_modules/@shikijs/primitive/package.json +56 -0
- package/node_modules/@shikijs/themes/LICENSE +22 -0
- package/node_modules/@shikijs/themes/README.md +7 -0
- package/node_modules/@shikijs/themes/dist/andromeeda.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/andromeeda.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/aurora-x.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/aurora-x.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/ayu-dark.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/ayu-dark.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/ayu-light.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/ayu-light.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/ayu-mirage.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/ayu-mirage.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/catppuccin-frappe.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/catppuccin-frappe.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/catppuccin-latte.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/catppuccin-latte.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/catppuccin-macchiato.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/catppuccin-macchiato.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/catppuccin-mocha.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/catppuccin-mocha.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/dark-plus.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/dark-plus.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/dracula-soft.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/dracula-soft.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/dracula.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/dracula.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/everforest-dark.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/everforest-dark.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/everforest-light.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/everforest-light.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/github-dark-default.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/github-dark-default.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/github-dark-dimmed.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/github-dark-dimmed.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/github-dark-high-contrast.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/github-dark-high-contrast.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/github-dark.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/github-dark.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/github-light-default.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/github-light-default.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/github-light-high-contrast.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/github-light-high-contrast.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/github-light.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/github-light.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/gruvbox-dark-hard.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/gruvbox-dark-hard.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/gruvbox-dark-medium.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/gruvbox-dark-medium.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/gruvbox-dark-soft.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/gruvbox-dark-soft.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/gruvbox-light-hard.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/gruvbox-light-hard.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/gruvbox-light-medium.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/gruvbox-light-medium.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/gruvbox-light-soft.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/gruvbox-light-soft.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/horizon-bright.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/horizon-bright.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/horizon.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/horizon.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/houston.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/houston.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/index.d.mts +1 -0
- package/node_modules/@shikijs/themes/dist/index.mjs +67 -0
- package/node_modules/@shikijs/themes/dist/kanagawa-dragon.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/kanagawa-dragon.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/kanagawa-lotus.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/kanagawa-lotus.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/kanagawa-wave.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/kanagawa-wave.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/laserwave.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/laserwave.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/light-plus.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/light-plus.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/material-theme-darker.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/material-theme-darker.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/material-theme-lighter.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/material-theme-lighter.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/material-theme-ocean.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/material-theme-ocean.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/material-theme-palenight.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/material-theme-palenight.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/material-theme.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/material-theme.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/min-dark.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/min-dark.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/min-light.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/min-light.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/monokai.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/monokai.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/night-owl-light.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/night-owl-light.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/night-owl.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/night-owl.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/nord.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/nord.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/one-dark-pro.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/one-dark-pro.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/one-light.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/one-light.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/plastic.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/plastic.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/poimandres.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/poimandres.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/red.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/red.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/rose-pine-dawn.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/rose-pine-dawn.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/rose-pine-moon.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/rose-pine-moon.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/rose-pine.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/rose-pine.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/slack-dark.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/slack-dark.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/slack-ochin.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/slack-ochin.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/snazzy-light.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/snazzy-light.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/solarized-dark.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/solarized-dark.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/solarized-light.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/solarized-light.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/synthwave-84.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/synthwave-84.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/tokyo-night.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/tokyo-night.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/vesper.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/vesper.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/vitesse-black.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/vitesse-black.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/vitesse-dark.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/vitesse-dark.mjs +2 -0
- package/node_modules/@shikijs/themes/dist/vitesse-light.d.mts +3 -0
- package/node_modules/@shikijs/themes/dist/vitesse-light.mjs +2 -0
- package/node_modules/@shikijs/themes/package.json +106 -0
- package/node_modules/@shikijs/transformers/LICENSE +22 -0
- package/node_modules/@shikijs/transformers/README.md +9 -0
- package/node_modules/@shikijs/transformers/dist/index.d.mts +268 -0
- package/node_modules/@shikijs/transformers/dist/index.mjs +744 -0
- package/node_modules/@shikijs/transformers/package.json +40 -0
- package/node_modules/@shikijs/types/LICENSE +22 -0
- package/node_modules/@shikijs/types/README.md +7 -0
- package/node_modules/@shikijs/types/dist/index.d.mts +894 -0
- package/node_modules/@shikijs/types/dist/index.mjs +9 -0
- package/node_modules/@shikijs/types/package.json +39 -0
- package/node_modules/@shikijs/vscode-textmate/LICENSE.md +21 -0
- package/node_modules/@shikijs/vscode-textmate/README.md +9 -0
- package/node_modules/@shikijs/vscode-textmate/dist/index.d.ts +711 -0
- package/node_modules/@shikijs/vscode-textmate/dist/index.js +3216 -0
- package/node_modules/@shikijs/vscode-textmate/package.json +46 -0
- package/node_modules/@types/hast/LICENSE +21 -0
- package/node_modules/@types/hast/README.md +15 -0
- package/node_modules/@types/hast/index.d.ts +924 -0
- package/node_modules/@types/hast/package.json +48 -0
- package/node_modules/@types/mdast/LICENSE +21 -0
- package/node_modules/@types/mdast/README.md +15 -0
- package/node_modules/@types/mdast/index.d.ts +1123 -0
- package/node_modules/@types/mdast/package.json +47 -0
- package/node_modules/@types/unist/LICENSE +21 -0
- package/node_modules/@types/unist/README.md +15 -0
- package/node_modules/@types/unist/index.d.ts +119 -0
- package/node_modules/@types/unist/package.json +60 -0
- package/node_modules/@ungap/structured-clone/.github/workflows/node.js.yml +31 -0
- package/node_modules/@ungap/structured-clone/LICENSE +15 -0
- package/node_modules/@ungap/structured-clone/README.md +95 -0
- package/node_modules/@ungap/structured-clone/cjs/deserialize.js +112 -0
- package/node_modules/@ungap/structured-clone/cjs/index.js +27 -0
- package/node_modules/@ungap/structured-clone/cjs/json.js +24 -0
- package/node_modules/@ungap/structured-clone/cjs/package.json +1 -0
- package/node_modules/@ungap/structured-clone/cjs/serialize.js +174 -0
- package/node_modules/@ungap/structured-clone/cjs/types.js +22 -0
- package/node_modules/@ungap/structured-clone/esm/deserialize.js +113 -0
- package/node_modules/@ungap/structured-clone/esm/index.js +25 -0
- package/node_modules/@ungap/structured-clone/esm/json.js +21 -0
- package/node_modules/@ungap/structured-clone/esm/serialize.js +175 -0
- package/node_modules/@ungap/structured-clone/esm/types.js +11 -0
- package/node_modules/@ungap/structured-clone/package.json +59 -0
- package/node_modules/@ungap/structured-clone/structured-json.js +1 -0
- package/node_modules/@xterm/headless/README.md +31 -0
- package/node_modules/@xterm/headless/lib-headless/xterm-headless.js +2 -0
- package/node_modules/@xterm/headless/lib-headless/xterm-headless.js.map +1 -0
- package/node_modules/@xterm/headless/lib-headless/xterm-headless.mjs +46 -0
- package/node_modules/@xterm/headless/lib-headless/xterm-headless.mjs.map +7 -0
- package/node_modules/@xterm/headless/package.json +29 -0
- package/node_modules/@xterm/headless/typings/xterm-headless.d.ts +1385 -0
- package/node_modules/ccount/index.d.ts +11 -0
- package/node_modules/ccount/index.js +27 -0
- package/node_modules/ccount/license +22 -0
- package/node_modules/ccount/package.json +71 -0
- package/node_modules/ccount/readme.md +149 -0
- package/node_modules/character-entities-html4/index.d.ts +6 -0
- package/node_modules/character-entities-html4/index.js +259 -0
- package/node_modules/character-entities-html4/license +22 -0
- package/node_modules/character-entities-html4/package.json +79 -0
- package/node_modules/character-entities-html4/readme.md +153 -0
- package/node_modules/character-entities-legacy/index.d.ts +6 -0
- package/node_modules/character-entities-legacy/index.js +113 -0
- package/node_modules/character-entities-legacy/license +22 -0
- package/node_modules/character-entities-legacy/package.json +77 -0
- package/node_modules/character-entities-legacy/readme.md +157 -0
- package/node_modules/comma-separated-tokens/index.d.ts +52 -0
- package/node_modules/comma-separated-tokens/index.js +74 -0
- package/node_modules/comma-separated-tokens/license +22 -0
- package/node_modules/comma-separated-tokens/package.json +72 -0
- package/node_modules/comma-separated-tokens/readme.md +167 -0
- package/node_modules/dequal/dist/index.js +86 -0
- package/node_modules/dequal/dist/index.min.js +1 -0
- package/node_modules/dequal/dist/index.mjs +84 -0
- package/node_modules/dequal/index.d.ts +1 -0
- package/node_modules/dequal/license +21 -0
- package/node_modules/dequal/lite/index.d.ts +1 -0
- package/node_modules/dequal/lite/index.js +31 -0
- package/node_modules/dequal/lite/index.min.js +1 -0
- package/node_modules/dequal/lite/index.mjs +29 -0
- package/node_modules/dequal/package.json +57 -0
- package/node_modules/dequal/readme.md +112 -0
- package/node_modules/devlop/lib/default.js +9 -0
- package/node_modules/devlop/lib/development.d.ts +84 -0
- package/node_modules/devlop/lib/development.js +238 -0
- package/node_modules/devlop/license +22 -0
- package/node_modules/devlop/package.json +80 -0
- package/node_modules/devlop/readme.md +360 -0
- package/node_modules/hast-util-to-html/index.d.ts +6 -0
- package/node_modules/hast-util-to-html/index.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/index.js +8 -0
- package/node_modules/hast-util-to-html/lib/handle/comment.d.ts +19 -0
- package/node_modules/hast-util-to-html/lib/handle/comment.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/lib/handle/comment.js +52 -0
- package/node_modules/hast-util-to-html/lib/handle/doctype.d.ts +23 -0
- package/node_modules/hast-util-to-html/lib/handle/doctype.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/lib/handle/doctype.js +27 -0
- package/node_modules/hast-util-to-html/lib/handle/element.d.ts +19 -0
- package/node_modules/hast-util-to-html/lib/handle/element.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/lib/handle/element.js +265 -0
- package/node_modules/hast-util-to-html/lib/handle/index.d.ts +8 -0
- package/node_modules/hast-util-to-html/lib/handle/index.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/lib/handle/index.js +47 -0
- package/node_modules/hast-util-to-html/lib/handle/raw.d.ts +19 -0
- package/node_modules/hast-util-to-html/lib/handle/raw.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/lib/handle/raw.js +27 -0
- package/node_modules/hast-util-to-html/lib/handle/root.d.ts +23 -0
- package/node_modules/hast-util-to-html/lib/handle/root.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/lib/handle/root.js +22 -0
- package/node_modules/hast-util-to-html/lib/handle/text.d.ts +20 -0
- package/node_modules/hast-util-to-html/lib/handle/text.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/lib/handle/text.js +38 -0
- package/node_modules/hast-util-to-html/lib/index.d.ts +223 -0
- package/node_modules/hast-util-to-html/lib/index.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/lib/index.js +257 -0
- package/node_modules/hast-util-to-html/lib/omission/closing.d.ts +2 -0
- package/node_modules/hast-util-to-html/lib/omission/closing.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/lib/omission/closing.js +358 -0
- package/node_modules/hast-util-to-html/lib/omission/omission.d.ts +17 -0
- package/node_modules/hast-util-to-html/lib/omission/omission.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/lib/omission/omission.js +44 -0
- package/node_modules/hast-util-to-html/lib/omission/opening.d.ts +2 -0
- package/node_modules/hast-util-to-html/lib/omission/opening.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/lib/omission/opening.js +148 -0
- package/node_modules/hast-util-to-html/lib/omission/util/siblings.d.ts +36 -0
- package/node_modules/hast-util-to-html/lib/omission/util/siblings.d.ts.map +1 -0
- package/node_modules/hast-util-to-html/lib/omission/util/siblings.js +50 -0
- package/node_modules/hast-util-to-html/license +22 -0
- package/node_modules/hast-util-to-html/package.json +106 -0
- package/node_modules/hast-util-to-html/readme.md +486 -0
- package/node_modules/hast-util-whitespace/index.d.ts +1 -0
- package/node_modules/hast-util-whitespace/index.js +1 -0
- package/node_modules/hast-util-whitespace/lib/index.d.ts +13 -0
- package/node_modules/hast-util-whitespace/lib/index.js +34 -0
- package/node_modules/hast-util-whitespace/license +22 -0
- package/node_modules/hast-util-whitespace/package.json +83 -0
- package/node_modules/hast-util-whitespace/readme.md +231 -0
- package/node_modules/html-void-elements/index.d.ts +6 -0
- package/node_modules/html-void-elements/index.js +27 -0
- package/node_modules/html-void-elements/license +22 -0
- package/node_modules/html-void-elements/package.json +79 -0
- package/node_modules/html-void-elements/readme.md +164 -0
- package/node_modules/lru_map/.npmignore +5 -0
- package/node_modules/lru_map/README.md +214 -0
- package/node_modules/lru_map/dist/lru.js +2 -0
- package/node_modules/lru_map/dist/lru.js.map +7 -0
- package/node_modules/lru_map/lru.d.ts +83 -0
- package/node_modules/lru_map/package.json +41 -0
- package/node_modules/mdast-util-to-hast/index.d.ts +94 -0
- package/node_modules/mdast-util-to-hast/index.js +7 -0
- package/node_modules/mdast-util-to-hast/lib/footer.d.ts +81 -0
- package/node_modules/mdast-util-to-hast/lib/footer.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/footer.js +250 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/blockquote.d.ts +20 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/blockquote.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js +27 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/break.d.ts +21 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/break.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/break.js +22 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/code.d.ts +20 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/code.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/code.js +49 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/delete.d.ts +20 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/delete.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/delete.js +27 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/emphasis.d.ts +20 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/emphasis.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js +27 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.d.ts +15 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js +70 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/heading.d.ts +20 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/heading.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/heading.js +27 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/html.d.ts +23 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/html.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/html.js +28 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/image-reference.d.ts +15 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/image-reference.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js +39 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/image.d.ts +15 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/image.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/image.js +35 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/index.d.ts +55 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/index.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/index.js +68 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/inline-code.d.ts +20 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/inline-code.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js +31 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/link-reference.d.ts +15 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/link-reference.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js +44 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/link.d.ts +15 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/link.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/link.js +36 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/list-item.d.ts +23 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/list-item.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/list-item.js +119 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/list.d.ts +20 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/list.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/list.js +52 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/paragraph.d.ts +20 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/paragraph.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js +27 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/root.d.ts +20 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/root.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/root.js +22 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/strong.d.ts +20 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/strong.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/strong.js +27 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/table-cell.d.ts +20 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/table-cell.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js +29 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/table-row.d.ts +23 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/table-row.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/table-row.js +63 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/table.d.ts +15 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/table.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/table.js +61 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/text.d.ts +16 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/text.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/text.js +24 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.d.ts +20 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js +27 -0
- package/node_modules/mdast-util-to-hast/lib/index.d.ts +82 -0
- package/node_modules/mdast-util-to-hast/lib/index.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/index.js +106 -0
- package/node_modules/mdast-util-to-hast/lib/revert.d.ts +21 -0
- package/node_modules/mdast-util-to-hast/lib/revert.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/revert.js +49 -0
- package/node_modules/mdast-util-to-hast/lib/state.d.ts +233 -0
- package/node_modules/mdast-util-to-hast/lib/state.d.ts.map +1 -0
- package/node_modules/mdast-util-to-hast/lib/state.js +476 -0
- package/node_modules/mdast-util-to-hast/license +22 -0
- package/node_modules/mdast-util-to-hast/package.json +119 -0
- package/node_modules/mdast-util-to-hast/readme.md +1725 -0
- package/node_modules/micromark-util-character/dev/index.d.ts +195 -0
- package/node_modules/micromark-util-character/dev/index.d.ts.map +1 -0
- package/node_modules/micromark-util-character/dev/index.js +252 -0
- package/node_modules/micromark-util-character/index.d.ts +195 -0
- package/node_modules/micromark-util-character/index.d.ts.map +1 -0
- package/node_modules/micromark-util-character/index.js +246 -0
- package/node_modules/micromark-util-character/license +22 -0
- package/node_modules/micromark-util-character/package.json +57 -0
- package/node_modules/micromark-util-character/readme.md +446 -0
- package/node_modules/micromark-util-encode/index.d.ts +14 -0
- package/node_modules/micromark-util-encode/index.d.ts.map +1 -0
- package/node_modules/micromark-util-encode/index.js +33 -0
- package/node_modules/micromark-util-encode/license +22 -0
- package/node_modules/micromark-util-encode/package.json +47 -0
- package/node_modules/micromark-util-encode/readme.md +176 -0
- package/node_modules/micromark-util-sanitize-uri/dev/index.d.ts +36 -0
- package/node_modules/micromark-util-sanitize-uri/dev/index.d.ts.map +1 -0
- package/node_modules/micromark-util-sanitize-uri/dev/index.js +124 -0
- package/node_modules/micromark-util-sanitize-uri/index.d.ts +36 -0
- package/node_modules/micromark-util-sanitize-uri/index.d.ts.map +1 -0
- package/node_modules/micromark-util-sanitize-uri/index.js +107 -0
- package/node_modules/micromark-util-sanitize-uri/license +22 -0
- package/node_modules/micromark-util-sanitize-uri/package.json +59 -0
- package/node_modules/micromark-util-sanitize-uri/readme.md +214 -0
- package/node_modules/micromark-util-symbol/lib/codes.d.ts +139 -0
- package/node_modules/micromark-util-symbol/lib/codes.d.ts.map +1 -0
- package/node_modules/micromark-util-symbol/lib/codes.js +158 -0
- package/node_modules/micromark-util-symbol/lib/constants.d.ts +37 -0
- package/node_modules/micromark-util-symbol/lib/constants.d.ts.map +1 -0
- package/node_modules/micromark-util-symbol/lib/constants.js +44 -0
- package/node_modules/micromark-util-symbol/lib/default.d.ts +5 -0
- package/node_modules/micromark-util-symbol/lib/default.d.ts.map +1 -0
- package/node_modules/micromark-util-symbol/lib/default.js +4 -0
- package/node_modules/micromark-util-symbol/lib/types.d.ts +106 -0
- package/node_modules/micromark-util-symbol/lib/types.d.ts.map +1 -0
- package/node_modules/micromark-util-symbol/lib/types.js +453 -0
- package/node_modules/micromark-util-symbol/lib/values.d.ts +102 -0
- package/node_modules/micromark-util-symbol/lib/values.d.ts.map +1 -0
- package/node_modules/micromark-util-symbol/lib/values.js +109 -0
- package/node_modules/micromark-util-symbol/license +22 -0
- package/node_modules/micromark-util-symbol/package.json +43 -0
- package/node_modules/micromark-util-symbol/readme.md +168 -0
- package/node_modules/micromark-util-types/index.d.ts +1312 -0
- package/node_modules/micromark-util-types/index.js +2 -0
- package/node_modules/micromark-util-types/license +22 -0
- package/node_modules/micromark-util-types/package.json +71 -0
- package/node_modules/micromark-util-types/readme.md +151 -0
- package/node_modules/oniguruma-parser/LICENSE +21 -0
- package/node_modules/oniguruma-parser/README.md +310 -0
- package/node_modules/oniguruma-parser/dist/bundle.d.ts +7 -0
- package/node_modules/oniguruma-parser/dist/bundle.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/bundle.js +2 -0
- package/node_modules/oniguruma-parser/dist/bundle.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/generator/generate.d.ts +11 -0
- package/node_modules/oniguruma-parser/dist/generator/generate.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/generator/generate.js +2 -0
- package/node_modules/oniguruma-parser/dist/generator/generate.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/index.d.ts +14 -0
- package/node_modules/oniguruma-parser/dist/index.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/index.js +2 -0
- package/node_modules/oniguruma-parser/dist/index.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/oniguruma-parser.min.js +904 -0
- package/node_modules/oniguruma-parser/dist/oniguruma-parser.min.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/optimizations.d.ts +5 -0
- package/node_modules/oniguruma-parser/dist/optimizer/optimizations.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/optimizations.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/optimizations.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/optimize.d.ts +23 -0
- package/node_modules/oniguruma-parser/dist/optimizer/optimize.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/optimize.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/optimize.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/alternation-to-class.d.ts +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/alternation-to-class.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/alternation-to-class.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/alternation-to-class.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/expose-anchors.d.ts +9 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/expose-anchors.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/expose-anchors.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/expose-anchors.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/extract-prefix-2.d.ts +9 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/extract-prefix-2.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/extract-prefix-2.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/extract-prefix-2.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/extract-prefix.d.ts +24 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/extract-prefix.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/extract-prefix.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/extract-prefix.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/extract-suffix.d.ts +9 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/extract-suffix.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/extract-suffix.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/extract-suffix.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/merge-ranges.d.ts +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/merge-ranges.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/merge-ranges.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/merge-ranges.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/optionalize.d.ts +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/optionalize.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/optionalize.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/optionalize.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/prevent-redos.d.ts +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/prevent-redos.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/prevent-redos.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/prevent-redos.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/remove-empty-groups.d.ts +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/remove-empty-groups.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/remove-empty-groups.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/remove-empty-groups.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/remove-useless-flags.d.ts +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/remove-useless-flags.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/remove-useless-flags.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/remove-useless-flags.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/simplify-callouts.d.ts +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/simplify-callouts.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/simplify-callouts.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/simplify-callouts.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unnest-useless-classes.d.ts +8 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unnest-useless-classes.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unnest-useless-classes.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unnest-useless-classes.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unwrap-negation-wrappers.d.ts +9 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unwrap-negation-wrappers.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unwrap-negation-wrappers.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unwrap-negation-wrappers.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unwrap-useless-classes.d.ts +8 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unwrap-useless-classes.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unwrap-useless-classes.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unwrap-useless-classes.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unwrap-useless-groups.d.ts +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unwrap-useless-groups.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unwrap-useless-groups.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/unwrap-useless-groups.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/use-shorthands.d.ts +15 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/use-shorthands.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/use-shorthands.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/use-shorthands.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/use-unicode-aliases.d.ts +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/use-unicode-aliases.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/use-unicode-aliases.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/use-unicode-aliases.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/use-unicode-props.d.ts +10 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/use-unicode-props.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/use-unicode-props.js +2 -0
- package/node_modules/oniguruma-parser/dist/optimizer/transforms/use-unicode-props.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/parser/node-utils.d.ts +14 -0
- package/node_modules/oniguruma-parser/dist/parser/node-utils.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/parser/node-utils.js +2 -0
- package/node_modules/oniguruma-parser/dist/parser/node-utils.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/parser/parse.d.ts +208 -0
- package/node_modules/oniguruma-parser/dist/parser/parse.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/parser/parse.js +2 -0
- package/node_modules/oniguruma-parser/dist/parser/parse.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/tokenizer/tokenize.d.ts +122 -0
- package/node_modules/oniguruma-parser/dist/tokenizer/tokenize.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/tokenizer/tokenize.js +34 -0
- package/node_modules/oniguruma-parser/dist/tokenizer/tokenize.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/traverser/traverse.d.ts +49 -0
- package/node_modules/oniguruma-parser/dist/traverser/traverse.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/traverser/traverse.js +2 -0
- package/node_modules/oniguruma-parser/dist/traverser/traverse.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/unicode.d.ts +8 -0
- package/node_modules/oniguruma-parser/dist/unicode.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/unicode.js +872 -0
- package/node_modules/oniguruma-parser/dist/unicode.js.map +7 -0
- package/node_modules/oniguruma-parser/dist/utils.d.ts +9 -0
- package/node_modules/oniguruma-parser/dist/utils.d.ts.map +1 -0
- package/node_modules/oniguruma-parser/dist/utils.js +2 -0
- package/node_modules/oniguruma-parser/dist/utils.js.map +7 -0
- package/node_modules/oniguruma-parser/package.json +64 -0
- package/node_modules/oniguruma-to-es/LICENSE +21 -0
- package/node_modules/oniguruma-to-es/README.md +1110 -0
- package/node_modules/oniguruma-to-es/dist/cjs/generate.d.ts +27 -0
- package/node_modules/oniguruma-to-es/dist/cjs/index.d.ts +64 -0
- package/node_modules/oniguruma-to-es/dist/cjs/index.js +3145 -0
- package/node_modules/oniguruma-to-es/dist/cjs/index.js.map +7 -0
- package/node_modules/oniguruma-to-es/dist/cjs/options.d.ts +26 -0
- package/node_modules/oniguruma-to-es/dist/cjs/package.json +1 -0
- package/node_modules/oniguruma-to-es/dist/cjs/subclass.d.ts +39 -0
- package/node_modules/oniguruma-to-es/dist/cjs/transform.d.ts +54 -0
- package/node_modules/oniguruma-to-es/dist/cjs/unicode.d.ts +6 -0
- package/node_modules/oniguruma-to-es/dist/cjs/utils.d.ts +25 -0
- package/node_modules/oniguruma-to-es/dist/esm/generate.d.ts +27 -0
- package/node_modules/oniguruma-to-es/dist/esm/index.d.ts +64 -0
- package/node_modules/oniguruma-to-es/dist/esm/index.js +1878 -0
- package/node_modules/oniguruma-to-es/dist/esm/index.js.map +7 -0
- package/node_modules/oniguruma-to-es/dist/esm/options.d.ts +26 -0
- package/node_modules/oniguruma-to-es/dist/esm/package.json +1 -0
- package/node_modules/oniguruma-to-es/dist/esm/subclass.d.ts +39 -0
- package/node_modules/oniguruma-to-es/dist/esm/transform.d.ts +54 -0
- package/node_modules/oniguruma-to-es/dist/esm/unicode.d.ts +6 -0
- package/node_modules/oniguruma-to-es/dist/esm/utils.d.ts +25 -0
- package/node_modules/oniguruma-to-es/dist/index.min.js +142 -0
- package/node_modules/oniguruma-to-es/dist/index.min.js.map +7 -0
- package/node_modules/oniguruma-to-es/package.json +61 -0
- package/node_modules/property-information/index.d.ts +121 -0
- package/node_modules/property-information/index.js +17 -0
- package/node_modules/property-information/lib/aria.d.ts +2 -0
- package/node_modules/property-information/lib/aria.d.ts.map +1 -0
- package/node_modules/property-information/lib/aria.js +61 -0
- package/node_modules/property-information/lib/find.d.ts +34 -0
- package/node_modules/property-information/lib/find.d.ts.map +1 -0
- package/node_modules/property-information/lib/find.js +97 -0
- package/node_modules/property-information/lib/hast-to-react.d.ts +13 -0
- package/node_modules/property-information/lib/hast-to-react.d.ts.map +1 -0
- package/node_modules/property-information/lib/hast-to-react.js +30 -0
- package/node_modules/property-information/lib/html.d.ts +2 -0
- package/node_modules/property-information/lib/html.d.ts.map +1 -0
- package/node_modules/property-information/lib/html.js +332 -0
- package/node_modules/property-information/lib/normalize.d.ts +11 -0
- package/node_modules/property-information/lib/normalize.d.ts.map +1 -0
- package/node_modules/property-information/lib/normalize.js +12 -0
- package/node_modules/property-information/lib/svg.d.ts +2 -0
- package/node_modules/property-information/lib/svg.d.ts.map +1 -0
- package/node_modules/property-information/lib/svg.js +569 -0
- package/node_modules/property-information/lib/util/case-insensitive-transform.d.ts +10 -0
- package/node_modules/property-information/lib/util/case-insensitive-transform.d.ts.map +1 -0
- package/node_modules/property-information/lib/util/case-insensitive-transform.js +13 -0
- package/node_modules/property-information/lib/util/case-sensitive-transform.d.ts +10 -0
- package/node_modules/property-information/lib/util/case-sensitive-transform.d.ts.map +1 -0
- package/node_modules/property-information/lib/util/case-sensitive-transform.js +11 -0
- package/node_modules/property-information/lib/util/create.d.ts +39 -0
- package/node_modules/property-information/lib/util/create.d.ts.map +1 -0
- package/node_modules/property-information/lib/util/create.js +69 -0
- package/node_modules/property-information/lib/util/defined-info.d.ts +19 -0
- package/node_modules/property-information/lib/util/defined-info.d.ts.map +1 -0
- package/node_modules/property-information/lib/util/defined-info.js +60 -0
- package/node_modules/property-information/lib/util/info.d.ts +28 -0
- package/node_modules/property-information/lib/util/info.d.ts.map +1 -0
- package/node_modules/property-information/lib/util/info.js +32 -0
- package/node_modules/property-information/lib/util/merge.d.ts +12 -0
- package/node_modules/property-information/lib/util/merge.d.ts.map +1 -0
- package/node_modules/property-information/lib/util/merge.js +27 -0
- package/node_modules/property-information/lib/util/schema.d.ts +23 -0
- package/node_modules/property-information/lib/util/schema.d.ts.map +1 -0
- package/node_modules/property-information/lib/util/schema.js +29 -0
- package/node_modules/property-information/lib/util/types.d.ts +8 -0
- package/node_modules/property-information/lib/util/types.d.ts.map +1 -0
- package/node_modules/property-information/lib/util/types.js +13 -0
- package/node_modules/property-information/lib/xlink.d.ts +2 -0
- package/node_modules/property-information/lib/xlink.d.ts.map +1 -0
- package/node_modules/property-information/lib/xlink.js +17 -0
- package/node_modules/property-information/lib/xml.d.ts +2 -0
- package/node_modules/property-information/lib/xml.d.ts.map +1 -0
- package/node_modules/property-information/lib/xml.js +9 -0
- package/node_modules/property-information/lib/xmlns.d.ts +2 -0
- package/node_modules/property-information/lib/xmlns.d.ts.map +1 -0
- package/node_modules/property-information/lib/xmlns.js +9 -0
- package/node_modules/property-information/license +22 -0
- package/node_modules/property-information/package.json +84 -0
- package/node_modules/property-information/readme.md +1073 -0
- package/node_modules/regex/LICENSE +21 -0
- package/node_modules/regex/README.md +972 -0
- package/node_modules/regex/dist/cjs/atomic.d.ts +18 -0
- package/node_modules/regex/dist/cjs/backcompat.d.ts +8 -0
- package/node_modules/regex/dist/cjs/flag-n.d.ts +4 -0
- package/node_modules/regex/dist/cjs/flag-x.d.ts +11 -0
- package/node_modules/regex/dist/cjs/internals.d.ts +2 -0
- package/node_modules/regex/dist/cjs/package.json +1 -0
- package/node_modules/regex/dist/cjs/pattern.d.ts +43 -0
- package/node_modules/regex/dist/cjs/regex.d.ts +111 -0
- package/node_modules/regex/dist/cjs/regex.js +1335 -0
- package/node_modules/regex/dist/cjs/regex.js.map +7 -0
- package/node_modules/regex/dist/cjs/subclass.d.ts +31 -0
- package/node_modules/regex/dist/cjs/subroutines.d.ts +17 -0
- package/node_modules/regex/dist/cjs/utils-internals.d.ts +15 -0
- package/node_modules/regex/dist/cjs/utils.d.ts +115 -0
- package/node_modules/regex/dist/esm/atomic.d.ts +18 -0
- package/node_modules/regex/dist/esm/backcompat.d.ts +8 -0
- package/node_modules/regex/dist/esm/flag-n.d.ts +4 -0
- package/node_modules/regex/dist/esm/flag-x.d.ts +11 -0
- package/node_modules/regex/dist/esm/internals.d.ts +2 -0
- package/node_modules/regex/dist/esm/package.json +1 -0
- package/node_modules/regex/dist/esm/pattern.d.ts +43 -0
- package/node_modules/regex/dist/esm/regex.d.ts +111 -0
- package/node_modules/regex/dist/esm/regex.js +1313 -0
- package/node_modules/regex/dist/esm/regex.js.map +7 -0
- package/node_modules/regex/dist/esm/subclass.d.ts +31 -0
- package/node_modules/regex/dist/esm/subroutines.d.ts +17 -0
- package/node_modules/regex/dist/esm/utils-internals.d.ts +15 -0
- package/node_modules/regex/dist/esm/utils.d.ts +115 -0
- package/node_modules/regex/dist/regex.min.js +76 -0
- package/node_modules/regex/dist/regex.min.js.map +7 -0
- package/node_modules/regex/package.json +60 -0
- package/node_modules/regex/src/atomic.js +224 -0
- package/node_modules/regex/src/backcompat.js +64 -0
- package/node_modules/regex/src/flag-n.js +49 -0
- package/node_modules/regex/src/flag-x.js +198 -0
- package/node_modules/regex/src/internals.js +2 -0
- package/node_modules/regex/src/pattern.js +45 -0
- package/node_modules/regex/src/regex.js +389 -0
- package/node_modules/regex/src/subclass.js +98 -0
- package/node_modules/regex/src/subroutines.js +375 -0
- package/node_modules/regex/src/utils-internals.js +33 -0
- package/node_modules/regex/src/utils.js +401 -0
- package/node_modules/regex-recursion/LICENSE +21 -0
- package/node_modules/regex-recursion/README.md +151 -0
- package/node_modules/regex-recursion/dist/regex-recursion.min.js +2 -0
- package/node_modules/regex-recursion/dist/regex-recursion.min.js.map +7 -0
- package/node_modules/regex-recursion/package.json +47 -0
- package/node_modules/regex-recursion/src/index.js +365 -0
- package/node_modules/regex-recursion/types/index.d.ts +24 -0
- package/node_modules/regex-utilities/LICENSE +21 -0
- package/node_modules/regex-utilities/README.md +78 -0
- package/node_modules/regex-utilities/package.json +35 -0
- package/node_modules/regex-utilities/src/index.js +170 -0
- package/node_modules/regex-utilities/types/index.d.ts +84 -0
- package/node_modules/shiki/LICENSE +22 -0
- package/node_modules/shiki/README.md +15 -0
- package/node_modules/shiki/dist/bundle-full.d.mts +21 -0
- package/node_modules/shiki/dist/bundle-full.mjs +25 -0
- package/node_modules/shiki/dist/bundle-web.d.mts +31 -0
- package/node_modules/shiki/dist/bundle-web.mjs +347 -0
- package/node_modules/shiki/dist/core-CaxrMD1A.d.mts +1 -0
- package/node_modules/shiki/dist/core-unwasm.d.mts +1 -0
- package/node_modules/shiki/dist/core-unwasm.mjs +10 -0
- package/node_modules/shiki/dist/core.d.mts +2 -0
- package/node_modules/shiki/dist/core.mjs +3 -0
- package/node_modules/shiki/dist/engine-javascript.d.mts +1 -0
- package/node_modules/shiki/dist/engine-javascript.mjs +2 -0
- package/node_modules/shiki/dist/engine-oniguruma.d.mts +1 -0
- package/node_modules/shiki/dist/engine-oniguruma.mjs +8 -0
- package/node_modules/shiki/dist/index.d.mts +8 -0
- package/node_modules/shiki/dist/index.mjs +8 -0
- package/node_modules/shiki/dist/langs/1c-query.d.mts +1 -0
- package/node_modules/shiki/dist/langs/1c-query.mjs +1 -0
- package/node_modules/shiki/dist/langs/1c.d.mts +1 -0
- package/node_modules/shiki/dist/langs/1c.mjs +1 -0
- package/node_modules/shiki/dist/langs/abap.d.mts +1 -0
- package/node_modules/shiki/dist/langs/abap.mjs +1 -0
- package/node_modules/shiki/dist/langs/actionscript-3.d.mts +1 -0
- package/node_modules/shiki/dist/langs/actionscript-3.mjs +1 -0
- package/node_modules/shiki/dist/langs/actionscript.d.mts +1 -0
- package/node_modules/shiki/dist/langs/actionscript.mjs +1 -0
- package/node_modules/shiki/dist/langs/ada.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ada.mjs +1 -0
- package/node_modules/shiki/dist/langs/adoc.d.mts +1 -0
- package/node_modules/shiki/dist/langs/adoc.mjs +1 -0
- package/node_modules/shiki/dist/langs/ahk.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ahk.mjs +1 -0
- package/node_modules/shiki/dist/langs/ahk1.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ahk1.mjs +1 -0
- package/node_modules/shiki/dist/langs/ahk2.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ahk2.mjs +1 -0
- package/node_modules/shiki/dist/langs/angular-expression.d.mts +1 -0
- package/node_modules/shiki/dist/langs/angular-expression.mjs +1 -0
- package/node_modules/shiki/dist/langs/angular-html.d.mts +1 -0
- package/node_modules/shiki/dist/langs/angular-html.mjs +1 -0
- package/node_modules/shiki/dist/langs/angular-inline-style.d.mts +1 -0
- package/node_modules/shiki/dist/langs/angular-inline-style.mjs +1 -0
- package/node_modules/shiki/dist/langs/angular-inline-template.d.mts +1 -0
- package/node_modules/shiki/dist/langs/angular-inline-template.mjs +1 -0
- package/node_modules/shiki/dist/langs/angular-let-declaration.d.mts +1 -0
- package/node_modules/shiki/dist/langs/angular-let-declaration.mjs +1 -0
- package/node_modules/shiki/dist/langs/angular-template-blocks.d.mts +1 -0
- package/node_modules/shiki/dist/langs/angular-template-blocks.mjs +1 -0
- package/node_modules/shiki/dist/langs/angular-template.d.mts +1 -0
- package/node_modules/shiki/dist/langs/angular-template.mjs +1 -0
- package/node_modules/shiki/dist/langs/angular-ts.d.mts +1 -0
- package/node_modules/shiki/dist/langs/angular-ts.mjs +1 -0
- package/node_modules/shiki/dist/langs/apache.d.mts +1 -0
- package/node_modules/shiki/dist/langs/apache.mjs +1 -0
- package/node_modules/shiki/dist/langs/apex.d.mts +1 -0
- package/node_modules/shiki/dist/langs/apex.mjs +1 -0
- package/node_modules/shiki/dist/langs/apl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/apl.mjs +1 -0
- package/node_modules/shiki/dist/langs/applescript.d.mts +1 -0
- package/node_modules/shiki/dist/langs/applescript.mjs +1 -0
- package/node_modules/shiki/dist/langs/ara.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ara.mjs +1 -0
- package/node_modules/shiki/dist/langs/as3.d.mts +1 -0
- package/node_modules/shiki/dist/langs/as3.mjs +1 -0
- package/node_modules/shiki/dist/langs/asciidoc.d.mts +1 -0
- package/node_modules/shiki/dist/langs/asciidoc.mjs +1 -0
- package/node_modules/shiki/dist/langs/asm.d.mts +1 -0
- package/node_modules/shiki/dist/langs/asm.mjs +1 -0
- package/node_modules/shiki/dist/langs/astro.d.mts +1 -0
- package/node_modules/shiki/dist/langs/astro.mjs +1 -0
- package/node_modules/shiki/dist/langs/awk.d.mts +1 -0
- package/node_modules/shiki/dist/langs/awk.mjs +1 -0
- package/node_modules/shiki/dist/langs/ballerina.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ballerina.mjs +1 -0
- package/node_modules/shiki/dist/langs/bash.d.mts +1 -0
- package/node_modules/shiki/dist/langs/bash.mjs +1 -0
- package/node_modules/shiki/dist/langs/bat.d.mts +1 -0
- package/node_modules/shiki/dist/langs/bat.mjs +1 -0
- package/node_modules/shiki/dist/langs/batch.d.mts +1 -0
- package/node_modules/shiki/dist/langs/batch.mjs +1 -0
- package/node_modules/shiki/dist/langs/be.d.mts +1 -0
- package/node_modules/shiki/dist/langs/be.mjs +1 -0
- package/node_modules/shiki/dist/langs/beancount.d.mts +1 -0
- package/node_modules/shiki/dist/langs/beancount.mjs +1 -0
- package/node_modules/shiki/dist/langs/berry.d.mts +1 -0
- package/node_modules/shiki/dist/langs/berry.mjs +1 -0
- package/node_modules/shiki/dist/langs/bibtex.d.mts +1 -0
- package/node_modules/shiki/dist/langs/bibtex.mjs +1 -0
- package/node_modules/shiki/dist/langs/bicep.d.mts +1 -0
- package/node_modules/shiki/dist/langs/bicep.mjs +1 -0
- package/node_modules/shiki/dist/langs/bird.d.mts +1 -0
- package/node_modules/shiki/dist/langs/bird.mjs +1 -0
- package/node_modules/shiki/dist/langs/bird2.d.mts +1 -0
- package/node_modules/shiki/dist/langs/bird2.mjs +1 -0
- package/node_modules/shiki/dist/langs/blade.d.mts +1 -0
- package/node_modules/shiki/dist/langs/blade.mjs +1 -0
- package/node_modules/shiki/dist/langs/bsl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/bsl.mjs +1 -0
- package/node_modules/shiki/dist/langs/c.d.mts +1 -0
- package/node_modules/shiki/dist/langs/c.mjs +1 -0
- package/node_modules/shiki/dist/langs/c3.d.mts +1 -0
- package/node_modules/shiki/dist/langs/c3.mjs +1 -0
- package/node_modules/shiki/dist/langs/cadence.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cadence.mjs +1 -0
- package/node_modules/shiki/dist/langs/cairo.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cairo.mjs +1 -0
- package/node_modules/shiki/dist/langs/cdc.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cdc.mjs +1 -0
- package/node_modules/shiki/dist/langs/chapel.d.mts +1 -0
- package/node_modules/shiki/dist/langs/chapel.mjs +1 -0
- package/node_modules/shiki/dist/langs/chpl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/chpl.mjs +1 -0
- package/node_modules/shiki/dist/langs/cjs.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cjs.mjs +1 -0
- package/node_modules/shiki/dist/langs/clarity.d.mts +1 -0
- package/node_modules/shiki/dist/langs/clarity.mjs +1 -0
- package/node_modules/shiki/dist/langs/clj.d.mts +1 -0
- package/node_modules/shiki/dist/langs/clj.mjs +1 -0
- package/node_modules/shiki/dist/langs/clojure.d.mts +1 -0
- package/node_modules/shiki/dist/langs/clojure.mjs +1 -0
- package/node_modules/shiki/dist/langs/closure-templates.d.mts +1 -0
- package/node_modules/shiki/dist/langs/closure-templates.mjs +1 -0
- package/node_modules/shiki/dist/langs/cmake.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cmake.mjs +1 -0
- package/node_modules/shiki/dist/langs/cmd.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cmd.mjs +1 -0
- package/node_modules/shiki/dist/langs/cobol.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cobol.mjs +1 -0
- package/node_modules/shiki/dist/langs/codeowners.d.mts +1 -0
- package/node_modules/shiki/dist/langs/codeowners.mjs +1 -0
- package/node_modules/shiki/dist/langs/codeql.d.mts +1 -0
- package/node_modules/shiki/dist/langs/codeql.mjs +1 -0
- package/node_modules/shiki/dist/langs/coffee.d.mts +1 -0
- package/node_modules/shiki/dist/langs/coffee.mjs +1 -0
- package/node_modules/shiki/dist/langs/coffeescript.d.mts +1 -0
- package/node_modules/shiki/dist/langs/coffeescript.mjs +1 -0
- package/node_modules/shiki/dist/langs/common-lisp.d.mts +1 -0
- package/node_modules/shiki/dist/langs/common-lisp.mjs +1 -0
- package/node_modules/shiki/dist/langs/console.d.mts +1 -0
- package/node_modules/shiki/dist/langs/console.mjs +1 -0
- package/node_modules/shiki/dist/langs/coq.d.mts +1 -0
- package/node_modules/shiki/dist/langs/coq.mjs +1 -0
- package/node_modules/shiki/dist/langs/cpp-macro.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cpp-macro.mjs +1 -0
- package/node_modules/shiki/dist/langs/cpp.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cpp.mjs +1 -0
- package/node_modules/shiki/dist/langs/cql.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cql.mjs +1 -0
- package/node_modules/shiki/dist/langs/crystal.d.mts +1 -0
- package/node_modules/shiki/dist/langs/crystal.mjs +1 -0
- package/node_modules/shiki/dist/langs/cs.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cs.mjs +1 -0
- package/node_modules/shiki/dist/langs/csharp.d.mts +1 -0
- package/node_modules/shiki/dist/langs/csharp.mjs +1 -0
- package/node_modules/shiki/dist/langs/css.d.mts +1 -0
- package/node_modules/shiki/dist/langs/css.mjs +1 -0
- package/node_modules/shiki/dist/langs/csv.d.mts +1 -0
- package/node_modules/shiki/dist/langs/csv.mjs +1 -0
- package/node_modules/shiki/dist/langs/cts.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cts.mjs +1 -0
- package/node_modules/shiki/dist/langs/cue.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cue.mjs +1 -0
- package/node_modules/shiki/dist/langs/cypher.d.mts +1 -0
- package/node_modules/shiki/dist/langs/cypher.mjs +1 -0
- package/node_modules/shiki/dist/langs/d.d.mts +1 -0
- package/node_modules/shiki/dist/langs/d.mjs +1 -0
- package/node_modules/shiki/dist/langs/dart.d.mts +1 -0
- package/node_modules/shiki/dist/langs/dart.mjs +1 -0
- package/node_modules/shiki/dist/langs/dax.d.mts +1 -0
- package/node_modules/shiki/dist/langs/dax.mjs +1 -0
- package/node_modules/shiki/dist/langs/desktop.d.mts +1 -0
- package/node_modules/shiki/dist/langs/desktop.mjs +1 -0
- package/node_modules/shiki/dist/langs/diff.d.mts +1 -0
- package/node_modules/shiki/dist/langs/diff.mjs +1 -0
- package/node_modules/shiki/dist/langs/docker.d.mts +1 -0
- package/node_modules/shiki/dist/langs/docker.mjs +1 -0
- package/node_modules/shiki/dist/langs/dockerfile.d.mts +1 -0
- package/node_modules/shiki/dist/langs/dockerfile.mjs +1 -0
- package/node_modules/shiki/dist/langs/dotenv.d.mts +1 -0
- package/node_modules/shiki/dist/langs/dotenv.mjs +1 -0
- package/node_modules/shiki/dist/langs/dream-maker.d.mts +1 -0
- package/node_modules/shiki/dist/langs/dream-maker.mjs +1 -0
- package/node_modules/shiki/dist/langs/edge.d.mts +1 -0
- package/node_modules/shiki/dist/langs/edge.mjs +1 -0
- package/node_modules/shiki/dist/langs/elisp.d.mts +1 -0
- package/node_modules/shiki/dist/langs/elisp.mjs +1 -0
- package/node_modules/shiki/dist/langs/elixir.d.mts +1 -0
- package/node_modules/shiki/dist/langs/elixir.mjs +1 -0
- package/node_modules/shiki/dist/langs/elm.d.mts +1 -0
- package/node_modules/shiki/dist/langs/elm.mjs +1 -0
- package/node_modules/shiki/dist/langs/emacs-lisp.d.mts +1 -0
- package/node_modules/shiki/dist/langs/emacs-lisp.mjs +1 -0
- package/node_modules/shiki/dist/langs/erb.d.mts +1 -0
- package/node_modules/shiki/dist/langs/erb.mjs +1 -0
- package/node_modules/shiki/dist/langs/erl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/erl.mjs +1 -0
- package/node_modules/shiki/dist/langs/erlang.d.mts +1 -0
- package/node_modules/shiki/dist/langs/erlang.mjs +1 -0
- package/node_modules/shiki/dist/langs/es-tag-css.d.mts +1 -0
- package/node_modules/shiki/dist/langs/es-tag-css.mjs +1 -0
- package/node_modules/shiki/dist/langs/es-tag-glsl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/es-tag-glsl.mjs +1 -0
- package/node_modules/shiki/dist/langs/es-tag-html.d.mts +1 -0
- package/node_modules/shiki/dist/langs/es-tag-html.mjs +1 -0
- package/node_modules/shiki/dist/langs/es-tag-sql.d.mts +1 -0
- package/node_modules/shiki/dist/langs/es-tag-sql.mjs +1 -0
- package/node_modules/shiki/dist/langs/es-tag-xml.d.mts +1 -0
- package/node_modules/shiki/dist/langs/es-tag-xml.mjs +1 -0
- package/node_modules/shiki/dist/langs/f.d.mts +1 -0
- package/node_modules/shiki/dist/langs/f.mjs +1 -0
- package/node_modules/shiki/dist/langs/f03.d.mts +1 -0
- package/node_modules/shiki/dist/langs/f03.mjs +1 -0
- package/node_modules/shiki/dist/langs/f08.d.mts +1 -0
- package/node_modules/shiki/dist/langs/f08.mjs +1 -0
- package/node_modules/shiki/dist/langs/f18.d.mts +1 -0
- package/node_modules/shiki/dist/langs/f18.mjs +1 -0
- package/node_modules/shiki/dist/langs/f77.d.mts +1 -0
- package/node_modules/shiki/dist/langs/f77.mjs +1 -0
- package/node_modules/shiki/dist/langs/f90.d.mts +1 -0
- package/node_modules/shiki/dist/langs/f90.mjs +1 -0
- package/node_modules/shiki/dist/langs/f95.d.mts +1 -0
- package/node_modules/shiki/dist/langs/f95.mjs +1 -0
- package/node_modules/shiki/dist/langs/fennel.d.mts +1 -0
- package/node_modules/shiki/dist/langs/fennel.mjs +1 -0
- package/node_modules/shiki/dist/langs/fish.d.mts +1 -0
- package/node_modules/shiki/dist/langs/fish.mjs +1 -0
- package/node_modules/shiki/dist/langs/fluent.d.mts +1 -0
- package/node_modules/shiki/dist/langs/fluent.mjs +1 -0
- package/node_modules/shiki/dist/langs/for.d.mts +1 -0
- package/node_modules/shiki/dist/langs/for.mjs +1 -0
- package/node_modules/shiki/dist/langs/fortran-fixed-form.d.mts +1 -0
- package/node_modules/shiki/dist/langs/fortran-fixed-form.mjs +1 -0
- package/node_modules/shiki/dist/langs/fortran-free-form.d.mts +1 -0
- package/node_modules/shiki/dist/langs/fortran-free-form.mjs +1 -0
- package/node_modules/shiki/dist/langs/fs.d.mts +1 -0
- package/node_modules/shiki/dist/langs/fs.mjs +1 -0
- package/node_modules/shiki/dist/langs/fsharp.d.mts +1 -0
- package/node_modules/shiki/dist/langs/fsharp.mjs +1 -0
- package/node_modules/shiki/dist/langs/fsl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/fsl.mjs +1 -0
- package/node_modules/shiki/dist/langs/ftl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ftl.mjs +1 -0
- package/node_modules/shiki/dist/langs/gd.d.mts +1 -0
- package/node_modules/shiki/dist/langs/gd.mjs +1 -0
- package/node_modules/shiki/dist/langs/gdresource.d.mts +1 -0
- package/node_modules/shiki/dist/langs/gdresource.mjs +1 -0
- package/node_modules/shiki/dist/langs/gdscript.d.mts +1 -0
- package/node_modules/shiki/dist/langs/gdscript.mjs +1 -0
- package/node_modules/shiki/dist/langs/gdshader.d.mts +1 -0
- package/node_modules/shiki/dist/langs/gdshader.mjs +1 -0
- package/node_modules/shiki/dist/langs/genie.d.mts +1 -0
- package/node_modules/shiki/dist/langs/genie.mjs +1 -0
- package/node_modules/shiki/dist/langs/gherkin.d.mts +1 -0
- package/node_modules/shiki/dist/langs/gherkin.mjs +1 -0
- package/node_modules/shiki/dist/langs/git-commit.d.mts +1 -0
- package/node_modules/shiki/dist/langs/git-commit.mjs +1 -0
- package/node_modules/shiki/dist/langs/git-rebase.d.mts +1 -0
- package/node_modules/shiki/dist/langs/git-rebase.mjs +1 -0
- package/node_modules/shiki/dist/langs/gjs.d.mts +1 -0
- package/node_modules/shiki/dist/langs/gjs.mjs +1 -0
- package/node_modules/shiki/dist/langs/gleam.d.mts +1 -0
- package/node_modules/shiki/dist/langs/gleam.mjs +1 -0
- package/node_modules/shiki/dist/langs/glimmer-js.d.mts +1 -0
- package/node_modules/shiki/dist/langs/glimmer-js.mjs +1 -0
- package/node_modules/shiki/dist/langs/glimmer-ts.d.mts +1 -0
- package/node_modules/shiki/dist/langs/glimmer-ts.mjs +1 -0
- package/node_modules/shiki/dist/langs/glsl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/glsl.mjs +1 -0
- package/node_modules/shiki/dist/langs/gn.d.mts +1 -0
- package/node_modules/shiki/dist/langs/gn.mjs +1 -0
- package/node_modules/shiki/dist/langs/gnuplot.d.mts +1 -0
- package/node_modules/shiki/dist/langs/gnuplot.mjs +1 -0
- package/node_modules/shiki/dist/langs/go.d.mts +1 -0
- package/node_modules/shiki/dist/langs/go.mjs +1 -0
- package/node_modules/shiki/dist/langs/gql.d.mts +1 -0
- package/node_modules/shiki/dist/langs/gql.mjs +1 -0
- package/node_modules/shiki/dist/langs/graphql.d.mts +1 -0
- package/node_modules/shiki/dist/langs/graphql.mjs +1 -0
- package/node_modules/shiki/dist/langs/groovy.d.mts +1 -0
- package/node_modules/shiki/dist/langs/groovy.mjs +1 -0
- package/node_modules/shiki/dist/langs/gts.d.mts +1 -0
- package/node_modules/shiki/dist/langs/gts.mjs +1 -0
- package/node_modules/shiki/dist/langs/hack.d.mts +1 -0
- package/node_modules/shiki/dist/langs/hack.mjs +1 -0
- package/node_modules/shiki/dist/langs/haml.d.mts +1 -0
- package/node_modules/shiki/dist/langs/haml.mjs +1 -0
- package/node_modules/shiki/dist/langs/handlebars.d.mts +1 -0
- package/node_modules/shiki/dist/langs/handlebars.mjs +1 -0
- package/node_modules/shiki/dist/langs/haskell.d.mts +1 -0
- package/node_modules/shiki/dist/langs/haskell.mjs +1 -0
- package/node_modules/shiki/dist/langs/haxe.d.mts +1 -0
- package/node_modules/shiki/dist/langs/haxe.mjs +1 -0
- package/node_modules/shiki/dist/langs/hbs.d.mts +1 -0
- package/node_modules/shiki/dist/langs/hbs.mjs +1 -0
- package/node_modules/shiki/dist/langs/hcl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/hcl.mjs +1 -0
- package/node_modules/shiki/dist/langs/hjson.d.mts +1 -0
- package/node_modules/shiki/dist/langs/hjson.mjs +1 -0
- package/node_modules/shiki/dist/langs/hlsl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/hlsl.mjs +1 -0
- package/node_modules/shiki/dist/langs/hs.d.mts +1 -0
- package/node_modules/shiki/dist/langs/hs.mjs +1 -0
- package/node_modules/shiki/dist/langs/html-derivative.d.mts +1 -0
- package/node_modules/shiki/dist/langs/html-derivative.mjs +1 -0
- package/node_modules/shiki/dist/langs/html.d.mts +1 -0
- package/node_modules/shiki/dist/langs/html.mjs +1 -0
- package/node_modules/shiki/dist/langs/http.d.mts +1 -0
- package/node_modules/shiki/dist/langs/http.mjs +1 -0
- package/node_modules/shiki/dist/langs/hurl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/hurl.mjs +1 -0
- package/node_modules/shiki/dist/langs/hxml.d.mts +1 -0
- package/node_modules/shiki/dist/langs/hxml.mjs +1 -0
- package/node_modules/shiki/dist/langs/hy.d.mts +1 -0
- package/node_modules/shiki/dist/langs/hy.mjs +1 -0
- package/node_modules/shiki/dist/langs/imba.d.mts +1 -0
- package/node_modules/shiki/dist/langs/imba.mjs +1 -0
- package/node_modules/shiki/dist/langs/ini.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ini.mjs +1 -0
- package/node_modules/shiki/dist/langs/jade.d.mts +1 -0
- package/node_modules/shiki/dist/langs/jade.mjs +1 -0
- package/node_modules/shiki/dist/langs/java.d.mts +1 -0
- package/node_modules/shiki/dist/langs/java.mjs +1 -0
- package/node_modules/shiki/dist/langs/javascript.d.mts +1 -0
- package/node_modules/shiki/dist/langs/javascript.mjs +1 -0
- package/node_modules/shiki/dist/langs/jinja-html.d.mts +1 -0
- package/node_modules/shiki/dist/langs/jinja-html.mjs +1 -0
- package/node_modules/shiki/dist/langs/jinja.d.mts +1 -0
- package/node_modules/shiki/dist/langs/jinja.mjs +1 -0
- package/node_modules/shiki/dist/langs/jison.d.mts +1 -0
- package/node_modules/shiki/dist/langs/jison.mjs +1 -0
- package/node_modules/shiki/dist/langs/jl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/jl.mjs +1 -0
- package/node_modules/shiki/dist/langs/js.d.mts +1 -0
- package/node_modules/shiki/dist/langs/js.mjs +1 -0
- package/node_modules/shiki/dist/langs/json.d.mts +1 -0
- package/node_modules/shiki/dist/langs/json.mjs +1 -0
- package/node_modules/shiki/dist/langs/json5.d.mts +1 -0
- package/node_modules/shiki/dist/langs/json5.mjs +1 -0
- package/node_modules/shiki/dist/langs/jsonc.d.mts +1 -0
- package/node_modules/shiki/dist/langs/jsonc.mjs +1 -0
- package/node_modules/shiki/dist/langs/jsonl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/jsonl.mjs +1 -0
- package/node_modules/shiki/dist/langs/jsonnet.d.mts +1 -0
- package/node_modules/shiki/dist/langs/jsonnet.mjs +1 -0
- package/node_modules/shiki/dist/langs/jssm.d.mts +1 -0
- package/node_modules/shiki/dist/langs/jssm.mjs +1 -0
- package/node_modules/shiki/dist/langs/jsx.d.mts +1 -0
- package/node_modules/shiki/dist/langs/jsx.mjs +1 -0
- package/node_modules/shiki/dist/langs/julia.d.mts +1 -0
- package/node_modules/shiki/dist/langs/julia.mjs +1 -0
- package/node_modules/shiki/dist/langs/just.d.mts +1 -0
- package/node_modules/shiki/dist/langs/just.mjs +1 -0
- package/node_modules/shiki/dist/langs/justfile.d.mts +1 -0
- package/node_modules/shiki/dist/langs/justfile.mjs +1 -0
- package/node_modules/shiki/dist/langs/kdl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/kdl.mjs +1 -0
- package/node_modules/shiki/dist/langs/kotlin.d.mts +1 -0
- package/node_modules/shiki/dist/langs/kotlin.mjs +1 -0
- package/node_modules/shiki/dist/langs/kql.d.mts +1 -0
- package/node_modules/shiki/dist/langs/kql.mjs +1 -0
- package/node_modules/shiki/dist/langs/kt.d.mts +1 -0
- package/node_modules/shiki/dist/langs/kt.mjs +1 -0
- package/node_modules/shiki/dist/langs/kts.d.mts +1 -0
- package/node_modules/shiki/dist/langs/kts.mjs +1 -0
- package/node_modules/shiki/dist/langs/kusto.d.mts +1 -0
- package/node_modules/shiki/dist/langs/kusto.mjs +1 -0
- package/node_modules/shiki/dist/langs/latex.d.mts +1 -0
- package/node_modules/shiki/dist/langs/latex.mjs +1 -0
- package/node_modules/shiki/dist/langs/lean.d.mts +1 -0
- package/node_modules/shiki/dist/langs/lean.mjs +1 -0
- package/node_modules/shiki/dist/langs/lean4.d.mts +1 -0
- package/node_modules/shiki/dist/langs/lean4.mjs +1 -0
- package/node_modules/shiki/dist/langs/less.d.mts +1 -0
- package/node_modules/shiki/dist/langs/less.mjs +1 -0
- package/node_modules/shiki/dist/langs/liquid.d.mts +1 -0
- package/node_modules/shiki/dist/langs/liquid.mjs +1 -0
- package/node_modules/shiki/dist/langs/lisp.d.mts +1 -0
- package/node_modules/shiki/dist/langs/lisp.mjs +1 -0
- package/node_modules/shiki/dist/langs/lit.d.mts +1 -0
- package/node_modules/shiki/dist/langs/lit.mjs +1 -0
- package/node_modules/shiki/dist/langs/llvm.d.mts +1 -0
- package/node_modules/shiki/dist/langs/llvm.mjs +1 -0
- package/node_modules/shiki/dist/langs/log.d.mts +1 -0
- package/node_modules/shiki/dist/langs/log.mjs +1 -0
- package/node_modules/shiki/dist/langs/logo.d.mts +1 -0
- package/node_modules/shiki/dist/langs/logo.mjs +1 -0
- package/node_modules/shiki/dist/langs/lua.d.mts +1 -0
- package/node_modules/shiki/dist/langs/lua.mjs +1 -0
- package/node_modules/shiki/dist/langs/luau.d.mts +1 -0
- package/node_modules/shiki/dist/langs/luau.mjs +1 -0
- package/node_modules/shiki/dist/langs/make.d.mts +1 -0
- package/node_modules/shiki/dist/langs/make.mjs +1 -0
- package/node_modules/shiki/dist/langs/makefile.d.mts +1 -0
- package/node_modules/shiki/dist/langs/makefile.mjs +1 -0
- package/node_modules/shiki/dist/langs/markdown-nix.d.mts +1 -0
- package/node_modules/shiki/dist/langs/markdown-nix.mjs +1 -0
- package/node_modules/shiki/dist/langs/markdown-vue.d.mts +1 -0
- package/node_modules/shiki/dist/langs/markdown-vue.mjs +1 -0
- package/node_modules/shiki/dist/langs/markdown.d.mts +1 -0
- package/node_modules/shiki/dist/langs/markdown.mjs +1 -0
- package/node_modules/shiki/dist/langs/marko.d.mts +1 -0
- package/node_modules/shiki/dist/langs/marko.mjs +1 -0
- package/node_modules/shiki/dist/langs/matlab.d.mts +1 -0
- package/node_modules/shiki/dist/langs/matlab.mjs +1 -0
- package/node_modules/shiki/dist/langs/mbt.d.mts +1 -0
- package/node_modules/shiki/dist/langs/mbt.mjs +1 -0
- package/node_modules/shiki/dist/langs/mbti.d.mts +1 -0
- package/node_modules/shiki/dist/langs/mbti.mjs +1 -0
- package/node_modules/shiki/dist/langs/md.d.mts +1 -0
- package/node_modules/shiki/dist/langs/md.mjs +1 -0
- package/node_modules/shiki/dist/langs/mdc.d.mts +1 -0
- package/node_modules/shiki/dist/langs/mdc.mjs +1 -0
- package/node_modules/shiki/dist/langs/mdx.d.mts +1 -0
- package/node_modules/shiki/dist/langs/mdx.mjs +1 -0
- package/node_modules/shiki/dist/langs/mediawiki.d.mts +1 -0
- package/node_modules/shiki/dist/langs/mediawiki.mjs +1 -0
- package/node_modules/shiki/dist/langs/mermaid.d.mts +1 -0
- package/node_modules/shiki/dist/langs/mermaid.mjs +1 -0
- package/node_modules/shiki/dist/langs/mips.d.mts +1 -0
- package/node_modules/shiki/dist/langs/mips.mjs +1 -0
- package/node_modules/shiki/dist/langs/mipsasm.d.mts +1 -0
- package/node_modules/shiki/dist/langs/mipsasm.mjs +1 -0
- package/node_modules/shiki/dist/langs/mjs.d.mts +1 -0
- package/node_modules/shiki/dist/langs/mjs.mjs +1 -0
- package/node_modules/shiki/dist/langs/mmd.d.mts +1 -0
- package/node_modules/shiki/dist/langs/mmd.mjs +1 -0
- package/node_modules/shiki/dist/langs/mojo.d.mts +1 -0
- package/node_modules/shiki/dist/langs/mojo.mjs +1 -0
- package/node_modules/shiki/dist/langs/moonbit.d.mts +1 -0
- package/node_modules/shiki/dist/langs/moonbit.mjs +1 -0
- package/node_modules/shiki/dist/langs/move.d.mts +1 -0
- package/node_modules/shiki/dist/langs/move.mjs +1 -0
- package/node_modules/shiki/dist/langs/mts.d.mts +1 -0
- package/node_modules/shiki/dist/langs/mts.mjs +1 -0
- package/node_modules/shiki/dist/langs/nar.d.mts +1 -0
- package/node_modules/shiki/dist/langs/nar.mjs +1 -0
- package/node_modules/shiki/dist/langs/narrat.d.mts +1 -0
- package/node_modules/shiki/dist/langs/narrat.mjs +1 -0
- package/node_modules/shiki/dist/langs/nextflow-groovy.d.mts +1 -0
- package/node_modules/shiki/dist/langs/nextflow-groovy.mjs +1 -0
- package/node_modules/shiki/dist/langs/nextflow.d.mts +1 -0
- package/node_modules/shiki/dist/langs/nextflow.mjs +1 -0
- package/node_modules/shiki/dist/langs/nf.d.mts +1 -0
- package/node_modules/shiki/dist/langs/nf.mjs +1 -0
- package/node_modules/shiki/dist/langs/nginx.d.mts +1 -0
- package/node_modules/shiki/dist/langs/nginx.mjs +1 -0
- package/node_modules/shiki/dist/langs/nim.d.mts +1 -0
- package/node_modules/shiki/dist/langs/nim.mjs +1 -0
- package/node_modules/shiki/dist/langs/nix.d.mts +1 -0
- package/node_modules/shiki/dist/langs/nix.mjs +1 -0
- package/node_modules/shiki/dist/langs/nsis.d.mts +1 -0
- package/node_modules/shiki/dist/langs/nsis.mjs +1 -0
- package/node_modules/shiki/dist/langs/nu.d.mts +1 -0
- package/node_modules/shiki/dist/langs/nu.mjs +1 -0
- package/node_modules/shiki/dist/langs/nushell.d.mts +1 -0
- package/node_modules/shiki/dist/langs/nushell.mjs +1 -0
- package/node_modules/shiki/dist/langs/objc.d.mts +1 -0
- package/node_modules/shiki/dist/langs/objc.mjs +1 -0
- package/node_modules/shiki/dist/langs/objective-c.d.mts +1 -0
- package/node_modules/shiki/dist/langs/objective-c.mjs +1 -0
- package/node_modules/shiki/dist/langs/objective-cpp.d.mts +1 -0
- package/node_modules/shiki/dist/langs/objective-cpp.mjs +1 -0
- package/node_modules/shiki/dist/langs/ocaml.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ocaml.mjs +1 -0
- package/node_modules/shiki/dist/langs/odin.d.mts +1 -0
- package/node_modules/shiki/dist/langs/odin.mjs +1 -0
- package/node_modules/shiki/dist/langs/openscad.d.mts +1 -0
- package/node_modules/shiki/dist/langs/openscad.mjs +1 -0
- package/node_modules/shiki/dist/langs/org.d.mts +1 -0
- package/node_modules/shiki/dist/langs/org.mjs +1 -0
- package/node_modules/shiki/dist/langs/pascal.d.mts +1 -0
- package/node_modules/shiki/dist/langs/pascal.mjs +1 -0
- package/node_modules/shiki/dist/langs/perl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/perl.mjs +1 -0
- package/node_modules/shiki/dist/langs/perl6.d.mts +1 -0
- package/node_modules/shiki/dist/langs/perl6.mjs +1 -0
- package/node_modules/shiki/dist/langs/php.d.mts +1 -0
- package/node_modules/shiki/dist/langs/php.mjs +1 -0
- package/node_modules/shiki/dist/langs/pkl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/pkl.mjs +1 -0
- package/node_modules/shiki/dist/langs/plsql.d.mts +1 -0
- package/node_modules/shiki/dist/langs/plsql.mjs +1 -0
- package/node_modules/shiki/dist/langs/po.d.mts +1 -0
- package/node_modules/shiki/dist/langs/po.mjs +1 -0
- package/node_modules/shiki/dist/langs/polar.d.mts +1 -0
- package/node_modules/shiki/dist/langs/polar.mjs +1 -0
- package/node_modules/shiki/dist/langs/postcss.d.mts +1 -0
- package/node_modules/shiki/dist/langs/postcss.mjs +1 -0
- package/node_modules/shiki/dist/langs/pot.d.mts +1 -0
- package/node_modules/shiki/dist/langs/pot.mjs +1 -0
- package/node_modules/shiki/dist/langs/potx.d.mts +1 -0
- package/node_modules/shiki/dist/langs/potx.mjs +1 -0
- package/node_modules/shiki/dist/langs/powerquery.d.mts +1 -0
- package/node_modules/shiki/dist/langs/powerquery.mjs +1 -0
- package/node_modules/shiki/dist/langs/powershell.d.mts +1 -0
- package/node_modules/shiki/dist/langs/powershell.mjs +1 -0
- package/node_modules/shiki/dist/langs/prisma.d.mts +1 -0
- package/node_modules/shiki/dist/langs/prisma.mjs +1 -0
- package/node_modules/shiki/dist/langs/prolog.d.mts +1 -0
- package/node_modules/shiki/dist/langs/prolog.mjs +1 -0
- package/node_modules/shiki/dist/langs/properties.d.mts +1 -0
- package/node_modules/shiki/dist/langs/properties.mjs +1 -0
- package/node_modules/shiki/dist/langs/proto.d.mts +1 -0
- package/node_modules/shiki/dist/langs/proto.mjs +1 -0
- package/node_modules/shiki/dist/langs/protobuf.d.mts +1 -0
- package/node_modules/shiki/dist/langs/protobuf.mjs +1 -0
- package/node_modules/shiki/dist/langs/ps.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ps.mjs +1 -0
- package/node_modules/shiki/dist/langs/ps1.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ps1.mjs +1 -0
- package/node_modules/shiki/dist/langs/pug.d.mts +1 -0
- package/node_modules/shiki/dist/langs/pug.mjs +1 -0
- package/node_modules/shiki/dist/langs/puppet.d.mts +1 -0
- package/node_modules/shiki/dist/langs/puppet.mjs +1 -0
- package/node_modules/shiki/dist/langs/purescript.d.mts +1 -0
- package/node_modules/shiki/dist/langs/purescript.mjs +1 -0
- package/node_modules/shiki/dist/langs/pwsh.d.mts +1 -0
- package/node_modules/shiki/dist/langs/pwsh.mjs +1 -0
- package/node_modules/shiki/dist/langs/py.d.mts +1 -0
- package/node_modules/shiki/dist/langs/py.mjs +1 -0
- package/node_modules/shiki/dist/langs/python.d.mts +1 -0
- package/node_modules/shiki/dist/langs/python.mjs +1 -0
- package/node_modules/shiki/dist/langs/ql.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ql.mjs +1 -0
- package/node_modules/shiki/dist/langs/qml.d.mts +1 -0
- package/node_modules/shiki/dist/langs/qml.mjs +1 -0
- package/node_modules/shiki/dist/langs/qmldir.d.mts +1 -0
- package/node_modules/shiki/dist/langs/qmldir.mjs +1 -0
- package/node_modules/shiki/dist/langs/qss.d.mts +1 -0
- package/node_modules/shiki/dist/langs/qss.mjs +1 -0
- package/node_modules/shiki/dist/langs/r.d.mts +1 -0
- package/node_modules/shiki/dist/langs/r.mjs +1 -0
- package/node_modules/shiki/dist/langs/racket.d.mts +1 -0
- package/node_modules/shiki/dist/langs/racket.mjs +1 -0
- package/node_modules/shiki/dist/langs/raku.d.mts +1 -0
- package/node_modules/shiki/dist/langs/raku.mjs +1 -0
- package/node_modules/shiki/dist/langs/razor.d.mts +1 -0
- package/node_modules/shiki/dist/langs/razor.mjs +1 -0
- package/node_modules/shiki/dist/langs/rb.d.mts +1 -0
- package/node_modules/shiki/dist/langs/rb.mjs +1 -0
- package/node_modules/shiki/dist/langs/rbs.d.mts +1 -0
- package/node_modules/shiki/dist/langs/rbs.mjs +1 -0
- package/node_modules/shiki/dist/langs/reg.d.mts +1 -0
- package/node_modules/shiki/dist/langs/reg.mjs +1 -0
- package/node_modules/shiki/dist/langs/regex.d.mts +1 -0
- package/node_modules/shiki/dist/langs/regex.mjs +1 -0
- package/node_modules/shiki/dist/langs/regexp.d.mts +1 -0
- package/node_modules/shiki/dist/langs/regexp.mjs +1 -0
- package/node_modules/shiki/dist/langs/rel.d.mts +1 -0
- package/node_modules/shiki/dist/langs/rel.mjs +1 -0
- package/node_modules/shiki/dist/langs/riscv.d.mts +1 -0
- package/node_modules/shiki/dist/langs/riscv.mjs +1 -0
- package/node_modules/shiki/dist/langs/ron.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ron.mjs +1 -0
- package/node_modules/shiki/dist/langs/rosmsg.d.mts +1 -0
- package/node_modules/shiki/dist/langs/rosmsg.mjs +1 -0
- package/node_modules/shiki/dist/langs/rs.d.mts +1 -0
- package/node_modules/shiki/dist/langs/rs.mjs +1 -0
- package/node_modules/shiki/dist/langs/rst.d.mts +1 -0
- package/node_modules/shiki/dist/langs/rst.mjs +1 -0
- package/node_modules/shiki/dist/langs/ruby-signature.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ruby-signature.mjs +1 -0
- package/node_modules/shiki/dist/langs/ruby.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ruby.mjs +1 -0
- package/node_modules/shiki/dist/langs/rust.d.mts +1 -0
- package/node_modules/shiki/dist/langs/rust.mjs +1 -0
- package/node_modules/shiki/dist/langs/sas.d.mts +1 -0
- package/node_modules/shiki/dist/langs/sas.mjs +1 -0
- package/node_modules/shiki/dist/langs/sass.d.mts +1 -0
- package/node_modules/shiki/dist/langs/sass.mjs +1 -0
- package/node_modules/shiki/dist/langs/scad.d.mts +1 -0
- package/node_modules/shiki/dist/langs/scad.mjs +1 -0
- package/node_modules/shiki/dist/langs/scala.d.mts +1 -0
- package/node_modules/shiki/dist/langs/scala.mjs +1 -0
- package/node_modules/shiki/dist/langs/scheme.d.mts +1 -0
- package/node_modules/shiki/dist/langs/scheme.mjs +1 -0
- package/node_modules/shiki/dist/langs/scss.d.mts +1 -0
- package/node_modules/shiki/dist/langs/scss.mjs +1 -0
- package/node_modules/shiki/dist/langs/sdbl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/sdbl.mjs +1 -0
- package/node_modules/shiki/dist/langs/sh.d.mts +1 -0
- package/node_modules/shiki/dist/langs/sh.mjs +1 -0
- package/node_modules/shiki/dist/langs/shader.d.mts +1 -0
- package/node_modules/shiki/dist/langs/shader.mjs +1 -0
- package/node_modules/shiki/dist/langs/shaderlab.d.mts +1 -0
- package/node_modules/shiki/dist/langs/shaderlab.mjs +1 -0
- package/node_modules/shiki/dist/langs/shell.d.mts +1 -0
- package/node_modules/shiki/dist/langs/shell.mjs +1 -0
- package/node_modules/shiki/dist/langs/shellscript.d.mts +1 -0
- package/node_modules/shiki/dist/langs/shellscript.mjs +1 -0
- package/node_modules/shiki/dist/langs/shellsession.d.mts +1 -0
- package/node_modules/shiki/dist/langs/shellsession.mjs +1 -0
- package/node_modules/shiki/dist/langs/smalltalk.d.mts +1 -0
- package/node_modules/shiki/dist/langs/smalltalk.mjs +1 -0
- package/node_modules/shiki/dist/langs/smithy.d.mts +1 -0
- package/node_modules/shiki/dist/langs/smithy.mjs +1 -0
- package/node_modules/shiki/dist/langs/solidity.d.mts +1 -0
- package/node_modules/shiki/dist/langs/solidity.mjs +1 -0
- package/node_modules/shiki/dist/langs/soy.d.mts +1 -0
- package/node_modules/shiki/dist/langs/soy.mjs +1 -0
- package/node_modules/shiki/dist/langs/sparql.d.mts +1 -0
- package/node_modules/shiki/dist/langs/sparql.mjs +1 -0
- package/node_modules/shiki/dist/langs/spl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/spl.mjs +1 -0
- package/node_modules/shiki/dist/langs/splunk.d.mts +1 -0
- package/node_modules/shiki/dist/langs/splunk.mjs +1 -0
- package/node_modules/shiki/dist/langs/sql.d.mts +1 -0
- package/node_modules/shiki/dist/langs/sql.mjs +1 -0
- package/node_modules/shiki/dist/langs/ssh-config.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ssh-config.mjs +1 -0
- package/node_modules/shiki/dist/langs/stata.d.mts +1 -0
- package/node_modules/shiki/dist/langs/stata.mjs +1 -0
- package/node_modules/shiki/dist/langs/styl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/styl.mjs +1 -0
- package/node_modules/shiki/dist/langs/stylus.d.mts +1 -0
- package/node_modules/shiki/dist/langs/stylus.mjs +1 -0
- package/node_modules/shiki/dist/langs/surql.d.mts +1 -0
- package/node_modules/shiki/dist/langs/surql.mjs +1 -0
- package/node_modules/shiki/dist/langs/surrealql.d.mts +1 -0
- package/node_modules/shiki/dist/langs/surrealql.mjs +1 -0
- package/node_modules/shiki/dist/langs/svelte.d.mts +1 -0
- package/node_modules/shiki/dist/langs/svelte.mjs +1 -0
- package/node_modules/shiki/dist/langs/swift.d.mts +1 -0
- package/node_modules/shiki/dist/langs/swift.mjs +1 -0
- package/node_modules/shiki/dist/langs/system-verilog.d.mts +1 -0
- package/node_modules/shiki/dist/langs/system-verilog.mjs +1 -0
- package/node_modules/shiki/dist/langs/systemd.d.mts +1 -0
- package/node_modules/shiki/dist/langs/systemd.mjs +1 -0
- package/node_modules/shiki/dist/langs/talon.d.mts +1 -0
- package/node_modules/shiki/dist/langs/talon.mjs +1 -0
- package/node_modules/shiki/dist/langs/talonscript.d.mts +1 -0
- package/node_modules/shiki/dist/langs/talonscript.mjs +1 -0
- package/node_modules/shiki/dist/langs/tasl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/tasl.mjs +1 -0
- package/node_modules/shiki/dist/langs/tcl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/tcl.mjs +1 -0
- package/node_modules/shiki/dist/langs/templ.d.mts +1 -0
- package/node_modules/shiki/dist/langs/templ.mjs +1 -0
- package/node_modules/shiki/dist/langs/terraform.d.mts +1 -0
- package/node_modules/shiki/dist/langs/terraform.mjs +1 -0
- package/node_modules/shiki/dist/langs/tex.d.mts +1 -0
- package/node_modules/shiki/dist/langs/tex.mjs +1 -0
- package/node_modules/shiki/dist/langs/tf.d.mts +1 -0
- package/node_modules/shiki/dist/langs/tf.mjs +1 -0
- package/node_modules/shiki/dist/langs/tfvars.d.mts +1 -0
- package/node_modules/shiki/dist/langs/tfvars.mjs +1 -0
- package/node_modules/shiki/dist/langs/toml.d.mts +1 -0
- package/node_modules/shiki/dist/langs/toml.mjs +1 -0
- package/node_modules/shiki/dist/langs/tres.d.mts +1 -0
- package/node_modules/shiki/dist/langs/tres.mjs +1 -0
- package/node_modules/shiki/dist/langs/ts-tags.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ts-tags.mjs +1 -0
- package/node_modules/shiki/dist/langs/ts.d.mts +1 -0
- package/node_modules/shiki/dist/langs/ts.mjs +1 -0
- package/node_modules/shiki/dist/langs/tscn.d.mts +1 -0
- package/node_modules/shiki/dist/langs/tscn.mjs +1 -0
- package/node_modules/shiki/dist/langs/tsp.d.mts +1 -0
- package/node_modules/shiki/dist/langs/tsp.mjs +1 -0
- package/node_modules/shiki/dist/langs/tsv.d.mts +1 -0
- package/node_modules/shiki/dist/langs/tsv.mjs +1 -0
- package/node_modules/shiki/dist/langs/tsx.d.mts +1 -0
- package/node_modules/shiki/dist/langs/tsx.mjs +1 -0
- package/node_modules/shiki/dist/langs/turtle.d.mts +1 -0
- package/node_modules/shiki/dist/langs/turtle.mjs +1 -0
- package/node_modules/shiki/dist/langs/twig.d.mts +1 -0
- package/node_modules/shiki/dist/langs/twig.mjs +1 -0
- package/node_modules/shiki/dist/langs/typ.d.mts +1 -0
- package/node_modules/shiki/dist/langs/typ.mjs +1 -0
- package/node_modules/shiki/dist/langs/typescript.d.mts +1 -0
- package/node_modules/shiki/dist/langs/typescript.mjs +1 -0
- package/node_modules/shiki/dist/langs/typespec.d.mts +1 -0
- package/node_modules/shiki/dist/langs/typespec.mjs +1 -0
- package/node_modules/shiki/dist/langs/typst.d.mts +1 -0
- package/node_modules/shiki/dist/langs/typst.mjs +1 -0
- package/node_modules/shiki/dist/langs/v.d.mts +1 -0
- package/node_modules/shiki/dist/langs/v.mjs +1 -0
- package/node_modules/shiki/dist/langs/vala.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vala.mjs +1 -0
- package/node_modules/shiki/dist/langs/vb.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vb.mjs +1 -0
- package/node_modules/shiki/dist/langs/verilog.d.mts +1 -0
- package/node_modules/shiki/dist/langs/verilog.mjs +1 -0
- package/node_modules/shiki/dist/langs/vhdl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vhdl.mjs +1 -0
- package/node_modules/shiki/dist/langs/vim.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vim.mjs +1 -0
- package/node_modules/shiki/dist/langs/viml.d.mts +1 -0
- package/node_modules/shiki/dist/langs/viml.mjs +1 -0
- package/node_modules/shiki/dist/langs/vimscript.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vimscript.mjs +1 -0
- package/node_modules/shiki/dist/langs/vue-directives.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vue-directives.mjs +1 -0
- package/node_modules/shiki/dist/langs/vue-html.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vue-html.mjs +1 -0
- package/node_modules/shiki/dist/langs/vue-interpolations.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vue-interpolations.mjs +1 -0
- package/node_modules/shiki/dist/langs/vue-sfc-style-variable-injection.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vue-sfc-style-variable-injection.mjs +1 -0
- package/node_modules/shiki/dist/langs/vue-vine.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vue-vine.mjs +1 -0
- package/node_modules/shiki/dist/langs/vue.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vue.mjs +1 -0
- package/node_modules/shiki/dist/langs/vy.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vy.mjs +1 -0
- package/node_modules/shiki/dist/langs/vyper.d.mts +1 -0
- package/node_modules/shiki/dist/langs/vyper.mjs +1 -0
- package/node_modules/shiki/dist/langs/wasm.d.mts +1 -0
- package/node_modules/shiki/dist/langs/wasm.mjs +1 -0
- package/node_modules/shiki/dist/langs/wenyan.d.mts +1 -0
- package/node_modules/shiki/dist/langs/wenyan.mjs +1 -0
- package/node_modules/shiki/dist/langs/wgsl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/wgsl.mjs +1 -0
- package/node_modules/shiki/dist/langs/wiki.d.mts +1 -0
- package/node_modules/shiki/dist/langs/wiki.mjs +1 -0
- package/node_modules/shiki/dist/langs/wikitext.d.mts +1 -0
- package/node_modules/shiki/dist/langs/wikitext.mjs +1 -0
- package/node_modules/shiki/dist/langs/wit.d.mts +1 -0
- package/node_modules/shiki/dist/langs/wit.mjs +1 -0
- package/node_modules/shiki/dist/langs/wl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/wl.mjs +1 -0
- package/node_modules/shiki/dist/langs/wolfram.d.mts +1 -0
- package/node_modules/shiki/dist/langs/wolfram.mjs +1 -0
- package/node_modules/shiki/dist/langs/xml.d.mts +1 -0
- package/node_modules/shiki/dist/langs/xml.mjs +1 -0
- package/node_modules/shiki/dist/langs/xsl.d.mts +1 -0
- package/node_modules/shiki/dist/langs/xsl.mjs +1 -0
- package/node_modules/shiki/dist/langs/yaml.d.mts +1 -0
- package/node_modules/shiki/dist/langs/yaml.mjs +1 -0
- package/node_modules/shiki/dist/langs/yml.d.mts +1 -0
- package/node_modules/shiki/dist/langs/yml.mjs +1 -0
- package/node_modules/shiki/dist/langs/zenscript.d.mts +1 -0
- package/node_modules/shiki/dist/langs/zenscript.mjs +1 -0
- package/node_modules/shiki/dist/langs/zig.d.mts +1 -0
- package/node_modules/shiki/dist/langs/zig.mjs +1 -0
- package/node_modules/shiki/dist/langs/zsh.d.mts +1 -0
- package/node_modules/shiki/dist/langs/zsh.mjs +1 -0
- package/node_modules/shiki/dist/langs-B38xGbib.d.mts +1 -0
- package/node_modules/shiki/dist/langs-bundle-full-B4n9xYHw.d.mts +13 -0
- package/node_modules/shiki/dist/langs-bundle-full-xQVO1Cek.mjs +1326 -0
- package/node_modules/shiki/dist/langs.d.mts +3 -0
- package/node_modules/shiki/dist/langs.mjs +2 -0
- package/node_modules/shiki/dist/onig.d.mts +1 -0
- package/node_modules/shiki/dist/onig.wasm +0 -0
- package/node_modules/shiki/dist/rolldown-runtime-BBjsoOtd.mjs +27 -0
- package/node_modules/shiki/dist/textmate.d.mts +1 -0
- package/node_modules/shiki/dist/textmate.mjs +2 -0
- package/node_modules/shiki/dist/themes/andromeeda.d.mts +1 -0
- package/node_modules/shiki/dist/themes/andromeeda.mjs +1 -0
- package/node_modules/shiki/dist/themes/aurora-x.d.mts +1 -0
- package/node_modules/shiki/dist/themes/aurora-x.mjs +1 -0
- package/node_modules/shiki/dist/themes/ayu-dark.d.mts +1 -0
- package/node_modules/shiki/dist/themes/ayu-dark.mjs +1 -0
- package/node_modules/shiki/dist/themes/ayu-light.d.mts +1 -0
- package/node_modules/shiki/dist/themes/ayu-light.mjs +1 -0
- package/node_modules/shiki/dist/themes/ayu-mirage.d.mts +1 -0
- package/node_modules/shiki/dist/themes/ayu-mirage.mjs +1 -0
- package/node_modules/shiki/dist/themes/catppuccin-frappe.d.mts +1 -0
- package/node_modules/shiki/dist/themes/catppuccin-frappe.mjs +1 -0
- package/node_modules/shiki/dist/themes/catppuccin-latte.d.mts +1 -0
- package/node_modules/shiki/dist/themes/catppuccin-latte.mjs +1 -0
- package/node_modules/shiki/dist/themes/catppuccin-macchiato.d.mts +1 -0
- package/node_modules/shiki/dist/themes/catppuccin-macchiato.mjs +1 -0
- package/node_modules/shiki/dist/themes/catppuccin-mocha.d.mts +1 -0
- package/node_modules/shiki/dist/themes/catppuccin-mocha.mjs +1 -0
- package/node_modules/shiki/dist/themes/dark-plus.d.mts +1 -0
- package/node_modules/shiki/dist/themes/dark-plus.mjs +1 -0
- package/node_modules/shiki/dist/themes/dracula-soft.d.mts +1 -0
- package/node_modules/shiki/dist/themes/dracula-soft.mjs +1 -0
- package/node_modules/shiki/dist/themes/dracula.d.mts +1 -0
- package/node_modules/shiki/dist/themes/dracula.mjs +1 -0
- package/node_modules/shiki/dist/themes/everforest-dark.d.mts +1 -0
- package/node_modules/shiki/dist/themes/everforest-dark.mjs +1 -0
- package/node_modules/shiki/dist/themes/everforest-light.d.mts +1 -0
- package/node_modules/shiki/dist/themes/everforest-light.mjs +1 -0
- package/node_modules/shiki/dist/themes/github-dark-default.d.mts +1 -0
- package/node_modules/shiki/dist/themes/github-dark-default.mjs +1 -0
- package/node_modules/shiki/dist/themes/github-dark-dimmed.d.mts +1 -0
- package/node_modules/shiki/dist/themes/github-dark-dimmed.mjs +1 -0
- package/node_modules/shiki/dist/themes/github-dark-high-contrast.d.mts +1 -0
- package/node_modules/shiki/dist/themes/github-dark-high-contrast.mjs +1 -0
- package/node_modules/shiki/dist/themes/github-dark.d.mts +1 -0
- package/node_modules/shiki/dist/themes/github-dark.mjs +1 -0
- package/node_modules/shiki/dist/themes/github-light-default.d.mts +1 -0
- package/node_modules/shiki/dist/themes/github-light-default.mjs +1 -0
- package/node_modules/shiki/dist/themes/github-light-high-contrast.d.mts +1 -0
- package/node_modules/shiki/dist/themes/github-light-high-contrast.mjs +1 -0
- package/node_modules/shiki/dist/themes/github-light.d.mts +1 -0
- package/node_modules/shiki/dist/themes/github-light.mjs +1 -0
- package/node_modules/shiki/dist/themes/gruvbox-dark-hard.d.mts +1 -0
- package/node_modules/shiki/dist/themes/gruvbox-dark-hard.mjs +1 -0
- package/node_modules/shiki/dist/themes/gruvbox-dark-medium.d.mts +1 -0
- package/node_modules/shiki/dist/themes/gruvbox-dark-medium.mjs +1 -0
- package/node_modules/shiki/dist/themes/gruvbox-dark-soft.d.mts +1 -0
- package/node_modules/shiki/dist/themes/gruvbox-dark-soft.mjs +1 -0
- package/node_modules/shiki/dist/themes/gruvbox-light-hard.d.mts +1 -0
- package/node_modules/shiki/dist/themes/gruvbox-light-hard.mjs +1 -0
- package/node_modules/shiki/dist/themes/gruvbox-light-medium.d.mts +1 -0
- package/node_modules/shiki/dist/themes/gruvbox-light-medium.mjs +1 -0
- package/node_modules/shiki/dist/themes/gruvbox-light-soft.d.mts +1 -0
- package/node_modules/shiki/dist/themes/gruvbox-light-soft.mjs +1 -0
- package/node_modules/shiki/dist/themes/horizon-bright.d.mts +1 -0
- package/node_modules/shiki/dist/themes/horizon-bright.mjs +1 -0
- package/node_modules/shiki/dist/themes/horizon.d.mts +1 -0
- package/node_modules/shiki/dist/themes/horizon.mjs +1 -0
- package/node_modules/shiki/dist/themes/houston.d.mts +1 -0
- package/node_modules/shiki/dist/themes/houston.mjs +1 -0
- package/node_modules/shiki/dist/themes/kanagawa-dragon.d.mts +1 -0
- package/node_modules/shiki/dist/themes/kanagawa-dragon.mjs +1 -0
- package/node_modules/shiki/dist/themes/kanagawa-lotus.d.mts +1 -0
- package/node_modules/shiki/dist/themes/kanagawa-lotus.mjs +1 -0
- package/node_modules/shiki/dist/themes/kanagawa-wave.d.mts +1 -0
- package/node_modules/shiki/dist/themes/kanagawa-wave.mjs +1 -0
- package/node_modules/shiki/dist/themes/laserwave.d.mts +1 -0
- package/node_modules/shiki/dist/themes/laserwave.mjs +1 -0
- package/node_modules/shiki/dist/themes/light-plus.d.mts +1 -0
- package/node_modules/shiki/dist/themes/light-plus.mjs +1 -0
- package/node_modules/shiki/dist/themes/material-theme-darker.d.mts +1 -0
- package/node_modules/shiki/dist/themes/material-theme-darker.mjs +1 -0
- package/node_modules/shiki/dist/themes/material-theme-lighter.d.mts +1 -0
- package/node_modules/shiki/dist/themes/material-theme-lighter.mjs +1 -0
- package/node_modules/shiki/dist/themes/material-theme-ocean.d.mts +1 -0
- package/node_modules/shiki/dist/themes/material-theme-ocean.mjs +1 -0
- package/node_modules/shiki/dist/themes/material-theme-palenight.d.mts +1 -0
- package/node_modules/shiki/dist/themes/material-theme-palenight.mjs +1 -0
- package/node_modules/shiki/dist/themes/material-theme.d.mts +1 -0
- package/node_modules/shiki/dist/themes/material-theme.mjs +1 -0
- package/node_modules/shiki/dist/themes/min-dark.d.mts +1 -0
- package/node_modules/shiki/dist/themes/min-dark.mjs +1 -0
- package/node_modules/shiki/dist/themes/min-light.d.mts +1 -0
- package/node_modules/shiki/dist/themes/min-light.mjs +1 -0
- package/node_modules/shiki/dist/themes/monokai.d.mts +1 -0
- package/node_modules/shiki/dist/themes/monokai.mjs +1 -0
- package/node_modules/shiki/dist/themes/night-owl-light.d.mts +1 -0
- package/node_modules/shiki/dist/themes/night-owl-light.mjs +1 -0
- package/node_modules/shiki/dist/themes/night-owl.d.mts +1 -0
- package/node_modules/shiki/dist/themes/night-owl.mjs +1 -0
- package/node_modules/shiki/dist/themes/nord.d.mts +1 -0
- package/node_modules/shiki/dist/themes/nord.mjs +1 -0
- package/node_modules/shiki/dist/themes/one-dark-pro.d.mts +1 -0
- package/node_modules/shiki/dist/themes/one-dark-pro.mjs +1 -0
- package/node_modules/shiki/dist/themes/one-light.d.mts +1 -0
- package/node_modules/shiki/dist/themes/one-light.mjs +1 -0
- package/node_modules/shiki/dist/themes/plastic.d.mts +1 -0
- package/node_modules/shiki/dist/themes/plastic.mjs +1 -0
- package/node_modules/shiki/dist/themes/poimandres.d.mts +1 -0
- package/node_modules/shiki/dist/themes/poimandres.mjs +1 -0
- package/node_modules/shiki/dist/themes/red.d.mts +1 -0
- package/node_modules/shiki/dist/themes/red.mjs +1 -0
- package/node_modules/shiki/dist/themes/rose-pine-dawn.d.mts +1 -0
- package/node_modules/shiki/dist/themes/rose-pine-dawn.mjs +1 -0
- package/node_modules/shiki/dist/themes/rose-pine-moon.d.mts +1 -0
- package/node_modules/shiki/dist/themes/rose-pine-moon.mjs +1 -0
- package/node_modules/shiki/dist/themes/rose-pine.d.mts +1 -0
- package/node_modules/shiki/dist/themes/rose-pine.mjs +1 -0
- package/node_modules/shiki/dist/themes/slack-dark.d.mts +1 -0
- package/node_modules/shiki/dist/themes/slack-dark.mjs +1 -0
- package/node_modules/shiki/dist/themes/slack-ochin.d.mts +1 -0
- package/node_modules/shiki/dist/themes/slack-ochin.mjs +1 -0
- package/node_modules/shiki/dist/themes/snazzy-light.d.mts +1 -0
- package/node_modules/shiki/dist/themes/snazzy-light.mjs +1 -0
- package/node_modules/shiki/dist/themes/solarized-dark.d.mts +1 -0
- package/node_modules/shiki/dist/themes/solarized-dark.mjs +1 -0
- package/node_modules/shiki/dist/themes/solarized-light.d.mts +1 -0
- package/node_modules/shiki/dist/themes/solarized-light.mjs +1 -0
- package/node_modules/shiki/dist/themes/synthwave-84.d.mts +1 -0
- package/node_modules/shiki/dist/themes/synthwave-84.mjs +1 -0
- package/node_modules/shiki/dist/themes/tokyo-night.d.mts +1 -0
- package/node_modules/shiki/dist/themes/tokyo-night.mjs +1 -0
- package/node_modules/shiki/dist/themes/vesper.d.mts +1 -0
- package/node_modules/shiki/dist/themes/vesper.mjs +1 -0
- package/node_modules/shiki/dist/themes/vitesse-black.d.mts +1 -0
- package/node_modules/shiki/dist/themes/vitesse-black.mjs +1 -0
- package/node_modules/shiki/dist/themes/vitesse-dark.d.mts +1 -0
- package/node_modules/shiki/dist/themes/vitesse-dark.mjs +1 -0
- package/node_modules/shiki/dist/themes/vitesse-light.d.mts +1 -0
- package/node_modules/shiki/dist/themes/vitesse-light.mjs +1 -0
- package/node_modules/shiki/dist/themes-BKdFAJ1v.d.mts +7 -0
- package/node_modules/shiki/dist/themes.d.mts +2 -0
- package/node_modules/shiki/dist/themes.mjs +396 -0
- package/node_modules/shiki/dist/types.d.mts +9 -0
- package/node_modules/shiki/dist/types.mjs +1 -0
- package/node_modules/shiki/dist/wasm.d.mts +3 -0
- package/node_modules/shiki/dist/wasm.mjs +3 -0
- package/node_modules/shiki/package.json +73 -0
- package/node_modules/smol-toml/LICENSE +24 -0
- package/node_modules/smol-toml/README.md +418 -0
- package/node_modules/smol-toml/dist/date.d.ts +41 -0
- package/node_modules/smol-toml/dist/date.js +127 -0
- package/node_modules/smol-toml/dist/error.d.ts +38 -0
- package/node_modules/smol-toml/dist/error.js +63 -0
- package/node_modules/smol-toml/dist/extract.js +69 -0
- package/node_modules/smol-toml/dist/index.cjs +734 -0
- package/node_modules/smol-toml/dist/index.d.ts +43 -0
- package/node_modules/smol-toml/dist/index.js +33 -0
- package/node_modules/smol-toml/dist/parse.d.ts +36 -0
- package/node_modules/smol-toml/dist/parse.js +149 -0
- package/node_modules/smol-toml/dist/primitive.js +238 -0
- package/node_modules/smol-toml/dist/stringify.d.ts +31 -0
- package/node_modules/smol-toml/dist/stringify.js +181 -0
- package/node_modules/smol-toml/dist/struct.js +179 -0
- package/node_modules/smol-toml/dist/util.d.ts +38 -0
- package/node_modules/smol-toml/dist/util.js +89 -0
- package/node_modules/smol-toml/package.json +68 -0
- package/node_modules/space-separated-tokens/index.d.ts +18 -0
- package/node_modules/space-separated-tokens/index.js +24 -0
- package/node_modules/space-separated-tokens/license +22 -0
- package/node_modules/space-separated-tokens/package.json +67 -0
- package/node_modules/space-separated-tokens/readme.md +156 -0
- package/node_modules/stringify-entities/index.d.ts +3 -0
- package/node_modules/stringify-entities/index.js +6 -0
- package/node_modules/stringify-entities/lib/constant/dangerous.d.ts +7 -0
- package/node_modules/stringify-entities/lib/constant/dangerous.js +16 -0
- package/node_modules/stringify-entities/lib/core.d.ts +26 -0
- package/node_modules/stringify-entities/lib/core.js +117 -0
- package/node_modules/stringify-entities/lib/index.d.ts +24 -0
- package/node_modules/stringify-entities/lib/index.js +36 -0
- package/node_modules/stringify-entities/lib/util/format-basic.d.ts +7 -0
- package/node_modules/stringify-entities/lib/util/format-basic.js +9 -0
- package/node_modules/stringify-entities/lib/util/format-smart.d.ts +32 -0
- package/node_modules/stringify-entities/lib/util/format-smart.js +69 -0
- package/node_modules/stringify-entities/lib/util/to-decimal.d.ts +9 -0
- package/node_modules/stringify-entities/lib/util/to-decimal.js +16 -0
- package/node_modules/stringify-entities/lib/util/to-hexadecimal.d.ts +9 -0
- package/node_modules/stringify-entities/lib/util/to-hexadecimal.js +16 -0
- package/node_modules/stringify-entities/lib/util/to-named.d.ts +10 -0
- package/node_modules/stringify-entities/lib/util/to-named.js +57 -0
- package/node_modules/stringify-entities/license +22 -0
- package/node_modules/stringify-entities/package.json +86 -0
- package/node_modules/stringify-entities/readme.md +233 -0
- package/node_modules/trim-lines/index.d.ts +10 -0
- package/node_modules/trim-lines/index.js +69 -0
- package/node_modules/trim-lines/license +22 -0
- package/node_modules/trim-lines/package.json +67 -0
- package/node_modules/trim-lines/readme.md +125 -0
- package/node_modules/typebox/build/compile/code.d.mts +12 -0
- package/node_modules/typebox/build/compile/code.mjs +65 -0
- package/node_modules/typebox/build/compile/compile.d.mts +6 -0
- package/node_modules/typebox/build/compile/compile.mjs +12 -0
- package/node_modules/typebox/build/compile/index.d.mts +8 -0
- package/node_modules/typebox/build/compile/index.mjs +14 -0
- package/node_modules/typebox/build/compile/validator.d.mts +35 -0
- package/node_modules/typebox/build/compile/validator.mjs +91 -0
- package/node_modules/typebox/build/error/errors.d.mts +208 -0
- package/node_modules/typebox/build/error/errors.mjs +18 -0
- package/node_modules/typebox/build/error/index.d.mts +1 -0
- package/node_modules/typebox/build/error/index.mjs +1 -0
- package/node_modules/typebox/build/format/_registry.d.mts +15 -0
- package/node_modules/typebox/build/format/_registry.mjs +96 -0
- package/node_modules/typebox/build/format/date.d.mts +6 -0
- package/node_modules/typebox/build/format/date.mjs +19 -0
- package/node_modules/typebox/build/format/date_time.d.mts +6 -0
- package/node_modules/typebox/build/format/date_time.mjs +11 -0
- package/node_modules/typebox/build/format/duration.d.mts +5 -0
- package/node_modules/typebox/build/format/duration.mjs +8 -0
- package/node_modules/typebox/build/format/email.d.mts +5 -0
- package/node_modules/typebox/build/format/email.mjs +8 -0
- package/node_modules/typebox/build/format/format.d.mts +22 -0
- package/node_modules/typebox/build/format/format.mjs +22 -0
- package/node_modules/typebox/build/format/hostname.d.mts +7 -0
- package/node_modules/typebox/build/format/hostname.mjs +10 -0
- package/node_modules/typebox/build/format/idn_email.d.mts +5 -0
- package/node_modules/typebox/build/format/idn_email.mjs +8 -0
- package/node_modules/typebox/build/format/idn_hostname.d.mts +8 -0
- package/node_modules/typebox/build/format/idn_hostname.mjs +11 -0
- package/node_modules/typebox/build/format/idna/format/bidi.d.mts +3 -0
- package/node_modules/typebox/build/format/idna/format/bidi.mjs +98 -0
- package/node_modules/typebox/build/format/idna/format/puny.d.mts +3 -0
- package/node_modules/typebox/build/format/idna/format/puny.mjs +144 -0
- package/node_modules/typebox/build/format/idna/hostname.d.mts +1 -0
- package/node_modules/typebox/build/format/idna/hostname.mjs +16 -0
- package/node_modules/typebox/build/format/idna/idn-hostname.d.mts +1 -0
- package/node_modules/typebox/build/format/idna/idn-hostname.mjs +23 -0
- package/node_modules/typebox/build/format/idna/index.d.mts +2 -0
- package/node_modules/typebox/build/format/idna/index.mjs +2 -0
- package/node_modules/typebox/build/format/idna/label/ascii.d.mts +1 -0
- package/node_modules/typebox/build/format/idna/label/ascii.mjs +9 -0
- package/node_modules/typebox/build/format/idna/label/puny.d.mts +1 -0
- package/node_modules/typebox/build/format/idna/label/puny.mjs +28 -0
- package/node_modules/typebox/build/format/idna/label/unicode.d.mts +1 -0
- package/node_modules/typebox/build/format/idna/label/unicode.mjs +106 -0
- package/node_modules/typebox/build/format/idna/pattern/pattern.d.mts +30 -0
- package/node_modules/typebox/build/format/idna/pattern/pattern.mjs +70 -0
- package/node_modules/typebox/build/format/index.d.mts +4 -0
- package/node_modules/typebox/build/format/index.mjs +4 -0
- package/node_modules/typebox/build/format/ipv4.d.mts +5 -0
- package/node_modules/typebox/build/format/ipv4.mjs +8 -0
- package/node_modules/typebox/build/format/ipv6.d.mts +5 -0
- package/node_modules/typebox/build/format/ipv6.mjs +8 -0
- package/node_modules/typebox/build/format/iri.d.mts +5 -0
- package/node_modules/typebox/build/format/iri.mjs +31 -0
- package/node_modules/typebox/build/format/iri_reference.d.mts +5 -0
- package/node_modules/typebox/build/format/iri_reference.mjs +14 -0
- package/node_modules/typebox/build/format/json_pointer.d.mts +6 -0
- package/node_modules/typebox/build/format/json_pointer.mjs +9 -0
- package/node_modules/typebox/build/format/json_pointer_uri_fragment.d.mts +6 -0
- package/node_modules/typebox/build/format/json_pointer_uri_fragment.mjs +9 -0
- package/node_modules/typebox/build/format/regex.d.mts +5 -0
- package/node_modules/typebox/build/format/regex.mjs +13 -0
- package/node_modules/typebox/build/format/relative_json_pointer.d.mts +6 -0
- package/node_modules/typebox/build/format/relative_json_pointer.mjs +9 -0
- package/node_modules/typebox/build/format/time.d.mts +5 -0
- package/node_modules/typebox/build/format/time.mjs +32 -0
- package/node_modules/typebox/build/format/uri.d.mts +5 -0
- package/node_modules/typebox/build/format/uri.mjs +8 -0
- package/node_modules/typebox/build/format/uri_reference.d.mts +5 -0
- package/node_modules/typebox/build/format/uri_reference.mjs +8 -0
- package/node_modules/typebox/build/format/uri_template.d.mts +5 -0
- package/node_modules/typebox/build/format/uri_template.mjs +9 -0
- package/node_modules/typebox/build/format/url.d.mts +6 -0
- package/node_modules/typebox/build/format/url.mjs +8 -0
- package/node_modules/typebox/build/format/uuid.d.mts +6 -0
- package/node_modules/typebox/build/format/uuid.mjs +9 -0
- package/node_modules/typebox/build/guard/emit.d.mts +56 -0
- package/node_modules/typebox/build/guard/emit.mjs +193 -0
- package/node_modules/typebox/build/guard/globals.d.mts +35 -0
- package/node_modules/typebox/build/guard/globals.mjs +90 -0
- package/node_modules/typebox/build/guard/guard.d.mts +71 -0
- package/node_modules/typebox/build/guard/guard.mjs +233 -0
- package/node_modules/typebox/build/guard/index.d.mts +6 -0
- package/node_modules/typebox/build/guard/index.mjs +6 -0
- package/node_modules/typebox/build/guard/native.d.mts +20 -0
- package/node_modules/typebox/build/guard/native.mjs +60 -0
- package/node_modules/typebox/build/guard/string.d.mts +6 -0
- package/node_modules/typebox/build/guard/string.mjs +176 -0
- package/node_modules/typebox/build/index.d.mts +8 -0
- package/node_modules/typebox/build/index.mjs +14 -0
- package/node_modules/typebox/build/schema/build.d.mts +39 -0
- package/node_modules/typebox/build/schema/build.mjs +118 -0
- package/node_modules/typebox/build/schema/check.d.mts +6 -0
- package/node_modules/typebox/build/schema/check.mjs +14 -0
- package/node_modules/typebox/build/schema/compile.d.mts +22 -0
- package/node_modules/typebox/build/schema/compile.mjs +46 -0
- package/node_modules/typebox/build/schema/engine/_context.d.mts +35 -0
- package/node_modules/typebox/build/schema/engine/_context.mjs +129 -0
- package/node_modules/typebox/build/schema/engine/_exact_optional.d.mts +3 -0
- package/node_modules/typebox/build/schema/engine/_exact_optional.mjs +20 -0
- package/node_modules/typebox/build/schema/engine/_externals.d.mts +7 -0
- package/node_modules/typebox/build/schema/engine/_externals.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/_functions.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/_functions.mjs +65 -0
- package/node_modules/typebox/build/schema/engine/_reducer.d.mts +4 -0
- package/node_modules/typebox/build/schema/engine/_reducer.mjs +45 -0
- package/node_modules/typebox/build/schema/engine/_refine.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/_refine.mjs +29 -0
- package/node_modules/typebox/build/schema/engine/_regexp.d.mts +2 -0
- package/node_modules/typebox/build/schema/engine/_regexp.mjs +4 -0
- package/node_modules/typebox/build/schema/engine/_stack.d.mts +18 -0
- package/node_modules/typebox/build/schema/engine/_stack.mjs +107 -0
- package/node_modules/typebox/build/schema/engine/_unique.d.mts +2 -0
- package/node_modules/typebox/build/schema/engine/_unique.mjs +5 -0
- package/node_modules/typebox/build/schema/engine/additionalItems.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/additionalItems.mjs +60 -0
- package/node_modules/typebox/build/schema/engine/additionalProperties.d.mts +9 -0
- package/node_modules/typebox/build/schema/engine/additionalProperties.mjs +111 -0
- package/node_modules/typebox/build/schema/engine/allOf.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/allOf.mjs +47 -0
- package/node_modules/typebox/build/schema/engine/anyOf.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/anyOf.mjs +52 -0
- package/node_modules/typebox/build/schema/engine/boolean.d.mts +5 -0
- package/node_modules/typebox/build/schema/engine/boolean.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/const.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/const.mjs +30 -0
- package/node_modules/typebox/build/schema/engine/contains.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/contains.mjs +54 -0
- package/node_modules/typebox/build/schema/engine/dependencies.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/dependencies.mjs +45 -0
- package/node_modules/typebox/build/schema/engine/dependentRequired.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/dependentRequired.mjs +40 -0
- package/node_modules/typebox/build/schema/engine/dependentSchemas.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/dependentSchemas.mjs +38 -0
- package/node_modules/typebox/build/schema/engine/dynamicRef.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/dynamicRef.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/enum.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/enum.mjs +33 -0
- package/node_modules/typebox/build/schema/engine/exclusiveMaximum.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/exclusiveMaximum.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/exclusiveMinimum.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/exclusiveMinimum.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/format.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/format.mjs +26 -0
- package/node_modules/typebox/build/schema/engine/if.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/if.mjs +47 -0
- package/node_modules/typebox/build/schema/engine/index.d.mts +48 -0
- package/node_modules/typebox/build/schema/engine/index.mjs +54 -0
- package/node_modules/typebox/build/schema/engine/items.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/items.mjs +88 -0
- package/node_modules/typebox/build/schema/engine/maxContains.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/maxContains.mjs +42 -0
- package/node_modules/typebox/build/schema/engine/maxItems.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/maxItems.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/maxLength.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/maxLength.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/maxProperties.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/maxProperties.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/maximum.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/maximum.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/minContains.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/minContains.mjs +51 -0
- package/node_modules/typebox/build/schema/engine/minItems.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/minItems.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/minLength.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/minLength.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/minProperties.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/minProperties.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/minimum.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/minimum.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/multipleOf.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/multipleOf.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/not.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/not.mjs +39 -0
- package/node_modules/typebox/build/schema/engine/oneOf.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/oneOf.mjs +59 -0
- package/node_modules/typebox/build/schema/engine/pattern.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/pattern.mjs +29 -0
- package/node_modules/typebox/build/schema/engine/patternProperties.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/patternProperties.mjs +45 -0
- package/node_modules/typebox/build/schema/engine/prefixItems.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/prefixItems.mjs +35 -0
- package/node_modules/typebox/build/schema/engine/properties.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/properties.mjs +75 -0
- package/node_modules/typebox/build/schema/engine/propertyNames.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/propertyNames.mjs +39 -0
- package/node_modules/typebox/build/schema/engine/recursiveRef.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/recursiveRef.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/ref.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/ref.mjs +52 -0
- package/node_modules/typebox/build/schema/engine/required.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/required.mjs +32 -0
- package/node_modules/typebox/build/schema/engine/schema.d.mts +9 -0
- package/node_modules/typebox/build/schema/engine/schema.mjs +356 -0
- package/node_modules/typebox/build/schema/engine/type.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/type.mjs +70 -0
- package/node_modules/typebox/build/schema/engine/unevaluatedItems.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/unevaluatedItems.mjs +51 -0
- package/node_modules/typebox/build/schema/engine/unevaluatedProperties.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/unevaluatedProperties.mjs +51 -0
- package/node_modules/typebox/build/schema/engine/uniqueItems.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/uniqueItems.mjs +51 -0
- package/node_modules/typebox/build/schema/errors.d.mts +6 -0
- package/node_modules/typebox/build/schema/errors.mjs +24 -0
- package/node_modules/typebox/build/schema/index.d.mts +3 -0
- package/node_modules/typebox/build/schema/index.mjs +9 -0
- package/node_modules/typebox/build/schema/parse.d.mts +13 -0
- package/node_modules/typebox/build/schema/parse.mjs +27 -0
- package/node_modules/typebox/build/schema/pointer/index.d.mts +2 -0
- package/node_modules/typebox/build/schema/pointer/index.mjs +2 -0
- package/node_modules/typebox/build/schema/pointer/pointer.d.mts +10 -0
- package/node_modules/typebox/build/schema/pointer/pointer.mjs +106 -0
- package/node_modules/typebox/build/schema/pointer/pointer_get.d.mts +9 -0
- package/node_modules/typebox/build/schema/pointer/pointer_get.mjs +2 -0
- package/node_modules/typebox/build/schema/resolve/index.d.mts +1 -0
- package/node_modules/typebox/build/schema/resolve/index.mjs +1 -0
- package/node_modules/typebox/build/schema/resolve/ref.d.mts +4 -0
- package/node_modules/typebox/build/schema/resolve/ref.mjs +156 -0
- package/node_modules/typebox/build/schema/resolve/resolve.d.mts +1 -0
- package/node_modules/typebox/build/schema/resolve/resolve.mjs +1 -0
- package/node_modules/typebox/build/schema/schema.d.mts +10 -0
- package/node_modules/typebox/build/schema/schema.mjs +10 -0
- package/node_modules/typebox/build/schema/static/_canonical.d.mts +7 -0
- package/node_modules/typebox/build/schema/static/_canonical.mjs +2 -0
- package/node_modules/typebox/build/schema/static/_comparer.d.mts +6 -0
- package/node_modules/typebox/build/schema/static/_comparer.mjs +2 -0
- package/node_modules/typebox/build/schema/static/_elements.d.mts +18 -0
- package/node_modules/typebox/build/schema/static/_elements.mjs +2 -0
- package/node_modules/typebox/build/schema/static/additionalProperties.d.mts +7 -0
- package/node_modules/typebox/build/schema/static/additionalProperties.mjs +3 -0
- package/node_modules/typebox/build/schema/static/allOf.d.mts +3 -0
- package/node_modules/typebox/build/schema/static/allOf.mjs +2 -0
- package/node_modules/typebox/build/schema/static/anyOf.d.mts +3 -0
- package/node_modules/typebox/build/schema/static/anyOf.mjs +2 -0
- package/node_modules/typebox/build/schema/static/const.d.mts +1 -0
- package/node_modules/typebox/build/schema/static/const.mjs +2 -0
- package/node_modules/typebox/build/schema/static/enum.d.mts +1 -0
- package/node_modules/typebox/build/schema/static/enum.mjs +2 -0
- package/node_modules/typebox/build/schema/static/if.d.mts +15 -0
- package/node_modules/typebox/build/schema/static/if.mjs +2 -0
- package/node_modules/typebox/build/schema/static/index.d.mts +1 -0
- package/node_modules/typebox/build/schema/static/index.mjs +1 -0
- package/node_modules/typebox/build/schema/static/items.d.mts +7 -0
- package/node_modules/typebox/build/schema/static/items.mjs +2 -0
- package/node_modules/typebox/build/schema/static/oneOf.d.mts +3 -0
- package/node_modules/typebox/build/schema/static/oneOf.mjs +2 -0
- package/node_modules/typebox/build/schema/static/patternProperties.d.mts +7 -0
- package/node_modules/typebox/build/schema/static/patternProperties.mjs +2 -0
- package/node_modules/typebox/build/schema/static/prefixItems.d.mts +3 -0
- package/node_modules/typebox/build/schema/static/prefixItems.mjs +2 -0
- package/node_modules/typebox/build/schema/static/properties.d.mts +32 -0
- package/node_modules/typebox/build/schema/static/properties.mjs +2 -0
- package/node_modules/typebox/build/schema/static/propertyNames.d.mts +5 -0
- package/node_modules/typebox/build/schema/static/propertyNames.mjs +3 -0
- package/node_modules/typebox/build/schema/static/ref.d.mts +8 -0
- package/node_modules/typebox/build/schema/static/ref.mjs +3 -0
- package/node_modules/typebox/build/schema/static/required.d.mts +3 -0
- package/node_modules/typebox/build/schema/static/required.mjs +3 -0
- package/node_modules/typebox/build/schema/static/schema.d.mts +59 -0
- package/node_modules/typebox/build/schema/static/schema.mjs +2 -0
- package/node_modules/typebox/build/schema/static/static.d.mts +4 -0
- package/node_modules/typebox/build/schema/static/static.mjs +3 -0
- package/node_modules/typebox/build/schema/static/type.d.mts +4 -0
- package/node_modules/typebox/build/schema/static/type.mjs +3 -0
- package/node_modules/typebox/build/schema/static/unevaluatedProperties.d.mts +7 -0
- package/node_modules/typebox/build/schema/static/unevaluatedProperties.mjs +3 -0
- package/node_modules/typebox/build/schema/types/_refine.d.mts +13 -0
- package/node_modules/typebox/build/schema/types/_refine.mjs +18 -0
- package/node_modules/typebox/build/schema/types/additionalItems.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/additionalItems.mjs +14 -0
- package/node_modules/typebox/build/schema/types/additionalProperties.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/additionalProperties.mjs +14 -0
- package/node_modules/typebox/build/schema/types/allOf.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/allOf.mjs +15 -0
- package/node_modules/typebox/build/schema/types/anchor.d.mts +8 -0
- package/node_modules/typebox/build/schema/types/anchor.mjs +12 -0
- package/node_modules/typebox/build/schema/types/anyOf.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/anyOf.mjs +15 -0
- package/node_modules/typebox/build/schema/types/const.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/const.mjs +12 -0
- package/node_modules/typebox/build/schema/types/contains.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/contains.mjs +14 -0
- package/node_modules/typebox/build/schema/types/default.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/default.mjs +12 -0
- package/node_modules/typebox/build/schema/types/defs.d.mts +6 -0
- package/node_modules/typebox/build/schema/types/defs.mjs +12 -0
- package/node_modules/typebox/build/schema/types/dependencies.d.mts +11 -0
- package/node_modules/typebox/build/schema/types/dependencies.mjs +16 -0
- package/node_modules/typebox/build/schema/types/dependentRequired.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/dependentRequired.mjs +15 -0
- package/node_modules/typebox/build/schema/types/dependentSchemas.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/dependentSchemas.mjs +15 -0
- package/node_modules/typebox/build/schema/types/dynamicAnchor.d.mts +8 -0
- package/node_modules/typebox/build/schema/types/dynamicAnchor.mjs +12 -0
- package/node_modules/typebox/build/schema/types/dynamicRef.d.mts +8 -0
- package/node_modules/typebox/build/schema/types/dynamicRef.mjs +12 -0
- package/node_modules/typebox/build/schema/types/else.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/else.mjs +14 -0
- package/node_modules/typebox/build/schema/types/enum.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/enum.mjs +13 -0
- package/node_modules/typebox/build/schema/types/exclusiveMaximum.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/exclusiveMaximum.mjs +13 -0
- package/node_modules/typebox/build/schema/types/exclusiveMinimum.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/exclusiveMinimum.mjs +13 -0
- package/node_modules/typebox/build/schema/types/format.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/format.mjs +13 -0
- package/node_modules/typebox/build/schema/types/id.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/id.mjs +13 -0
- package/node_modules/typebox/build/schema/types/if.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/if.mjs +14 -0
- package/node_modules/typebox/build/schema/types/index.d.mts +51 -0
- package/node_modules/typebox/build/schema/types/index.mjs +57 -0
- package/node_modules/typebox/build/schema/types/items.d.mts +19 -0
- package/node_modules/typebox/build/schema/types/items.mjs +26 -0
- package/node_modules/typebox/build/schema/types/maxContains.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/maxContains.mjs +13 -0
- package/node_modules/typebox/build/schema/types/maxItems.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/maxItems.mjs +13 -0
- package/node_modules/typebox/build/schema/types/maxLength.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/maxLength.mjs +13 -0
- package/node_modules/typebox/build/schema/types/maxProperties.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/maxProperties.mjs +13 -0
- package/node_modules/typebox/build/schema/types/maximum.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/maximum.mjs +13 -0
- package/node_modules/typebox/build/schema/types/minContains.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/minContains.mjs +13 -0
- package/node_modules/typebox/build/schema/types/minItems.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/minItems.mjs +13 -0
- package/node_modules/typebox/build/schema/types/minLength.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/minLength.mjs +13 -0
- package/node_modules/typebox/build/schema/types/minProperties.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/minProperties.mjs +13 -0
- package/node_modules/typebox/build/schema/types/minimum.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/minimum.mjs +13 -0
- package/node_modules/typebox/build/schema/types/multipleOf.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/multipleOf.mjs +13 -0
- package/node_modules/typebox/build/schema/types/not.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/not.mjs +14 -0
- package/node_modules/typebox/build/schema/types/oneOf.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/oneOf.mjs +15 -0
- package/node_modules/typebox/build/schema/types/pattern.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/pattern.mjs +14 -0
- package/node_modules/typebox/build/schema/types/patternProperties.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/patternProperties.mjs +15 -0
- package/node_modules/typebox/build/schema/types/prefixItems.d.mts +8 -0
- package/node_modules/typebox/build/schema/types/prefixItems.mjs +14 -0
- package/node_modules/typebox/build/schema/types/properties.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/properties.mjs +15 -0
- package/node_modules/typebox/build/schema/types/propertyNames.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/propertyNames.mjs +15 -0
- package/node_modules/typebox/build/schema/types/recursiveAnchor.d.mts +12 -0
- package/node_modules/typebox/build/schema/types/recursiveAnchor.mjs +19 -0
- package/node_modules/typebox/build/schema/types/recursiveRef.d.mts +8 -0
- package/node_modules/typebox/build/schema/types/recursiveRef.mjs +12 -0
- package/node_modules/typebox/build/schema/types/ref.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/ref.mjs +13 -0
- package/node_modules/typebox/build/schema/types/required.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/required.mjs +14 -0
- package/node_modules/typebox/build/schema/types/schema.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/schema.mjs +14 -0
- package/node_modules/typebox/build/schema/types/then.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/then.mjs +14 -0
- package/node_modules/typebox/build/schema/types/type.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/type.mjs +15 -0
- package/node_modules/typebox/build/schema/types/unevaluatedItems.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/unevaluatedItems.mjs +14 -0
- package/node_modules/typebox/build/schema/types/unevaluatedProperties.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/unevaluatedProperties.mjs +14 -0
- package/node_modules/typebox/build/schema/types/uniqueItems.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/uniqueItems.mjs +13 -0
- package/node_modules/typebox/build/system/arguments/arguments.d.mts +5 -0
- package/node_modules/typebox/build/system/arguments/arguments.mjs +9 -0
- package/node_modules/typebox/build/system/arguments/index.d.mts +1 -0
- package/node_modules/typebox/build/system/arguments/index.mjs +1 -0
- package/node_modules/typebox/build/system/environment/environment.d.mts +1 -0
- package/node_modules/typebox/build/system/environment/environment.mjs +1 -0
- package/node_modules/typebox/build/system/environment/evaluate.d.mts +9 -0
- package/node_modules/typebox/build/system/environment/evaluate.mjs +37 -0
- package/node_modules/typebox/build/system/environment/index.d.mts +1 -0
- package/node_modules/typebox/build/system/environment/index.mjs +1 -0
- package/node_modules/typebox/build/system/hashing/hash.d.mts +4 -0
- package/node_modules/typebox/build/system/hashing/hash.mjs +232 -0
- package/node_modules/typebox/build/system/hashing/index.d.mts +1 -0
- package/node_modules/typebox/build/system/hashing/index.mjs +1 -0
- package/node_modules/typebox/build/system/index.d.mts +4 -0
- package/node_modules/typebox/build/system/index.mjs +4 -0
- package/node_modules/typebox/build/system/locale/_config.d.mts +7 -0
- package/node_modules/typebox/build/system/locale/_config.mjs +15 -0
- package/node_modules/typebox/build/system/locale/_locale.d.mts +40 -0
- package/node_modules/typebox/build/system/locale/_locale.mjs +40 -0
- package/node_modules/typebox/build/system/locale/ar_001.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/ar_001.mjs +40 -0
- package/node_modules/typebox/build/system/locale/bn_BD.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/bn_BD.mjs +40 -0
- package/node_modules/typebox/build/system/locale/cs_CZ.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/cs_CZ.mjs +40 -0
- package/node_modules/typebox/build/system/locale/de_DE.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/de_DE.mjs +40 -0
- package/node_modules/typebox/build/system/locale/el_GR.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/el_GR.mjs +40 -0
- package/node_modules/typebox/build/system/locale/en_US.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/en_US.mjs +39 -0
- package/node_modules/typebox/build/system/locale/es_419.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/es_419.mjs +40 -0
- package/node_modules/typebox/build/system/locale/es_AR.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/es_AR.mjs +40 -0
- package/node_modules/typebox/build/system/locale/es_ES.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/es_ES.mjs +40 -0
- package/node_modules/typebox/build/system/locale/es_MX.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/es_MX.mjs +40 -0
- package/node_modules/typebox/build/system/locale/fa_IR.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/fa_IR.mjs +40 -0
- package/node_modules/typebox/build/system/locale/fil_PH.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/fil_PH.mjs +40 -0
- package/node_modules/typebox/build/system/locale/fr_CA.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/fr_CA.mjs +40 -0
- package/node_modules/typebox/build/system/locale/fr_FR.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/fr_FR.mjs +40 -0
- package/node_modules/typebox/build/system/locale/ha_NG.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/ha_NG.mjs +40 -0
- package/node_modules/typebox/build/system/locale/hi_IN.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/hi_IN.mjs +40 -0
- package/node_modules/typebox/build/system/locale/hu_HU.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/hu_HU.mjs +40 -0
- package/node_modules/typebox/build/system/locale/id_ID.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/id_ID.mjs +40 -0
- package/node_modules/typebox/build/system/locale/index.d.mts +1 -0
- package/node_modules/typebox/build/system/locale/index.mjs +1 -0
- package/node_modules/typebox/build/system/locale/it_IT.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/it_IT.mjs +40 -0
- package/node_modules/typebox/build/system/locale/ja_JP.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/ja_JP.mjs +40 -0
- package/node_modules/typebox/build/system/locale/ko_KR.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/ko_KR.mjs +40 -0
- package/node_modules/typebox/build/system/locale/ms_MY.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/ms_MY.mjs +40 -0
- package/node_modules/typebox/build/system/locale/nl_NL.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/nl_NL.mjs +40 -0
- package/node_modules/typebox/build/system/locale/pl_PL.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/pl_PL.mjs +40 -0
- package/node_modules/typebox/build/system/locale/pt_BR.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/pt_BR.mjs +40 -0
- package/node_modules/typebox/build/system/locale/pt_PT.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/pt_PT.mjs +40 -0
- package/node_modules/typebox/build/system/locale/ro_RO.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/ro_RO.mjs +40 -0
- package/node_modules/typebox/build/system/locale/ru_RU.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/ru_RU.mjs +40 -0
- package/node_modules/typebox/build/system/locale/sv_SE.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/sv_SE.mjs +40 -0
- package/node_modules/typebox/build/system/locale/sw_TZ.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/sw_TZ.mjs +40 -0
- package/node_modules/typebox/build/system/locale/th_TH.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/th_TH.mjs +40 -0
- package/node_modules/typebox/build/system/locale/tr_TR.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/tr_TR.mjs +40 -0
- package/node_modules/typebox/build/system/locale/uk_UA.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/uk_UA.mjs +40 -0
- package/node_modules/typebox/build/system/locale/ur_PK.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/ur_PK.mjs +40 -0
- package/node_modules/typebox/build/system/locale/vi_VN.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/vi_VN.mjs +40 -0
- package/node_modules/typebox/build/system/locale/yo_NG.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/yo_NG.mjs +40 -0
- package/node_modules/typebox/build/system/locale/zh_Hans.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/zh_Hans.mjs +40 -0
- package/node_modules/typebox/build/system/locale/zh_Hant.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/zh_Hant.mjs +40 -0
- package/node_modules/typebox/build/system/memory/assign.d.mts +14 -0
- package/node_modules/typebox/build/system/memory/assign.mjs +11 -0
- package/node_modules/typebox/build/system/memory/clone.d.mts +5 -0
- package/node_modules/typebox/build/system/memory/clone.mjs +113 -0
- package/node_modules/typebox/build/system/memory/create.d.mts +8 -0
- package/node_modules/typebox/build/system/memory/create.mjs +30 -0
- package/node_modules/typebox/build/system/memory/discard.d.mts +4 -0
- package/node_modules/typebox/build/system/memory/discard.mjs +18 -0
- package/node_modules/typebox/build/system/memory/index.d.mts +1 -0
- package/node_modules/typebox/build/system/memory/index.mjs +1 -0
- package/node_modules/typebox/build/system/memory/memory.d.mts +6 -0
- package/node_modules/typebox/build/system/memory/memory.mjs +7 -0
- package/node_modules/typebox/build/system/memory/metrics.d.mts +14 -0
- package/node_modules/typebox/build/system/memory/metrics.mjs +8 -0
- package/node_modules/typebox/build/system/memory/update.d.mts +7 -0
- package/node_modules/typebox/build/system/memory/update.mjs +32 -0
- package/node_modules/typebox/build/system/settings/index.d.mts +1 -0
- package/node_modules/typebox/build/system/settings/index.mjs +1 -0
- package/node_modules/typebox/build/system/settings/settings.d.mts +80 -0
- package/node_modules/typebox/build/system/settings/settings.mjs +36 -0
- package/node_modules/typebox/build/system/system.d.mts +6 -0
- package/node_modules/typebox/build/system/system.mjs +6 -0
- package/node_modules/typebox/build/system/unreachable/index.d.mts +1 -0
- package/node_modules/typebox/build/system/unreachable/index.mjs +1 -0
- package/node_modules/typebox/build/system/unreachable/unreachable.d.mts +3 -0
- package/node_modules/typebox/build/system/unreachable/unreachable.mjs +6 -0
- package/node_modules/typebox/build/type/action/_add_immutable.d.mts +11 -0
- package/node_modules/typebox/build/type/action/_add_immutable.mjs +11 -0
- package/node_modules/typebox/build/type/action/_add_optional.d.mts +11 -0
- package/node_modules/typebox/build/type/action/_add_optional.mjs +11 -0
- package/node_modules/typebox/build/type/action/_add_readonly.d.mts +11 -0
- package/node_modules/typebox/build/type/action/_add_readonly.mjs +11 -0
- package/node_modules/typebox/build/type/action/_remove_immutable.d.mts +11 -0
- package/node_modules/typebox/build/type/action/_remove_immutable.mjs +11 -0
- package/node_modules/typebox/build/type/action/_remove_optional.d.mts +11 -0
- package/node_modules/typebox/build/type/action/_remove_optional.mjs +11 -0
- package/node_modules/typebox/build/type/action/_remove_readonly.d.mts +11 -0
- package/node_modules/typebox/build/type/action/_remove_readonly.mjs +11 -0
- package/node_modules/typebox/build/type/action/capitalize.d.mts +11 -0
- package/node_modules/typebox/build/type/action/capitalize.mjs +11 -0
- package/node_modules/typebox/build/type/action/conditional.d.mts +12 -0
- package/node_modules/typebox/build/type/action/conditional.mjs +13 -0
- package/node_modules/typebox/build/type/action/constructor_parameters.d.mts +11 -0
- package/node_modules/typebox/build/type/action/constructor_parameters.mjs +11 -0
- package/node_modules/typebox/build/type/action/evaluate.d.mts +11 -0
- package/node_modules/typebox/build/type/action/evaluate.mjs +11 -0
- package/node_modules/typebox/build/type/action/exclude.d.mts +11 -0
- package/node_modules/typebox/build/type/action/exclude.mjs +11 -0
- package/node_modules/typebox/build/type/action/extract.d.mts +11 -0
- package/node_modules/typebox/build/type/action/extract.mjs +11 -0
- package/node_modules/typebox/build/type/action/index.d.mts +30 -0
- package/node_modules/typebox/build/type/action/index.mjs +30 -0
- package/node_modules/typebox/build/type/action/indexed.d.mts +14 -0
- package/node_modules/typebox/build/type/action/indexed.mjs +14 -0
- package/node_modules/typebox/build/type/action/instance_type.d.mts +11 -0
- package/node_modules/typebox/build/type/action/instance_type.mjs +11 -0
- package/node_modules/typebox/build/type/action/interface.d.mts +14 -0
- package/node_modules/typebox/build/type/action/interface.mjs +22 -0
- package/node_modules/typebox/build/type/action/keyof.d.mts +11 -0
- package/node_modules/typebox/build/type/action/keyof.mjs +11 -0
- package/node_modules/typebox/build/type/action/lowercase.d.mts +11 -0
- package/node_modules/typebox/build/type/action/lowercase.mjs +11 -0
- package/node_modules/typebox/build/type/action/mapped.d.mts +13 -0
- package/node_modules/typebox/build/type/action/mapped.mjs +13 -0
- package/node_modules/typebox/build/type/action/module.d.mts +13 -0
- package/node_modules/typebox/build/type/action/module.mjs +13 -0
- package/node_modules/typebox/build/type/action/non_nullable.d.mts +11 -0
- package/node_modules/typebox/build/type/action/non_nullable.mjs +11 -0
- package/node_modules/typebox/build/type/action/omit.d.mts +14 -0
- package/node_modules/typebox/build/type/action/omit.mjs +14 -0
- package/node_modules/typebox/build/type/action/parameters.d.mts +11 -0
- package/node_modules/typebox/build/type/action/parameters.mjs +11 -0
- package/node_modules/typebox/build/type/action/partial.d.mts +11 -0
- package/node_modules/typebox/build/type/action/partial.mjs +11 -0
- package/node_modules/typebox/build/type/action/pick.d.mts +14 -0
- package/node_modules/typebox/build/type/action/pick.mjs +14 -0
- package/node_modules/typebox/build/type/action/readonly_object.d.mts +16 -0
- package/node_modules/typebox/build/type/action/readonly_object.mjs +19 -0
- package/node_modules/typebox/build/type/action/required.d.mts +11 -0
- package/node_modules/typebox/build/type/action/required.mjs +11 -0
- package/node_modules/typebox/build/type/action/return_type.d.mts +11 -0
- package/node_modules/typebox/build/type/action/return_type.mjs +11 -0
- package/node_modules/typebox/build/type/action/uncapitalize.d.mts +11 -0
- package/node_modules/typebox/build/type/action/uncapitalize.mjs +11 -0
- package/node_modules/typebox/build/type/action/uppercase.d.mts +11 -0
- package/node_modules/typebox/build/type/action/uppercase.mjs +11 -0
- package/node_modules/typebox/build/type/action/with.d.mts +11 -0
- package/node_modules/typebox/build/type/action/with.mjs +11 -0
- package/node_modules/typebox/build/type/engine/call/distribute_arguments.d.mts +20 -0
- package/node_modules/typebox/build/type/engine/call/distribute_arguments.mjs +66 -0
- package/node_modules/typebox/build/type/engine/call/instantiate.d.mts +21 -0
- package/node_modules/typebox/build/type/engine/call/instantiate.mjs +79 -0
- package/node_modules/typebox/build/type/engine/call/resolve_arguments.d.mts +13 -0
- package/node_modules/typebox/build/type/engine/call/resolve_arguments.mjs +33 -0
- package/node_modules/typebox/build/type/engine/call/resolve_target.d.mts +25 -0
- package/node_modules/typebox/build/type/engine/call/resolve_target.mjs +27 -0
- package/node_modules/typebox/build/type/engine/conditional/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/conditional/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/conditional/instantiate.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/conditional/instantiate.mjs +23 -0
- package/node_modules/typebox/build/type/engine/constructor_parameters/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/constructor_parameters/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/constructor_parameters/instantiate.d.mts +14 -0
- package/node_modules/typebox/build/type/engine/constructor_parameters/instantiate.mjs +25 -0
- package/node_modules/typebox/build/type/engine/cyclic/candidates.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/cyclic/candidates.mjs +16 -0
- package/node_modules/typebox/build/type/engine/cyclic/check.d.mts +21 -0
- package/node_modules/typebox/build/type/engine/cyclic/check.mjs +45 -0
- package/node_modules/typebox/build/type/engine/cyclic/dependencies.d.mts +22 -0
- package/node_modules/typebox/build/type/engine/cyclic/dependencies.mjs +47 -0
- package/node_modules/typebox/build/type/engine/cyclic/extends.d.mts +28 -0
- package/node_modules/typebox/build/type/engine/cyclic/extends.mjs +47 -0
- package/node_modules/typebox/build/type/engine/cyclic/index.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/cyclic/index.mjs +6 -0
- package/node_modules/typebox/build/type/engine/cyclic/instantiate.d.mts +17 -0
- package/node_modules/typebox/build/type/engine/cyclic/instantiate.mjs +31 -0
- package/node_modules/typebox/build/type/engine/cyclic/target.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/cyclic/target.mjs +16 -0
- package/node_modules/typebox/build/type/engine/enum/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/enum/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/enum/typescript_enum_to_enum_values.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/enum/typescript_enum_to_enum_values.mjs +9 -0
- package/node_modules/typebox/build/type/engine/evaluate/broaden.d.mts +15 -0
- package/node_modules/typebox/build/type/engine/evaluate/broaden.mjs +37 -0
- package/node_modules/typebox/build/type/engine/evaluate/compare.d.mts +11 -0
- package/node_modules/typebox/build/type/engine/evaluate/compare.mjs +18 -0
- package/node_modules/typebox/build/type/engine/evaluate/composite.d.mts +37 -0
- package/node_modules/typebox/build/type/engine/evaluate/composite.mjs +60 -0
- package/node_modules/typebox/build/type/engine/evaluate/distribute.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/evaluate/distribute.mjs +33 -0
- package/node_modules/typebox/build/type/engine/evaluate/evaluate.d.mts +26 -0
- package/node_modules/typebox/build/type/engine/evaluate/evaluate.mjs +56 -0
- package/node_modules/typebox/build/type/engine/evaluate/flatten.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/evaluate/flatten.mjs +10 -0
- package/node_modules/typebox/build/type/engine/evaluate/index.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/evaluate/index.mjs +8 -0
- package/node_modules/typebox/build/type/engine/evaluate/instantiate.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/evaluate/instantiate.mjs +12 -0
- package/node_modules/typebox/build/type/engine/evaluate/narrow.d.mts +20 -0
- package/node_modules/typebox/build/type/engine/evaluate/narrow.mjs +31 -0
- package/node_modules/typebox/build/type/engine/exclude/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/exclude/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/exclude/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/exclude/instantiate.mjs +16 -0
- package/node_modules/typebox/build/type/engine/exclude/operation.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/exclude/operation.mjs +22 -0
- package/node_modules/typebox/build/type/engine/extract/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/extract/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/extract/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/extract/instantiate.mjs +16 -0
- package/node_modules/typebox/build/type/engine/extract/operation.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/extract/operation.mjs +22 -0
- package/node_modules/typebox/build/type/engine/helpers/index.d.mts +3 -0
- package/node_modules/typebox/build/type/engine/helpers/index.mjs +3 -0
- package/node_modules/typebox/build/type/engine/helpers/keys.d.mts +3 -0
- package/node_modules/typebox/build/type/engine/helpers/keys.mjs +8 -0
- package/node_modules/typebox/build/type/engine/helpers/keys_to_indexer.d.mts +7 -0
- package/node_modules/typebox/build/type/engine/helpers/keys_to_indexer.mjs +15 -0
- package/node_modules/typebox/build/type/engine/helpers/union.d.mts +7 -0
- package/node_modules/typebox/build/type/engine/helpers/union.mjs +3 -0
- package/node_modules/typebox/build/type/engine/immutable/instantiate_add.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/immutable/instantiate_add.mjs +14 -0
- package/node_modules/typebox/build/type/engine/immutable/instantiate_remove.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/immutable/instantiate_remove.mjs +14 -0
- package/node_modules/typebox/build/type/engine/index.d.mts +31 -0
- package/node_modules/typebox/build/type/engine/index.mjs +37 -0
- package/node_modules/typebox/build/type/engine/indexable/from_cyclic.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/indexable/from_cyclic.mjs +8 -0
- package/node_modules/typebox/build/type/engine/indexable/from_dependent.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/indexable/from_dependent.mjs +8 -0
- package/node_modules/typebox/build/type/engine/indexable/from_enum.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/indexable/from_enum.mjs +8 -0
- package/node_modules/typebox/build/type/engine/indexable/from_intersect.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/indexable/from_intersect.mjs +8 -0
- package/node_modules/typebox/build/type/engine/indexable/from_literal.d.mts +3 -0
- package/node_modules/typebox/build/type/engine/indexable/from_literal.mjs +5 -0
- package/node_modules/typebox/build/type/engine/indexable/from_template_literal.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/indexable/from_template_literal.mjs +8 -0
- package/node_modules/typebox/build/type/engine/indexable/from_type.d.mts +19 -0
- package/node_modules/typebox/build/type/engine/indexable/from_type.mjs +25 -0
- package/node_modules/typebox/build/type/engine/indexable/from_union.d.mts +4 -0
- package/node_modules/typebox/build/type/engine/indexable/from_union.mjs +7 -0
- package/node_modules/typebox/build/type/engine/indexable/to_indexable.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/indexable/to_indexable.mjs +14 -0
- package/node_modules/typebox/build/type/engine/indexable/to_indexable_keys.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/indexable/to_indexable_keys.mjs +12 -0
- package/node_modules/typebox/build/type/engine/indexed/array_indexer.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/indexed/array_indexer.mjs +18 -0
- package/node_modules/typebox/build/type/engine/indexed/from_array.d.mts +15 -0
- package/node_modules/typebox/build/type/engine/indexed/from_array.mjs +35 -0
- package/node_modules/typebox/build/type/engine/indexed/from_object.d.mts +16 -0
- package/node_modules/typebox/build/type/engine/indexed/from_object.mjs +40 -0
- package/node_modules/typebox/build/type/engine/indexed/from_tuple.d.mts +13 -0
- package/node_modules/typebox/build/type/engine/indexed/from_tuple.mjs +35 -0
- package/node_modules/typebox/build/type/engine/indexed/from_type.d.mts +11 -0
- package/node_modules/typebox/build/type/engine/indexed/from_type.mjs +14 -0
- package/node_modules/typebox/build/type/engine/indexed/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/indexed/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/indexed/instantiate.d.mts +16 -0
- package/node_modules/typebox/build/type/engine/indexed/instantiate.mjs +28 -0
- package/node_modules/typebox/build/type/engine/instance_type/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/instance_type/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/instance_type/instantiate.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/instance_type/instantiate.mjs +21 -0
- package/node_modules/typebox/build/type/engine/instantiate.d.mts +178 -0
- package/node_modules/typebox/build/type/engine/instantiate.mjs +158 -0
- package/node_modules/typebox/build/type/engine/interface/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/interface/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/interface/instantiate.d.mts +15 -0
- package/node_modules/typebox/build/type/engine/interface/instantiate.mjs +23 -0
- package/node_modules/typebox/build/type/engine/intrinsics/from_literal.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/intrinsics/from_literal.mjs +9 -0
- package/node_modules/typebox/build/type/engine/intrinsics/from_template_literal.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/intrinsics/from_template_literal.mjs +8 -0
- package/node_modules/typebox/build/type/engine/intrinsics/from_type.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/intrinsics/from_type.mjs +13 -0
- package/node_modules/typebox/build/type/engine/intrinsics/from_union.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/intrinsics/from_union.mjs +7 -0
- package/node_modules/typebox/build/type/engine/intrinsics/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/intrinsics/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/intrinsics/instantiate.d.mts +38 -0
- package/node_modules/typebox/build/type/engine/intrinsics/instantiate.mjs +52 -0
- package/node_modules/typebox/build/type/engine/intrinsics/mapping.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/intrinsics/mapping.mjs +4 -0
- package/node_modules/typebox/build/type/engine/keyof/from_any.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/keyof/from_any.mjs +8 -0
- package/node_modules/typebox/build/type/engine/keyof/from_array.d.mts +4 -0
- package/node_modules/typebox/build/type/engine/keyof/from_array.mjs +5 -0
- package/node_modules/typebox/build/type/engine/keyof/from_object.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/keyof/from_object.mjs +20 -0
- package/node_modules/typebox/build/type/engine/keyof/from_record.d.mts +4 -0
- package/node_modules/typebox/build/type/engine/keyof/from_record.mjs +5 -0
- package/node_modules/typebox/build/type/engine/keyof/from_tuple.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/keyof/from_tuple.mjs +7 -0
- package/node_modules/typebox/build/type/engine/keyof/from_type.d.mts +15 -0
- package/node_modules/typebox/build/type/engine/keyof/from_type.mjs +23 -0
- package/node_modules/typebox/build/type/engine/keyof/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/keyof/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/keyof/instantiate.d.mts +16 -0
- package/node_modules/typebox/build/type/engine/keyof/instantiate.mjs +29 -0
- package/node_modules/typebox/build/type/engine/mapped/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/mapped/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/mapped/instantiate.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/mapped/instantiate.mjs +15 -0
- package/node_modules/typebox/build/type/engine/mapped/mapped_operation.d.mts +22 -0
- package/node_modules/typebox/build/type/engine/mapped/mapped_operation.mjs +42 -0
- package/node_modules/typebox/build/type/engine/mapped/mapped_variants.d.mts +17 -0
- package/node_modules/typebox/build/type/engine/mapped/mapped_variants.mjs +39 -0
- package/node_modules/typebox/build/type/engine/module/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/module/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/module/instantiate.d.mts +19 -0
- package/node_modules/typebox/build/type/engine/module/instantiate.mjs +36 -0
- package/node_modules/typebox/build/type/engine/non_nullable/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/non_nullable/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/non_nullable/instantiate.d.mts +14 -0
- package/node_modules/typebox/build/type/engine/non_nullable/instantiate.mjs +22 -0
- package/node_modules/typebox/build/type/engine/object/collapse.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/object/collapse.mjs +14 -0
- package/node_modules/typebox/build/type/engine/object/from_cyclic.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/object/from_cyclic.mjs +8 -0
- package/node_modules/typebox/build/type/engine/object/from_dependent.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/object/from_dependent.mjs +8 -0
- package/node_modules/typebox/build/type/engine/object/from_intersect.d.mts +17 -0
- package/node_modules/typebox/build/type/engine/object/from_intersect.mjs +22 -0
- package/node_modules/typebox/build/type/engine/object/from_object.d.mts +3 -0
- package/node_modules/typebox/build/type/engine/object/from_object.mjs +4 -0
- package/node_modules/typebox/build/type/engine/object/from_tuple.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/object/from_tuple.mjs +9 -0
- package/node_modules/typebox/build/type/engine/object/from_type.d.mts +16 -0
- package/node_modules/typebox/build/type/engine/object/from_type.mjs +23 -0
- package/node_modules/typebox/build/type/engine/object/from_union.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/object/from_union.mjs +19 -0
- package/node_modules/typebox/build/type/engine/object/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/object/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/omit/from_type.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/omit/from_type.mjs +18 -0
- package/node_modules/typebox/build/type/engine/omit/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/omit/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/omit/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/omit/instantiate.mjs +16 -0
- package/node_modules/typebox/build/type/engine/optional/instantiate_add.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/optional/instantiate_add.mjs +14 -0
- package/node_modules/typebox/build/type/engine/optional/instantiate_remove.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/optional/instantiate_remove.mjs +14 -0
- package/node_modules/typebox/build/type/engine/parameters/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/parameters/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/parameters/instantiate.d.mts +14 -0
- package/node_modules/typebox/build/type/engine/parameters/instantiate.mjs +25 -0
- package/node_modules/typebox/build/type/engine/partial/from_cyclic.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/partial/from_cyclic.mjs +11 -0
- package/node_modules/typebox/build/type/engine/partial/from_dependent.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/partial/from_dependent.mjs +8 -0
- package/node_modules/typebox/build/type/engine/partial/from_intersect.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/partial/from_intersect.mjs +8 -0
- package/node_modules/typebox/build/type/engine/partial/from_object.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/partial/from_object.mjs +11 -0
- package/node_modules/typebox/build/type/engine/partial/from_type.d.mts +14 -0
- package/node_modules/typebox/build/type/engine/partial/from_type.mjs +20 -0
- package/node_modules/typebox/build/type/engine/partial/from_union.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/partial/from_union.mjs +7 -0
- package/node_modules/typebox/build/type/engine/partial/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/partial/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/partial/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/partial/instantiate.mjs +15 -0
- package/node_modules/typebox/build/type/engine/patterns/index.d.mts +2 -0
- package/node_modules/typebox/build/type/engine/patterns/index.mjs +2 -0
- package/node_modules/typebox/build/type/engine/patterns/pattern.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/patterns/pattern.mjs +11 -0
- package/node_modules/typebox/build/type/engine/patterns/template.d.mts +7 -0
- package/node_modules/typebox/build/type/engine/patterns/template.mjs +20 -0
- package/node_modules/typebox/build/type/engine/pick/from_type.d.mts +13 -0
- package/node_modules/typebox/build/type/engine/pick/from_type.mjs +20 -0
- package/node_modules/typebox/build/type/engine/pick/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/pick/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/pick/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/pick/instantiate.mjs +16 -0
- package/node_modules/typebox/build/type/engine/priority/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/priority/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/priority/priority.d.mts +20 -0
- package/node_modules/typebox/build/type/engine/priority/priority.mjs +27 -0
- package/node_modules/typebox/build/type/engine/readonly/instantiate_add.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/readonly/instantiate_add.mjs +14 -0
- package/node_modules/typebox/build/type/engine/readonly/instantiate_remove.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/readonly/instantiate_remove.mjs +14 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_array.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_array.mjs +7 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_cyclic.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_cyclic.mjs +11 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_dependent.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_dependent.mjs +8 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_intersect.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_intersect.mjs +8 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_object.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_object.mjs +11 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_tuple.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_tuple.mjs +7 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_type.d.mts +18 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_type.mjs +25 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_union.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_union.mjs +7 -0
- package/node_modules/typebox/build/type/engine/readonly_object/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/readonly_object/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/readonly_object/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/readonly_object/instantiate.mjs +15 -0
- package/node_modules/typebox/build/type/engine/record/from_key.d.mts +24 -0
- package/node_modules/typebox/build/type/engine/record/from_key.mjs +40 -0
- package/node_modules/typebox/build/type/engine/record/from_key_any.d.mts +4 -0
- package/node_modules/typebox/build/type/engine/record/from_key_any.mjs +6 -0
- package/node_modules/typebox/build/type/engine/record/from_key_boolean.d.mts +7 -0
- package/node_modules/typebox/build/type/engine/record/from_key_boolean.mjs +5 -0
- package/node_modules/typebox/build/type/engine/record/from_key_enum.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/record/from_key_enum.mjs +8 -0
- package/node_modules/typebox/build/type/engine/record/from_key_integer.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/record/from_key_integer.mjs +7 -0
- package/node_modules/typebox/build/type/engine/record/from_key_intersect.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/record/from_key_intersect.mjs +8 -0
- package/node_modules/typebox/build/type/engine/record/from_key_literal.d.mts +11 -0
- package/node_modules/typebox/build/type/engine/record/from_key_literal.mjs +10 -0
- package/node_modules/typebox/build/type/engine/record/from_key_number.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/record/from_key_number.mjs +7 -0
- package/node_modules/typebox/build/type/engine/record/from_key_string.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/record/from_key_string.mjs +12 -0
- package/node_modules/typebox/build/type/engine/record/from_key_template_literal.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/record/from_key_template_literal.mjs +12 -0
- package/node_modules/typebox/build/type/engine/record/from_key_union.d.mts +20 -0
- package/node_modules/typebox/build/type/engine/record/from_key_union.mjs +39 -0
- package/node_modules/typebox/build/type/engine/record/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/record/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/record/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/record/instantiate.mjs +17 -0
- package/node_modules/typebox/build/type/engine/record/record_create.d.mts +3 -0
- package/node_modules/typebox/build/type/engine/record/record_create.mjs +7 -0
- package/node_modules/typebox/build/type/engine/ref/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/ref/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/ref/instantiate.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/ref/instantiate.mjs +10 -0
- package/node_modules/typebox/build/type/engine/required/from_cyclic.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/required/from_cyclic.mjs +11 -0
- package/node_modules/typebox/build/type/engine/required/from_dependent.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/required/from_dependent.mjs +8 -0
- package/node_modules/typebox/build/type/engine/required/from_intersect.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/required/from_intersect.mjs +8 -0
- package/node_modules/typebox/build/type/engine/required/from_object.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/required/from_object.mjs +11 -0
- package/node_modules/typebox/build/type/engine/required/from_type.d.mts +14 -0
- package/node_modules/typebox/build/type/engine/required/from_type.mjs +20 -0
- package/node_modules/typebox/build/type/engine/required/from_union.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/required/from_union.mjs +7 -0
- package/node_modules/typebox/build/type/engine/required/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/required/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/required/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/required/instantiate.mjs +15 -0
- package/node_modules/typebox/build/type/engine/rest/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/rest/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/rest/spread.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/rest/spread.mjs +19 -0
- package/node_modules/typebox/build/type/engine/return_type/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/return_type/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/return_type/instantiate.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/return_type/instantiate.mjs +21 -0
- package/node_modules/typebox/build/type/engine/template_literal/create.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/template_literal/create.mjs +5 -0
- package/node_modules/typebox/build/type/engine/template_literal/decode.d.mts +30 -0
- package/node_modules/typebox/build/type/engine/template_literal/decode.mjs +81 -0
- package/node_modules/typebox/build/type/engine/template_literal/encode.d.mts +33 -0
- package/node_modules/typebox/build/type/engine/template_literal/encode.mjs +81 -0
- package/node_modules/typebox/build/type/engine/template_literal/index.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/template_literal/index.mjs +6 -0
- package/node_modules/typebox/build/type/engine/template_literal/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/template_literal/instantiate.mjs +15 -0
- package/node_modules/typebox/build/type/engine/template_literal/is_finite.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/template_literal/is_finite.mjs +26 -0
- package/node_modules/typebox/build/type/engine/template_literal/is_pattern.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/template_literal/is_pattern.mjs +10 -0
- package/node_modules/typebox/build/type/engine/template_literal/static.d.mts +18 -0
- package/node_modules/typebox/build/type/engine/template_literal/static.mjs +2 -0
- package/node_modules/typebox/build/type/engine/this/expand_this.d.mts +16 -0
- package/node_modules/typebox/build/type/engine/this/expand_this.mjs +26 -0
- package/node_modules/typebox/build/type/engine/tuple/to_object.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/tuple/to_object.mjs +14 -0
- package/node_modules/typebox/build/type/engine/with/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/with/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/with/instantiate.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/with/instantiate.mjs +14 -0
- package/node_modules/typebox/build/type/extends/any.d.mts +9 -0
- package/node_modules/typebox/build/type/extends/any.mjs +12 -0
- package/node_modules/typebox/build/type/extends/array.d.mts +20 -0
- package/node_modules/typebox/build/type/extends/array.mjs +21 -0
- package/node_modules/typebox/build/type/extends/bigint.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/bigint.mjs +9 -0
- package/node_modules/typebox/build/type/extends/boolean.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/boolean.mjs +9 -0
- package/node_modules/typebox/build/type/extends/constructor.d.mts +10 -0
- package/node_modules/typebox/build/type/extends/constructor.mjs +17 -0
- package/node_modules/typebox/build/type/extends/dependent.d.mts +6 -0
- package/node_modules/typebox/build/type/extends/dependent.mjs +6 -0
- package/node_modules/typebox/build/type/extends/enum.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/enum.mjs +7 -0
- package/node_modules/typebox/build/type/extends/extends.d.mts +13 -0
- package/node_modules/typebox/build/type/extends/extends.mjs +17 -0
- package/node_modules/typebox/build/type/extends/extends_left.d.mts +53 -0
- package/node_modules/typebox/build/type/extends/extends_left.mjs +80 -0
- package/node_modules/typebox/build/type/extends/extends_right.d.mts +27 -0
- package/node_modules/typebox/build/type/extends/extends_right.mjs +49 -0
- package/node_modules/typebox/build/type/extends/function.d.mts +10 -0
- package/node_modules/typebox/build/type/extends/function.mjs +17 -0
- package/node_modules/typebox/build/type/extends/index.d.mts +2 -0
- package/node_modules/typebox/build/type/extends/index.mjs +2 -0
- package/node_modules/typebox/build/type/extends/inference.d.mts +34 -0
- package/node_modules/typebox/build/type/extends/inference.mjs +62 -0
- package/node_modules/typebox/build/type/extends/integer.d.mts +8 -0
- package/node_modules/typebox/build/type/extends/integer.mjs +10 -0
- package/node_modules/typebox/build/type/extends/intersect.d.mts +6 -0
- package/node_modules/typebox/build/type/extends/intersect.mjs +15 -0
- package/node_modules/typebox/build/type/extends/literal.d.mts +18 -0
- package/node_modules/typebox/build/type/extends/literal.mjs +44 -0
- package/node_modules/typebox/build/type/extends/never.d.mts +8 -0
- package/node_modules/typebox/build/type/extends/never.mjs +9 -0
- package/node_modules/typebox/build/type/extends/null.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/null.mjs +9 -0
- package/node_modules/typebox/build/type/extends/number.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/number.mjs +9 -0
- package/node_modules/typebox/build/type/extends/object.d.mts +32 -0
- package/node_modules/typebox/build/type/extends/object.mjs +109 -0
- package/node_modules/typebox/build/type/extends/parameters.d.mts +15 -0
- package/node_modules/typebox/build/type/extends/parameters.mjs +28 -0
- package/node_modules/typebox/build/type/extends/record.d.mts +13 -0
- package/node_modules/typebox/build/type/extends/record.mjs +23 -0
- package/node_modules/typebox/build/type/extends/result.d.mts +24 -0
- package/node_modules/typebox/build/type/extends/result.mjs +36 -0
- package/node_modules/typebox/build/type/extends/return_type.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/return_type.mjs +9 -0
- package/node_modules/typebox/build/type/extends/string.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/string.mjs +9 -0
- package/node_modules/typebox/build/type/extends/symbol.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/symbol.mjs +9 -0
- package/node_modules/typebox/build/type/extends/template_literal.d.mts +6 -0
- package/node_modules/typebox/build/type/extends/template_literal.mjs +7 -0
- package/node_modules/typebox/build/type/extends/tuple.d.mts +22 -0
- package/node_modules/typebox/build/type/extends/tuple.mjs +61 -0
- package/node_modules/typebox/build/type/extends/undefined.d.mts +8 -0
- package/node_modules/typebox/build/type/extends/undefined.mjs +10 -0
- package/node_modules/typebox/build/type/extends/union.d.mts +11 -0
- package/node_modules/typebox/build/type/extends/union.mjs +24 -0
- package/node_modules/typebox/build/type/extends/unknown.d.mts +9 -0
- package/node_modules/typebox/build/type/extends/unknown.mjs +12 -0
- package/node_modules/typebox/build/type/extends/void.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/void.mjs +9 -0
- package/node_modules/typebox/build/type/index.d.mts +5 -0
- package/node_modules/typebox/build/type/index.mjs +5 -0
- package/node_modules/typebox/build/type/script/index.d.mts +1 -0
- package/node_modules/typebox/build/type/script/index.mjs +1 -0
- package/node_modules/typebox/build/type/script/mapping.d.mts +356 -0
- package/node_modules/typebox/build/type/script/mapping.mjs +528 -0
- package/node_modules/typebox/build/type/script/parser.d.mts +256 -0
- package/node_modules/typebox/build/type/script/parser.mjs +140 -0
- package/node_modules/typebox/build/type/script/script.d.mts +16 -0
- package/node_modules/typebox/build/type/script/script.mjs +22 -0
- package/node_modules/typebox/build/type/script/token/bigint.d.mts +8 -0
- package/node_modules/typebox/build/type/script/token/bigint.mjs +14 -0
- package/node_modules/typebox/build/type/script/token/const.d.mts +11 -0
- package/node_modules/typebox/build/type/script/token/const.mjs +18 -0
- package/node_modules/typebox/build/type/script/token/ident.d.mts +16 -0
- package/node_modules/typebox/build/type/script/token/ident.mjs +26 -0
- package/node_modules/typebox/build/type/script/token/index.d.mts +12 -0
- package/node_modules/typebox/build/type/script/token/index.mjs +12 -0
- package/node_modules/typebox/build/type/script/token/integer.d.mts +11 -0
- package/node_modules/typebox/build/type/script/token/integer.mjs +19 -0
- package/node_modules/typebox/build/type/script/token/internal/char.d.mts +75 -0
- package/node_modules/typebox/build/type/script/token/internal/char.mjs +26 -0
- package/node_modules/typebox/build/type/script/token/internal/guard.d.mts +1 -0
- package/node_modules/typebox/build/type/script/token/internal/guard.mjs +15 -0
- package/node_modules/typebox/build/type/script/token/internal/many.d.mts +7 -0
- package/node_modules/typebox/build/type/script/token/internal/many.mjs +14 -0
- package/node_modules/typebox/build/type/script/token/internal/match.d.mts +6 -0
- package/node_modules/typebox/build/type/script/token/internal/match.mjs +11 -0
- package/node_modules/typebox/build/type/script/token/internal/optional.d.mts +5 -0
- package/node_modules/typebox/build/type/script/token/internal/optional.mjs +9 -0
- package/node_modules/typebox/build/type/script/token/internal/take.d.mts +6 -0
- package/node_modules/typebox/build/type/script/token/internal/take.mjs +30 -0
- package/node_modules/typebox/build/type/script/token/internal/trim.d.mts +19 -0
- package/node_modules/typebox/build/type/script/token/internal/trim.mjs +34 -0
- package/node_modules/typebox/build/type/script/token/number.d.mts +11 -0
- package/node_modules/typebox/build/type/script/token/number.mjs +19 -0
- package/node_modules/typebox/build/type/script/token/rest.d.mts +4 -0
- package/node_modules/typebox/build/type/script/token/rest.mjs +9 -0
- package/node_modules/typebox/build/type/script/token/span.d.mts +11 -0
- package/node_modules/typebox/build/type/script/token/span.mjs +24 -0
- package/node_modules/typebox/build/type/script/token/string.d.mts +11 -0
- package/node_modules/typebox/build/type/script/token/string.mjs +20 -0
- package/node_modules/typebox/build/type/script/token/unsigned_integer.d.mts +16 -0
- package/node_modules/typebox/build/type/script/token/unsigned_integer.mjs +26 -0
- package/node_modules/typebox/build/type/script/token/unsigned_number.d.mts +17 -0
- package/node_modules/typebox/build/type/script/token/unsigned_number.mjs +38 -0
- package/node_modules/typebox/build/type/script/token/until.d.mts +7 -0
- package/node_modules/typebox/build/type/script/token/until.mjs +21 -0
- package/node_modules/typebox/build/type/script/token/until_1.d.mts +5 -0
- package/node_modules/typebox/build/type/script/token/until_1.mjs +12 -0
- package/node_modules/typebox/build/type/types/_codec.d.mts +30 -0
- package/node_modules/typebox/build/type/types/_codec.mjs +60 -0
- package/node_modules/typebox/build/type/types/_immutable.d.mts +9 -0
- package/node_modules/typebox/build/type/types/_immutable.mjs +18 -0
- package/node_modules/typebox/build/type/types/_optional.d.mts +9 -0
- package/node_modules/typebox/build/type/types/_optional.mjs +18 -0
- package/node_modules/typebox/build/type/types/_readonly.d.mts +9 -0
- package/node_modules/typebox/build/type/types/_readonly.mjs +18 -0
- package/node_modules/typebox/build/type/types/_refine.d.mts +24 -0
- package/node_modules/typebox/build/type/types/_refine.mjs +36 -0
- package/node_modules/typebox/build/type/types/any.d.mts +10 -0
- package/node_modules/typebox/build/type/types/any.mjs +18 -0
- package/node_modules/typebox/build/type/types/array.d.mts +18 -0
- package/node_modules/typebox/build/type/types/array.mjs +25 -0
- package/node_modules/typebox/build/type/types/bigint.d.mts +12 -0
- package/node_modules/typebox/build/type/types/bigint.mjs +21 -0
- package/node_modules/typebox/build/type/types/boolean.d.mts +11 -0
- package/node_modules/typebox/build/type/types/boolean.mjs +17 -0
- package/node_modules/typebox/build/type/types/call.d.mts +16 -0
- package/node_modules/typebox/build/type/types/call.mjs +23 -0
- package/node_modules/typebox/build/type/types/constructor.d.mts +18 -0
- package/node_modules/typebox/build/type/types/constructor.mjs +24 -0
- package/node_modules/typebox/build/type/types/cyclic.d.mts +16 -0
- package/node_modules/typebox/build/type/types/cyclic.mjs +29 -0
- package/node_modules/typebox/build/type/types/deferred.d.mts +13 -0
- package/node_modules/typebox/build/type/types/deferred.mjs +16 -0
- package/node_modules/typebox/build/type/types/dependent.d.mts +17 -0
- package/node_modules/typebox/build/type/types/dependent.mjs +24 -0
- package/node_modules/typebox/build/type/types/enum.d.mts +18 -0
- package/node_modules/typebox/build/type/types/enum.mjs +22 -0
- package/node_modules/typebox/build/type/types/function.d.mts +21 -0
- package/node_modules/typebox/build/type/types/function.mjs +25 -0
- package/node_modules/typebox/build/type/types/generic.d.mts +13 -0
- package/node_modules/typebox/build/type/types/generic.mjs +17 -0
- package/node_modules/typebox/build/type/types/identifier.d.mts +11 -0
- package/node_modules/typebox/build/type/types/identifier.mjs +17 -0
- package/node_modules/typebox/build/type/types/index.d.mts +45 -0
- package/node_modules/typebox/build/type/types/index.mjs +51 -0
- package/node_modules/typebox/build/type/types/infer.d.mts +15 -0
- package/node_modules/typebox/build/type/types/infer.mjs +20 -0
- package/node_modules/typebox/build/type/types/integer.d.mts +12 -0
- package/node_modules/typebox/build/type/types/integer.mjs +21 -0
- package/node_modules/typebox/build/type/types/intersect.d.mts +15 -0
- package/node_modules/typebox/build/type/types/intersect.mjs +24 -0
- package/node_modules/typebox/build/type/types/literal.d.mts +31 -0
- package/node_modules/typebox/build/type/types/literal.mjs +62 -0
- package/node_modules/typebox/build/type/types/never.d.mts +12 -0
- package/node_modules/typebox/build/type/types/never.mjs +22 -0
- package/node_modules/typebox/build/type/types/null.d.mts +11 -0
- package/node_modules/typebox/build/type/types/null.mjs +17 -0
- package/node_modules/typebox/build/type/types/number.d.mts +12 -0
- package/node_modules/typebox/build/type/types/number.mjs +21 -0
- package/node_modules/typebox/build/type/types/object.d.mts +18 -0
- package/node_modules/typebox/build/type/types/object.mjs +28 -0
- package/node_modules/typebox/build/type/types/parameter.d.mts +17 -0
- package/node_modules/typebox/build/type/types/parameter.mjs +21 -0
- package/node_modules/typebox/build/type/types/properties.d.mts +43 -0
- package/node_modules/typebox/build/type/types/properties.mjs +15 -0
- package/node_modules/typebox/build/type/types/record.d.mts +52 -0
- package/node_modules/typebox/build/type/types/record.mjs +66 -0
- package/node_modules/typebox/build/type/types/ref.d.mts +19 -0
- package/node_modules/typebox/build/type/types/ref.mjs +18 -0
- package/node_modules/typebox/build/type/types/rest.d.mts +11 -0
- package/node_modules/typebox/build/type/types/rest.mjs +17 -0
- package/node_modules/typebox/build/type/types/schema.d.mts +176 -0
- package/node_modules/typebox/build/type/types/schema.mjs +15 -0
- package/node_modules/typebox/build/type/types/static.d.mts +45 -0
- package/node_modules/typebox/build/type/types/static.mjs +3 -0
- package/node_modules/typebox/build/type/types/string.d.mts +12 -0
- package/node_modules/typebox/build/type/types/string.mjs +22 -0
- package/node_modules/typebox/build/type/types/symbol.d.mts +11 -0
- package/node_modules/typebox/build/type/types/symbol.mjs +17 -0
- package/node_modules/typebox/build/type/types/template_literal.d.mts +28 -0
- package/node_modules/typebox/build/type/types/template_literal.mjs +37 -0
- package/node_modules/typebox/build/type/types/this.d.mts +14 -0
- package/node_modules/typebox/build/type/types/this.mjs +17 -0
- package/node_modules/typebox/build/type/types/tuple.d.mts +38 -0
- package/node_modules/typebox/build/type/types/tuple.mjs +25 -0
- package/node_modules/typebox/build/type/types/undefined.d.mts +11 -0
- package/node_modules/typebox/build/type/types/undefined.mjs +17 -0
- package/node_modules/typebox/build/type/types/union.d.mts +15 -0
- package/node_modules/typebox/build/type/types/union.mjs +24 -0
- package/node_modules/typebox/build/type/types/unknown.d.mts +10 -0
- package/node_modules/typebox/build/type/types/unknown.mjs +17 -0
- package/node_modules/typebox/build/type/types/unsafe.d.mts +10 -0
- package/node_modules/typebox/build/type/types/unsafe.mjs +20 -0
- package/node_modules/typebox/build/type/types/void.d.mts +11 -0
- package/node_modules/typebox/build/type/types/void.mjs +17 -0
- package/node_modules/typebox/build/typebox.d.mts +69 -0
- package/node_modules/typebox/build/typebox.mjs +85 -0
- package/node_modules/typebox/build/value/assert/assert.d.mts +14 -0
- package/node_modules/typebox/build/value/assert/assert.mjs +28 -0
- package/node_modules/typebox/build/value/assert/index.d.mts +1 -0
- package/node_modules/typebox/build/value/assert/index.mjs +1 -0
- package/node_modules/typebox/build/value/check/check.d.mts +5 -0
- package/node_modules/typebox/build/value/check/check.mjs +11 -0
- package/node_modules/typebox/build/value/check/index.d.mts +1 -0
- package/node_modules/typebox/build/value/check/index.mjs +1 -0
- package/node_modules/typebox/build/value/clean/additional.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/additional.mjs +6 -0
- package/node_modules/typebox/build/value/clean/clean.d.mts +15 -0
- package/node_modules/typebox/build/value/clean/clean.mjs +17 -0
- package/node_modules/typebox/build/value/clean/from_array.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_array.mjs +8 -0
- package/node_modules/typebox/build/value/clean/from_cyclic.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_cyclic.mjs +6 -0
- package/node_modules/typebox/build/value/clean/from_intersect.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_intersect.mjs +26 -0
- package/node_modules/typebox/build/value/clean/from_object.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_object.mjs +31 -0
- package/node_modules/typebox/build/value/clean/from_record.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_record.mjs +32 -0
- package/node_modules/typebox/build/value/clean/from_ref.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_ref.mjs +8 -0
- package/node_modules/typebox/build/value/clean/from_tuple.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_tuple.mjs +14 -0
- package/node_modules/typebox/build/value/clean/from_type.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_type.mjs +21 -0
- package/node_modules/typebox/build/value/clean/from_union.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_union.mjs +12 -0
- package/node_modules/typebox/build/value/clean/index.d.mts +1 -0
- package/node_modules/typebox/build/value/clean/index.mjs +1 -0
- package/node_modules/typebox/build/value/clone/clone.d.mts +5 -0
- package/node_modules/typebox/build/value/clone/clone.mjs +12 -0
- package/node_modules/typebox/build/value/clone/index.d.mts +1 -0
- package/node_modules/typebox/build/value/clone/index.mjs +1 -0
- package/node_modules/typebox/build/value/codec/callback.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/callback.mjs +25 -0
- package/node_modules/typebox/build/value/codec/decode.d.mts +12 -0
- package/node_modules/typebox/build/value/codec/decode.mjs +52 -0
- package/node_modules/typebox/build/value/codec/encode.d.mts +12 -0
- package/node_modules/typebox/build/value/codec/encode.mjs +52 -0
- package/node_modules/typebox/build/value/codec/from_array.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_array.mjs +35 -0
- package/node_modules/typebox/build/value/codec/from_cyclic.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_cyclic.mjs +8 -0
- package/node_modules/typebox/build/value/codec/from_intersect.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_intersect.mjs +58 -0
- package/node_modules/typebox/build/value/codec/from_object.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_object.mjs +42 -0
- package/node_modules/typebox/build/value/codec/from_record.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_record.mjs +39 -0
- package/node_modules/typebox/build/value/codec/from_ref.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_ref.mjs +31 -0
- package/node_modules/typebox/build/value/codec/from_tuple.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_tuple.mjs +32 -0
- package/node_modules/typebox/build/value/codec/from_type.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_type.mjs +22 -0
- package/node_modules/typebox/build/value/codec/from_union.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_union.mjs +39 -0
- package/node_modules/typebox/build/value/codec/has.d.mts +5 -0
- package/node_modules/typebox/build/value/codec/has.mjs +93 -0
- package/node_modules/typebox/build/value/codec/index.d.mts +3 -0
- package/node_modules/typebox/build/value/codec/index.mjs +3 -0
- package/node_modules/typebox/build/value/convert/convert.d.mts +13 -0
- package/node_modules/typebox/build/value/convert/convert.mjs +15 -0
- package/node_modules/typebox/build/value/convert/from_additional.d.mts +6 -0
- package/node_modules/typebox/build/value/convert/from_additional.mjs +18 -0
- package/node_modules/typebox/build/value/convert/from_array.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_array.mjs +7 -0
- package/node_modules/typebox/build/value/convert/from_bigint.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_bigint.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_boolean.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_boolean.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_cyclic.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_cyclic.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_enum.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_enum.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_integer.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_integer.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_intersect.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_intersect.mjs +8 -0
- package/node_modules/typebox/build/value/convert/from_literal.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_literal.mjs +44 -0
- package/node_modules/typebox/build/value/convert/from_null.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_null.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_number.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_number.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_object.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_object.mjs +28 -0
- package/node_modules/typebox/build/value/convert/from_record.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_record.mjs +23 -0
- package/node_modules/typebox/build/value/convert/from_ref.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_ref.mjs +8 -0
- package/node_modules/typebox/build/value/convert/from_string.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_string.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_template_literal.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_template_literal.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_tuple.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_tuple.mjs +11 -0
- package/node_modules/typebox/build/value/convert/from_type.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_type.mjs +43 -0
- package/node_modules/typebox/build/value/convert/from_undefined.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_undefined.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_union.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_union.mjs +13 -0
- package/node_modules/typebox/build/value/convert/from_void.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_void.mjs +6 -0
- package/node_modules/typebox/build/value/convert/index.d.mts +1 -0
- package/node_modules/typebox/build/value/convert/index.mjs +1 -0
- package/node_modules/typebox/build/value/convert/try/index.d.mts +1 -0
- package/node_modules/typebox/build/value/convert/try/index.mjs +1 -0
- package/node_modules/typebox/build/value/convert/try/try.d.mts +8 -0
- package/node_modules/typebox/build/value/convert/try/try.mjs +8 -0
- package/node_modules/typebox/build/value/convert/try/try_array.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/try/try_array.mjs +6 -0
- package/node_modules/typebox/build/value/convert/try/try_bigint.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/try/try_bigint.mjs +45 -0
- package/node_modules/typebox/build/value/convert/try/try_boolean.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/try/try_boolean.mjs +41 -0
- package/node_modules/typebox/build/value/convert/try/try_null.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/try/try_null.mjs +44 -0
- package/node_modules/typebox/build/value/convert/try/try_number.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/try/try_number.mjs +44 -0
- package/node_modules/typebox/build/value/convert/try/try_result.d.mts +8 -0
- package/node_modules/typebox/build/value/convert/try/try_result.mjs +17 -0
- package/node_modules/typebox/build/value/convert/try/try_string.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/try/try_string.mjs +12 -0
- package/node_modules/typebox/build/value/convert/try/try_undefined.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/try/try_undefined.mjs +44 -0
- package/node_modules/typebox/build/value/create/create.d.mts +5 -0
- package/node_modules/typebox/build/value/create/create.mjs +11 -0
- package/node_modules/typebox/build/value/create/error.d.mts +5 -0
- package/node_modules/typebox/build/value/create/error.mjs +7 -0
- package/node_modules/typebox/build/value/create/from_array.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_array.mjs +10 -0
- package/node_modules/typebox/build/value/create/from_bigint.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_bigint.mjs +7 -0
- package/node_modules/typebox/build/value/create/from_boolean.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_boolean.mjs +4 -0
- package/node_modules/typebox/build/value/create/from_constructor.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_constructor.mjs +10 -0
- package/node_modules/typebox/build/value/create/from_cyclic.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_cyclic.mjs +6 -0
- package/node_modules/typebox/build/value/create/from_default.d.mts +3 -0
- package/node_modules/typebox/build/value/create/from_default.mjs +10 -0
- package/node_modules/typebox/build/value/create/from_enum.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_enum.mjs +6 -0
- package/node_modules/typebox/build/value/create/from_function.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_function.mjs +6 -0
- package/node_modules/typebox/build/value/create/from_integer.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_integer.mjs +8 -0
- package/node_modules/typebox/build/value/create/from_intersect.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_intersect.mjs +8 -0
- package/node_modules/typebox/build/value/create/from_literal.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_literal.mjs +4 -0
- package/node_modules/typebox/build/value/create/from_never.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_never.mjs +5 -0
- package/node_modules/typebox/build/value/create/from_null.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_null.mjs +4 -0
- package/node_modules/typebox/build/value/create/from_number.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_number.mjs +8 -0
- package/node_modules/typebox/build/value/create/from_object.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_object.mjs +9 -0
- package/node_modules/typebox/build/value/create/from_record.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_record.mjs +8 -0
- package/node_modules/typebox/build/value/create/from_ref.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_ref.mjs +9 -0
- package/node_modules/typebox/build/value/create/from_string.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_string.mjs +9 -0
- package/node_modules/typebox/build/value/create/from_symbol.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_symbol.mjs +4 -0
- package/node_modules/typebox/build/value/create/from_template_literal.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_template_literal.mjs +11 -0
- package/node_modules/typebox/build/value/create/from_tuple.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_tuple.mjs +5 -0
- package/node_modules/typebox/build/value/create/from_type.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_type.mjs +61 -0
- package/node_modules/typebox/build/value/create/from_undefined.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_undefined.mjs +4 -0
- package/node_modules/typebox/build/value/create/from_union.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_union.mjs +9 -0
- package/node_modules/typebox/build/value/create/from_void.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_void.mjs +4 -0
- package/node_modules/typebox/build/value/create/index.d.mts +2 -0
- package/node_modules/typebox/build/value/create/index.mjs +2 -0
- package/node_modules/typebox/build/value/default/default.d.mts +13 -0
- package/node_modules/typebox/build/value/default/default.mjs +15 -0
- package/node_modules/typebox/build/value/default/from_array.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_array.mjs +12 -0
- package/node_modules/typebox/build/value/default/from_cyclic.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_cyclic.mjs +7 -0
- package/node_modules/typebox/build/value/default/from_default.d.mts +3 -0
- package/node_modules/typebox/build/value/default/from_default.mjs +13 -0
- package/node_modules/typebox/build/value/default/from_intersect.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_intersect.mjs +9 -0
- package/node_modules/typebox/build/value/default/from_object.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_object.mjs +32 -0
- package/node_modules/typebox/build/value/default/from_record.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_record.mjs +26 -0
- package/node_modules/typebox/build/value/default/from_ref.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_ref.mjs +9 -0
- package/node_modules/typebox/build/value/default/from_tuple.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_tuple.mjs +14 -0
- package/node_modules/typebox/build/value/default/from_type.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_type.mjs +25 -0
- package/node_modules/typebox/build/value/default/from_union.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_union.mjs +14 -0
- package/node_modules/typebox/build/value/default/index.d.mts +1 -0
- package/node_modules/typebox/build/value/default/index.mjs +1 -0
- package/node_modules/typebox/build/value/delta/diff.d.mts +10 -0
- package/node_modules/typebox/build/value/delta/diff.mjs +135 -0
- package/node_modules/typebox/build/value/delta/edit.d.mts +24 -0
- package/node_modules/typebox/build/value/delta/edit.mjs +17 -0
- package/node_modules/typebox/build/value/delta/index.d.mts +3 -0
- package/node_modules/typebox/build/value/delta/index.mjs +3 -0
- package/node_modules/typebox/build/value/delta/patch.d.mts +8 -0
- package/node_modules/typebox/build/value/delta/patch.mjs +42 -0
- package/node_modules/typebox/build/value/equal/equal.d.mts +2 -0
- package/node_modules/typebox/build/value/equal/equal.mjs +6 -0
- package/node_modules/typebox/build/value/equal/index.d.mts +1 -0
- package/node_modules/typebox/build/value/equal/index.mjs +1 -0
- package/node_modules/typebox/build/value/errors/errors.d.mts +16 -0
- package/node_modules/typebox/build/value/errors/errors.mjs +17 -0
- package/node_modules/typebox/build/value/errors/index.d.mts +1 -0
- package/node_modules/typebox/build/value/errors/index.mjs +1 -0
- package/node_modules/typebox/build/value/hash/hash.d.mts +6 -0
- package/node_modules/typebox/build/value/hash/hash.mjs +10 -0
- package/node_modules/typebox/build/value/hash/index.d.mts +1 -0
- package/node_modules/typebox/build/value/hash/index.mjs +1 -0
- package/node_modules/typebox/build/value/index.d.mts +20 -0
- package/node_modules/typebox/build/value/index.mjs +29 -0
- package/node_modules/typebox/build/value/parse/index.d.mts +1 -0
- package/node_modules/typebox/build/value/parse/index.mjs +1 -0
- package/node_modules/typebox/build/value/parse/parse.d.mts +11 -0
- package/node_modules/typebox/build/value/parse/parse.mjs +47 -0
- package/node_modules/typebox/build/value/pipeline/index.d.mts +1 -0
- package/node_modules/typebox/build/value/pipeline/index.mjs +1 -0
- package/node_modules/typebox/build/value/pipeline/pipeline.d.mts +10 -0
- package/node_modules/typebox/build/value/pipeline/pipeline.mjs +15 -0
- package/node_modules/typebox/build/value/pointer/index.d.mts +1 -0
- package/node_modules/typebox/build/value/pointer/index.mjs +1 -0
- package/node_modules/typebox/build/value/repair/error.d.mts +7 -0
- package/node_modules/typebox/build/value/repair/error.mjs +8 -0
- package/node_modules/typebox/build/value/repair/from_array.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_array.mjs +39 -0
- package/node_modules/typebox/build/value/repair/from_enum.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_enum.mjs +6 -0
- package/node_modules/typebox/build/value/repair/from_intersect.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_intersect.mjs +8 -0
- package/node_modules/typebox/build/value/repair/from_object.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_object.mjs +33 -0
- package/node_modules/typebox/build/value/repair/from_record.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_record.mjs +33 -0
- package/node_modules/typebox/build/value/repair/from_ref.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_ref.mjs +9 -0
- package/node_modules/typebox/build/value/repair/from_template_literal.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_template_literal.mjs +7 -0
- package/node_modules/typebox/build/value/repair/from_tuple.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_tuple.mjs +12 -0
- package/node_modules/typebox/build/value/repair/from_type.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_type.mjs +88 -0
- package/node_modules/typebox/build/value/repair/from_union.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_union.mjs +24 -0
- package/node_modules/typebox/build/value/repair/from_unknown.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_unknown.mjs +12 -0
- package/node_modules/typebox/build/value/repair/index.d.mts +1 -0
- package/node_modules/typebox/build/value/repair/index.mjs +1 -0
- package/node_modules/typebox/build/value/repair/repair.d.mts +17 -0
- package/node_modules/typebox/build/value/repair/repair.mjs +20 -0
- package/node_modules/typebox/build/value/shared/index.d.mts +3 -0
- package/node_modules/typebox/build/value/shared/index.mjs +4 -0
- package/node_modules/typebox/build/value/shared/optional_undefined.d.mts +2 -0
- package/node_modules/typebox/build/value/shared/optional_undefined.mjs +15 -0
- package/node_modules/typebox/build/value/shared/union_priority_sort.d.mts +7 -0
- package/node_modules/typebox/build/value/shared/union_priority_sort.mjs +72 -0
- package/node_modules/typebox/build/value/shared/union_score_select.d.mts +3 -0
- package/node_modules/typebox/build/value/shared/union_score_select.mjs +51 -0
- package/node_modules/typebox/build/value/value.d.mts +15 -0
- package/node_modules/typebox/build/value/value.mjs +15 -0
- package/node_modules/typebox/license +23 -0
- package/node_modules/typebox/package.json +87 -0
- package/node_modules/typebox/readme.md +367 -0
- package/node_modules/unist-util-is/index.d.ts +5 -0
- package/node_modules/unist-util-is/index.d.ts.map +1 -0
- package/node_modules/unist-util-is/index.js +7 -0
- package/node_modules/unist-util-is/lib/index.d.ts +111 -0
- package/node_modules/unist-util-is/lib/index.d.ts.map +1 -0
- package/node_modules/unist-util-is/lib/index.js +296 -0
- package/node_modules/unist-util-is/license +22 -0
- package/node_modules/unist-util-is/package.json +103 -0
- package/node_modules/unist-util-is/readme.md +351 -0
- package/node_modules/unist-util-position/index.d.ts +1 -0
- package/node_modules/unist-util-position/index.js +1 -0
- package/node_modules/unist-util-position/lib/index.d.ts +45 -0
- package/node_modules/unist-util-position/lib/index.js +95 -0
- package/node_modules/unist-util-position/license +22 -0
- package/node_modules/unist-util-position/package.json +76 -0
- package/node_modules/unist-util-position/readme.md +243 -0
- package/node_modules/unist-util-stringify-position/index.d.ts +1 -0
- package/node_modules/unist-util-stringify-position/index.js +1 -0
- package/node_modules/unist-util-stringify-position/lib/index.d.ts +61 -0
- package/node_modules/unist-util-stringify-position/lib/index.js +84 -0
- package/node_modules/unist-util-stringify-position/license +22 -0
- package/node_modules/unist-util-stringify-position/package.json +80 -0
- package/node_modules/unist-util-stringify-position/readme.md +206 -0
- package/node_modules/unist-util-visit/index.d.ts +9 -0
- package/node_modules/unist-util-visit/index.js +2 -0
- package/node_modules/unist-util-visit/lib/index.d.ts +195 -0
- package/node_modules/unist-util-visit/lib/index.d.ts.map +1 -0
- package/node_modules/unist-util-visit/lib/index.js +312 -0
- package/node_modules/unist-util-visit/license +22 -0
- package/node_modules/unist-util-visit/package.json +108 -0
- package/node_modules/unist-util-visit/readme.md +313 -0
- package/node_modules/unist-util-visit-parents/index.d.ts +14 -0
- package/node_modules/unist-util-visit-parents/index.js +2 -0
- package/node_modules/unist-util-visit-parents/lib/color.d.ts +6 -0
- package/node_modules/unist-util-visit-parents/lib/color.d.ts.map +1 -0
- package/node_modules/unist-util-visit-parents/lib/color.js +7 -0
- package/node_modules/unist-util-visit-parents/lib/color.node.d.ts +6 -0
- package/node_modules/unist-util-visit-parents/lib/color.node.d.ts.map +1 -0
- package/node_modules/unist-util-visit-parents/lib/color.node.js +7 -0
- package/node_modules/unist-util-visit-parents/lib/index.d.ts +219 -0
- package/node_modules/unist-util-visit-parents/lib/index.d.ts.map +1 -0
- package/node_modules/unist-util-visit-parents/lib/index.js +399 -0
- package/node_modules/unist-util-visit-parents/license +22 -0
- package/node_modules/unist-util-visit-parents/package.json +106 -0
- package/node_modules/unist-util-visit-parents/readme.md +388 -0
- package/node_modules/vfile/index.d.ts +153 -0
- package/node_modules/vfile/index.js +2 -0
- package/node_modules/vfile/lib/index.d.ts +1465 -0
- package/node_modules/vfile/lib/index.d.ts.map +1 -0
- package/node_modules/vfile/lib/index.js +643 -0
- package/node_modules/vfile/lib/minpath.browser.d.ts +47 -0
- package/node_modules/vfile/lib/minpath.browser.d.ts.map +1 -0
- package/node_modules/vfile/lib/minpath.browser.js +426 -0
- package/node_modules/vfile/lib/minpath.d.ts +2 -0
- package/node_modules/vfile/lib/minpath.d.ts.map +1 -0
- package/node_modules/vfile/lib/minpath.js +1 -0
- package/node_modules/vfile/lib/minproc.browser.d.ts +6 -0
- package/node_modules/vfile/lib/minproc.browser.d.ts.map +1 -0
- package/node_modules/vfile/lib/minproc.browser.js +8 -0
- package/node_modules/vfile/lib/minproc.d.ts +2 -0
- package/node_modules/vfile/lib/minproc.d.ts.map +1 -0
- package/node_modules/vfile/lib/minproc.js +1 -0
- package/node_modules/vfile/lib/minurl.browser.d.ts +9 -0
- package/node_modules/vfile/lib/minurl.browser.d.ts.map +1 -0
- package/node_modules/vfile/lib/minurl.browser.js +76 -0
- package/node_modules/vfile/lib/minurl.d.ts +3 -0
- package/node_modules/vfile/lib/minurl.d.ts.map +1 -0
- package/node_modules/vfile/lib/minurl.js +2 -0
- package/node_modules/vfile/lib/minurl.shared.d.ts +20 -0
- package/node_modules/vfile/lib/minurl.shared.d.ts.map +1 -0
- package/node_modules/vfile/lib/minurl.shared.js +31 -0
- package/node_modules/vfile/license +21 -0
- package/node_modules/vfile/package.json +134 -0
- package/node_modules/vfile/readme.md +785 -0
- package/node_modules/vfile-message/index.d.ts +2 -0
- package/node_modules/vfile-message/index.js +5 -0
- package/node_modules/vfile-message/lib/index.d.ts +508 -0
- package/node_modules/vfile-message/lib/index.js +314 -0
- package/node_modules/vfile-message/license +22 -0
- package/node_modules/vfile-message/package.json +80 -0
- package/node_modules/vfile-message/readme.md +252 -0
- package/node_modules/zwitch/index.d.ts +67 -0
- package/node_modules/zwitch/index.js +118 -0
- package/node_modules/zwitch/license +22 -0
- package/node_modules/zwitch/package.json +72 -0
- package/node_modules/zwitch/readme.md +226 -0
- package/package.json +57 -0
- package/src/config/settings.ts +123 -0
- package/src/contributions/actions.ts +6 -0
- package/src/contributions/developer-prompt.ts +119 -0
- package/src/core/fork-history.ts +96 -0
- package/src/core/instructions.ts +98 -0
- package/src/core/prompts.ts +48 -0
- package/src/core/types.ts +12 -0
- package/src/extension.ts +329 -0
- package/src/index.ts +7 -0
- package/src/protocol/presentation.ts +36 -0
- package/src/protocol/prompt-envelope.ts +29 -0
- package/src/protocol/session-hierarchy.ts +65 -0
- package/src/runtime/agent-runner.ts +392 -0
- package/src/runtime/coordinator.ts +998 -0
- package/src/runtime/nested-tool-activity.ts +56 -0
- package/src/runtime/session-root.ts +8 -0
- package/src/tools/followup-task/definition.ts +41 -0
- package/src/tools/followup-task/result.ts +15 -0
- package/src/tools/interrupt-agent/definition.ts +37 -0
- package/src/tools/interrupt-agent/result.ts +26 -0
- package/src/tools/limits.ts +4 -0
- package/src/tools/list-agents/definition.ts +39 -0
- package/src/tools/list-agents/result.ts +30 -0
- package/src/tools/names.ts +10 -0
- package/src/tools/repeat-breaker.ts +62 -0
- package/src/tools/result.ts +99 -0
- package/src/tools/scope.ts +9 -0
- package/src/tools/send-message/definition.ts +48 -0
- package/src/tools/send-message/result.ts +15 -0
- package/src/tools/spawn-agent/definition.ts +135 -0
- package/src/tools/spawn-agent/result.ts +37 -0
- package/src/tools/wait-agent/definition.ts +83 -0
- package/src/tools/wait-agent/result.ts +33 -0
- package/src/ui/agent-browser.ts +462 -0
- package/src/ui/agent-hub-presentation.ts +79 -0
- package/src/ui/agent-summary.ts +89 -0
- package/src/ui/agent-tree.ts +61 -0
- package/src/ui/agent-widget.ts +185 -0
- package/src/ui/coordinator-snapshot-source.ts +51 -0
- package/src/ui/tool-presentations.ts +220 -0
- package/test/agent-hub-presentation.test.ts +57 -0
- package/test/developer-prompt.test.ts +68 -0
- package/test/extension.test.ts +280 -0
- package/test/instructions.test.ts +90 -0
- package/test/protocol-session-hierarchy.test.ts +42 -0
- package/test/runtime-agent-runner.test.ts +308 -0
- package/test/runtime-coordinator.test.ts +402 -0
- package/test/runtime-fork-history.test.ts +140 -0
- package/test/runtime-nested-tool-activity.test.ts +19 -0
- package/test/runtime-prompts.test.ts +32 -0
- package/test/spawn-agent-definition.test.ts +16 -0
- package/test/tools.test.ts +91 -0
- package/test/ui-agent-browser.test.ts +218 -0
- package/test/ui-agent-tree.test.ts +37 -0
- package/test/ui-agent-widget.test.ts +98 -0
- package/test/ui-presentations.test.ts +122 -0
- package/tsconfig.json +16 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CodeView.js","names":[],"sources":["../../src/components/CodeView.ts"],"sourcesContent":["import {\n CORE_CSS_ATTRIBUTE,\n DEFAULT_CODE_VIEW_FILE_METRICS,\n DEFAULT_CODE_VIEW_LAYOUT,\n DEFAULT_COLLAPSED_CONTEXT_THRESHOLD,\n DEFAULT_SMOOTH_SCROLL_SETTINGS,\n DEFAULT_THEMES,\n DIFFS_DEVELOPMENT_BUILD,\n DIFFS_TAG_NAME,\n THEME_CSS_ATTRIBUTE,\n UNSAFE_CSS_ATTRIBUTE,\n} from '../constants';\nimport type { SelectionWriteOptions } from '../managers/InteractionManager';\nimport {\n dequeueRender,\n queueRender,\n} from '../managers/UniversalRenderingManager';\nimport type {\n CodeViewCreateEditorOptions,\n CodeViewDiffItem,\n CodeViewFileItem,\n CodeViewItem,\n CodeViewItemScrollTarget,\n CodeViewLayout,\n CodeViewLineScrollTarget,\n CodeViewPositionScrollTarget,\n CodeViewRangeScrollTarget,\n CodeViewScrollBehavior,\n CodeViewScrollTarget,\n DiffLineAnnotation,\n DiffsEditor,\n FileContents,\n HunkSeparators,\n LineAnnotation,\n PendingCodeViewLayoutReset,\n SelectedLineRange,\n SelectionSide,\n SmoothScrollSettings,\n VirtualFileMetrics,\n VirtualWindowSpecs,\n} from '../types';\nimport { areManagedSnapshotsEqual } from '../utils/areManagedSnapshotsEqual';\nimport { areObjectsEqual } from '../utils/areObjectsEqual';\nimport { areOptionsEqual } from '../utils/areOptionsEqual';\nimport { areSelectionsEqual } from '../utils/areSelectionsEqual';\nimport { areThemesEqual } from '../utils/areThemesEqual';\nimport { createCodeViewHeaderFooterHostElement } from '../utils/createCodeViewHeaderFooterHostElement';\nimport { createWindowFromScrollPosition } from '../utils/createWindowFromScrollPosition';\nimport { finishEditSessionForDiff } from '../utils/editSessionHunks';\nimport { isStyleNode } from '../utils/isStyleNode';\nimport { prefersReducedMotion } from '../utils/prefersReducedMotion';\nimport { roundToDevicePixel } from '../utils/roundToDevicePixel';\nimport type { WorkerPoolManager } from '../worker';\nimport type { FileOptions } from './File';\nimport type { FileDiffOptions } from './FileDiff';\nimport { VirtualizedFile } from './VirtualizedFile';\nimport { VirtualizedFileDiff } from './VirtualizedFileDiff';\nimport type { VirtualizerConfig } from './Virtualizer';\n\n// When re-rendering content of the virtualizer, it's important that we\n// maintain a visual anchor, usually this is the first fully visible element,\n// whether it's an Item (a file or diff header), or a specific line. If the\n// rendered content ever ends up shifting things around, we'll need to reset\n// the new position back to the viewportOffset, relative to where that element\n// currently is\ninterface ItemAnchor {\n type: 'item';\n id: string;\n viewportOffset: number;\n}\n\ninterface LineAnchor {\n type: 'line';\n id: string;\n lineNumber: number;\n side: SelectionSide | undefined;\n viewportOffset: number;\n}\n\ntype ScrollAnchor = ItemAnchor | LineAnchor;\n\ninterface LineScrollPosition {\n top: number;\n height: number;\n}\n\ninterface StickyBounds {\n stickyTop: number;\n stickyBottom: number;\n}\n\n// Per-record state for one of the always-rendered header/footer hosts, keeping\n// its element, the callback that last populated it, and its measured height in a\n// single place instead of parallel fields on the CodeView instance.\ninterface HeaderFooterHost {\n // The mounted host element, or undefined when the callback is absent.\n element: HTMLDivElement | undefined;\n // The renderCodeView{Header,Footer} callback that last populated `element`, so\n // a swapped reference can be detected and the host re-populated in place.\n render?(): HTMLElement | undefined;\n // Measured height, folded into the scroll-range / item-offset math. Stays 0\n // while the host is absent (a no-op) so the math is always coherent.\n height: number;\n}\n\ninterface PagedScrollPosition {\n pagedScrollTop: number;\n scrollPageOffset: number;\n}\n\ninterface AdvancedVirtualizedBaseItem {\n /** Current index of this record in the ordered items array. */\n index: number;\n /** Absolute top offset of this item inside the scroll content. */\n top: number;\n /** Total measured height reserved for this item. */\n height: number;\n /** Root <diffs-container> node currently mounted for this item, only exists\n * when rendered. */\n element: HTMLElement | undefined;\n /** Last controlled version observed for this record. */\n version: number | undefined;\n /** Last CodeView option revision this item rendered with. */\n renderedOptionsRevision: number;\n}\n\ninterface CodeViewDiffItemContext<\n LAnnotation,\n> extends AdvancedVirtualizedBaseItem {\n type: 'diff';\n /** Latest item snapshot for this record. Controlled updates can replace it. */\n item: CodeViewDiffItem<LAnnotation>;\n /** Virtualized diff instance responsible for rendering this item. */\n instance: VirtualizedFileDiff<LAnnotation>;\n}\n\ninterface CodeViewFileItemContext<\n LAnnotation,\n> extends AdvancedVirtualizedBaseItem {\n type: 'file';\n /** Latest item snapshot for this record. Controlled updates can replace it. */\n item: CodeViewFileItem<LAnnotation>;\n /** Virtualized file instance responsible for rendering this item. */\n instance: VirtualizedFile<LAnnotation>;\n}\n\ntype CodeViewContextItem<LAnnotation> =\n | CodeViewDiffItemContext<LAnnotation>\n | CodeViewFileItemContext<LAnnotation>;\n\nexport interface CodeViewRenderedDiffItem<LAnnotation> {\n id: string;\n type: 'diff';\n item: CodeViewDiffItem<LAnnotation>;\n version: number | undefined;\n element: HTMLElement;\n instance: VirtualizedFileDiff<LAnnotation>;\n}\n\nexport interface CodeViewRenderedFileItem<LAnnotation> {\n id: string;\n type: 'file';\n item: CodeViewFileItem<LAnnotation>;\n version: number | undefined;\n element: HTMLElement;\n instance: VirtualizedFile<LAnnotation>;\n}\n\nexport type CodeViewRenderedItem<LAnnotation> =\n | CodeViewRenderedDiffItem<LAnnotation>\n | CodeViewRenderedFileItem<LAnnotation>;\n\n// Everything the React layer portals into, published together so a single store\n// subscription drives per-item slots AND the global header/footer.\nexport interface CodeViewSlotSnapshot<LAnnotation> {\n // Rendered items that need React-managed slot content (per-item headers,\n // annotations, gutter utilities), or undefined when none.\n items: CodeViewRenderedItem<LAnnotation>[] | undefined;\n // The always-rendered header/footer host elements React portals into, or\n // undefined when the corresponding renderCodeViewHeader/Footer callback is not\n // set. Because these live in the snapshot, a host mounting/unmounting changes\n // it and triggers a publish — which is how React learns about hosts that are\n // created on a later (worker-ready) render.\n header: HTMLElement | undefined;\n footer: HTMLElement | undefined;\n}\n\nexport interface CodeViewLineSelection {\n id: string;\n range: SelectedLineRange;\n}\n\nexport interface CodeViewCoordinator<LAnnotation> {\n hasHeaderRenderers: boolean;\n hasAnnotationRenderer: boolean;\n hasGutterRenderer: boolean;\n onSnapshotChange(\n snapshot: CodeViewSlotSnapshot<LAnnotation> | undefined\n ): void;\n}\n\nexport type CodeViewScrollListener<LAnnotation> = (\n scrollTop: number,\n viewer: CodeView<LAnnotation>\n) => void;\n\ntype OverloadCallbackArgs<TCallback> = TCallback extends (\n ...args: infer TArgs\n) => unknown\n ? TArgs\n : never;\n\ntype CallbackReturn<TCallback> = TCallback extends (\n ...args: never[]\n) => infer TReturn\n ? TReturn\n : never;\n\ntype OverloadFileCallbackArgs<\n LAnnotation,\n TKey extends keyof FileOptions<LAnnotation>,\n> = OverloadCallbackArgs<NonNullable<FileOptions<LAnnotation>[TKey]>>;\n\ntype OverloadDiffCallbackArgs<\n LAnnotation,\n TKey extends keyof FileDiffOptions<LAnnotation>,\n> = OverloadCallbackArgs<NonNullable<FileDiffOptions<LAnnotation>[TKey]>>;\n\ntype CodeViewFileOptionCallback<\n LAnnotation,\n TKey extends keyof FileOptions<LAnnotation>,\n> = (\n ...args: [\n ...OverloadFileCallbackArgs<LAnnotation, TKey>,\n context: CodeViewFileItemContext<LAnnotation>,\n ]\n) => CallbackReturn<NonNullable<FileOptions<LAnnotation>[TKey]>>;\n\ntype CodeViewDiffOptionCallback<\n LAnnotation,\n TKey extends keyof FileDiffOptions<LAnnotation>,\n> = (\n ...args: [\n ...OverloadDiffCallbackArgs<LAnnotation, TKey>,\n context: CodeViewDiffItemContext<LAnnotation>,\n ]\n) => CallbackReturn<NonNullable<FileDiffOptions<LAnnotation>[TKey]>>;\n\ntype CodeViewOptionCallback<\n LAnnotation,\n TKey extends keyof FileOptions<LAnnotation> &\n keyof FileDiffOptions<LAnnotation>,\n> = {\n (\n ...args: [\n ...OverloadFileCallbackArgs<LAnnotation, TKey>,\n context: CodeViewFileItemContext<LAnnotation>,\n ]\n ): CallbackReturn<NonNullable<FileOptions<LAnnotation>[TKey]>>;\n (\n ...args: [\n ...OverloadDiffCallbackArgs<LAnnotation, TKey>,\n context: CodeViewDiffItemContext<LAnnotation>,\n ]\n ): CallbackReturn<NonNullable<FileDiffOptions<LAnnotation>[TKey]>>;\n};\n\nexport const CODE_VIEW_DIFF_OPTION_KEYS = [\n 'theme',\n 'disableLineNumbers',\n 'overflow',\n 'themeType',\n 'disableFileHeader',\n 'disableVirtualizationBuffers',\n 'preferredHighlighter',\n 'useCSSClasses',\n 'useTokenTransformer',\n 'tokenizeMaxLineLength',\n 'tokenizeMaxLength',\n 'unsafeCSS',\n 'diffStyle',\n 'diffIndicators',\n 'disableBackground',\n 'expandUnchanged',\n 'loadDiffFiles',\n 'collapsedContextThreshold',\n 'lineDiffType',\n 'maxLineDiffLength',\n 'expansionLineCount',\n 'lineHoverHighlight',\n 'enableTokenInteractionsOnWhitespace',\n 'enableGutterUtility',\n '__debugPointerEvents',\n 'enableLineSelection',\n 'controlledSelection',\n 'disableErrorHandling',\n] as const;\n\ntype CodeViewDiffOptionKeys = (typeof CODE_VIEW_DIFF_OPTION_KEYS)[number];\n\nexport const CODE_VIEW_FILE_OPTION_KEYS = [\n 'theme',\n 'disableLineNumbers',\n 'overflow',\n 'themeType',\n 'disableFileHeader',\n 'disableVirtualizationBuffers',\n 'preferredHighlighter',\n 'useCSSClasses',\n 'useTokenTransformer',\n 'tokenizeMaxLineLength',\n 'tokenizeMaxLength',\n 'unsafeCSS',\n 'lineHoverHighlight',\n 'enableTokenInteractionsOnWhitespace',\n 'enableGutterUtility',\n '__debugPointerEvents',\n 'enableLineSelection',\n 'controlledSelection',\n 'disableErrorHandling',\n] as const;\n\ntype CodeViewFileOptionKeys = (typeof CODE_VIEW_FILE_OPTION_KEYS)[number];\n\ntype CodeViewPassThroughOptions<LAnnotation> = Pick<\n FileDiffOptions<LAnnotation>,\n CodeViewDiffOptionKeys\n>;\n\ntype CodeViewMode = 'file' | 'diff';\n\ntype CodeViewModeItemContext<\n LAnnotation,\n TMode extends CodeViewMode,\n> = TMode extends 'file'\n ? CodeViewFileItemContext<LAnnotation>\n : CodeViewDiffItemContext<LAnnotation>;\n\ntype CodeViewModeOptionCallback<\n LAnnotation,\n TMode extends CodeViewMode,\n TKey extends CodeViewSharedCallbackKeys | CodeViewSelectionCallbackKeys,\n> = TMode extends 'file'\n ? CodeViewFileOptionCallback<LAnnotation, TKey>\n : CodeViewDiffOptionCallback<LAnnotation, TKey>;\n\ntype CodeViewModeInternalOptionCallback<\n LAnnotation,\n TMode extends CodeViewMode,\n TKey extends CodeViewSharedCallbackKeys | CodeViewSelectionCallbackKeys,\n> = (\n ...args: [\n ...OverloadCallbackArgs<\n NonNullable<CodeViewModeOptions<LAnnotation, TMode>[TKey]>\n >,\n CodeViewModeItemContext<LAnnotation, TMode>,\n ]\n) => CallbackReturn<NonNullable<CodeViewModeOptions<LAnnotation, TMode>[TKey]>>;\n\ntype CodeViewModeOptions<\n LAnnotation,\n TMode extends CodeViewMode,\n> = TMode extends 'file'\n ? FileOptions<LAnnotation>\n : FileDiffOptions<LAnnotation>;\n\nconst CODE_VIEW_SHARED_CALLBACK_KEYS = [\n 'renderCustomHeader',\n 'renderHeaderPrefix',\n 'renderHeaderFilenameSuffix',\n 'renderHeaderMetadata',\n 'renderAnnotation',\n 'renderGutterUtility',\n 'onPostRender',\n 'onGutterUtilityClick',\n 'onLineClick',\n 'onLineNumberClick',\n 'onLineEnter',\n 'onLineLeave',\n 'onTokenClick',\n 'onTokenEnter',\n 'onTokenLeave',\n] as const;\n\nconst CODE_VIEW_SELECTION_CALLBACK_KEYS = [\n 'onLineSelected',\n 'onLineSelectionStart',\n 'onLineSelectionChange',\n 'onLineSelectionEnd',\n] as const;\n\ntype CodeViewSharedCallbackKeys =\n (typeof CODE_VIEW_SHARED_CALLBACK_KEYS)[number];\n\ntype CodeViewSelectionCallbackKeys =\n (typeof CODE_VIEW_SELECTION_CALLBACK_KEYS)[number];\n\nconst CODE_VIEW_ITEM_OPTIONS_STATE = Symbol('CodeView.itemOptionsState');\n\ntype CodeViewItemCallbackCache = Partial<\n Record<CodeViewSharedCallbackKeys | CodeViewSelectionCallbackKeys, unknown>\n>;\n\n// Each item gets a tiny state record and an options object whose properties\n// come from a shared prototype. This avoids retaining dozens of getter closures\n// and property descriptors per item while still letting the item instance read\n// the latest CodeView options whenever it renders.\ninterface CodeViewItemOptionsState {\n // Store the id instead of the item object so item -> instance -> options does\n // not form a strong cycle back to the item context. The id also lets\n // updateItemId() keep reused instances pointed at the current record.\n id: string;\n // Callback wrappers are only needed when a renderer/interaction path reads a\n // callback option, so this cache stays absent for plain CodeView items.\n callbackCache?: CodeViewItemCallbackCache;\n}\n\ntype CodeViewItemOptions<\n LAnnotation,\n TMode extends CodeViewMode,\n> = CodeViewModeOptions<LAnnotation, TMode> & {\n [CODE_VIEW_ITEM_OPTIONS_STATE]: CodeViewItemOptionsState;\n};\n\n// One document change published by an item's editor, as delivered to the\n// onItemEditChange/onItemEditComplete options.\ninterface CodeViewItemEditChange<LAnnotation> {\n // Item snapshot from the time of the change; used as a fallback when the\n // session ends because the item was removed from the CodeView.\n item: CodeViewItem<LAnnotation>;\n file: FileContents;\n lineAnnotations:\n | LineAnnotation<LAnnotation>[]\n | DiffLineAnnotation<LAnnotation>[]\n | undefined;\n}\n\n// Mutable per-editor state shared with the CodeView-built onChange closure.\n// The closure resolves the owning item through `id` (kept current by\n// updateItemId) and caches each document change in `lastChange` so the final\n// contents can be published through onItemEditComplete when the session ends\n// — even if the editor is detached (scrolled out) at that moment.\ninterface CodeViewItemEditorState<LAnnotation> {\n id: string;\n lastChange?: CodeViewItemEditChange<LAnnotation>;\n}\n\n// Editor bookkeeping for one edit-mode item.\ninterface CodeViewItemEditorRecord<LAnnotation> {\n editor: DiffsEditor<LAnnotation>;\n state: CodeViewItemEditorState<LAnnotation>;\n}\n\nfunction defineOptionsState<LAnnotation, TMode extends CodeViewMode>(\n options: CodeViewModeOptions<LAnnotation, TMode>,\n state: CodeViewItemOptionsState\n): void {\n // Keep the state hidden from option enumeration. Renderer option builders\n // should copy known keys explicitly and must not depend on object spread.\n Object.defineProperty(options, CODE_VIEW_ITEM_OPTIONS_STATE, {\n configurable: false,\n enumerable: false,\n value: state,\n });\n}\n\n// NOTE(amadeus): It should be noted that there are times when various JS\n// tooling will try and enumerate various parts of our code when logging, and\n// sometimes this can trigger on the options prototype directly which won't\n// have access to an internal state. This forces us to be defensive later on\n// which is important\nfunction getItemOptionsState<LAnnotation, TMode extends CodeViewMode>(\n options: CodeViewModeOptions<LAnnotation, TMode>\n): CodeViewItemOptionsState | undefined {\n return (options as CodeViewItemOptions<LAnnotation, TMode>)[\n CODE_VIEW_ITEM_OPTIONS_STATE\n ];\n}\n\ntype CodeViewSharedCallbackOptions<LAnnotation> = {\n [TKey in CodeViewSharedCallbackKeys]?: CodeViewOptionCallback<\n LAnnotation,\n TKey\n >;\n};\n\ntype CodeViewSelectionCallbackOptions<LAnnotation> = {\n [TKey in CodeViewSelectionCallbackKeys]?: CodeViewOptionCallback<\n LAnnotation,\n TKey\n >;\n};\n\nfunction defineItemOption<TOptions extends object, TKey extends keyof TOptions>(\n target: TOptions,\n key: TKey,\n get: (receiver: TOptions) => TOptions[TKey]\n): void {\n // These accessors usually live on the shared prototype. Passing `this` to the\n // getter lets one shared accessor resolve per-item state from the receiving\n // options object instead of closing over an individual item.\n Object.defineProperty(target, key, {\n configurable: false,\n enumerable: true,\n get() {\n return get(this as TOptions);\n },\n });\n}\n\nexport interface CodeViewOptions<LAnnotation>\n extends\n CodeViewPassThroughOptions<LAnnotation>,\n CodeViewSharedCallbackOptions<LAnnotation>,\n CodeViewSelectionCallbackOptions<LAnnotation> {\n hunkSeparators?: Exclude<HunkSeparators, 'custom'>;\n itemMetrics?: Partial<VirtualFileMetrics>;\n pointerEventsOnScroll?: boolean;\n smoothScrollSettings?: SmoothScrollSettings;\n stickyHeaders?: boolean;\n controlledSelection?: boolean;\n onSelectedLinesChange?(selection: CodeViewLineSelection | null): void;\n layout?: CodeViewLayout;\n /**\n * Create an editor for an item entering edit mode (`edit: true`). Providing\n * this option is what enables item editing. Pass the given options into the\n * editor constructor — `new Editor(options)` — so CodeView can route\n * document changes to `onItemEditChange`. CodeView owns the returned\n * editor's lifecycle: it attaches when the edited item mounts, re-attaches\n * across virtualization unmounts, and cleans the editor up once the item\n * stops being editable (edit off, collapsed, or removed). Returning\n * undefined declines the attach; CodeView retries on later render passes.\n */\n createEditor?(\n options: CodeViewCreateEditorOptions<LAnnotation>\n ): DiffsEditor<LAnnotation> | undefined;\n /**\n * Called when an edited item's document changes, with the owning item\n * resolved by CodeView.\n */\n onItemEditChange?(\n item: CodeViewItem<LAnnotation>,\n file: FileContents,\n lineAnnotations?:\n | LineAnnotation<LAnnotation>[]\n | DiffLineAnnotation<LAnnotation>[]\n ): void;\n /**\n * Called once when an item's edit session ends — edit turned off, item\n * removed (including a controlled `setItems([])` that empties the list), or\n * item collapsed — with the final contents from the session's last document\n * change. Not called when the session produced no changes, nor on a direct\n * `reset()`/`cleanUp()` teardown.\n *\n * Committing is user-space: CodeView never writes item data itself. The\n * recommended handler makes one combined item write (`updateItem` with a\n * `version` bump) carrying the new file/fileDiff — with a fresh `cacheKey`,\n * since the delivered contents differ from what the old key cached — along\n * with `edit: false`.\n */\n onItemEditComplete?(\n item: CodeViewItem<LAnnotation>,\n file: FileContents,\n lineAnnotations?:\n | LineAnnotation<LAnnotation>[]\n | DiffLineAnnotation<LAnnotation>[]\n ): void;\n\n /** Render a non-virtualized element at the very start of the scroll content,\n * before the first item. It is always rendered and scrolls with the content.\n * Return the same element across calls and mutate it in place to update;\n * height changes are measured automatically. */\n renderCodeViewHeader?(): HTMLElement | undefined;\n /** Render a non-virtualized element at the very end of the scroll content,\n * after the last item. Always rendered; height changes are measured\n * automatically. */\n renderCodeViewFooter?(): HTMLElement | undefined;\n\n /** Internal dev-only check to ensure your `itemMetrics` are correct. Its\n * automatically disabled in a production build because it will hurt\n * performance fairly significantly */\n __devOnlyValidateItemHeights?: boolean;\n}\n\nconst DEFAULT_SCROLL_INTERACTION_RESTORE_DELAY_MS = 120;\nconst SUB_PIXEL_TOLERANCE = 1;\nconst SCROLLING_CODE_OVERFLOW_FIX_VARIABLE = '--diffs-overflow-override';\nconst SCROLL_REBASE_CONTAINER_HEIGHT = 12_000_000;\nconst SCROLL_REBASE_TRIGGER_TOP = 1_000_000;\nconst SCROLL_REBASE_TARGET_TOP = 2_000_000;\nconst SCROLL_REBASE_TARGET_BOTTOM =\n SCROLL_REBASE_CONTAINER_HEIGHT - SCROLL_REBASE_TARGET_TOP;\nconst SCROLL_REBASE_THRESHOLD =\n SCROLL_REBASE_CONTAINER_HEIGHT - SCROLL_REBASE_TRIGGER_TOP;\ninterface ScrollToAnimation {\n position: number;\n velocity: number;\n lastTimestamp: number;\n}\n\ninterface SpringStepResult {\n position: number;\n velocity: number;\n}\n\nfunction assertEditorFactory<LAnnotation>(\n createEditor: CodeViewOptions<LAnnotation>['createEditor']\n): asserts createEditor is NonNullable<\n CodeViewOptions<LAnnotation>['createEditor']\n> {\n if (createEditor == null) {\n throw new Error(\n 'CodeView: createEditor is required for items with edit: true'\n );\n }\n}\n\n// A vibe slopped heuristic to detect mobile safari only\nconst MOBILE_SAFARI = (() => {\n const { navigator } = globalThis;\n\n const userAgent = navigator.userAgent;\n const isIOS = /iP(?:hone|ad|od)/.test(userAgent);\n const isIPadOS =\n navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1;\n\n return (\n (isIOS || isIPadOS) &&\n /AppleWebKit/.test(userAgent) &&\n /Safari/.test(userAgent) &&\n !/(CriOS|FxiOS|EdgiOS|OPiOS)/.test(userAgent)\n );\n})();\n\ntype PendingAlignTypes = Exclude<CodeViewLineScrollTarget['align'], 'nearest'>;\n\ninterface PendingLineTarget extends Omit<CodeViewLineScrollTarget, 'align'> {\n align?: PendingAlignTypes;\n}\n\ninterface PendingRangeTarget extends Omit<CodeViewRangeScrollTarget, 'align'> {\n align?: PendingAlignTypes;\n}\n\ninterface PendingItemTarget extends Omit<CodeViewItemScrollTarget, 'align'> {\n align?: PendingAlignTypes;\n}\n\ntype PendingScrollTarget =\n | CodeViewPositionScrollTarget\n | PendingLineTarget\n | PendingRangeTarget\n | PendingItemTarget;\n\ntype CodeViewItemMap<LAnnotation> = Map<\n string,\n CodeViewContextItem<LAnnotation>\n>;\n\nexport class CodeView<LAnnotation = undefined> {\n static __STOP = false;\n static __lastScrollPosition = 0;\n\n public type = 'advanced' as const;\n public readonly config: VirtualizerConfig = {\n overscrollSize: 200,\n intersectionObserverMargin: 0,\n resizeDebugging: false,\n };\n private items: CodeViewContextItem<LAnnotation>[] = [];\n private idToItem: CodeViewItemMap<LAnnotation> = new Map();\n private selectedLines: CodeViewLineSelection | null = null;\n // One editor per edit-mode item, created lazily via options.createEditor.\n // Entries survive virtualization unmounts so a remounted item re-attaches\n // its existing editor; attachedEditors tracks which entries are currently\n // bound to a mounted instance. Each record's `id` is mutable so\n // updateItemId can keep the editor's onChange closure resolving the\n // current item (mirroring updateItemOptionsId for item options state).\n private itemEditors: Map<string, CodeViewItemEditorRecord<LAnnotation>> =\n new Map();\n private attachedEditors: Set<string> = new Set();\n // NOTE(amadeus): We should probably attach an id to instances and use that\n // for lookups, instead of maintaining this map...\n private instanceToItem: Map<\n VirtualizedFileDiff<LAnnotation> | VirtualizedFile<LAnnotation>,\n CodeViewContextItem<LAnnotation>\n > = new Map();\n private layoutDirtyIndex: number | undefined;\n private pendingLayoutReset: PendingCodeViewLayoutReset | undefined;\n private renderOptionsRevision = 0;\n private slotCoordinator: CodeViewCoordinator<LAnnotation> | undefined;\n private slotSnapshot: CodeViewSlotSnapshot<LAnnotation> | undefined;\n private scrollListeners: Set<CodeViewScrollListener<LAnnotation>> = new Set();\n private scrollHeight = 0;\n private containerHeight = -1;\n private scrollTop: number = 0;\n private scrollPageOffset: number = 0;\n private scrollDirty = true;\n private scrollInteractionFixTimer: ReturnType<typeof setTimeout> | undefined;\n private pointerEventsDisabled = false;\n private codeOverflowFix = false;\n private height: number = 0;\n private heightDirty = true;\n private windowSpecs: VirtualWindowSpecs = { top: 0, bottom: 0 };\n private renderState = {\n scrollTop: -1,\n firstIndex: -1,\n lastIndex: -1,\n stickyHeight: 0,\n stickyTop: -1,\n stickyBottom: -1,\n };\n private itemMetricsCache: VirtualFileMetrics = DEFAULT_CODE_VIEW_FILE_METRICS;\n private readonly fileOptionsPrototype: FileOptions<LAnnotation>;\n private readonly diffOptionsPrototype: FileDiffOptions<LAnnotation>;\n // Pending scroll target, either instant or smooth. The next render cycle\n // will attempt to resolve it's position instantly or as part of a dynamic\n // animation.\n //\n // - 'item' / 'line' targets stay here until isPendingTargetSettled returns\n // true. Their destination top is re-derived from live layout every frame,\n // absorbing async measurement (annotations, line wrap) that shifts the\n // target mid-flight.\n // - 'position' targets settle on the first frame that applies their\n // scrollTop — there is no layout-dependent destination to chase.\n private pendingScrollTarget: PendingScrollTarget | undefined;\n private pendingLayoutAnchor: ScrollAnchor | undefined;\n private shouldFixContainerFocus = false;\n\n // Active smooth-scroll animation state. Only populated while a scrollTo\n // with `behavior: 'smooth'` is in flight; cleared on settle (position +\n // velocity within epsilon of the destination) or on user-input abort.\n //\n // - position: current interpolated scrollTop, in CSS pixels.\n // - velocity: rate of change, in CSS pixels per millisecond.\n // - lastTimestamp: High Resolution Time (same clock as RAF timestamps)\n // of the previous integration step.\n private scrollAnimation: ScrollToAnimation | undefined;\n\n private root: HTMLElement | undefined;\n private resizeObserver: ResizeObserver | undefined;\n\n private container: HTMLDivElement | undefined = document.createElement('div');\n private stickyContainer = document.createElement('div');\n private stickyOffset = document.createElement('div');\n // Always-rendered, non-virtualized header/footer hosts (element wrapper,\n // last-used render callback, and the measured height). They mount as\n // normal-flow siblings of `container` inside `root` — the header before it\n // and the footer after it. Created lazily, never virtualized, so no pool\n // elements required\n private header: HeaderFooterHost = {\n element: undefined,\n render: undefined,\n height: 0,\n };\n private footer: HeaderFooterHost = {\n element: undefined,\n render: undefined,\n height: 0,\n };\n private elementPool: HTMLElement[] = [];\n private elementPoolVersion = 0;\n private elementPoolTracker = new WeakMap<HTMLElement, number>();\n // Container-managed elements may still have externally-owned light DOM slot\n // children after release, so hold them here until they are safe to reuse.\n // i.e. the react CodeView component will require a separate react cleanup\n // phase that we don't want to interrupt\n private pendingElementPool: HTMLElement[] = [];\n private options: CodeViewOptions<LAnnotation>;\n private workerManager: WorkerPoolManager | undefined;\n private isReadySubscription: (() => void) | undefined;\n private isContainerManaged: boolean;\n\n constructor(\n options: CodeViewOptions<LAnnotation> = { theme: DEFAULT_THEMES },\n workerManager?: WorkerPoolManager | undefined,\n isContainerManaged = false\n ) {\n this.options = options;\n this.computeMetricsCache(options.itemMetrics);\n this.fileOptionsPrototype = this.createFileOptionsPrototype();\n this.diffOptionsPrototype = this.createDiffOptionsPrototype();\n this.workerManager = workerManager;\n this.isContainerManaged = isContainerManaged;\n\n this.stickyOffset.style.contain = 'layout size';\n this.stickyContainer.style.position = 'sticky';\n this.stickyContainer.style.width = '100%';\n this.stickyContainer.style.contain = 'layout style inline-size';\n this.stickyContainer.style.isolation = 'isolate';\n this.stickyContainer.style.display = 'flex';\n this.stickyContainer.style.flexDirection = 'column';\n }\n\n private getLayout(): CodeViewLayout {\n return this.options.layout ?? DEFAULT_CODE_VIEW_LAYOUT;\n }\n\n // Absolute offset (in scroll pixels) from the top of the scroll content to the\n // first virtualized item. paddingTop is the container's top margin; the header\n // host height is the always-rendered header that sits before the items and\n // pushes every item down by its measured height. Anchor/scroll-target math adds\n // this to an item's local `top` to get its absolute scroll position.\n private getItemTopOffset(): number {\n return this.getLayout().paddingTop + this.header.height;\n }\n\n private computeMetricsCache(\n itemMetrics: Partial<VirtualFileMetrics> | undefined\n ): VirtualFileMetrics {\n this.itemMetricsCache = {\n hunkLineCount:\n itemMetrics?.hunkLineCount ??\n DEFAULT_CODE_VIEW_FILE_METRICS.hunkLineCount,\n lineHeight:\n itemMetrics?.lineHeight ?? DEFAULT_CODE_VIEW_FILE_METRICS.lineHeight,\n diffHeaderHeight:\n itemMetrics?.diffHeaderHeight ??\n DEFAULT_CODE_VIEW_FILE_METRICS.diffHeaderHeight,\n hunkSeparatorHeight: itemMetrics?.hunkSeparatorHeight,\n spacing: itemMetrics?.spacing ?? DEFAULT_CODE_VIEW_FILE_METRICS.spacing,\n paddingTop: itemMetrics?.paddingTop,\n paddingBottom: itemMetrics?.paddingBottom,\n };\n return this.itemMetricsCache;\n }\n\n private getSmoothScrollSettings(): SmoothScrollSettings {\n return this.options.smoothScrollSettings ?? DEFAULT_SMOOTH_SCROLL_SETTINGS;\n }\n\n private shouldDisablePointerEvents(): boolean {\n return this.options.pointerEventsOnScroll !== true;\n }\n\n private shouldValidateItemHeights(): boolean {\n return (\n DIFFS_DEVELOPMENT_BUILD &&\n this.options.__devOnlyValidateItemHeights === true\n );\n }\n\n private validateRenderedItemHeight(\n item: CodeViewContextItem<LAnnotation>\n ): void {\n if (!this.shouldValidateItemHeights() || item.element == null) {\n return;\n }\n\n const stickySpecs = item.instance.getAdvancedStickySpecs();\n if (stickySpecs == null) {\n return;\n }\n\n const expectedHeight = stickySpecs.height;\n const actualHeight = item.element.getBoundingClientRect().height;\n\n if (expectedHeight === actualHeight) {\n return;\n }\n\n console.error(\n 'CodeView: reconciled item height does not match DOM height',\n {\n id: item.item.id,\n type: item.type,\n index: item.index,\n version: item.version,\n expectedHeight,\n actualHeight,\n delta: actualHeight - expectedHeight,\n stickyTopOffset: stickySpecs.topOffset,\n virtualizedHeight: item.instance.getVirtualizedHeight(),\n top: item.top,\n scrollTop: this.getScrollTop(),\n windowSpecs: { ...this.windowSpecs },\n element: item.element,\n instance: item.instance,\n }\n );\n }\n\n // Dev-only invariant check: the sticky container only holds the currently\n // rendered item content, so its measured block-size must equal the\n // `stickyHeight` we derived from the first/last item sticky specs. Individual\n // item heights can all be correct while this aggregate is still wrong (for\n // example when an edge item reports a logical-bottom offset while it only\n // rendered its header), and that mismatch is what drives the sticky container\n // to position against the wrong bounds.\n private validateStickyContainerHeight(): void {\n if (!this.shouldValidateItemHeights()) {\n return;\n }\n\n const { firstIndex, lastIndex, stickyHeight, stickyTop, stickyBottom } =\n this.renderState;\n if (firstIndex === -1 || lastIndex === -1) {\n return;\n }\n\n const actualHeight = this.stickyContainer.getBoundingClientRect().height;\n if (Math.abs(actualHeight - stickyHeight) < SUB_PIXEL_TOLERANCE) {\n return;\n }\n\n console.error(\n 'CodeView: sticky container height does not match computed layout',\n {\n computedStickyHeight: stickyHeight,\n actualStickyHeight: actualHeight,\n delta: actualHeight - stickyHeight,\n stickyTop,\n stickyBottom,\n firstIndex,\n lastIndex,\n firstStickySpecs:\n this.items[firstIndex]?.instance.getAdvancedStickySpecs(),\n lastStickySpecs:\n this.items[lastIndex]?.instance.getAdvancedStickySpecs(),\n scrollTop: this.getScrollTop(),\n scrollPageOffset: this.scrollPageOffset,\n windowSpecs: { ...this.windowSpecs },\n stickyContainer: this.stickyContainer,\n }\n );\n }\n\n private clearScrollInteractionTimer(): void {\n if (this.scrollInteractionFixTimer != null) {\n clearTimeout(this.scrollInteractionFixTimer);\n this.scrollInteractionFixTimer = undefined;\n }\n }\n\n private suspendScrollInteractions(): void {\n this.clearScrollInteractionTimer();\n\n if (this.shouldDisablePointerEvents() && !this.pointerEventsDisabled) {\n this.stickyContainer.style.pointerEvents = 'none';\n this.pointerEventsDisabled = true;\n }\n\n // This is a really important fix for mobile safari; under aggressive scroll\n // conditions we'll eventually crash/reload the page. It appears to be\n // caused by the fact that the code wrapper elements are horizontally\n // scrollable, so while aggressively scrolling, we disable scrolling. We\n // don't want to apply this fix to good browsers since in those cases it\n // can fuck with layout in ways that aren't appropriate\n if (MOBILE_SAFARI && !this.codeOverflowFix) {\n this.stickyContainer.style.setProperty(\n SCROLLING_CODE_OVERFLOW_FIX_VARIABLE,\n 'hidden'\n );\n this.codeOverflowFix = true;\n }\n\n this.scrollInteractionFixTimer = setTimeout(\n this.restoreScrollInteractions,\n DEFAULT_SCROLL_INTERACTION_RESTORE_DELAY_MS\n );\n }\n\n private restoreScrollInteractions = (): void => {\n this.clearScrollInteractionTimer();\n\n if (this.pointerEventsDisabled) {\n this.stickyContainer.style.removeProperty('pointer-events');\n this.pointerEventsDisabled = false;\n }\n\n if (this.codeOverflowFix) {\n this.stickyContainer.style.setProperty(\n SCROLLING_CODE_OVERFLOW_FIX_VARIABLE,\n 'auto'\n );\n this.codeOverflowFix = false;\n }\n };\n\n private syncLayout(): void {\n const { gap, paddingBottom, paddingTop } = this.getLayout();\n this.stickyContainer.style.gap = `${gap}px`;\n this.container?.style.setProperty('margin-top', `${paddingTop}px`);\n this.container?.style.setProperty('margin-bottom', `${paddingBottom}px`);\n }\n\n // Mount/unmount/re-populate the header and footer hosts to match the current\n // renderCodeViewHeader/renderCodeViewFooter options. Runs inside the render\n // cycle (see computeRenderRangeAndEmit), so the first render, later option\n // changes, and content updates all converge on one path. Returns true when a\n // host's content changed (a fresh mount or a swapped callback) so the render\n // cycle takes a synchronous height measurement in the following read phase.\n private reconcileHeaderFooterHosts(): boolean {\n const headerChanged = this.reconcileHost('header');\n const footerChanged = this.reconcileHost('footer');\n return headerChanged || footerChanged;\n }\n\n // Reconcile a single host record: create + position + populate it when its\n // callback first appears, re-populate it when the callback reference changes,\n // and tear it down when the callback is removed. Otherwise the mounted host is\n // left untouched (its content is owned by the caller, or by React via a portal).\n // Mutates the record in place and returns whether its content changed.\n private reconcileHost(type: 'header' | 'footer'): boolean {\n const { root, container } = this;\n if (root == null || container == null) {\n return false;\n }\n\n const host = type === 'header' ? this.header : this.footer;\n const render =\n type === 'header'\n ? this.options.renderCodeViewHeader\n : this.options.renderCodeViewFooter;\n\n // Callback removed → the host should not exist; tear it down and reset height.\n if (render == null) {\n if (host.element == null) {\n return false;\n }\n this.resizeObserver?.unobserve(host.element);\n host.element.remove();\n host.element = undefined;\n host.render = undefined;\n this.setHostHeight(host, 0);\n return false;\n }\n\n // Same callback on a mounted host → its content is already current (the\n // common per-frame path).\n if (host.element != null && render === host.render) {\n return false;\n }\n\n // Callback added or swapped → ensure the host exists, then repopulate it from\n // the callback's latest output. A returned element replaces the content; a\n // nullish return empties the host, EXCEPT in container-managed (React) mode\n // where React owns the host's light DOM via a portal, so it is left untouched\n // (mirroring how cleanElement guards item light DOM).\n const element =\n host.element ??\n createCodeViewHeaderFooterHostElement(\n type,\n container,\n this.resizeObserver\n );\n host.element = element;\n const content = render();\n if (content != null) {\n element.replaceChildren(content);\n } else if (!this.isContainerManaged && element.children.length > 0) {\n element.textContent = '';\n }\n host.render = render;\n return true;\n }\n\n // Store a host's measured height, flagging the scroll state dirty when it\n // actually changed so the surrounding render cycle re-derives the scroll range\n // and re-anchors (the header offset shifts every item's position).\n private setHostHeight(host: HeaderFooterHost, height: number): void {\n if (host.height === height) {\n return;\n }\n host.height = height;\n this.scrollDirty = true;\n }\n\n // Read the mounted hosts' heights from the DOM. Called only in the render\n // cycle's read phase (right before reconcileRenderedItems) on a change frame, so\n // these getBoundingClientRect reads batch into the same reflow as the item\n // height reads instead of forcing a separate reflow during the write phase.\n private measureMountedHosts(): void {\n if (this.header.element != null) {\n this.setHostHeight(\n this.header,\n this.header.element.getBoundingClientRect().height\n );\n }\n if (this.footer.element != null) {\n this.setHostHeight(\n this.footer,\n this.footer.element.getBoundingClientRect().height\n );\n }\n }\n\n public setup(root: HTMLElement): void {\n if (this.root != null) {\n throw new Error('CodeView.setup: already setup');\n }\n this.workerManager?.subscribeToThemeChanges(this);\n this.root = root;\n this.root.style.overflowAnchor = 'none';\n if (!this.root.hasAttribute('tabindex')) {\n this.root.tabIndex = -1;\n }\n this.container ??= document.createElement('div');\n // NOTE(amadeus): We can't put `size` in here or it breaks\n // Firefox's sticky headers\n this.container.style.contain = 'layout style';\n this.syncLayout();\n this.container.appendChild(this.stickyOffset);\n this.container.appendChild(this.stickyContainer);\n this.root.appendChild(this.container);\n this.scrollDirty = true;\n this.heightDirty = true;\n this.resizeObserver = new ResizeObserver(this.handleResize);\n this.resizeObserver.observe(this.stickyContainer);\n this.root.addEventListener('scroll', this.handleScroll, {\n passive: true,\n });\n // Any user-driven scroll intent cancels an in-flight programmatic scroll.\n // pointerdown catches scrollbar drag (the scrollbar belongs to root);\n // wheel / touchstart cover trackpad + touch scroll; keydown covers arrow\n // keys, PgUp/PgDn, Home/End on a focused scroll container.\n this.root.addEventListener('wheel', this.clearPendingScroll, {\n passive: true,\n });\n this.root.addEventListener('touchstart', this.clearPendingScroll, {\n passive: true,\n });\n this.root.addEventListener('pointerdown', this.clearPendingScroll, {\n passive: true,\n });\n this.root.addEventListener('keydown', this.clearPendingScroll, {\n passive: true,\n });\n this.resizeObserver.observe(this.root);\n this.render(true);\n\n // FIXME(amadeus): Remove me before release\n window.__INSTANCE = this;\n // Test code to bring back in if needed\n // window.__CODE_VIEW_SCROLL_BEFORE_REBASE = (pixelsBefore = 1_000) => {\n // const target = this.clampScrollTop(\n // this.scrollPageOffset + SCROLL_REBASE_THRESHOLD - pixelsBefore\n // );\n // this.scrollTo({\n // type: 'position',\n // position: target,\n // behavior: 'instant',\n // });\n // };\n window.__TOGGLE = () => {\n if (CodeView.__STOP) {\n CodeView.__STOP = false;\n this.scrollTo({\n type: 'position',\n position: CodeView.__lastScrollPosition,\n behavior: 'instant',\n });\n } else {\n CodeView.__lastScrollPosition = this.getScrollTop();\n CodeView.__STOP = true;\n }\n };\n }\n\n public reset(): void {\n dequeueRender(this.computeRenderRangeAndEmit);\n this.clearReadySubscription();\n this.restoreScrollInteractions();\n this.cleanAllRenderedItems();\n // Rendered-item cleanup above already detached mounted editors; cleaning\n // an already-detached editor is a no-op, so this covers both cases.\n for (const record of this.itemEditors.values()) {\n record.editor.cleanUp();\n }\n this.itemEditors.clear();\n this.attachedEditors.clear();\n this.selectedLines = null;\n this.items.length = 0;\n this.idToItem.clear();\n this.instanceToItem.clear();\n this.layoutDirtyIndex = undefined;\n this.pendingLayoutReset = undefined;\n this.stickyContainer.textContent = '';\n this.stickyOffset.style.height = '';\n this.container?.style.removeProperty('height');\n this.containerHeight = -1;\n this.windowSpecs = { top: 0, bottom: 0 };\n this.pendingLayoutAnchor = undefined;\n this.shouldFixContainerFocus = false;\n this.height = 0;\n this.scrollTop = 0;\n this.scrollPageOffset = 0;\n this.scrollHeight = 0;\n this.scrollDirty = true;\n this.heightDirty = true;\n this.resetRenderState();\n // NOTE(amadeus): Container managed CodeView controls when flushing\n // occurs. This is mostly to make imperative vanilla js api easier to work\n // with\n if (!this.isContainerManaged) {\n this.flushSlotCoordinator();\n }\n }\n\n public cleanUp(): void {\n this.reset();\n this.clearElementPool();\n this.restoreScrollInteractions();\n this.workerManager?.unsubscribeToThemeChanges(this);\n this.resizeObserver?.disconnect();\n this.resizeObserver = undefined;\n this.root?.removeEventListener('scroll', this.handleScroll);\n this.root?.removeEventListener('wheel', this.clearPendingScroll);\n this.root?.removeEventListener('touchstart', this.clearPendingScroll);\n this.root?.removeEventListener('pointerdown', this.clearPendingScroll);\n this.root?.removeEventListener('keydown', this.clearPendingScroll);\n this.root?.style.removeProperty('overflow-anchor');\n this.container?.remove();\n this.stickyOffset.remove();\n this.stickyContainer.remove();\n this.stickyContainer.textContent = '';\n this.header.element?.remove();\n this.header.element = undefined;\n this.header.render = undefined;\n this.header.height = 0;\n this.footer.element?.remove();\n this.footer.element = undefined;\n this.footer.render = undefined;\n this.footer.height = 0;\n this.root = undefined;\n this.container = undefined;\n }\n\n private cleanAllRenderedItems() {\n if (this.renderState.firstIndex === -1) {\n return;\n }\n for (\n let index = this.renderState.firstIndex;\n index <= this.renderState.lastIndex;\n index++\n ) {\n const item = this.items[index];\n if (item == null) {\n throw new Error(\n `CodeView.cleanAllRenderedItems: Item does not exist at index: ${index}`\n );\n }\n this.releaseRenderedItem(item);\n }\n }\n\n private primeScrollTarget(target: PendingScrollTarget): void {\n if (target.type === 'position') return;\n\n const item = this.idToItem.get(target.id);\n if (item == null) return;\n\n void item.instance.primeHighlightCache();\n }\n\n private getElementPoolLimit() {\n const viewportSize = this.getHeight() + this.config.overscrollSize * 2;\n const { diffHeaderHeight } = this.itemMetricsCache;\n // The goal here roughly is to hold an element pool that's maxed out at\n // around the size of all collapsed files, doubled if `isContainerManaged`\n // because we have to wait an additional render tick to actually re-use the\n // elements\n return (\n Math.max(\n 8,\n Math.ceil(viewportSize / Math.max(diffHeaderHeight, 10)) + 1\n ) * (this.isContainerManaged ? 2 : 1)\n );\n }\n\n private acquireElement(): HTMLElement {\n this.promotePendingPooledElements();\n let element = this.elementPool.pop();\n while (element != null && !this.isElementPoolGenerationCurrent(element)) {\n element = this.elementPool.pop();\n }\n element ??= document.createElement(DIFFS_TAG_NAME);\n this.markElementPoolGenerationCurrent(element);\n return element;\n }\n\n private releaseRenderedItem(item: CodeViewContextItem<LAnnotation>): void {\n const { element } = item;\n if (element != null && this.renderedItemOwnsFocus(element)) {\n this.shouldFixContainerFocus = true;\n }\n\n item.instance.cleanUp(true);\n // Instance cleanup fully detached any attached editor. The editor itself\n // stays in itemEditors so the item re-attaches it on remount.\n this.attachedEditors.delete(item.item.id);\n item.element = undefined;\n if (element == null) {\n return;\n }\n\n element.remove();\n this.cleanElement(element);\n this.queueElementForPool(element);\n }\n\n private renderedItemOwnsFocus(element: HTMLElement): boolean {\n const { activeElement } = document;\n return (\n activeElement === element ||\n element.contains(activeElement) ||\n element.shadowRoot?.activeElement != null\n );\n }\n\n private fixContainerFocus(): void {\n if (this.shouldFixContainerFocus) {\n this.shouldFixContainerFocus = false;\n this.root?.focus({ preventScroll: true });\n }\n }\n\n // Strip item-specific DOM while keeping the expensive shared shell assets\n // that are valid for every item in this CodeView until shared options\n // change.\n private cleanElement(element: HTMLElement): void {\n const { shadowRoot } = element;\n if (shadowRoot != null) {\n for (const child of Array.from(shadowRoot.children)) {\n if (!isPooledShadowChild(child)) {\n child.remove();\n }\n }\n }\n\n if (!this.isContainerManaged) {\n element.replaceChildren();\n }\n }\n\n private queueElementForPool(element: HTMLElement): void {\n const poolLimit = this.getElementPoolLimit();\n if (\n !this.isElementPoolGenerationCurrent(element) ||\n this.getElementPoolSize() >= poolLimit\n ) {\n return;\n }\n\n if (this.isElementClean(element)) {\n this.elementPool.push(element);\n } else {\n this.pendingElementPool.push(element);\n }\n }\n\n private promotePendingPooledElements(): void {\n if (this.pendingElementPool.length === 0) {\n return;\n }\n\n const { pendingElementPool: pendingElements } = this;\n this.pendingElementPool = [];\n const poolLimit = this.getElementPoolLimit();\n for (const element of pendingElements) {\n if (\n this.isElementPoolGenerationCurrent(element) &&\n this.isElementClean(element) &&\n this.elementPool.length < poolLimit\n ) {\n this.elementPool.push(element);\n } else if (\n this.isElementPoolGenerationCurrent(element) &&\n this.getElementPoolSize() < poolLimit\n ) {\n this.pendingElementPool.push(element);\n }\n }\n }\n\n private isElementClean(element: HTMLElement): boolean {\n return element.childNodes.length === 0;\n }\n\n private getElementPoolSize(): number {\n return this.elementPool.length + this.pendingElementPool.length;\n }\n\n private clearElementPool(): void {\n this.elementPool.length = 0;\n this.pendingElementPool.length = 0;\n }\n\n private invalidateElementPool(): void {\n this.elementPoolVersion++;\n this.clearElementPool();\n }\n\n private markElementPoolGenerationCurrent(element: HTMLElement): void {\n this.elementPoolTracker.set(element, this.elementPoolVersion);\n }\n\n private isElementPoolGenerationCurrent(element: HTMLElement): boolean {\n return this.elementPoolTracker.get(element) === this.elementPoolVersion;\n }\n\n private resolveEffectiveScrollBehavior(\n target: CodeViewScrollTarget,\n destination: number\n ): Exclude<CodeViewScrollBehavior, 'smooth-auto'> {\n if (prefersReducedMotion()) {\n return 'instant';\n }\n\n if (target.behavior !== 'smooth-auto') {\n return target.behavior ?? 'instant';\n }\n\n return Math.abs(destination - this.getScrollTop()) <= this.getHeight() * 10\n ? 'smooth'\n : 'instant';\n }\n\n public scrollTo(target: CodeViewScrollTarget): void {\n if (this.root == null) {\n return;\n }\n\n const pendingTarget = this.normalizeScrollTarget(target);\n if (pendingTarget == null) {\n return;\n }\n\n const destination = this.resolveScrollTargetTop(pendingTarget);\n if (destination == null) {\n return;\n }\n\n this.primeScrollTarget(pendingTarget);\n\n const behavior = this.resolveEffectiveScrollBehavior(\n pendingTarget,\n destination\n );\n if (behavior === 'smooth') {\n // Use ??= so if we have an animation in progress it will be smoothly\n // transitioned into the new target and not reset\n this.scrollAnimation ??= {\n position: this.getScrollTop(),\n velocity: 0,\n // Since we kick off a render to requestAnimationFrame, by initializing\n // lastTimestamp as performance.now() it means we can begin animating\n // on the next render call and not wait a frame to get frame time\n lastTimestamp: performance.now(),\n };\n } else {\n this.scrollAnimation = undefined;\n }\n\n // We'll attempt to scroll to this new target on the next render frame\n this.suspendScrollInteractions();\n this.pendingLayoutAnchor = undefined;\n this.pendingScrollTarget = pendingTarget;\n this.render();\n }\n\n public setSelectedLines(\n selection: CodeViewLineSelection | null,\n options?: SelectionWriteOptions\n ): void {\n this.applySelectedLines(selection, options);\n }\n\n public getSelectedLines(): CodeViewLineSelection | null {\n return this.selectedLines;\n }\n\n public clearSelectedLines(options?: SelectionWriteOptions): void {\n this.applySelectedLines(null, options);\n }\n\n public getItem(itemId: string): CodeViewItem<LAnnotation> | undefined {\n return this.idToItem.get(itemId)?.item;\n }\n\n /**\n * Get the live editor for an item currently in edit mode. Use this to drive\n * editor APIs CodeView does not wrap (applyEdits, undo, setMarkers, …).\n * Returns undefined once the item leaves edit mode.\n */\n public getEditor(itemId: string): DiffsEditor<LAnnotation> | undefined {\n return this.itemEditors.get(itemId)?.editor;\n }\n\n public updateItem(input: CodeViewItem<LAnnotation>): boolean {\n const item = this.idToItem.get(input.id);\n if (item == null) {\n console.error(`CodeView.updateItem: unknown item id \"${input.id}\"`);\n return false;\n }\n\n if (!this.syncItemRecord(item, input)) {\n return false;\n }\n\n this.markItemLayoutDirty(item);\n this.scrollDirty = true;\n this.render();\n this.syncItemEditors();\n this.syncSelection();\n return true;\n }\n\n public updateItemId(oldId: string, newId: string): boolean {\n if (oldId === newId) {\n return true;\n }\n\n const item = this.idToItem.get(oldId);\n if (item == null) {\n console.error(`CodeView.updateItemId: unknown item id \"${oldId}\"`);\n return false;\n }\n\n if (this.idToItem.has(newId)) {\n console.error(`CodeView.updateItemId: duplicate item id \"${newId}\"`);\n return false;\n }\n\n this.idToItem.delete(oldId);\n item.item.id = newId;\n this.idToItem.set(newId, item);\n this.updateItemOptionsId(item.instance.options, newId);\n\n if (this.selectedLines?.id === oldId) {\n this.selectedLines = { ...this.selectedLines, id: newId };\n this.options.onSelectedLinesChange?.(this.selectedLines);\n }\n const editorRecord = this.itemEditors.get(oldId);\n if (editorRecord != null) {\n editorRecord.state.id = newId;\n this.itemEditors.delete(oldId);\n this.itemEditors.set(newId, editorRecord);\n if (this.attachedEditors.delete(oldId)) {\n this.attachedEditors.add(newId);\n }\n }\n this.renamePendingScrollTarget(oldId, newId);\n this.renamePendingLayoutAnchor(oldId, newId);\n this.render();\n return true;\n }\n\n public addItem(input: CodeViewItem<LAnnotation>): void {\n this.addItems([input]);\n }\n\n public addItems(inputs: readonly CodeViewItem<LAnnotation>[]): void {\n this.appendItemsInternal(inputs);\n this.syncItemEditors();\n this.syncSelection();\n }\n\n public removeItem(itemId: string): boolean {\n const item = this.idToItem.get(itemId);\n if (item == null) {\n console.error(`CodeView.removeItem: unknown item id \"${itemId}\"`);\n return false;\n }\n\n const nextItems: CodeViewItem<LAnnotation>[] = [];\n for (const current of this.items) {\n if (current !== item) {\n nextItems.push(current.item);\n }\n }\n this.setItems(nextItems);\n return true;\n }\n\n public setItems(items: readonly CodeViewItem<LAnnotation>[]): void {\n let removedItemsById: Readonly<CodeViewItemMap<LAnnotation>> | undefined;\n if (this.items.length === 0) {\n this.appendItemsInternal(items);\n } else if (!this.tryAppendItems(items)) {\n removedItemsById = this.reconcileItems(items);\n }\n this.syncItemEditors(removedItemsById);\n this.syncSelection();\n }\n\n /**\n * Append new records to the viewer while preserving existing layout state.\n * This is the shared path for imperative adds and the append-only reconcile\n * fast path, so it measures new items immediately and only triggers render\n * once at the end.\n */\n private appendItemsInternal(\n inputs: readonly CodeViewItem<LAnnotation>[],\n render = true\n ): void {\n if (inputs.length === 0) {\n return;\n }\n\n const layout = this.getLayout();\n let nextTop = this.items.length === 0 ? 0 : this.scrollHeight + layout.gap;\n const appendedTop = nextTop;\n for (let index = 0; index < inputs.length; index++) {\n const input = inputs[index];\n if (input == null) {\n throw new Error('CodeView.appendItemsInternal: missing input item');\n }\n if (this.idToItem.has(input.id)) {\n throw new Error(`CodeView.addItem: duplicate id \"${input.id}\"`);\n }\n\n const item = this.createItem(input, this.items.length, nextTop);\n this.items.push(item);\n this.idToItem.set(item.item.id, item);\n this.instanceToItem.set(item.instance, item);\n item.height = prepareItemInstance(item);\n nextTop += item.height + layout.gap;\n }\n\n this.scrollHeight = nextTop - layout.gap;\n this.scrollDirty = true;\n if (render) {\n if (this.canSkipRenderForAppend(appendedTop)) {\n this.syncContainerHeight();\n } else {\n this.render();\n }\n }\n }\n\n private canSkipRenderForAppend(appendedTop: number): boolean {\n return (\n this.container != null &&\n this.renderState.firstIndex !== -1 &&\n this.pendingScrollTarget == null &&\n this.scrollAnimation == null &&\n this.layoutDirtyIndex == null &&\n appendedTop > this.windowSpecs.bottom\n );\n }\n\n public onThemeChange(): void {\n this.invalidateElementPool();\n }\n\n public setOptions(options: CodeViewOptions<LAnnotation> | undefined): void {\n if (options == null) {\n return;\n }\n\n this.capturePendingLayoutAnchor();\n const { options: prevOptions } = this;\n const previousLayout = this.getLayout();\n const { itemMetricsCache: previousItemMetrics } = this;\n\n if (shouldClearPool(prevOptions, options)) {\n this.invalidateElementPool();\n }\n\n this.options = options;\n const nextItemMetrics = this.computeMetricsCache(options.itemMetrics);\n const itemMetricsChanged = !areObjectsEqual(\n previousItemMetrics,\n nextItemMetrics\n );\n const layoutChanged = !areObjectsEqual(previousLayout, this.getLayout());\n if (layoutChanged) {\n this.syncLayout();\n }\n\n const itemLayoutChanged =\n itemMetricsChanged || hasItemLayoutOptionChanged(prevOptions, options);\n if (itemLayoutChanged) {\n const previousReset = this.pendingLayoutReset;\n this.pendingLayoutReset = {\n metrics: itemMetricsChanged ? nextItemMetrics : previousReset?.metrics,\n resetFileLayoutCache: true,\n resetDiffLayoutCache: true,\n includeEstimatedDiffHeights:\n previousReset?.includeEstimatedDiffHeights === true ||\n itemMetricsChanged ||\n hasCodeViewDiffEstimateOptionChanged(prevOptions, options),\n };\n }\n\n if (layoutChanged || itemLayoutChanged) {\n this.markLayoutDirtyFromIndex(0);\n this.scrollDirty = true;\n }\n\n if (!areOptionsEqual(prevOptions, options)) {\n this.renderOptionsRevision++;\n }\n\n this.syncItemEditors();\n\n // Render when there are items, OR when the header/footer presence changed —\n // an otherwise-empty CodeView still needs a render to mount/unmount its hosts.\n const headerFooterChanged =\n prevOptions.renderCodeViewHeader !== options.renderCodeViewHeader ||\n prevOptions.renderCodeViewFooter !== options.renderCodeViewFooter;\n if (\n !this.isContainerManaged &&\n (this.items.length > 0 || headerFooterChanged)\n ) {\n this.render();\n }\n }\n\n public capturePendingLayoutAnchor(\n nextItems: Readonly<CodeViewItemMap<LAnnotation>> = this.idToItem\n ): void {\n if (\n this.root == null ||\n this.items.length === 0 ||\n this.pendingScrollTarget != null\n ) {\n return;\n }\n\n this.pendingLayoutAnchor = this.getScrollAnchor(\n this.getScrollTop(),\n nextItems\n );\n }\n\n public render(immediate = false): void {\n if (CodeView.__STOP) {\n return;\n }\n if (immediate) {\n dequeueRender(this.computeRenderRangeAndEmit);\n this.computeRenderRangeAndEmit();\n } else {\n queueRender(this.computeRenderRangeAndEmit);\n }\n }\n\n private isReady(): boolean {\n const { workerManager } = this;\n // A failed worker pool never reaches the 'initialized' state (it reverts to\n // 'waiting' with workersFailed: true), so treat failure as ready and let\n // the renderers fall back to synchronous highlighting.\n if (\n workerManager == null ||\n workerManager.isInitialized() ||\n workerManager.getStats().workersFailed\n ) {\n this.clearReadySubscription();\n return true;\n }\n\n this.isReadySubscription ??= workerManager.subscribeToStatChanges(\n (stats) => {\n if (stats.managerState !== 'initialized' && !stats.workersFailed) {\n return;\n }\n\n this.clearReadySubscription();\n this.render(true);\n }\n );\n\n // If the worker is awiting on initialization, we should attempt to\n // initialize\n if (workerManager.getStats().managerState === 'waiting') {\n void workerManager.initialize().catch(() => {});\n }\n return false;\n }\n\n private clearReadySubscription(): void {\n if (this.isReadySubscription == null) {\n return;\n }\n this.isReadySubscription();\n this.isReadySubscription = undefined;\n }\n\n public instanceChanged(\n instance: VirtualizedFile<LAnnotation> | VirtualizedFileDiff<LAnnotation>,\n layoutDirty: boolean\n ): void {\n // NOTE(amadeus): This is technically broken at the moment. What we\n // probably SHOULD do to fix is, it push the instance to some sort of\n // instance changed set, then iterate through all items and re-compute\n // everything to get new tops?\n const item = this.instanceToItem.get(instance);\n if (item == null) {\n throw new Error(\n 'CodeView.instanceChanged: An instance has changed that is not registered'\n );\n }\n if (layoutDirty) {\n this.markItemLayoutDirty(item);\n }\n this.render();\n }\n\n public getWindowSpecs(): VirtualWindowSpecs {\n return this.windowSpecs;\n }\n\n public getContainerElement(): HTMLElement | undefined {\n return this.root;\n }\n\n // The always-rendered header/footer host elements, or undefined when the\n // corresponding renderCodeViewHeader/renderCodeViewFooter callback is not\n // set. React reads these to portal its header/footer nodes into the\n // vanilla-managed hosts.\n public getHeaderElement(): HTMLElement | undefined {\n return this.header.element;\n }\n\n public getFooterElement(): HTMLElement | undefined {\n return this.footer.element;\n }\n\n public getRenderedItems(): CodeViewRenderedItem<LAnnotation>[] {\n const { firstIndex, lastIndex } = this.renderState;\n if (firstIndex === -1 || lastIndex === -1 || lastIndex < firstIndex) {\n return [];\n }\n\n const renderedItems: CodeViewRenderedItem<LAnnotation>[] = [];\n\n for (let index = firstIndex; index <= lastIndex; index++) {\n const item = this.items[index];\n if (item?.element == null) {\n continue;\n }\n\n if (item.type === 'diff') {\n renderedItems.push({\n id: item.item.id,\n type: 'diff',\n item: item.item,\n version: item.version,\n element: item.element,\n instance: item.instance,\n });\n } else {\n renderedItems.push({\n id: item.item.id,\n type: 'file',\n item: item.item,\n version: item.version,\n element: item.element,\n instance: item.instance,\n });\n }\n }\n\n return renderedItems;\n }\n\n public setSlotCoordinator(\n coordinator?: CodeViewCoordinator<LAnnotation>\n ): boolean {\n if (coordinator === this.slotCoordinator) {\n return false;\n }\n this.slotCoordinator = coordinator;\n this.slotSnapshot = undefined;\n return true;\n }\n\n public getSlotSnapshot(\n coordinator: CodeViewCoordinator<LAnnotation>\n ): CodeViewSlotSnapshot<LAnnotation> | undefined {\n return this.buildSlotSnapshot(coordinator);\n }\n\n // Combine the per-item slot items with the current header/footer host elements\n // into a single snapshot. Returns undefined only when there is nothing for\n // React to portal.\n private buildSlotSnapshot(\n coordinator: CodeViewCoordinator<LAnnotation>\n ): CodeViewSlotSnapshot<LAnnotation> | undefined {\n const items = getSlotItems(this.getRenderedItems(), coordinator);\n const { element: header } = this.header;\n const { element: footer } = this.footer;\n if (items == null && header == null && footer == null) {\n return undefined;\n }\n return { items, header, footer };\n }\n\n public subscribeToScroll(\n listener: CodeViewScrollListener<LAnnotation>\n ): () => void {\n this.scrollListeners.add(listener);\n return () => {\n this.scrollListeners.delete(listener);\n };\n }\n\n public getLocalTopForInstance(\n instance: VirtualizedFile<LAnnotation> | VirtualizedFileDiff<LAnnotation>\n ): number {\n const item = this.instanceToItem.get(instance);\n if (item == null) {\n throw new Error(\n 'CodeView.getLocalTopForInstance: unknown virtualized instance'\n );\n }\n return item.top;\n }\n\n public getTopForItem(id: string): number | undefined {\n const item = this.idToItem.get(id);\n if (item == null) {\n return undefined;\n }\n return item.top + this.getItemTopOffset();\n }\n\n private createItem(\n input: CodeViewItem<LAnnotation>,\n index: number,\n top: number\n ): CodeViewContextItem<LAnnotation> {\n const { itemMetricsCache: itemMetrics } = this;\n if (input.type === 'diff') {\n const instance = new VirtualizedFileDiff<LAnnotation>(\n this.createDiffOptions(input.id),\n this,\n itemMetrics,\n this.workerManager,\n this.isContainerManaged\n );\n return {\n type: 'diff',\n item: input,\n version: input.version,\n index,\n top,\n height: 0,\n element: undefined,\n renderedOptionsRevision: this.renderOptionsRevision,\n instance,\n } satisfies CodeViewDiffItemContext<LAnnotation>;\n }\n\n const instance = new VirtualizedFile<LAnnotation>(\n this.createFileOptions(input.id),\n this,\n itemMetrics,\n this.workerManager,\n this.isContainerManaged\n );\n return {\n type: 'file',\n item: input,\n version: input.version,\n index,\n top,\n height: 0,\n element: undefined,\n renderedOptionsRevision: this.renderOptionsRevision,\n instance,\n } satisfies CodeViewFileItemContext<LAnnotation>;\n }\n\n private applySelectedLines(\n selection: CodeViewLineSelection | null,\n options?: SelectionWriteOptions\n ): void {\n const { selectedLines: prevSelection } = this;\n if (\n (selection == null && prevSelection == null) ||\n (selection != null &&\n prevSelection?.id === selection.id &&\n areSelectionsEqual(prevSelection.range, selection.range))\n ) {\n return;\n }\n\n // If we are selecting a new element and had a previous selection, null out\n // the current selection, otherwise if it's a selection on the same item\n // the next selection will take care of that for us\n if (prevSelection != null && prevSelection.id !== selection?.id) {\n this.idToItem\n .get(prevSelection.id)\n ?.instance.setSelectedLines(null, { notify: false });\n }\n\n this.selectedLines = selection;\n this.idToItem\n .get(selection?.id ?? '')\n ?.instance.setSelectedLines(selection?.range ?? null, options);\n }\n\n private syncSelection(): void {\n if (this.selectedLines == null) {\n return;\n }\n\n const item = this.idToItem.get(this.selectedLines.id);\n if (item == null) {\n this.selectedLines = null;\n this.options.onSelectedLinesChange?.(null);\n return;\n }\n\n item.instance.setSelectedLines(this.selectedLines.range, { notify: false });\n }\n\n // Collapsing an edited item suspends editing until it expands again.\n private isItemInEditMode(item: CodeViewContextItem<LAnnotation>): boolean {\n return item.item.edit === true && item.item.collapsed !== true;\n }\n\n /**\n * Attach (or lazily create) the editor for a mounted edit-mode item. Called\n * from the render loop so every mounted item passes through it: fresh\n * mounts, remounts after virtualization released the item, and items whose\n * edit flag was just turned on. Editors persist across unmounts, so a\n * remounted item re-attaches its existing editor and resumes the retained\n * document; the renderers keep the host's file/diff data in sync with the\n * session so the remount paints the edited text.\n */\n private attachItemEditor(item: CodeViewContextItem<LAnnotation>): void {\n const { id } = item.item;\n const { createEditor } = this.options;\n if (\n item.element == null ||\n this.attachedEditors.has(id) ||\n !this.isItemInEditMode(item)\n ) {\n return;\n }\n\n let record = this.itemEditors.get(id);\n let createdEditor = false;\n try {\n if (record == null) {\n assertEditorFactory(createEditor);\n // The onChange closure resolves the owning item through the record\n // state's current id (not the id captured here) so updateItemId\n // renames keep it pointed at the right item. It also reads the change\n // callback off this.options at invocation time so later setOptions\n // swaps aren't stranded on the callback captured at creation.\n const state: CodeViewItemEditorState<LAnnotation> = { id };\n const editor = createEditor({\n onChange: (file, lineAnnotations) => {\n const latest = this.idToItem.get(state.id);\n if (latest == null) {\n return;\n }\n state.lastChange = { item: latest.item, file, lineAnnotations };\n this.options.onItemEditChange?.(latest.item, file, lineAnnotations);\n },\n });\n if (editor == null) {\n return;\n }\n record = { editor, state };\n this.itemEditors.set(id, record);\n createdEditor = true;\n }\n\n record.editor.edit(item.instance);\n this.attachedEditors.add(id);\n } catch (error) {\n if (createdEditor && record != null) {\n this.itemEditors.delete(id);\n record.editor.cleanUp();\n }\n // A render-time factory or attachment error aborts the frame before its\n // range is committed, so release this item immediately instead of\n // leaving an untracked async render behind.\n this.releaseRenderedItem(item);\n throw error;\n }\n }\n\n /**\n * Drop editors for items that can no longer be edited: removed, edit turned\n * off, or collapsed. Attachment happens in the render loop via\n * attachItemEditor, so this only reconciles editors CodeView is already\n * holding.\n */\n private syncItemEditors(\n removedItems?: Readonly<CodeViewItemMap<LAnnotation>>\n ): void {\n if (this.itemEditors.size === 0) {\n return;\n }\n\n const completions: CodeViewItemEditChange<LAnnotation>[] = [];\n for (const [id, record] of this.itemEditors) {\n const item = this.idToItem.get(id);\n const removedItem = removedItems?.get(id);\n if (removedItem == null && item != null && this.isItemInEditMode(item)) {\n continue;\n }\n // cleanUp is idempotent, so editors already detached by their released\n // instance are safe to clean again.\n record.editor.cleanUp();\n this.itemEditors.delete(id);\n this.attachedEditors.delete(id);\n // When the session's instance was released by virtualization, the\n // cleanUp above had no detach closure left to run the exit recompute,\n // so finish the session here (idempotent: the dirty marker clears on\n // the first run). A live item goes through its instance, which also\n // preserves expansion state and invalidates layout; removed items fall\n // back to the snapshot captured with the editor's last change.\n const { lastChange } = record.state;\n const itemSnapshot =\n removedItem == null\n ? (item?.item ?? lastChange?.item)\n : (lastChange?.item ?? removedItem.item);\n if (itemSnapshot?.type === 'diff') {\n if (\n removedItem == null &&\n item != null &&\n item.type === 'diff' &&\n item.instance.completeEditSession()\n ) {\n this.markItemLayoutDirty(item);\n this.render();\n }\n finishEditSessionForDiff(itemSnapshot.fileDiff);\n }\n if (lastChange != null) {\n // Prefer the current item record (it carries the update that ended\n // the session, e.g. edit: false); the snapshot from the last change\n // covers sessions ended by removing the item.\n completions.push(\n removedItem != null || item == null\n ? lastChange\n : { ...lastChange, item: item.item }\n );\n }\n }\n\n // Fired after the reconcile loop so an onItemEditComplete handler that\n // calls back into updateItem/setItems doesn't re-enter the iteration.\n for (const { item, file, lineAnnotations } of completions) {\n this.options.onItemEditComplete?.(item, file, lineAnnotations);\n }\n }\n\n private renamePendingScrollTarget(oldId: string, newId: string): void {\n const { pendingScrollTarget } = this;\n if (\n pendingScrollTarget == null ||\n pendingScrollTarget.type === 'position' ||\n pendingScrollTarget.id !== oldId\n ) {\n return;\n }\n\n this.pendingScrollTarget = { ...pendingScrollTarget, id: newId };\n }\n\n private renamePendingLayoutAnchor(oldId: string, newId: string): void {\n if (this.pendingLayoutAnchor?.id === oldId) {\n this.pendingLayoutAnchor.id = newId;\n }\n }\n\n // CodeView owns advanced option invalidation. These item option facades only\n // answer current option reads for the item instance that keeps them for its\n // lifetime. The accessors live on per-CodeView prototypes so large viewers do\n // not allocate the full option surface for every file or diff item.\n private createFileOptionsPrototype(): FileOptions<LAnnotation> {\n const prototype = {} as FileOptions<LAnnotation>;\n\n for (const key of CODE_VIEW_FILE_OPTION_KEYS) {\n defineItemOption<FileOptions<LAnnotation>, CodeViewFileOptionKeys>(\n prototype,\n key,\n () => this.options[key]\n );\n }\n\n // Mapped options: served from CodeView-level names or per-item state\n // that the plain pass-through loop cannot express.\n defineItemOption(\n prototype,\n 'stickyHeader',\n () => this.options.stickyHeaders\n );\n defineItemOption(prototype, 'collapsed', (receiver) => {\n const state = getItemOptionsState(receiver);\n if (state == null) {\n return undefined;\n }\n return this.getItemOptions(state, 'file')?.item.collapsed;\n });\n\n for (const key of CODE_VIEW_SHARED_CALLBACK_KEYS) {\n this.defineItemSharedCallback(prototype, 'file', key);\n }\n for (const key of CODE_VIEW_SELECTION_CALLBACK_KEYS) {\n this.defineItemSelectionCallback(prototype, 'file', key);\n }\n\n return prototype;\n }\n\n private createDiffOptionsPrototype(): FileDiffOptions<LAnnotation> {\n const prototype = {} as FileDiffOptions<LAnnotation>;\n\n for (const key of CODE_VIEW_DIFF_OPTION_KEYS) {\n defineItemOption<FileDiffOptions<LAnnotation>, CodeViewDiffOptionKeys>(\n prototype,\n key,\n () => this.options[key]\n );\n }\n\n // Mapped options: served from CodeView-level names or per-item state\n // that the plain pass-through loop cannot express.\n defineItemOption(\n prototype,\n 'stickyHeader',\n () => this.options.stickyHeaders\n );\n defineItemOption(\n prototype,\n 'hunkSeparators',\n () => this.options.hunkSeparators\n );\n defineItemOption(prototype, 'collapsed', (receiver) => {\n const state = getItemOptionsState(receiver);\n if (state == null) {\n return undefined;\n }\n return this.getItemOptions(state, 'diff')?.item.collapsed;\n });\n\n for (const key of CODE_VIEW_SHARED_CALLBACK_KEYS) {\n this.defineItemSharedCallback(prototype, 'diff', key);\n }\n for (const key of CODE_VIEW_SELECTION_CALLBACK_KEYS) {\n this.defineItemSelectionCallback(prototype, 'diff', key);\n }\n\n return prototype;\n }\n\n private createFileOptions(id: string): FileOptions<LAnnotation> {\n // The per-item options object intentionally owns only hidden state. All\n // public option reads fall through to the shared prototype above.\n const options = Object.create(\n this.fileOptionsPrototype\n ) as FileOptions<LAnnotation>;\n const state: CodeViewItemOptionsState = {\n id,\n };\n defineOptionsState(options, state);\n return options;\n }\n\n private createDiffOptions(id: string): FileDiffOptions<LAnnotation> {\n // The per-item options object intentionally owns only hidden state. All\n // public option reads fall through to the shared prototype above.\n const options = Object.create(\n this.diffOptionsPrototype\n ) as FileDiffOptions<LAnnotation>;\n const state: CodeViewItemOptionsState = {\n id,\n };\n defineOptionsState(options, state);\n return options;\n }\n\n private updateItemOptionsId(\n options: FileOptions<LAnnotation> | FileDiffOptions<LAnnotation>,\n id: string\n ): void {\n const state = getItemOptionsState(options);\n if (state == null) {\n throw new Error(`CodeView.updateItemOptionsId: No valid state`);\n }\n state.id = id;\n }\n\n private getItemOptions<TMode extends CodeViewMode>(\n state: CodeViewItemOptionsState,\n mode: TMode\n ): CodeViewModeItemContext<LAnnotation, TMode> | undefined {\n const item = this.idToItem.get(state.id);\n if (item == null || item.type !== mode) {\n return undefined;\n }\n return item as CodeViewModeItemContext<LAnnotation, TMode>;\n }\n\n private defineItemSharedCallback<\n TMode extends CodeViewMode,\n TKey extends CodeViewSharedCallbackKeys,\n >(\n options: CodeViewModeOptions<LAnnotation, TMode>,\n mode: TMode,\n key: TKey\n ): void {\n defineItemOption(\n options as Record<\n TKey,\n CodeViewModeOptions<LAnnotation, TMode>[TKey] | undefined\n >,\n key,\n (receiver) => {\n const current = this.options[key] as\n | CodeViewModeOptionCallback<LAnnotation, TMode, TKey>\n | undefined;\n if (current == null) {\n return undefined;\n }\n\n const state = getItemOptionsState(\n receiver as CodeViewModeOptions<LAnnotation, TMode>\n );\n if (state == null) {\n return undefined;\n }\n // Allocate wrapper storage only once a callback option is actually\n // observed. Most large CodeViews never read these callback properties.\n const callbackCache = (state.callbackCache ??= {});\n let wrapped = callbackCache[key] as\n | CodeViewModeOptions<LAnnotation, TMode>[TKey]\n | undefined;\n if (wrapped == null) {\n wrapped = ((...args: unknown[]) => {\n const latest = this.getItemOptions(state, mode);\n if (latest == null) {\n return undefined;\n }\n const callback = this.options[key] as\n | CodeViewModeInternalOptionCallback<LAnnotation, TMode, TKey>\n | undefined;\n return (\n callback as ((...callbackArgs: unknown[]) => unknown) | undefined\n )?.(...args, latest);\n }) as CodeViewModeOptions<LAnnotation, TMode>[TKey];\n\n callbackCache[key] = wrapped;\n }\n\n return wrapped;\n }\n );\n }\n\n private defineItemSelectionCallback<\n TMode extends CodeViewMode,\n TKey extends CodeViewSelectionCallbackKeys,\n >(\n options: CodeViewModeOptions<LAnnotation, TMode>,\n mode: TMode,\n key: TKey\n ): void {\n defineItemOption(\n options as Record<\n TKey,\n CodeViewModeOptions<LAnnotation, TMode>[TKey] | undefined\n >,\n key,\n (receiver) => {\n const state = getItemOptionsState(\n receiver as CodeViewModeOptions<LAnnotation, TMode>\n );\n if (state == null) {\n return undefined;\n }\n // Selection callbacks also use the per-item lazy cache. The wrapper\n // owns CodeView selection synchronization and then delegates to the\n // latest user callback, if one exists.\n const callbackCache = (state.callbackCache ??= {});\n let wrapped = callbackCache[key] as\n | CodeViewModeOptions<LAnnotation, TMode>[TKey]\n | undefined;\n if (wrapped == null) {\n wrapped = ((range: SelectedLineRange | null) => {\n const latest = this.getItemOptions(state, mode);\n if (latest == null) {\n return undefined;\n }\n\n const selection =\n range == null ? null : { id: latest.item.id, range };\n if (this.options.controlledSelection !== true) {\n if (range != null || this.selectedLines?.id === latest.item.id) {\n this.applySelectedLines(selection, { notify: false });\n }\n }\n\n this.options.onSelectedLinesChange?.(selection);\n\n const callback = this.options[key] as\n | ((\n nextRange: SelectedLineRange | null,\n context: CodeViewModeItemContext<LAnnotation, TMode>\n ) => unknown)\n | undefined;\n return callback?.(range, latest);\n }) as CodeViewModeOptions<LAnnotation, TMode>[TKey];\n\n callbackCache[key] = wrapped;\n }\n\n return wrapped;\n }\n );\n }\n\n /**\n * Track the earliest index whose measured layout may now be stale. Later\n * render passes relayout from this point forward so we do not have to rebuild\n * positions for the whole list after every change.\n */\n private markLayoutDirtyFromIndex(index: number): void {\n this.layoutDirtyIndex = Math.min(this.layoutDirtyIndex ?? index, index);\n }\n\n /**\n * Mark the earliest affected item as layout-dirty after an imperative change.\n * Each record carries its current array index so this stays O(1) even when\n * the viewer holds a very large number of items.\n */\n private markItemLayoutDirty(item: CodeViewContextItem<LAnnotation>): void {\n if (this.items[item.index] !== item) {\n throw new Error(\n `CodeView.markItemLayoutDirty: unknown item id \"${item.item.id}\"`\n );\n }\n\n this.markLayoutDirtyFromIndex(item.index);\n }\n\n /**\n * Detect the common controlled-update case where the new list simply extends\n * the existing ordered prefix. When that happens we can reuse every current\n * record in place, sync any versioned payload changes, and append only the new\n * tail instead of rebuilding the whole list.\n */\n private tryAppendItems(items: readonly CodeViewItem<LAnnotation>[]): boolean {\n if (items.length <= this.items.length) {\n return false;\n }\n\n for (let index = 0; index < this.items.length; index++) {\n const existingItem = this.items[index];\n if (existingItem == null) {\n throw new Error('CodeView.tryAppendItems: missing existing item');\n }\n const nextItem = items[index];\n if (\n nextItem == null ||\n existingItem.item.id !== nextItem.id ||\n existingItem.type !== nextItem.type\n ) {\n return false;\n }\n }\n\n for (let index = 0; index < this.items.length; index++) {\n const existingItem = this.items[index];\n if (existingItem == null) {\n throw new Error('CodeView.tryAppendItems: missing existing item');\n }\n const nextItem = items[index];\n if (nextItem == null) {\n throw new Error(\n 'CodeView.tryAppendItems: append candidate missing prefix item'\n );\n }\n if (this.syncItemRecord(existingItem, nextItem)) {\n this.markLayoutDirtyFromIndex(index);\n }\n }\n\n this.appendItemsInternal(items.slice(this.items.length), false);\n this.scrollDirty = true;\n this.render();\n return true;\n }\n\n /**\n * Reconcile a new controlled item list against the existing records by id.\n * This reuses records and instances when type matches, cleans up removed\n * records, rebuilds the lookup maps, and marks layout dirty whenever order,\n * membership, or versioned item data changes.\n */\n private reconcileItems(\n items: readonly CodeViewItem<LAnnotation>[]\n ): Readonly<CodeViewItemMap<LAnnotation>> | undefined {\n const { items: previousItems, idToItem: previousById } = this;\n const removedItems = new Set(previousItems);\n const nextItems: CodeViewContextItem<LAnnotation>[] = [];\n const nextIdToItem: Map<\n string,\n CodeViewContextItem<LAnnotation>\n > = new Map();\n const nextInstanceToItem: Map<\n VirtualizedFileDiff<LAnnotation> | VirtualizedFile<LAnnotation>,\n CodeViewContextItem<LAnnotation>\n > = new Map();\n const removedItemsById: CodeViewItemMap<LAnnotation> = new Map();\n let firstDirtyIndex: number | undefined;\n\n for (let index = 0; index < items.length; index++) {\n const input = items[index];\n if (input == null) {\n throw new Error('CodeView.reconcileItems: missing input item');\n }\n if (nextIdToItem.has(input.id)) {\n throw new Error(`CodeView.setItems: duplicate id \"${input.id}\"`);\n }\n\n const previousItem = previousById.get(input.id);\n const item =\n previousItem != null && previousItem.type === input.type\n ? previousItem\n : this.createItem(input, index, 0);\n\n item.index = index;\n\n if (previousItem != null && previousItem.type === input.type) {\n removedItems.delete(previousItem);\n if (this.syncItemRecord(item, input)) {\n firstDirtyIndex = Math.min(firstDirtyIndex ?? index, index);\n }\n } else {\n firstDirtyIndex = Math.min(firstDirtyIndex ?? index, index);\n }\n\n if (previousItems[index] !== item) {\n firstDirtyIndex = Math.min(firstDirtyIndex ?? index, index);\n }\n\n nextItems.push(item);\n nextIdToItem.set(input.id, item);\n nextInstanceToItem.set(item.instance, item);\n }\n\n if (firstDirtyIndex == null) {\n if (removedItems.size === 0) {\n return undefined;\n }\n firstDirtyIndex = Math.max(nextItems.length - 1, 0);\n }\n\n this.capturePendingLayoutAnchor(nextIdToItem);\n\n for (let index = 0; index < previousItems.length; index++) {\n const removedItem = previousItems[index];\n if (removedItem == null || !removedItems.has(removedItem)) {\n continue;\n }\n removedItemsById.set(removedItem.item.id, removedItem);\n this.releaseRenderedItem(removedItem);\n const dirtyIndex = Math.max(nextItems.length - 1, 0);\n firstDirtyIndex = Math.min(firstDirtyIndex ?? dirtyIndex, dirtyIndex);\n }\n\n this.items = nextItems;\n this.idToItem = nextIdToItem;\n this.instanceToItem = nextInstanceToItem;\n\n if (this.renderState.firstIndex >= nextItems.length) {\n this.resetRenderState();\n } else if (this.renderState.lastIndex >= nextItems.length) {\n this.renderState.lastIndex = nextItems.length - 1;\n }\n\n this.markLayoutDirtyFromIndex(firstDirtyIndex);\n this.scrollDirty = true;\n this.render();\n return removedItemsById.size > 0 ? removedItemsById : undefined;\n }\n\n /**\n * Update a reused record from the latest controlled item only when its item\n * version changes. Matching versions mean CodeView keeps the current record\n * snapshot, which lets imperative updates remain in place until the caller\n * intentionally publishes a newer version.\n */\n private syncItemRecord(\n item: CodeViewContextItem<LAnnotation>,\n nextItem: CodeViewItem<LAnnotation>\n ): boolean {\n if (item.type !== nextItem.type) {\n throw new Error(\n `CodeView.syncItemRecord: type mismatch for id \"${nextItem.id}\"`\n );\n }\n\n if (item.version === nextItem.version) {\n return false;\n }\n\n item.item = nextItem;\n item.version = nextItem.version;\n item.renderedOptionsRevision = -1;\n return true;\n }\n\n private getMaxScrollTopForHeight(scrollHeight: number): number {\n const { paddingBottom, paddingTop } = this.getLayout();\n // The header/footer hosts live in `root` outside `container`, so they add to\n // the real scrollable range on top of the items + padding.\n return Math.max(\n paddingTop +\n this.header.height +\n scrollHeight +\n this.footer.height +\n paddingBottom -\n this.getHeight(),\n 0\n );\n }\n\n private getMaxScrollTop(): number {\n return this.getMaxScrollTopForHeight(this.getScrollHeight());\n }\n\n private shouldRebaseScroll(): boolean {\n return this.getMaxScrollTop() > SCROLL_REBASE_THRESHOLD;\n }\n\n private getPagedScrollHeight(): number {\n return this.shouldRebaseScroll()\n ? Math.min(this.getScrollHeight(), SCROLL_REBASE_CONTAINER_HEIGHT)\n : this.getScrollHeight();\n }\n\n private getMaxPagedScrollTop(): number {\n return this.getMaxScrollTopForHeight(this.getPagedScrollHeight());\n }\n\n private clampPagedScrollTop(value: number): number {\n const maxScroll = this.getMaxPagedScrollTop();\n return Math.max(0, Math.min(value, maxScroll));\n }\n\n /**\n * Clamps a logical scroll position to the min/max allowable scroll range\n * based on the full computed content height.\n */\n private clampScrollTop(value: number): number {\n const maxScroll = this.getMaxScrollTop();\n return Math.max(0, Math.min(value, maxScroll));\n }\n\n private getMaxScrollPageOffset(): number {\n return Math.max(this.getMaxScrollTop() - this.getMaxPagedScrollTop(), 0);\n }\n\n private clampScrollPageOffset(value: number): number {\n const maxOffset = this.getMaxScrollPageOffset();\n return Math.max(0, Math.min(value, maxOffset));\n }\n\n private resolveScrollPageWindow(\n scrollTop: number,\n preferredPagedScrollTop: number\n ): { pagedScrollTop: number; scrollPageOffset: number } {\n let pagedScrollTop = roundToDevicePixel(\n this.clampPagedScrollTop(preferredPagedScrollTop)\n );\n let scrollPageOffset = this.clampScrollPageOffset(\n scrollTop - pagedScrollTop\n );\n\n pagedScrollTop = roundToDevicePixel(\n this.clampPagedScrollTop(scrollTop - scrollPageOffset)\n );\n scrollPageOffset = this.clampScrollPageOffset(scrollTop - pagedScrollTop);\n return { pagedScrollTop, scrollPageOffset };\n }\n\n /**\n * Resolve how a logical scrollTop maps onto the reusable paged scroll window\n * without mutating the current page offset.\n */\n private resolvePagedScrollPosition(\n logicalScrollTop: number\n ): PagedScrollPosition {\n if (!this.shouldRebaseScroll()) {\n return {\n pagedScrollTop: this.clampPagedScrollTop(logicalScrollTop),\n scrollPageOffset: 0,\n };\n }\n\n const currentPageOffset = this.clampScrollPageOffset(this.scrollPageOffset);\n\n const pagedScrollTop = logicalScrollTop - currentPageOffset;\n const pagedMaxScrollTop = this.getMaxPagedScrollTop();\n const maxRebaseOffset = this.getMaxScrollPageOffset();\n const shouldMoveDown =\n pagedScrollTop > SCROLL_REBASE_THRESHOLD &&\n currentPageOffset < maxRebaseOffset;\n const shouldMoveUp =\n pagedScrollTop < SCROLL_REBASE_TRIGGER_TOP && currentPageOffset > 0;\n\n if (\n pagedScrollTop < 0 ||\n pagedScrollTop > pagedMaxScrollTop ||\n shouldMoveDown ||\n shouldMoveUp\n ) {\n const nextWindow = this.resolveScrollPageWindow(\n logicalScrollTop,\n shouldMoveUp\n ? Math.min(SCROLL_REBASE_TARGET_BOTTOM, pagedMaxScrollTop)\n : SCROLL_REBASE_TARGET_TOP\n );\n return nextWindow;\n }\n\n return {\n pagedScrollTop: roundToDevicePixel(\n this.clampPagedScrollTop(pagedScrollTop)\n ),\n scrollPageOffset: currentPageOffset,\n };\n }\n\n private needsScrollPageUpdate(logicalScrollTop: number): boolean {\n const roundedScrollTop = roundToDevicePixel(\n this.clampScrollTop(logicalScrollTop)\n );\n const { scrollPageOffset } =\n this.resolvePagedScrollPosition(roundedScrollTop);\n return scrollPageOffset !== this.scrollPageOffset;\n }\n\n private getPagedLayoutTop(logicalTop: number): number {\n if (!this.shouldRebaseScroll()) {\n return logicalTop;\n }\n return Math.max(logicalTop - this.scrollPageOffset, 0);\n }\n\n private getStickyHeaderOffset(): number {\n return this.options.stickyHeaders === true &&\n this.options.disableFileHeader !== true\n ? this.itemMetricsCache.diffHeaderHeight\n : 0;\n }\n\n private getScrollTargetRect(\n target:\n | CodeViewItemScrollTarget\n | CodeViewLineScrollTarget\n | CodeViewRangeScrollTarget\n ): { top: number; height: number } | undefined {\n const item = this.idToItem.get(target.id);\n if (item == null) {\n console.warn(`CodeView.scrollTo: unknown item id \"${target.id}\"`);\n return undefined;\n }\n\n if (target.type === 'item') {\n return { top: item.top, height: item.height };\n }\n\n if (target.type === 'range') {\n const rangePosition = this.getRangeScrollPosition(item, target);\n if (rangePosition == null) {\n console.warn(\n `CodeView.scrollTo: unable to resolve range ${formatSelectedLineRange(target.range)} for item \"${target.id}\"`\n );\n return undefined;\n }\n\n return {\n top: item.top + rangePosition.top,\n height: rangePosition.height,\n };\n }\n\n const linePosition = this.getLineScrollPosition(item, target);\n if (linePosition == null) {\n console.warn(\n `CodeView.scrollTo: unable to resolve line ${target.lineNumber} for item \"${target.id}\"`\n );\n return undefined;\n }\n\n return {\n top: item.top + linePosition.top,\n height: linePosition.height,\n };\n }\n\n private normalizeScrollTarget(\n target: CodeViewScrollTarget\n ): PendingScrollTarget | undefined {\n if (target.type === 'position' || target.align !== 'nearest') {\n return target as PendingScrollTarget;\n }\n\n const rect = this.getScrollTargetRect(target);\n if (rect == null) {\n return undefined;\n }\n\n // Determine a stable scrollTo target for `nearest` alignment. This is to\n // ensure that we don't experience any scroll bouncing\n const offset = target.offset ?? 0;\n const targetTop = this.getItemTopOffset() + rect.top;\n const targetBottom = targetTop + rect.height;\n const currentTop = this.getScrollTop();\n const visibleTop =\n currentTop +\n (target.type === 'line' || target.type === 'range'\n ? this.getStickyHeaderOffset()\n : 0);\n const visibleBottom = currentTop + this.getHeight();\n\n // If the item is spanning beyond the full viewport,\n // do nothing as it's already in view\n if (\n targetTop - offset <= visibleTop &&\n targetBottom + offset >= visibleBottom\n ) {\n return undefined;\n }\n\n // Let's use the top as the target\n if (targetTop - offset < visibleTop) {\n return { ...target, align: 'start' };\n }\n\n // Let's use the top as the target\n if (targetBottom + offset > visibleBottom) {\n return { ...target, align: 'end' };\n }\n\n // The element is already in view, nothing to do.\n return undefined;\n }\n\n /**\n * Resolve a target's scroll position\n\n * Returns `undefined` when we can't resolve a target for whatever reason\n */\n private resolveScrollTargetTop(\n target: PendingScrollTarget\n ): number | undefined {\n if (target.type === 'position') {\n const clampedPosition = this.clampScrollTop(target.position);\n return clampedPosition !== target.position\n ? // If our position was clamped, we we shouldn't apply the sticky offset\n clampedPosition\n : this.clampScrollTop(target.position - this.getStickyHeaderOffset());\n }\n\n const item = this.idToItem.get(target.id);\n if (item == null) {\n console.warn(`CodeView.scrollTo: unknown item id \"${target.id}\"`);\n return undefined;\n }\n\n if (target.type === 'item') {\n return this.clampScrollTop(\n this.resolveAlignedScrollPosition(\n item.top,\n item.height,\n target.align,\n target.offset\n )\n );\n }\n\n if (target.type === 'range') {\n const rangePosition = this.getRangeScrollPosition(item, target);\n if (rangePosition == null) {\n console.warn(\n `CodeView.scrollTo: unable to resolve range ${formatSelectedLineRange(target.range)} for item \"${target.id}\"`\n );\n return undefined;\n }\n\n return this.clampScrollTop(\n this.resolveAlignedScrollPosition(\n item.top + rangePosition.top,\n rangePosition.height,\n target.align,\n target.offset,\n this.getStickyHeaderOffset()\n )\n );\n }\n\n const linePosition = this.getLineScrollPosition(item, target);\n if (linePosition == null) {\n console.warn(\n `CodeView.scrollTo: unable to resolve line ${target.lineNumber} for item \"${target.id}\"`\n );\n return undefined;\n }\n\n return this.clampScrollTop(\n this.resolveAlignedScrollPosition(\n item.top + linePosition.top,\n linePosition.height,\n target.align,\n target.offset,\n this.getStickyHeaderOffset()\n )\n );\n }\n\n /**\n * Given an existing scroll target (scroll top and height), figure out the\n * correct scroll position to target based on the desired alignment, offset\n * and stickyOffset if necessary\n */\n private resolveAlignedScrollPosition(\n // REVIEW: lets turn this into a named interface object, essentially named\n // arguments that can't be confused/reversed\n targetTop: number,\n targetHeight: number,\n align: PendingAlignTypes,\n offset = 0,\n stickyOffset = 0\n ): number {\n // targetTop is item-space (0 = first item's top); shift it into absolute\n // scroll coordinates. getItemTopOffset includes the header height, so\n // scrolling to an item/line lands correctly when a header is present.\n targetTop += this.getItemTopOffset();\n const viewportHeight = this.getHeight();\n // If the item + offset is bigger than the viewport, we'll fall back to\n // 'start'\n if (align === 'center' && targetHeight + offset < viewportHeight) {\n return targetTop - (viewportHeight - targetHeight) / 2 + offset;\n }\n if (align === 'end') {\n return targetTop - (viewportHeight - targetHeight) + offset;\n }\n // 'start', the default\n return targetTop - stickyOffset - offset;\n }\n\n private getLineScrollPosition(\n item: CodeViewContextItem<LAnnotation>,\n target: CodeViewLineScrollTarget\n ): LineScrollPosition | undefined {\n if (item.type === 'diff') {\n return item.instance.getLinePosition(target.lineNumber, target.side);\n }\n\n return item.instance.getLinePosition(target.lineNumber);\n }\n\n private getRangeScrollPosition(\n item: CodeViewContextItem<LAnnotation>,\n target: CodeViewRangeScrollTarget\n ): LineScrollPosition | undefined {\n const { range } = target;\n const startPosition = this.getLineScrollPosition(item, {\n type: 'line',\n id: target.id,\n lineNumber: range.start,\n side: range.side,\n });\n const endPosition = this.getLineScrollPosition(item, {\n type: 'line',\n id: target.id,\n lineNumber: range.end,\n side: range.endSide ?? range.side,\n });\n if (startPosition == null || endPosition == null) {\n return undefined;\n }\n\n const startTop = startPosition.top;\n const startBottom = startTop + startPosition.height;\n const endTop = endPosition.top;\n const endBottom = endTop + endPosition.height;\n const top = Math.min(startTop, endTop);\n const bottom = Math.max(startBottom, endBottom);\n return { top, height: bottom - top };\n }\n\n /**\n * Determine target scroll position for current frame.\n *\n * If there's no pendingScrollTarget then we just return the current scroll\n * position\n *\n * If there's a pendingScrollTarget then we depend on whether there's a\n * smooth scroll animation or not. If not just return the destination, or\n * compute next position given the smooth scroll spring physics\n */\n private computeTargetScrollTopForFrame(\n scrollTop: number,\n frameTimestamp: number\n ): number {\n if (this.pendingScrollTarget == null) {\n return scrollTop;\n }\n const destination = this.resolveScrollTargetTop(this.pendingScrollTarget);\n if (destination == null) {\n return scrollTop;\n }\n const { scrollAnimation } = this;\n if (scrollAnimation == null) {\n return destination;\n }\n return this.computeSpringStep(scrollAnimation, destination, frameTimestamp)\n .position;\n }\n\n /**\n * Closed-form critical-damped ODE step.\n *\n * Stable at any dt (Euler would blow up once ω·dt ≳ 1), so this survives\n * big RAF gaps (tab-wake, offscreen frames) and resize-driven ticks that\n * fire outside the normal RAF cadence.\n */\n private computeSpringStep(\n animation: ScrollToAnimation,\n destination: number,\n frameTimestamp: number\n ): SpringStepResult {\n const dt = Math.max(0, frameTimestamp - animation.lastTimestamp);\n const { omega } = this.getSmoothScrollSettings();\n const decay = Math.exp(-omega * dt);\n const displacement = animation.position - destination;\n const springCoeff = animation.velocity + omega * displacement;\n const position = destination + (displacement + springCoeff * dt) * decay;\n const velocity =\n (springCoeff * (1 - omega * dt) - omega * displacement) * decay;\n return { position, velocity };\n }\n\n /**\n * For any given pendingScrollTarget, updates any in flight smooth scroll\n * animations and returns the target scrollTop to move towards\n *\n * Resolves the animation based on frame time and adopts any necessary scroll\n * anchoring corrections if necessary\n */\n private advanceScrollAnimation(\n frameTimestamp: number,\n anchorDelta: number\n ): number | undefined {\n if (this.pendingScrollTarget == null) {\n return undefined;\n }\n const destination = this.resolveScrollTargetTop(this.pendingScrollTarget);\n if (destination == null) {\n this.pendingScrollTarget = undefined;\n this.scrollAnimation = undefined;\n return undefined;\n }\n const animation = this.scrollAnimation;\n if (animation == null) {\n return destination;\n }\n\n animation.position += anchorDelta;\n\n const { position, velocity } = this.computeSpringStep(\n animation,\n destination,\n frameTimestamp\n );\n animation.lastTimestamp = frameTimestamp;\n animation.position = position;\n animation.velocity = velocity;\n\n const { positionEpsilon, velocityEpsilon } = this.getSmoothScrollSettings();\n if (\n Math.abs(destination - position) <= positionEpsilon &&\n Math.abs(velocity) <= velocityEpsilon\n ) {\n animation.position = destination;\n animation.velocity = 0;\n this.scrollAnimation = undefined;\n return destination;\n }\n\n return animation.position;\n }\n\n private computeRenderRangeAndEmit = (\n timestamp: number = performance.now()\n ): void => {\n if (CodeView.__STOP || this.container == null) {\n return;\n }\n if (!this.isReady()) {\n return;\n }\n\n // Read the current viewport and logical scroll position before making DOM\n // mutations, then capture an anchor that can survive layout recalculation.\n const viewportHeight = this.getHeight();\n const initialScrollTop = this.getScrollTop();\n let scrollTopAfterLayout = initialScrollTop;\n // Typically a pendingLayoutAnchor will be created from a setOptions call,\n // that will force us to attempt to fit to a new scroll position to not\n // allow the viewport to jump around on us. This can also be triggered\n // later on if a particular item marks itself as dirty\n let computeScrollCorrection = this.pendingLayoutAnchor != null;\n // We need to grab the anchor before we re-compute any layout updates, or\n // else we'll get invalid anchor reference data. If we have a\n // pendingLayoutAnchor it will just grab that for us instead of attempting\n // to compute one\n let scrollAnchor = this.getScrollAnchor(scrollTopAfterLayout);\n\n // If any item marked itself as difty, we should re-compute everything\n // after it and then force a new scroll top correction if we aren't already\n if (this.layoutDirtyIndex != null) {\n this.recomputeLayout(this.layoutDirtyIndex, this.pendingLayoutReset);\n this.layoutDirtyIndex = undefined;\n this.pendingLayoutReset = undefined;\n computeScrollCorrection = true;\n }\n\n // If layout shifted, resolve the logical scrollTop that keeps the captured\n // anchor in the same viewport position.\n if (computeScrollCorrection && scrollAnchor != null) {\n const anchoredScrollTopAfterLayout =\n this.resolveAnchoredScrollTop(scrollAnchor);\n if (anchoredScrollTopAfterLayout != null) {\n const layoutAnchorDelta =\n anchoredScrollTopAfterLayout - scrollTopAfterLayout;\n scrollTopAfterLayout = anchoredScrollTopAfterLayout;\n if (this.scrollAnimation != null) {\n // If we have a delta measurement adjustment, we have to pass that\n // change onto the scroll animation to ensure the animation remains\n // stable, later on\n this.scrollAnimation.position += layoutAnchorDelta;\n }\n }\n }\n // Recomputing layout can shrink the scroll range, for example when items\n // collapse, so clamp current scroll position and update DOM so scroll\n // changes are valid before deriving the render window for this frame.\n if (computeScrollCorrection) {\n scrollTopAfterLayout = this.clampScrollTop(scrollTopAfterLayout);\n this.syncContainerHeight();\n }\n\n // Resolve the logical scrollTop this render frame should target. The paged\n // root scrollTop is derived later only if the scaffold needs to move.\n const targetScrollTop = this.computeTargetScrollTopForFrame(\n scrollTopAfterLayout,\n timestamp\n );\n\n // When performing very large scroll jumps, we should attempt to render the\n // bare minimum to ensure we can paint quickly. We'll queue up another\n // render at the end to fill things out on the next tick. If we had to\n // correct layout-adjusted scroll state then we should not fitPerfectly\n // because there's a good chance we'll be re-rendering the same elements\n // again\n const fitPerfectly =\n !computeScrollCorrection &&\n (this.renderState.scrollTop === -1 ||\n Math.abs(targetScrollTop - this.renderState.scrollTop) >\n viewportHeight + this.config.overscrollSize * 2);\n\n // If we are doing a `fitPerfectly` render it means we are rendering\n // completely new content which means no need to scroll fix anything\n if (fitPerfectly) {\n scrollAnchor = undefined;\n }\n\n // Compute the projected logical window, then synchronize the paged scroll\n // scaffold before mutating rendered items.\n this.windowSpecs = createWindowFromScrollPosition({\n // The window is in item-space (0 = first item's top); subtract the header so\n // a tall header can't desync which items fall inside the render window.\n scrollTop: targetScrollTop - this.header.height,\n height: viewportHeight,\n scrollHeight: this.getScrollHeight(),\n fitPerfectly,\n fitPerfectlyOverscroll: this.getFitPerfectlyOverscroll(),\n overscrollSize: this.config.overscrollSize,\n });\n let syncedScrollTop = initialScrollTop;\n if (\n (this.pendingScrollTarget != null &&\n targetScrollTop !== syncedScrollTop) ||\n this.needsScrollPageUpdate(targetScrollTop)\n ) {\n // Apply programmatic scrolls and user-driven page rebases before DOM\n // mutations so the browser reconciles the render against the right\n // paged scroll position.\n this.applyScrollFix(targetScrollTop, syncedScrollTop, this.windowSpecs);\n syncedScrollTop = targetScrollTop;\n }\n\n // Reconcile the currently mounted DOM against the new projected render\n // window, cleaning up any elements that are no longer visible.\n const { top, bottom } = this.windowSpecs;\n const { firstIndex, lastIndex } = this.renderState;\n if (firstIndex >= 0) {\n for (let index = firstIndex; index <= lastIndex; index++) {\n const item = this.items[index];\n if (item == null) {\n throw new Error(\n `CodeView.computeRenderRangeAndEmit: No item at index: ${index}`\n );\n }\n const isVisible = item.top > top - item.height && item.top <= bottom;\n // If not visible, we should unmount it and clean it up\n if (!isVisible) {\n this.releaseRenderedItem(item);\n }\n }\n }\n\n // Mount/unmount/re-populate the header/footer hosts in the same DOM-mutation\n // window as the items, after the scroll anchor was captured above and before\n // the post-render anchor resolve below.\n const hostsChanged = this.reconcileHeaderFooterHosts();\n\n let prevElement: HTMLElement | undefined;\n const updatedItems = new Set<CodeViewContextItem<LAnnotation>>();\n const startingIndex = this.findFirstVisibleIndex(top);\n const lastRenderedIndex = this.findLastVisibleIndex(bottom);\n\n for (\n let itemIndex = startingIndex;\n itemIndex <= lastRenderedIndex;\n itemIndex++\n ) {\n const item = this.items[itemIndex];\n if (item == null) {\n throw new Error(`CodeView.computeRenderRangeAndEmit: missing item`);\n }\n const { instance } = item;\n // If the item isn't rendered yet, we need to create a wrapper element\n // for it and render it\n if (item.element == null) {\n item.element = this.acquireElement();\n syncRenderedItemOrder(this.stickyContainer, item.element, prevElement);\n instance.virtualizedSetup();\n if (renderItem(item, item.element)) {\n item.renderedOptionsRevision = this.renderOptionsRevision;\n updatedItems.add(item);\n }\n prevElement = item.element;\n }\n // Otherwise kick off a render as necessary\n else {\n syncRenderedItemOrder(this.stickyContainer, item.element, prevElement);\n const forceRender =\n item.renderedOptionsRevision !== this.renderOptionsRevision;\n if (renderItem(item, undefined, forceRender)) {\n item.renderedOptionsRevision = this.renderOptionsRevision;\n updatedItems.add(item);\n }\n prevElement = item.element;\n }\n // Bind editors after the item render kicked off; attachItemEditor\n // no-ops unless the item is in edit mode and not already attached.\n if (item.item.edit === true) {\n this.attachItemEditor(item);\n }\n }\n\n this.renderState.firstIndex =\n startingIndex <= lastRenderedIndex ? startingIndex : -1;\n this.renderState.lastIndex = lastRenderedIndex;\n\n this.flushSlotCoordinator();\n this.flushManagers(updatedItems);\n // Read phase: measure a freshly mounted or re-populated host now so its\n // getBoundingClientRect batches into the same reflow as the item height reads.\n if (hostsChanged) {\n this.measureMountedHosts();\n }\n this.reconcileRenderedItems(updatedItems);\n this.syncContainerHeight();\n this.updateStickyPositioning();\n\n // Now that the dom has been flushed and we've computed our updated\n // item/line metrics, we should attempt to resolve any scroll anchors and\n // scroll animation data. We have already applied the desired scroll\n // position before rendering, so the only scroll changes should be to\n // scrollFix from lines that did not match their computed state.\n //\n // - No pending scrollTo target → Only attempt to scrollFix if there's a\n // mismatch\n // - Instant pending scrollTo target → Resolve target anchor position and\n // apply any necessary scroll fixes\n // - Smooth pending scrollTo target → Apply necessary scrollFix if\n // necessary and rebase/update the outstanding spring animation values.\n const anchoredScrollTopAfterRender =\n scrollAnchor != null\n ? this.resolveAnchoredScrollTop(scrollAnchor)\n : undefined;\n if (scrollAnchor === this.pendingLayoutAnchor) {\n this.pendingLayoutAnchor = undefined;\n }\n // The amount of computed layout shift from the render\n const postRenderAnchorDelta =\n anchoredScrollTopAfterRender != null\n ? anchoredScrollTopAfterRender - scrollTopAfterLayout\n : 0;\n\n let postRenderScrollTop = targetScrollTop;\n let shouldCheckPendingTargetSettled = false;\n if (this.pendingScrollTarget != null) {\n const pendingTargetScrollTop = this.advanceScrollAnimation(\n timestamp,\n postRenderAnchorDelta\n );\n if (pendingTargetScrollTop != null) {\n postRenderScrollTop = pendingTargetScrollTop;\n shouldCheckPendingTargetSettled = true;\n }\n // If something bad happened with our pending scroll target, then we'd\n // fall back here. Unlikely to happen in practice, but we need to reset\n // the scrollTop if so\n else {\n postRenderScrollTop = scrollTopAfterLayout;\n }\n } else {\n postRenderScrollTop = anchoredScrollTopAfterRender ?? targetScrollTop;\n }\n // If the new intended scroll position has changed, we should apply that\n // now to bring everything in line\n if (postRenderScrollTop !== syncedScrollTop) {\n this.applyScrollFix(\n postRenderScrollTop,\n syncedScrollTop,\n this.windowSpecs\n );\n syncedScrollTop = postRenderScrollTop;\n }\n if (\n shouldCheckPendingTargetSettled &&\n this.pendingScrollTarget != null &&\n this.isPendingTargetSettled(this.pendingScrollTarget)\n ) {\n this.pendingScrollTarget = undefined;\n this.scrollAnimation = undefined;\n }\n this.renderState.scrollTop = roundToDevicePixel(syncedScrollTop);\n\n // The post-render scroll-correction block above can call applyScrollFix ->\n // syncPagedScrollScaffolding -> applyStickyPositioning, which recomputes\n // renderState.stickyHeight from getStickyBounds(windowSpecs) for the\n // corrected scroll position. The rendered DOM slice was committed earlier in\n // this frame for the pre-correction window and is not re-rendered here, so\n // that windowSpecs-based value can diverge from the committed slice by the\n // scroll-correction delta. Recompute sticky positioning from the committed\n // renderRange (no-arg path) so renderState.stickyHeight matches the slice\n // actually in the DOM before we validate it.\n this.updateStickyPositioning();\n\n this.validateStickyContainerHeight();\n this.fixContainerFocus();\n\n // If we are hitting a fitPerfectly heuristic, we should queue up another\n // render to fill out content. If we are performing a scroll animation we'll\n // need another render to continue.\n if (fitPerfectly || this.scrollAnimation != null) {\n this.render();\n }\n };\n\n private flushManagers(\n updatedItems: Set<CodeViewContextItem<LAnnotation>>\n ): void {\n for (const item of updatedItems) {\n item.instance.flushManagers();\n }\n }\n\n private syncContainerHeight(): void {\n const pagedScrollHeight = this.getPagedScrollHeight();\n if (this.container == null || this.containerHeight === pagedScrollHeight) {\n return;\n }\n\n this.container.style.height = `${pagedScrollHeight}px`;\n this.containerHeight = pagedScrollHeight;\n }\n\n private getStickyBounds(\n windowSpecs?: VirtualWindowSpecs\n ): StickyBounds | undefined {\n const { firstIndex, lastIndex } =\n windowSpecs != null\n ? {\n firstIndex: this.findFirstVisibleIndex(windowSpecs.top),\n lastIndex: this.findLastVisibleIndex(windowSpecs.bottom),\n }\n : this.renderState;\n\n if (firstIndex === -1 || lastIndex === -1 || firstIndex > lastIndex) {\n return undefined;\n }\n const firstStickySpecs =\n this.items[firstIndex]?.instance.getAdvancedStickySpecs(windowSpecs);\n const lastStickySpecs =\n this.items[lastIndex]?.instance.getAdvancedStickySpecs(windowSpecs);\n\n if (firstStickySpecs == null || lastStickySpecs == null) {\n return undefined;\n }\n\n return {\n stickyTop: this.getPagedLayoutTop(\n Math.max(firstStickySpecs.topOffset, 0)\n ),\n stickyBottom: this.getPagedLayoutTop(\n lastStickySpecs.topOffset + lastStickySpecs.height\n ),\n };\n }\n\n private applyStickyPositioning({\n stickyTop,\n stickyBottom,\n }: StickyBounds): void {\n const height = this.getHeight();\n const { itemMetricsCache: itemMetrics } = this;\n const stickyContainerHeight = stickyBottom - stickyTop;\n\n this.renderState.stickyHeight = stickyContainerHeight;\n this.renderState.stickyTop = stickyTop;\n this.renderState.stickyBottom = stickyBottom;\n\n this.stickyOffset.style.height = `${stickyTop}px`;\n // NOTE(amadeus): Wee polish lad -- when dragging the scrollbar up or\n // down quickly, this prevents the laggy scroll view from lining up with\n // the numbers exactly\n const randomOffset = ((Math.random() * itemMetrics.lineHeight) >> 0) * -1;\n const stickyJitter =\n -Math.max(stickyContainerHeight + randomOffset, 0) + height;\n this.stickyContainer.style.top = `${stickyJitter}px`;\n this.stickyContainer.style.bottom = `${stickyJitter + itemMetrics.diffHeaderHeight}px`;\n }\n\n private syncPagedScrollScaffolding(windowSpecs: VirtualWindowSpecs): void {\n this.syncContainerHeight();\n const stickyBounds = this.getStickyBounds(windowSpecs);\n if (stickyBounds == null) {\n return;\n }\n this.applyStickyPositioning(stickyBounds);\n }\n\n private reconcileRenderedItems(\n updatedItems?: Set<CodeViewContextItem<LAnnotation>>\n ): void {\n const { firstIndex, lastIndex } = this.renderState;\n if (firstIndex === -1) {\n return;\n }\n\n let currentTop = -1;\n let heightChanged = false;\n // Iterate through the rendered items to reconcile height. If a height\n // has changed, we'll have to iterate all the way till the end to update\n // all appropriate heights\n for (let index = firstIndex; index < this.items.length; index++) {\n // If we've incurred no height changes and ended, we can abort\n if (!heightChanged && index > lastIndex) {\n break;\n }\n const item = this.items[index];\n if (item == null) {\n throw new Error('CodeView.reconcileRenderedItems: Invalid item');\n }\n if (currentTop === -1) {\n currentTop = item.top;\n } else if (item.top !== currentTop) {\n item.top = currentTop;\n item.instance.syncVirtualizedTop();\n heightChanged = true;\n }\n // If updatedInstances provided, only reconcile those. If not provided\n // (resize path), reconcile all rendered items.\n if (updatedItems == null ? index <= lastIndex : updatedItems.has(item)) {\n if (item.instance.reconcileHeights()) {\n heightChanged = true;\n item.height = item.instance.getVirtualizedHeight();\n }\n this.validateRenderedItemHeight(item);\n }\n currentTop += item.instance.getVirtualizedHeight();\n if (index < this.items.length - 1) {\n currentTop += this.getLayout().gap;\n }\n }\n\n if (heightChanged && currentTop != null) {\n this.scrollDirty = true;\n this.scrollHeight = currentTop;\n }\n }\n\n private updateStickyPositioning(): void {\n const stickyBounds = this.getStickyBounds();\n if (stickyBounds == null) {\n // No rendered slice means no sticky scaffold: clear the spacer so an\n // emptied viewer sheds the offset height captured from the last\n // rendered layout instead of keeping phantom space in the container.\n if (this.renderState.firstIndex === -1) {\n this.stickyOffset.style.height = '';\n }\n return;\n }\n const { stickyTop, stickyBottom } = stickyBounds;\n const stickyContainerHeight = stickyBottom - stickyTop;\n\n if (\n stickyContainerHeight === this.renderState.stickyHeight &&\n stickyTop === this.renderState.stickyTop &&\n stickyBottom === this.renderState.stickyBottom\n ) {\n return;\n }\n\n this.applyStickyPositioning(stickyBounds);\n }\n\n private handleScroll = (): void => {\n if (CodeView.__STOP) {\n return;\n }\n this.suspendScrollInteractions();\n this.scrollDirty = true;\n this.notifyScroll();\n this.render();\n };\n\n // Abort any in-flight programmatic scroll when the user takes over.\n // Attached to root as a passive listener for wheel / touchstart /\n // pointerdown / keydown; we never mutate the event, just drop our state.\n private clearPendingScroll = (): void => {\n this.pendingScrollTarget = undefined;\n this.pendingLayoutAnchor = undefined;\n this.scrollAnimation = undefined;\n };\n\n private handleResize = (entries: ResizeObserverEntry[]) => {\n let shouldRender = false;\n for (const entry of entries) {\n // If the sticky container resizes (could be from a render, which it will\n // probably ignore) or if an annotation or line wrap triggers a resize\n if (entry.target === this.stickyContainer) {\n const blockSize = entry.borderBoxSize[0].blockSize;\n if (\n Math.abs(blockSize - this.renderState.stickyHeight) >=\n SUB_PIXEL_TOLERANCE\n ) {\n // If content resizes above the viewport, we want to be sure that it\n // doesn't cause things to jump within the viewport\n const currentScrollTop = this.getScrollTop();\n const anchor = this.getScrollAnchor(currentScrollTop);\n\n this.reconcileRenderedItems();\n this.updateStickyPositioning();\n\n const anchoredScrollTop =\n anchor != null ? this.resolveAnchoredScrollTop(anchor) : undefined;\n if (anchoredScrollTop != null) {\n const resizeAnchorDelta = anchoredScrollTop - currentScrollTop;\n this.applyScrollFix(\n anchoredScrollTop,\n currentScrollTop,\n this.windowSpecs\n );\n if (this.scrollAnimation != null) {\n // if we had to apply a scroll fix then we should make sure to\n // match the scroll fix delta to the scrollAnimation position to\n // ensure the animation continues smoothly as if the scroll fix\n // never happened\n this.scrollAnimation.position += resizeAnchorDelta;\n }\n }\n if (\n this.pendingScrollTarget != null &&\n this.isPendingTargetSettled(this.pendingScrollTarget)\n ) {\n this.pendingScrollTarget = undefined;\n this.scrollAnimation = undefined;\n }\n shouldRender = true;\n }\n }\n // A header/footer host resized after mount (async content, fonts, a React\n // portal filling in). Re-measure and, for a header — which lives above the\n // items — re-anchor so the content under the user's eyes doesn't jump,\n // mirroring the stickyContainer branch above. Items are untouched by a host\n // resize, so we skip reconcileRenderedItems/updateStickyPositioning; the\n // trailing render() reconciles the range and render window.\n else if (\n entry.target === this.header.element ||\n entry.target === this.footer.element\n ) {\n const host =\n entry.target === this.header.element ? this.header : this.footer;\n const blockSize = entry.borderBoxSize[0].blockSize;\n if (blockSize !== host.height) {\n // Capture the anchor with the OLD offset, apply the new height, then\n // resolve with the NEW offset so the delta cancels the layout shift. A\n // footer only changes the scroll range, so its anchor resolves to no\n // change (or a clamp when it shrinks below the current scroll).\n const currentScrollTop = this.getScrollTop();\n const anchor = this.getScrollAnchor(currentScrollTop);\n this.setHostHeight(host, blockSize);\n const anchoredScrollTop =\n anchor != null ? this.resolveAnchoredScrollTop(anchor) : undefined;\n if (anchoredScrollTop != null) {\n const resizeAnchorDelta = anchoredScrollTop - currentScrollTop;\n this.applyScrollFix(\n anchoredScrollTop,\n currentScrollTop,\n this.windowSpecs\n );\n if (this.scrollAnimation != null) {\n this.scrollAnimation.position += resizeAnchorDelta;\n }\n }\n if (\n this.pendingScrollTarget != null &&\n this.isPendingTargetSettled(this.pendingScrollTarget)\n ) {\n this.pendingScrollTarget = undefined;\n this.scrollAnimation = undefined;\n }\n shouldRender = true;\n }\n }\n // Root element resize (element-mode only)\n else {\n this.scrollDirty = true;\n this.heightDirty = true;\n shouldRender = true;\n }\n }\n\n // If the DOM changed in an unexpected way, we should kick\n // off a synchronous render immediately because it will\n // ensure no visual jitter if we need to scroll fix\n if (shouldRender) {\n this.render(true);\n }\n };\n\n /**\n * Figure out scrollTop accounting for sticky header if enabled and\n * necessary\n */\n private getScrollAnchorViewportTop(\n absoluteItemTop: number,\n scrollTop: number\n ): number {\n return absoluteItemTop < scrollTop\n ? scrollTop + this.getStickyHeaderOffset()\n : scrollTop;\n }\n\n /**\n * Attempt to find a scroll anchor based on build in metrics of the existing\n * rendered files/diff.\n *\n * A scroll anchor represents the first fully visible element (in other\n * words, the first file or first line who's top is fully in the viewport).\n */\n private getScrollAnchor(\n scrollTop: number,\n availableItems: ReadonlyMap<string, CodeViewContextItem<LAnnotation>> = this\n .idToItem\n ): ScrollAnchor | undefined {\n let skippedItem: CodeViewContextItem<LAnnotation> | undefined;\n\n const { pendingLayoutAnchor } = this;\n if (pendingLayoutAnchor != null) {\n const pendingItem = this.idToItem.get(pendingLayoutAnchor.id);\n if (\n pendingItem != null &&\n availableItems.get(pendingLayoutAnchor.id) === pendingItem\n ) {\n return pendingLayoutAnchor;\n }\n if (pendingItem != null) {\n skippedItem = pendingItem;\n }\n }\n\n // We shouldn't scroll anchor when at the top, this way if a custom header\n // gets asynchronously added it won't be hidden when added. Also like,\n // logically it doesn't make sense to anchor at the top of the document,\n // you probably want to see stuff added at the top...\n if (scrollTop <= 0) {\n return undefined;\n }\n\n const { firstIndex, lastIndex, stickyTop, stickyBottom } = this.renderState;\n if (firstIndex === -1 || lastIndex === -1) {\n return undefined;\n }\n\n const viewportHeight = this.getHeight();\n // If we have no previoius frame, we shouldn't scroll anchor\n if (stickyTop === -1 || stickyBottom === -1) {\n return undefined;\n }\n\n for (let index = firstIndex; index <= lastIndex; index++) {\n const item = this.items[index];\n if (item == null) {\n continue;\n }\n\n const absoluteItemTop = this.getItemTopOffset() + item.top;\n const absoluteItemBottom = absoluteItemTop + item.height;\n // Skip items entirely above the viewport since we can't see it\n if (absoluteItemBottom <= scrollTop) {\n continue;\n }\n // If the item starts below the viewport bottom we are done searching.\n if (absoluteItemTop >= scrollTop + viewportHeight) {\n break;\n }\n\n const itemIsAvailable = availableItems.get(item.item.id) === item;\n if (!itemIsAvailable) {\n skippedItem ??= item;\n continue;\n }\n\n if (absoluteItemTop >= scrollTop) {\n return {\n type: 'item',\n id: item.item.id,\n viewportOffset: absoluteItemTop - scrollTop,\n };\n }\n\n // First attempt to grab a the first fully visible line\n const anchorViewportTop = this.getScrollAnchorViewportTop(\n absoluteItemTop,\n scrollTop\n );\n const localViewportTop = anchorViewportTop - absoluteItemTop;\n const lineAnchor = item.instance.getNumericScrollAnchor(localViewportTop);\n if (lineAnchor != null) {\n const absoluteLineTop = absoluteItemTop + lineAnchor.top;\n return {\n type: 'line',\n id: item.item.id,\n lineNumber: lineAnchor.lineNumber,\n side: lineAnchor.side,\n viewportOffset: absoluteLineTop - scrollTop,\n };\n }\n }\n\n // If we couldn't find an anchored item and we have a skipped item, lets\n // attempt to anchor to the top of the item that came after it\n if (skippedItem != null) {\n for (\n let index = skippedItem.index + 1;\n index < this.items.length;\n index++\n ) {\n const candidate = this.items[index];\n if (\n candidate != null &&\n availableItems.get(candidate.item.id) === candidate\n ) {\n return {\n type: 'item',\n id: candidate.item.id,\n viewportOffset: 0,\n };\n }\n }\n }\n\n // I don't think we'll ever make it this far...\n return undefined;\n }\n\n /**\n * Given a scroll anchor, attempt to resolve a newly updated (and clamped)\n * scroll position to keep the anchored element in place.\n *\n * If we can't resolve a position for whatever reason, we'll return\n * undefined.\n */\n private resolveAnchoredScrollTop(anchor: ScrollAnchor): number | undefined {\n const item = this.idToItem.get(anchor.id);\n if (item == null) {\n return undefined;\n }\n\n const itemTopOffset = this.getItemTopOffset();\n if (anchor.type === 'item') {\n const absoluteItemTop = itemTopOffset + item.top;\n return this.clampScrollTop(absoluteItemTop - anchor.viewportOffset);\n }\n\n const linePosition =\n item.type === 'diff'\n ? item.instance.getLinePosition(anchor.lineNumber, anchor.side)\n : item.instance.getLinePosition(anchor.lineNumber);\n if (linePosition == null) {\n return undefined;\n }\n const absoluteLineTop = itemTopOffset + item.top + linePosition.top;\n return this.clampScrollTop(absoluteLineTop - anchor.viewportOffset);\n }\n\n /**\n * Apply a device-pixel-rounded scroll position if it differs from the last\n * logical scrollTop synchronized into the paged scroll scaffold.\n */\n private applyScrollFix(\n targetScrollTop: number,\n syncedScrollTop: number,\n windowSpecs: VirtualWindowSpecs\n ): void {\n if (this.root == null) {\n return;\n }\n const roundedTargetScrollTop = roundToDevicePixel(\n this.clampScrollTop(targetScrollTop)\n );\n const roundedSyncedScrollTop = roundToDevicePixel(syncedScrollTop);\n\n const { scrollPageOffset: previousPageOffset } = this;\n const syncedPagedScrollTop = roundToDevicePixel(\n this.clampPagedScrollTop(roundedSyncedScrollTop - previousPageOffset)\n );\n const { pagedScrollTop, scrollPageOffset } =\n this.resolvePagedScrollPosition(roundedTargetScrollTop);\n const targetPagedScrollTop = pagedScrollTop;\n\n const rebaseChanged = previousPageOffset !== scrollPageOffset;\n if (\n roundedTargetScrollTop === this.renderState.scrollTop &&\n roundedTargetScrollTop === roundedSyncedScrollTop &&\n targetPagedScrollTop === syncedPagedScrollTop &&\n !rebaseChanged\n ) {\n return;\n }\n this.suspendScrollInteractions();\n if (targetPagedScrollTop !== syncedPagedScrollTop || rebaseChanged) {\n this.scrollPageOffset = scrollPageOffset;\n this.syncPagedScrollScaffolding(windowSpecs);\n }\n if (targetPagedScrollTop !== syncedPagedScrollTop) {\n this.root.scrollTo({ top: targetPagedScrollTop, behavior: 'instant' });\n }\n // Keep cached scroll state in sync with writes we performed ourselves, so\n // later reads do not need to touch layout just to discover the same value.\n this.renderState.scrollTop = roundedTargetScrollTop;\n this.scrollTop = roundedTargetScrollTop;\n this.scrollDirty = false;\n }\n\n /**\n * Decide whether a pending programmatic scroll has reached its\n * destination and should be cleared.\n */\n private isPendingTargetSettled(target: PendingScrollTarget): boolean {\n const top = this.resolveScrollTargetTop(target);\n if (top == null) {\n return true;\n }\n return roundToDevicePixel(this.getScrollTop()) === roundToDevicePixel(top);\n }\n\n public getScrollTop(): number {\n if (!this.scrollDirty) {\n return this.scrollTop;\n }\n this.scrollDirty = false;\n const rootScrollTop = this.root?.scrollTop ?? 0;\n this.scrollTop = this.clampScrollTop(rootScrollTop + this.scrollPageOffset);\n return this.scrollTop;\n }\n\n public getHeight(): number {\n if (!this.heightDirty) {\n return this.height;\n }\n this.heightDirty = false;\n this.height = this.root?.getBoundingClientRect().height ?? 0;\n return this.height;\n }\n\n public getScrollHeight(): number {\n return this.scrollHeight;\n }\n\n private flushSlotCoordinator(): void {\n if (this.slotCoordinator == null) {\n return;\n }\n\n const slotSnapshot = this.buildSlotSnapshot(this.slotCoordinator);\n if (areManagedSnapshotsEqual(this.slotSnapshot, slotSnapshot)) {\n return;\n }\n\n this.slotSnapshot = slotSnapshot;\n this.slotCoordinator.onSnapshotChange(slotSnapshot);\n }\n\n private notifyScroll(): void {\n // Avoid DOM thrash of checking scroll position if we don't need it\n if (this.scrollListeners.size === 0) {\n return;\n }\n const scrollTop = this.getScrollTop();\n for (const listener of this.scrollListeners) {\n listener(scrollTop, this);\n }\n }\n\n /**\n * Find the first item whose bottom edge crosses into the viewport window.\n * This lets scroll-time rendering jump directly near the visible range instead\n * of linearly scanning from the start of very large item lists.\n */\n private findFirstVisibleIndex(top: number): number {\n let low = 0;\n let high = this.items.length - 1;\n let result = this.items.length;\n\n while (low <= high) {\n const mid = (low + high) >> 1;\n const item = this.items[mid];\n if (item == null) {\n throw new Error('CodeView.findFirstVisibleIndex: invalid item index');\n }\n\n if (item.top + item.height > top) {\n result = mid;\n high = mid - 1;\n } else {\n low = mid + 1;\n }\n }\n\n return result;\n }\n\n /**\n * Find the last item whose top edge is still within the viewport window.\n * Paired with findFirstVisibleIndex, this bounds the render loop to only the\n * slice of items that can actually intersect the current scroll range.\n */\n private findLastVisibleIndex(bottom: number): number {\n let low = 0;\n let high = this.items.length - 1;\n let result = -1;\n\n while (low <= high) {\n const mid = (low + high) >> 1;\n const item = this.items[mid];\n if (item == null) {\n throw new Error('CodeView.findLastVisibleIndex: invalid item index');\n }\n\n if (item.top <= bottom) {\n result = mid;\n low = mid + 1;\n } else {\n high = mid - 1;\n }\n }\n\n return result;\n }\n\n /**\n * Recompute measured tops and heights starting from the earliest dirty item.\n * Earlier items keep their existing layout, while everything from startIndex\n * onward is remeasured so downstream positions and total scroll height stay\n * consistent after inserts, removals, or versioned item updates.\n */\n private recomputeLayout(\n startIndex = 0,\n reset: PendingCodeViewLayoutReset | undefined\n ): void {\n if (this.items.length === 0) {\n this.scrollHeight = 0;\n return;\n }\n\n const layout = this.getLayout();\n let runningTop = 0;\n if (startIndex > 0) {\n const previousItem = this.items[startIndex - 1];\n if (previousItem == null) {\n throw new Error('CodeView.recomputeLayout: invalid dirty index');\n }\n runningTop = previousItem.top + previousItem.height + layout.gap;\n }\n\n for (let index = startIndex; index < this.items.length; index++) {\n const item = this.items[index];\n if (item == null) {\n throw new Error('CodeView.recomputeLayout: invalid item index');\n }\n item.top = runningTop;\n if (item.type === 'diff') {\n const fileDiff = item.instance.consumeCodeViewLayoutChanges(\n item.item.fileDiff\n );\n if (fileDiff != null) {\n // Hydration is staged on a clone so layout only changes during this\n // render pass, then copied back to preserve the caller's diff\n // identity which matches the rest of the architecture of how we\n // handle partial hydration\n Object.assign(item.item.fileDiff, fileDiff);\n }\n item.height = item.instance.prepareCodeViewItem(\n item.item.fileDiff,\n runningTop,\n reset,\n item.item.annotations ?? []\n );\n } else {\n item.height = item.instance.prepareCodeViewItem(\n item.item.file,\n runningTop,\n reset,\n item.item.annotations ?? []\n );\n }\n runningTop += item.height;\n if (index < this.items.length - 1) {\n runningTop += layout.gap;\n }\n }\n\n if (runningTop !== this.scrollHeight) {\n this.scrollDirty = true;\n }\n this.scrollHeight = runningTop;\n }\n\n private resetRenderState() {\n this.renderState.scrollTop = -1;\n this.renderState.firstIndex = -1;\n this.renderState.lastIndex = -1;\n this.renderState.stickyHeight = 0;\n this.renderState.stickyTop = -1;\n this.renderState.stickyBottom = -1;\n }\n\n // We actually need a bit of overscroll even when attempting to fit perfectly\n // because we rounde to the nearest container and we may need to render the\n // gaps before and after a perfectly fit element to include the spacing\n // between. We do this by adding the the gap and header height above and\n // below the viewport\n private getFitPerfectlyOverscroll() {\n return this.getLayout().gap + this.itemMetricsCache.diffHeaderHeight;\n }\n}\n\nfunction prepareItemInstance<LAnnotation>(\n item: CodeViewContextItem<LAnnotation>\n): number {\n item.instance.cleanUp(true);\n if (item.type === 'diff') {\n return item.instance.prepareCodeViewItem(\n item.item.fileDiff,\n item.top,\n undefined,\n item.item.annotations ?? []\n );\n } else {\n return item.instance.prepareCodeViewItem(\n item.item.file,\n item.top,\n undefined,\n item.item.annotations ?? []\n );\n }\n}\n\nfunction shouldClearPool<LAnnotation>(\n previousOptions: CodeViewOptions<LAnnotation>,\n nextOptions: CodeViewOptions<LAnnotation>\n): boolean {\n return (\n !areThemesEqual(\n previousOptions.theme ?? DEFAULT_THEMES,\n nextOptions.theme ?? DEFAULT_THEMES\n ) ||\n (previousOptions.themeType ?? 'system') !==\n (nextOptions.themeType ?? 'system') ||\n previousOptions.unsafeCSS !== nextOptions.unsafeCSS\n );\n}\n\nfunction hasItemLayoutOptionChanged<LAnnotation>(\n previousOptions: CodeViewOptions<LAnnotation>,\n nextOptions: CodeViewOptions<LAnnotation>\n): boolean {\n return (\n (previousOptions.overflow ?? 'scroll') !==\n (nextOptions.overflow ?? 'scroll') ||\n (previousOptions.disableLineNumbers ?? false) !==\n (nextOptions.disableLineNumbers ?? false) ||\n (previousOptions.disableFileHeader ?? false) !==\n (nextOptions.disableFileHeader ?? false) ||\n previousOptions.unsafeCSS !== nextOptions.unsafeCSS ||\n (previousOptions.diffStyle ?? 'split') !==\n (nextOptions.diffStyle ?? 'split') ||\n (previousOptions.diffIndicators ?? 'bars') !==\n (nextOptions.diffIndicators ?? 'bars') ||\n (previousOptions.hunkSeparators ?? 'line-info') !==\n (nextOptions.hunkSeparators ?? 'line-info') ||\n (previousOptions.expandUnchanged ?? false) !==\n (nextOptions.expandUnchanged ?? false) ||\n (previousOptions.collapsedContextThreshold ??\n DEFAULT_COLLAPSED_CONTEXT_THRESHOLD) !==\n (nextOptions.collapsedContextThreshold ??\n DEFAULT_COLLAPSED_CONTEXT_THRESHOLD)\n );\n}\n\nfunction hasCodeViewDiffEstimateOptionChanged<LAnnotation>(\n previousOptions: CodeViewOptions<LAnnotation>,\n nextOptions: CodeViewOptions<LAnnotation>\n): boolean {\n return (\n (previousOptions.disableFileHeader ?? false) !==\n (nextOptions.disableFileHeader ?? false) ||\n (previousOptions.hunkSeparators ?? 'line-info') !==\n (nextOptions.hunkSeparators ?? 'line-info') ||\n (previousOptions.expandUnchanged ?? false) !==\n (nextOptions.expandUnchanged ?? false) ||\n (previousOptions.collapsedContextThreshold ??\n DEFAULT_COLLAPSED_CONTEXT_THRESHOLD) !==\n (nextOptions.collapsedContextThreshold ??\n DEFAULT_COLLAPSED_CONTEXT_THRESHOLD)\n );\n}\n\nfunction isPooledShadowChild(child: Element): boolean {\n if (child instanceof SVGElement) {\n return true;\n }\n return (\n isStyleNode(child) &&\n (child.hasAttribute(CORE_CSS_ATTRIBUTE) ||\n child.hasAttribute(THEME_CSS_ATTRIBUTE) ||\n child.hasAttribute(UNSAFE_CSS_ATTRIBUTE))\n );\n}\n\nfunction formatSelectedLineRange(range: SelectedLineRange): string {\n const start = formatSelectedLinePoint(range.start, range.side);\n const end = formatSelectedLinePoint(range.end, range.endSide ?? range.side);\n return start === end ? start : `${start}-${end}`;\n}\n\nfunction formatSelectedLinePoint(\n lineNumber: number,\n side: SelectionSide | undefined\n): string {\n if (side == null) {\n return `${lineNumber}`;\n }\n\n return `${side === 'deletions' ? 'D' : 'A'}${lineNumber}`;\n}\n\nfunction renderItem<LAnnotation>(\n item: CodeViewContextItem<LAnnotation>,\n fileContainer?: HTMLElement,\n forceRender = false\n): boolean {\n if (item.type === 'diff') {\n return item.instance.render({\n deferManagers: true,\n fileContainer,\n fileDiff: item.item.fileDiff,\n forceRender,\n lineAnnotations: item.item.annotations ?? [],\n });\n } else {\n return item.instance.render({\n deferManagers: true,\n fileContainer,\n file: item.item.file,\n forceRender,\n lineAnnotations: item.item.annotations ?? [],\n });\n }\n}\n\n/**\n * Keep the rendered DOM order aligned with the current record order even when\n * we reuse existing elements. Reused items may already be mounted elsewhere in\n * the sticky container, so this moves them into the correct sibling position\n * before rendering updates.\n */\nfunction syncRenderedItemOrder(\n container: HTMLElement,\n element: HTMLElement,\n prevElement: HTMLElement | undefined\n): void {\n if (prevElement == null) {\n if (container.firstChild !== element) {\n container.prepend(element);\n }\n return;\n }\n\n if (prevElement.nextSibling !== element) {\n prevElement.after(element);\n }\n}\n\nfunction hasAnnotations<LAnnotation>(item: CodeViewItem<LAnnotation>): boolean {\n return (item.annotations?.length ?? 0) > 0;\n}\n\nfunction getSlotItems<LAnnotation>(\n renderedItems: CodeViewRenderedItem<LAnnotation>[],\n {\n hasHeaderRenderers,\n hasAnnotationRenderer,\n hasGutterRenderer,\n }: CodeViewCoordinator<LAnnotation>\n): CodeViewRenderedItem<LAnnotation>[] | undefined {\n if (renderedItems.length === 0) {\n return undefined;\n }\n\n if (hasHeaderRenderers || hasGutterRenderer) {\n return renderedItems;\n }\n\n if (!hasAnnotationRenderer) {\n return undefined;\n }\n\n const slotSnapshot: CodeViewRenderedItem<LAnnotation>[] = [];\n\n for (const renderedItem of renderedItems) {\n if (hasAnnotations(renderedItem.item)) {\n slotSnapshot.push(renderedItem);\n }\n }\n\n return slotSnapshot.length > 0 ? slotSnapshot : undefined;\n}\n"],"mappings":";;;;;;;;;;;;;;;;AA2QA,MAAa,6BAA6B;CACxC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;AACF;AAIA,MAAa,6BAA6B;CACxC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;AACF;AA8CA,MAAM,iCAAiC;CACrC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;AACF;AAEA,MAAM,oCAAoC;CACxC;CACA;CACA;CACA;AACF;AAQA,MAAM,+BAA+B,OAAO,2BAA2B;AAwDvE,SAAS,mBACP,SACA,OACM;CAGN,OAAO,eAAe,SAAS,8BAA8B;EAC3D,cAAc;EACd,YAAY;EACZ,OAAO;CACT,CAAC;AACH;AAOA,SAAS,oBACP,SACsC;CACtC,OAAQ,QACN;AAEJ;AAgBA,SAAS,iBACP,QACA,KACA,KACM;CAIN,OAAO,eAAe,QAAQ,KAAK;EACjC,cAAc;EACd,YAAY;EACZ,MAAM;GACJ,OAAO,IAAI,IAAgB;EAC7B;CACF,CAAC;AACH;AA4EA,MAAM,8CAA8C;AACpD,MAAM,sBAAsB;AAC5B,MAAM,uCAAuC;AAC7C,MAAM,iCAAiC;AACvC,MAAM,4BAA4B;AAClC,MAAM,2BAA2B;AACjC,MAAM,8BACJ,iCAAiC;AACnC,MAAM,0BACJ,iCAAiC;AAYnC,SAAS,oBACP,cAGA;CACA,IAAI,gBAAgB,MAClB,MAAM,IAAI,MACR,8DACF;AAEJ;AAGA,MAAM,uBAAuB;CAC3B,MAAM,EAAE,cAAc;CAEtB,MAAM,YAAY,UAAU;CAC5B,MAAM,QAAQ,mBAAmB,KAAK,SAAS;CAC/C,MAAM,WACJ,UAAU,aAAa,cAAc,UAAU,iBAAiB;CAElE,QACG,SAAS,aACV,cAAc,KAAK,SAAS,KAC5B,SAAS,KAAK,SAAS,KACvB,CAAC,6BAA6B,KAAK,SAAS;AAEhD,EAAA,CAAG;AA2BH,IAAa,WAAb,MAAa,SAAkC;CAC7C,OAAO,SAAS;CAChB,OAAO,uBAAuB;CAE9B,OAAc;CACd,SAA4C;EAC1C,gBAAgB;EAChB,4BAA4B;EAC5B,iBAAiB;CACnB;CACA,QAAoD,CAAC;CACrD,2BAAiD,IAAI,IAAI;CACzD,gBAAsD;CAOtD,8BACE,IAAI,IAAI;CACV,kCAAuC,IAAI,IAAI;CAG/C,iCAGI,IAAI,IAAI;CACZ;CACA;CACA,wBAAgC;CAChC;CACA;CACA,kCAAoE,IAAI,IAAI;CAC5E,eAAuB;CACvB,kBAA0B;CAC1B,YAA4B;CAC5B,mBAAmC;CACnC,cAAsB;CACtB;CACA,wBAAgC;CAChC,kBAA0B;CAC1B,SAAyB;CACzB,cAAsB;CACtB,cAA0C;EAAE,KAAK;EAAG,QAAQ;CAAE;CAC9D,cAAsB;EACpB,WAAW;EACX,YAAY;EACZ,WAAW;EACX,cAAc;EACd,WAAW;EACX,cAAc;CAChB;CACA,mBAA+C;CAC/C;CACA;CAWA;CACA;CACA,0BAAkC;CAUlC;CAEA;CACA;CAEA,YAAgD,SAAS,cAAc,KAAK;CAC5E,kBAA0B,SAAS,cAAc,KAAK;CACtD,eAAuB,SAAS,cAAc,KAAK;CAMnD,SAAmC;EACjC,SAAS,KAAA;EACT,QAAQ,KAAA;EACR,QAAQ;CACV;CACA,SAAmC;EACjC,SAAS,KAAA;EACT,QAAQ,KAAA;EACR,QAAQ;CACV;CACA,cAAqC,CAAC;CACtC,qBAA6B;CAC7B,qCAA6B,IAAI,QAA6B;CAK9D,qBAA4C,CAAC;CAC7C;CACA;CACA;CACA;CAEA,YACE,UAAwC,EAAE,OAAO,eAAe,GAChE,eACA,qBAAqB,OACrB;EACA,KAAK,UAAU;EACf,KAAK,oBAAoB,QAAQ,WAAW;EAC5C,KAAK,uBAAuB,KAAK,2BAA2B;EAC5D,KAAK,uBAAuB,KAAK,2BAA2B;EAC5D,KAAK,gBAAgB;EACrB,KAAK,qBAAqB;EAE1B,KAAK,aAAa,MAAM,UAAU;EAClC,KAAK,gBAAgB,MAAM,WAAW;EACtC,KAAK,gBAAgB,MAAM,QAAQ;EACnC,KAAK,gBAAgB,MAAM,UAAU;EACrC,KAAK,gBAAgB,MAAM,YAAY;EACvC,KAAK,gBAAgB,MAAM,UAAU;EACrC,KAAK,gBAAgB,MAAM,gBAAgB;CAC7C;CAEA,YAAoC;EAClC,OAAO,KAAK,QAAQ,UAAU;CAChC;CAOA,mBAAmC;EACjC,OAAO,KAAK,UAAU,CAAC,CAAC,aAAa,KAAK,OAAO;CACnD;CAEA,oBACE,aACoB;EACpB,KAAK,mBAAmB;GACtB,eACE,aAAa,iBACb,+BAA+B;GACjC,YACE,aAAa,cAAc,+BAA+B;GAC5D,kBACE,aAAa,oBACb,+BAA+B;GACjC,qBAAqB,aAAa;GAClC,SAAS,aAAa,WAAW,+BAA+B;GAChE,YAAY,aAAa;GACzB,eAAe,aAAa;EAC9B;EACA,OAAO,KAAK;CACd;CAEA,0BAAwD;EACtD,OAAO,KAAK,QAAQ,wBAAwB;CAC9C;CAEA,6BAA8C;EAC5C,OAAO,KAAK,QAAQ,0BAA0B;CAChD;CAEA,4BAA6C;EAC3C,OACE,2BACA,KAAK,QAAQ,iCAAiC;CAElD;CAEA,2BACE,MACM;EACN,IAAI,CAAC,KAAK,0BAA0B,KAAK,KAAK,WAAW,MACvD;EAGF,MAAM,cAAc,KAAK,SAAS,uBAAuB;EACzD,IAAI,eAAe,MACjB;EAGF,MAAM,iBAAiB,YAAY;EACnC,MAAM,eAAe,KAAK,QAAQ,sBAAsB,CAAC,CAAC;EAE1D,IAAI,mBAAmB,cACrB;EAGF,QAAQ,MACN,8DACA;GACE,IAAI,KAAK,KAAK;GACd,MAAM,KAAK;GACX,OAAO,KAAK;GACZ,SAAS,KAAK;GACd;GACA;GACA,OAAO,eAAe;GACtB,iBAAiB,YAAY;GAC7B,mBAAmB,KAAK,SAAS,qBAAqB;GACtD,KAAK,KAAK;GACV,WAAW,KAAK,aAAa;GAC7B,aAAa,EAAE,GAAG,KAAK,YAAY;GACnC,SAAS,KAAK;GACd,UAAU,KAAK;EACjB,CACF;CACF;CASA,gCAA8C;EAC5C,IAAI,CAAC,KAAK,0BAA0B,GAClC;EAGF,MAAM,EAAE,YAAY,WAAW,cAAc,WAAW,iBACtD,KAAK;EACP,IAAI,eAAe,MAAM,cAAc,IACrC;EAGF,MAAM,eAAe,KAAK,gBAAgB,sBAAsB,CAAC,CAAC;EAClE,IAAI,KAAK,IAAI,eAAe,YAAY,IAAI,qBAC1C;EAGF,QAAQ,MACN,oEACA;GACE,sBAAsB;GACtB,oBAAoB;GACpB,OAAO,eAAe;GACtB;GACA;GACA;GACA;GACA,kBACE,KAAK,MAAM,WAAW,EAAE,SAAS,uBAAuB;GAC1D,iBACE,KAAK,MAAM,UAAU,EAAE,SAAS,uBAAuB;GACzD,WAAW,KAAK,aAAa;GAC7B,kBAAkB,KAAK;GACvB,aAAa,EAAE,GAAG,KAAK,YAAY;GACnC,iBAAiB,KAAK;EACxB,CACF;CACF;CAEA,8BAA4C;EAC1C,IAAI,KAAK,6BAA6B,MAAM;GAC1C,aAAa,KAAK,yBAAyB;GAC3C,KAAK,4BAA4B,KAAA;EACnC;CACF;CAEA,4BAA0C;EACxC,KAAK,4BAA4B;EAEjC,IAAI,KAAK,2BAA2B,KAAK,CAAC,KAAK,uBAAuB;GACpE,KAAK,gBAAgB,MAAM,gBAAgB;GAC3C,KAAK,wBAAwB;EAC/B;EAQA,IAAI,iBAAiB,CAAC,KAAK,iBAAiB;GAC1C,KAAK,gBAAgB,MAAM,YACzB,sCACA,QACF;GACA,KAAK,kBAAkB;EACzB;EAEA,KAAK,4BAA4B,WAC/B,KAAK,2BACL,2CACF;CACF;CAEA,kCAAgD;EAC9C,KAAK,4BAA4B;EAEjC,IAAI,KAAK,uBAAuB;GAC9B,KAAK,gBAAgB,MAAM,eAAe,gBAAgB;GAC1D,KAAK,wBAAwB;EAC/B;EAEA,IAAI,KAAK,iBAAiB;GACxB,KAAK,gBAAgB,MAAM,YACzB,sCACA,MACF;GACA,KAAK,kBAAkB;EACzB;CACF;CAEA,aAA2B;EACzB,MAAM,EAAE,KAAK,eAAe,eAAe,KAAK,UAAU;EAC1D,KAAK,gBAAgB,MAAM,MAAM,GAAG,IAAI;EACxC,KAAK,WAAW,MAAM,YAAY,cAAc,GAAG,WAAW,GAAG;EACjE,KAAK,WAAW,MAAM,YAAY,iBAAiB,GAAG,cAAc,GAAG;CACzE;CAQA,6BAA8C;EAC5C,MAAM,gBAAgB,KAAK,cAAc,QAAQ;EACjD,MAAM,gBAAgB,KAAK,cAAc,QAAQ;EACjD,OAAO,iBAAiB;CAC1B;CAOA,cAAsB,MAAoC;EACxD,MAAM,EAAE,MAAM,cAAc;EAC5B,IAAI,QAAQ,QAAQ,aAAa,MAC/B,OAAO;EAGT,MAAM,OAAO,SAAS,WAAW,KAAK,SAAS,KAAK;EACpD,MAAM,SACJ,SAAS,WACL,KAAK,QAAQ,uBACb,KAAK,QAAQ;EAGnB,IAAI,UAAU,MAAM;GAClB,IAAI,KAAK,WAAW,MAClB,OAAO;GAET,KAAK,gBAAgB,UAAU,KAAK,OAAO;GAC3C,KAAK,QAAQ,OAAO;GACpB,KAAK,UAAU,KAAA;GACf,KAAK,SAAS,KAAA;GACd,KAAK,cAAc,MAAM,CAAC;GAC1B,OAAO;EACT;EAIA,IAAI,KAAK,WAAW,QAAQ,WAAW,KAAK,QAC1C,OAAO;EAQT,MAAM,UACJ,KAAK,WACL,sCACE,MACA,WACA,KAAK,cACP;EACF,KAAK,UAAU;EACf,MAAM,UAAU,OAAO;EACvB,IAAI,WAAW,MACb,QAAQ,gBAAgB,OAAO;OAC1B,IAAI,CAAC,KAAK,sBAAsB,QAAQ,SAAS,SAAS,GAC/D,QAAQ,cAAc;EAExB,KAAK,SAAS;EACd,OAAO;CACT;CAKA,cAAsB,MAAwB,QAAsB;EAClE,IAAI,KAAK,WAAW,QAClB;EAEF,KAAK,SAAS;EACd,KAAK,cAAc;CACrB;CAMA,sBAAoC;EAClC,IAAI,KAAK,OAAO,WAAW,MACzB,KAAK,cACH,KAAK,QACL,KAAK,OAAO,QAAQ,sBAAsB,CAAC,CAAC,MAC9C;EAEF,IAAI,KAAK,OAAO,WAAW,MACzB,KAAK,cACH,KAAK,QACL,KAAK,OAAO,QAAQ,sBAAsB,CAAC,CAAC,MAC9C;CAEJ;CAEA,MAAa,MAAyB;EACpC,IAAI,KAAK,QAAQ,MACf,MAAM,IAAI,MAAM,+BAA+B;EAEjD,KAAK,eAAe,wBAAwB,IAAI;EAChD,KAAK,OAAO;EACZ,KAAK,KAAK,MAAM,iBAAiB;EACjC,IAAI,CAAC,KAAK,KAAK,aAAa,UAAU,GACpC,KAAK,KAAK,WAAW;EAEvB,KAAK,cAAc,SAAS,cAAc,KAAK;EAG/C,KAAK,UAAU,MAAM,UAAU;EAC/B,KAAK,WAAW;EAChB,KAAK,UAAU,YAAY,KAAK,YAAY;EAC5C,KAAK,UAAU,YAAY,KAAK,eAAe;EAC/C,KAAK,KAAK,YAAY,KAAK,SAAS;EACpC,KAAK,cAAc;EACnB,KAAK,cAAc;EACnB,KAAK,iBAAiB,IAAI,eAAe,KAAK,YAAY;EAC1D,KAAK,eAAe,QAAQ,KAAK,eAAe;EAChD,KAAK,KAAK,iBAAiB,UAAU,KAAK,cAAc,EACtD,SAAS,KACX,CAAC;EAKD,KAAK,KAAK,iBAAiB,SAAS,KAAK,oBAAoB,EAC3D,SAAS,KACX,CAAC;EACD,KAAK,KAAK,iBAAiB,cAAc,KAAK,oBAAoB,EAChE,SAAS,KACX,CAAC;EACD,KAAK,KAAK,iBAAiB,eAAe,KAAK,oBAAoB,EACjE,SAAS,KACX,CAAC;EACD,KAAK,KAAK,iBAAiB,WAAW,KAAK,oBAAoB,EAC7D,SAAS,KACX,CAAC;EACD,KAAK,eAAe,QAAQ,KAAK,IAAI;EACrC,KAAK,OAAO,IAAI;EAGhB,OAAO,aAAa;EAYpB,OAAO,iBAAiB;GACtB,IAAI,SAAS,QAAQ;IACnB,SAAS,SAAS;IAClB,KAAK,SAAS;KACZ,MAAM;KACN,UAAU,SAAS;KACnB,UAAU;IACZ,CAAC;GACH,OAAO;IACL,SAAS,uBAAuB,KAAK,aAAa;IAClD,SAAS,SAAS;GACpB;EACF;CACF;CAEA,QAAqB;EACnB,cAAc,KAAK,yBAAyB;EAC5C,KAAK,uBAAuB;EAC5B,KAAK,0BAA0B;EAC/B,KAAK,sBAAsB;EAG3B,KAAK,MAAM,UAAU,KAAK,YAAY,OAAO,GAC3C,OAAO,OAAO,QAAQ;EAExB,KAAK,YAAY,MAAM;EACvB,KAAK,gBAAgB,MAAM;EAC3B,KAAK,gBAAgB;EACrB,KAAK,MAAM,SAAS;EACpB,KAAK,SAAS,MAAM;EACpB,KAAK,eAAe,MAAM;EAC1B,KAAK,mBAAmB,KAAA;EACxB,KAAK,qBAAqB,KAAA;EAC1B,KAAK,gBAAgB,cAAc;EACnC,KAAK,aAAa,MAAM,SAAS;EACjC,KAAK,WAAW,MAAM,eAAe,QAAQ;EAC7C,KAAK,kBAAkB;EACvB,KAAK,cAAc;GAAE,KAAK;GAAG,QAAQ;EAAE;EACvC,KAAK,sBAAsB,KAAA;EAC3B,KAAK,0BAA0B;EAC/B,KAAK,SAAS;EACd,KAAK,YAAY;EACjB,KAAK,mBAAmB;EACxB,KAAK,eAAe;EACpB,KAAK,cAAc;EACnB,KAAK,cAAc;EACnB,KAAK,iBAAiB;EAItB,IAAI,CAAC,KAAK,oBACR,KAAK,qBAAqB;CAE9B;CAEA,UAAuB;EACrB,KAAK,MAAM;EACX,KAAK,iBAAiB;EACtB,KAAK,0BAA0B;EAC/B,KAAK,eAAe,0BAA0B,IAAI;EAClD,KAAK,gBAAgB,WAAW;EAChC,KAAK,iBAAiB,KAAA;EACtB,KAAK,MAAM,oBAAoB,UAAU,KAAK,YAAY;EAC1D,KAAK,MAAM,oBAAoB,SAAS,KAAK,kBAAkB;EAC/D,KAAK,MAAM,oBAAoB,cAAc,KAAK,kBAAkB;EACpE,KAAK,MAAM,oBAAoB,eAAe,KAAK,kBAAkB;EACrE,KAAK,MAAM,oBAAoB,WAAW,KAAK,kBAAkB;EACjE,KAAK,MAAM,MAAM,eAAe,iBAAiB;EACjD,KAAK,WAAW,OAAO;EACvB,KAAK,aAAa,OAAO;EACzB,KAAK,gBAAgB,OAAO;EAC5B,KAAK,gBAAgB,cAAc;EACnC,KAAK,OAAO,SAAS,OAAO;EAC5B,KAAK,OAAO,UAAU,KAAA;EACtB,KAAK,OAAO,SAAS,KAAA;EACrB,KAAK,OAAO,SAAS;EACrB,KAAK,OAAO,SAAS,OAAO;EAC5B,KAAK,OAAO,UAAU,KAAA;EACtB,KAAK,OAAO,SAAS,KAAA;EACrB,KAAK,OAAO,SAAS;EACrB,KAAK,OAAO,KAAA;EACZ,KAAK,YAAY,KAAA;CACnB;CAEA,wBAAgC;EAC9B,IAAI,KAAK,YAAY,eAAe,IAClC;EAEF,KACE,IAAI,QAAQ,KAAK,YAAY,YAC7B,SAAS,KAAK,YAAY,WAC1B,SACA;GACA,MAAM,OAAO,KAAK,MAAM;GACxB,IAAI,QAAQ,MACV,MAAM,IAAI,MACR,iEAAiE,OACnE;GAEF,KAAK,oBAAoB,IAAI;EAC/B;CACF;CAEA,kBAA0B,QAAmC;EAC3D,IAAI,OAAO,SAAS,YAAY;EAEhC,MAAM,OAAO,KAAK,SAAS,IAAI,OAAO,EAAE;EACxC,IAAI,QAAQ,MAAM;EAElB,KAAU,SAAS,oBAAoB;CACzC;CAEA,sBAA8B;EAC5B,MAAM,eAAe,KAAK,UAAU,IAAI,KAAK,OAAO,iBAAiB;EACrE,MAAM,EAAE,qBAAqB,KAAK;EAKlC,OACE,KAAK,IACH,GACA,KAAK,KAAK,eAAe,KAAK,IAAI,kBAAkB,EAAE,CAAC,IAAI,CAC7D,KAAK,KAAK,qBAAqB,IAAI;CAEvC;CAEA,iBAAsC;EACpC,KAAK,6BAA6B;EAClC,IAAI,UAAU,KAAK,YAAY,IAAI;EACnC,OAAO,WAAW,QAAQ,CAAC,KAAK,+BAA+B,OAAO,GACpE,UAAU,KAAK,YAAY,IAAI;EAEjC,YAAY,SAAS,cAAc,cAAc;EACjD,KAAK,iCAAiC,OAAO;EAC7C,OAAO;CACT;CAEA,oBAA4B,MAA8C;EACxE,MAAM,EAAE,YAAY;EACpB,IAAI,WAAW,QAAQ,KAAK,sBAAsB,OAAO,GACvD,KAAK,0BAA0B;EAGjC,KAAK,SAAS,QAAQ,IAAI;EAG1B,KAAK,gBAAgB,OAAO,KAAK,KAAK,EAAE;EACxC,KAAK,UAAU,KAAA;EACf,IAAI,WAAW,MACb;EAGF,QAAQ,OAAO;EACf,KAAK,aAAa,OAAO;EACzB,KAAK,oBAAoB,OAAO;CAClC;CAEA,sBAA8B,SAA+B;EAC3D,MAAM,EAAE,kBAAkB;EAC1B,OACE,kBAAkB,WAClB,QAAQ,SAAS,aAAa,KAC9B,QAAQ,YAAY,iBAAiB;CAEzC;CAEA,oBAAkC;EAChC,IAAI,KAAK,yBAAyB;GAChC,KAAK,0BAA0B;GAC/B,KAAK,MAAM,MAAM,EAAE,eAAe,KAAK,CAAC;EAC1C;CACF;CAKA,aAAqB,SAA4B;EAC/C,MAAM,EAAE,eAAe;EACvB,IAAI,cAAc;QACX,MAAM,SAAS,MAAM,KAAK,WAAW,QAAQ,GAChD,IAAI,CAAC,oBAAoB,KAAK,GAC5B,MAAM,OAAO;EAAA;EAKnB,IAAI,CAAC,KAAK,oBACR,QAAQ,gBAAgB;CAE5B;CAEA,oBAA4B,SAA4B;EACtD,MAAM,YAAY,KAAK,oBAAoB;EAC3C,IACE,CAAC,KAAK,+BAA+B,OAAO,KAC5C,KAAK,mBAAmB,KAAK,WAE7B;EAGF,IAAI,KAAK,eAAe,OAAO,GAC7B,KAAK,YAAY,KAAK,OAAO;OAE7B,KAAK,mBAAmB,KAAK,OAAO;CAExC;CAEA,+BAA6C;EAC3C,IAAI,KAAK,mBAAmB,WAAW,GACrC;EAGF,MAAM,EAAE,oBAAoB,oBAAoB;EAChD,KAAK,qBAAqB,CAAC;EAC3B,MAAM,YAAY,KAAK,oBAAoB;EAC3C,KAAK,MAAM,WAAW,iBACpB,IACE,KAAK,+BAA+B,OAAO,KAC3C,KAAK,eAAe,OAAO,KAC3B,KAAK,YAAY,SAAS,WAE1B,KAAK,YAAY,KAAK,OAAO;OACxB,IACL,KAAK,+BAA+B,OAAO,KAC3C,KAAK,mBAAmB,IAAI,WAE5B,KAAK,mBAAmB,KAAK,OAAO;CAG1C;CAEA,eAAuB,SAA+B;EACpD,OAAO,QAAQ,WAAW,WAAW;CACvC;CAEA,qBAAqC;EACnC,OAAO,KAAK,YAAY,SAAS,KAAK,mBAAmB;CAC3D;CAEA,mBAAiC;EAC/B,KAAK,YAAY,SAAS;EAC1B,KAAK,mBAAmB,SAAS;CACnC;CAEA,wBAAsC;EACpC,KAAK;EACL,KAAK,iBAAiB;CACxB;CAEA,iCAAyC,SAA4B;EACnE,KAAK,mBAAmB,IAAI,SAAS,KAAK,kBAAkB;CAC9D;CAEA,+BAAuC,SAA+B;EACpE,OAAO,KAAK,mBAAmB,IAAI,OAAO,MAAM,KAAK;CACvD;CAEA,+BACE,QACA,aACgD;EAChD,IAAI,qBAAqB,GACvB,OAAO;EAGT,IAAI,OAAO,aAAa,eACtB,OAAO,OAAO,YAAY;EAG5B,OAAO,KAAK,IAAI,cAAc,KAAK,aAAa,CAAC,KAAK,KAAK,UAAU,IAAI,KACrE,WACA;CACN;CAEA,SAAgB,QAAoC;EAClD,IAAI,KAAK,QAAQ,MACf;EAGF,MAAM,gBAAgB,KAAK,sBAAsB,MAAM;EACvD,IAAI,iBAAiB,MACnB;EAGF,MAAM,cAAc,KAAK,uBAAuB,aAAa;EAC7D,IAAI,eAAe,MACjB;EAGF,KAAK,kBAAkB,aAAa;EAMpC,IAJiB,KAAK,+BACpB,eACA,WAES,MAAM,UAGf,KAAK,oBAAoB;GACvB,UAAU,KAAK,aAAa;GAC5B,UAAU;GAIV,eAAe,YAAY,IAAI;EACjC;OAEA,KAAK,kBAAkB,KAAA;EAIzB,KAAK,0BAA0B;EAC/B,KAAK,sBAAsB,KAAA;EAC3B,KAAK,sBAAsB;EAC3B,KAAK,OAAO;CACd;CAEA,iBACE,WACA,SACM;EACN,KAAK,mBAAmB,WAAW,OAAO;CAC5C;CAEA,mBAAwD;EACtD,OAAO,KAAK;CACd;CAEA,mBAA0B,SAAuC;EAC/D,KAAK,mBAAmB,MAAM,OAAO;CACvC;CAEA,QAAe,QAAuD;EACpE,OAAO,KAAK,SAAS,IAAI,MAAM,CAAC,EAAE;CACpC;;;;;;CAOA,UAAiB,QAAsD;EACrE,OAAO,KAAK,YAAY,IAAI,MAAM,CAAC,EAAE;CACvC;CAEA,WAAkB,OAA2C;EAC3D,MAAM,OAAO,KAAK,SAAS,IAAI,MAAM,EAAE;EACvC,IAAI,QAAQ,MAAM;GAChB,QAAQ,MAAM,yCAAyC,MAAM,GAAG,EAAE;GAClE,OAAO;EACT;EAEA,IAAI,CAAC,KAAK,eAAe,MAAM,KAAK,GAClC,OAAO;EAGT,KAAK,oBAAoB,IAAI;EAC7B,KAAK,cAAc;EACnB,KAAK,OAAO;EACZ,KAAK,gBAAgB;EACrB,KAAK,cAAc;EACnB,OAAO;CACT;CAEA,aAAoB,OAAe,OAAwB;EACzD,IAAI,UAAU,OACZ,OAAO;EAGT,MAAM,OAAO,KAAK,SAAS,IAAI,KAAK;EACpC,IAAI,QAAQ,MAAM;GAChB,QAAQ,MAAM,2CAA2C,MAAM,EAAE;GACjE,OAAO;EACT;EAEA,IAAI,KAAK,SAAS,IAAI,KAAK,GAAG;GAC5B,QAAQ,MAAM,6CAA6C,MAAM,EAAE;GACnE,OAAO;EACT;EAEA,KAAK,SAAS,OAAO,KAAK;EAC1B,KAAK,KAAK,KAAK;EACf,KAAK,SAAS,IAAI,OAAO,IAAI;EAC7B,KAAK,oBAAoB,KAAK,SAAS,SAAS,KAAK;EAErD,IAAI,KAAK,eAAe,OAAO,OAAO;GACpC,KAAK,gBAAgB;IAAE,GAAG,KAAK;IAAe,IAAI;GAAM;GACxD,KAAK,QAAQ,wBAAwB,KAAK,aAAa;EACzD;EACA,MAAM,eAAe,KAAK,YAAY,IAAI,KAAK;EAC/C,IAAI,gBAAgB,MAAM;GACxB,aAAa,MAAM,KAAK;GACxB,KAAK,YAAY,OAAO,KAAK;GAC7B,KAAK,YAAY,IAAI,OAAO,YAAY;GACxC,IAAI,KAAK,gBAAgB,OAAO,KAAK,GACnC,KAAK,gBAAgB,IAAI,KAAK;EAElC;EACA,KAAK,0BAA0B,OAAO,KAAK;EAC3C,KAAK,0BAA0B,OAAO,KAAK;EAC3C,KAAK,OAAO;EACZ,OAAO;CACT;CAEA,QAAe,OAAwC;EACrD,KAAK,SAAS,CAAC,KAAK,CAAC;CACvB;CAEA,SAAgB,QAAoD;EAClE,KAAK,oBAAoB,MAAM;EAC/B,KAAK,gBAAgB;EACrB,KAAK,cAAc;CACrB;CAEA,WAAkB,QAAyB;EACzC,MAAM,OAAO,KAAK,SAAS,IAAI,MAAM;EACrC,IAAI,QAAQ,MAAM;GAChB,QAAQ,MAAM,yCAAyC,OAAO,EAAE;GAChE,OAAO;EACT;EAEA,MAAM,YAAyC,CAAC;EAChD,KAAK,MAAM,WAAW,KAAK,OACzB,IAAI,YAAY,MACd,UAAU,KAAK,QAAQ,IAAI;EAG/B,KAAK,SAAS,SAAS;EACvB,OAAO;CACT;CAEA,SAAgB,OAAmD;EACjE,IAAI;EACJ,IAAI,KAAK,MAAM,WAAW,GACxB,KAAK,oBAAoB,KAAK;OACzB,IAAI,CAAC,KAAK,eAAe,KAAK,GACnC,mBAAmB,KAAK,eAAe,KAAK;EAE9C,KAAK,gBAAgB,gBAAgB;EACrC,KAAK,cAAc;CACrB;;;;;;;CAQA,oBACE,QACA,SAAS,MACH;EACN,IAAI,OAAO,WAAW,GACpB;EAGF,MAAM,SAAS,KAAK,UAAU;EAC9B,IAAI,UAAU,KAAK,MAAM,WAAW,IAAI,IAAI,KAAK,eAAe,OAAO;EACvE,MAAM,cAAc;EACpB,KAAK,IAAI,QAAQ,GAAG,QAAQ,OAAO,QAAQ,SAAS;GAClD,MAAM,QAAQ,OAAO;GACrB,IAAI,SAAS,MACX,MAAM,IAAI,MAAM,kDAAkD;GAEpE,IAAI,KAAK,SAAS,IAAI,MAAM,EAAE,GAC5B,MAAM,IAAI,MAAM,mCAAmC,MAAM,GAAG,EAAE;GAGhE,MAAM,OAAO,KAAK,WAAW,OAAO,KAAK,MAAM,QAAQ,OAAO;GAC9D,KAAK,MAAM,KAAK,IAAI;GACpB,KAAK,SAAS,IAAI,KAAK,KAAK,IAAI,IAAI;GACpC,KAAK,eAAe,IAAI,KAAK,UAAU,IAAI;GAC3C,KAAK,SAAS,oBAAoB,IAAI;GACtC,WAAW,KAAK,SAAS,OAAO;EAClC;EAEA,KAAK,eAAe,UAAU,OAAO;EACrC,KAAK,cAAc;EACnB,IAAI,QACF,IAAI,KAAK,uBAAuB,WAAW,GACzC,KAAK,oBAAoB;OAEzB,KAAK,OAAO;CAGlB;CAEA,uBAA+B,aAA8B;EAC3D,OACE,KAAK,aAAa,QAClB,KAAK,YAAY,eAAe,MAChC,KAAK,uBAAuB,QAC5B,KAAK,mBAAmB,QACxB,KAAK,oBAAoB,QACzB,cAAc,KAAK,YAAY;CAEnC;CAEA,gBAA6B;EAC3B,KAAK,sBAAsB;CAC7B;CAEA,WAAkB,SAAyD;EACzE,IAAI,WAAW,MACb;EAGF,KAAK,2BAA2B;EAChC,MAAM,EAAE,SAAS,gBAAgB;EACjC,MAAM,iBAAiB,KAAK,UAAU;EACtC,MAAM,EAAE,kBAAkB,wBAAwB;EAElD,IAAI,gBAAgB,aAAa,OAAO,GACtC,KAAK,sBAAsB;EAG7B,KAAK,UAAU;EACf,MAAM,kBAAkB,KAAK,oBAAoB,QAAQ,WAAW;EACpE,MAAM,qBAAqB,CAAC,gBAC1B,qBACA,eACF;EACA,MAAM,gBAAgB,CAAC,gBAAgB,gBAAgB,KAAK,UAAU,CAAC;EACvE,IAAI,eACF,KAAK,WAAW;EAGlB,MAAM,oBACJ,sBAAsB,2BAA2B,aAAa,OAAO;EACvE,IAAI,mBAAmB;GACrB,MAAM,gBAAgB,KAAK;GAC3B,KAAK,qBAAqB;IACxB,SAAS,qBAAqB,kBAAkB,eAAe;IAC/D,sBAAsB;IACtB,sBAAsB;IACtB,6BACE,eAAe,gCAAgC,QAC/C,sBACA,qCAAqC,aAAa,OAAO;GAC7D;EACF;EAEA,IAAI,iBAAiB,mBAAmB;GACtC,KAAK,yBAAyB,CAAC;GAC/B,KAAK,cAAc;EACrB;EAEA,IAAI,CAAC,gBAAgB,aAAa,OAAO,GACvC,KAAK;EAGP,KAAK,gBAAgB;EAIrB,MAAM,sBACJ,YAAY,yBAAyB,QAAQ,wBAC7C,YAAY,yBAAyB,QAAQ;EAC/C,IACE,CAAC,KAAK,uBACL,KAAK,MAAM,SAAS,KAAK,sBAE1B,KAAK,OAAO;CAEhB;CAEA,2BACE,YAAoD,KAAK,UACnD;EACN,IACE,KAAK,QAAQ,QACb,KAAK,MAAM,WAAW,KACtB,KAAK,uBAAuB,MAE5B;EAGF,KAAK,sBAAsB,KAAK,gBAC9B,KAAK,aAAa,GAClB,SACF;CACF;CAEA,OAAc,YAAY,OAAa;EACrC,IAAI,SAAS,QACX;EAEF,IAAI,WAAW;GACb,cAAc,KAAK,yBAAyB;GAC5C,KAAK,0BAA0B;EACjC,OACE,YAAY,KAAK,yBAAyB;CAE9C;CAEA,UAA2B;EACzB,MAAM,EAAE,kBAAkB;EAI1B,IACE,iBAAiB,QACjB,cAAc,cAAc,KAC5B,cAAc,SAAS,CAAC,CAAC,eACzB;GACA,KAAK,uBAAuB;GAC5B,OAAO;EACT;EAEA,KAAK,wBAAwB,cAAc,wBACxC,UAAU;GACT,IAAI,MAAM,iBAAiB,iBAAiB,CAAC,MAAM,eACjD;GAGF,KAAK,uBAAuB;GAC5B,KAAK,OAAO,IAAI;EAClB,CACF;EAIA,IAAI,cAAc,SAAS,CAAC,CAAC,iBAAiB,WAC5C,cAAmB,WAAW,CAAC,CAAC,YAAY,CAAC,CAAC;EAEhD,OAAO;CACT;CAEA,yBAAuC;EACrC,IAAI,KAAK,uBAAuB,MAC9B;EAEF,KAAK,oBAAoB;EACzB,KAAK,sBAAsB,KAAA;CAC7B;CAEA,gBACE,UACA,aACM;EAKN,MAAM,OAAO,KAAK,eAAe,IAAI,QAAQ;EAC7C,IAAI,QAAQ,MACV,MAAM,IAAI,MACR,0EACF;EAEF,IAAI,aACF,KAAK,oBAAoB,IAAI;EAE/B,KAAK,OAAO;CACd;CAEA,iBAA4C;EAC1C,OAAO,KAAK;CACd;CAEA,sBAAsD;EACpD,OAAO,KAAK;CACd;CAMA,mBAAmD;EACjD,OAAO,KAAK,OAAO;CACrB;CAEA,mBAAmD;EACjD,OAAO,KAAK,OAAO;CACrB;CAEA,mBAA+D;EAC7D,MAAM,EAAE,YAAY,cAAc,KAAK;EACvC,IAAI,eAAe,MAAM,cAAc,MAAM,YAAY,YACvD,OAAO,CAAC;EAGV,MAAM,gBAAqD,CAAC;EAE5D,KAAK,IAAI,QAAQ,YAAY,SAAS,WAAW,SAAS;GACxD,MAAM,OAAO,KAAK,MAAM;GACxB,IAAI,MAAM,WAAW,MACnB;GAGF,IAAI,KAAK,SAAS,QAChB,cAAc,KAAK;IACjB,IAAI,KAAK,KAAK;IACd,MAAM;IACN,MAAM,KAAK;IACX,SAAS,KAAK;IACd,SAAS,KAAK;IACd,UAAU,KAAK;GACjB,CAAC;QAED,cAAc,KAAK;IACjB,IAAI,KAAK,KAAK;IACd,MAAM;IACN,MAAM,KAAK;IACX,SAAS,KAAK;IACd,SAAS,KAAK;IACd,UAAU,KAAK;GACjB,CAAC;EAEL;EAEA,OAAO;CACT;CAEA,mBACE,aACS;EACT,IAAI,gBAAgB,KAAK,iBACvB,OAAO;EAET,KAAK,kBAAkB;EACvB,KAAK,eAAe,KAAA;EACpB,OAAO;CACT;CAEA,gBACE,aAC+C;EAC/C,OAAO,KAAK,kBAAkB,WAAW;CAC3C;CAKA,kBACE,aAC+C;EAC/C,MAAM,QAAQ,aAAa,KAAK,iBAAiB,GAAG,WAAW;EAC/D,MAAM,EAAE,SAAS,WAAW,KAAK;EACjC,MAAM,EAAE,SAAS,WAAW,KAAK;EACjC,IAAI,SAAS,QAAQ,UAAU,QAAQ,UAAU,MAC/C;EAEF,OAAO;GAAE;GAAO;GAAQ;EAAO;CACjC;CAEA,kBACE,UACY;EACZ,KAAK,gBAAgB,IAAI,QAAQ;EACjC,aAAa;GACX,KAAK,gBAAgB,OAAO,QAAQ;EACtC;CACF;CAEA,uBACE,UACQ;EACR,MAAM,OAAO,KAAK,eAAe,IAAI,QAAQ;EAC7C,IAAI,QAAQ,MACV,MAAM,IAAI,MACR,+DACF;EAEF,OAAO,KAAK;CACd;CAEA,cAAqB,IAAgC;EACnD,MAAM,OAAO,KAAK,SAAS,IAAI,EAAE;EACjC,IAAI,QAAQ,MACV;EAEF,OAAO,KAAK,MAAM,KAAK,iBAAiB;CAC1C;CAEA,WACE,OACA,OACA,KACkC;EAClC,MAAM,EAAE,kBAAkB,gBAAgB;EAC1C,IAAI,MAAM,SAAS,QAAQ;GACzB,MAAM,WAAW,IAAI,oBACnB,KAAK,kBAAkB,MAAM,EAAE,GAC/B,MACA,aACA,KAAK,eACL,KAAK,kBACP;GACA,OAAO;IACL,MAAM;IACN,MAAM;IACN,SAAS,MAAM;IACf;IACA;IACA,QAAQ;IACR,SAAS,KAAA;IACT,yBAAyB,KAAK;IAC9B;GACF;EACF;EAEA,MAAM,WAAW,IAAI,gBACnB,KAAK,kBAAkB,MAAM,EAAE,GAC/B,MACA,aACA,KAAK,eACL,KAAK,kBACP;EACA,OAAO;GACL,MAAM;GACN,MAAM;GACN,SAAS,MAAM;GACf;GACA;GACA,QAAQ;GACR,SAAS,KAAA;GACT,yBAAyB,KAAK;GAC9B;EACF;CACF;CAEA,mBACE,WACA,SACM;EACN,MAAM,EAAE,eAAe,kBAAkB;EACzC,IACG,aAAa,QAAQ,iBAAiB,QACtC,aAAa,QACZ,eAAe,OAAO,UAAU,MAChC,mBAAmB,cAAc,OAAO,UAAU,KAAK,GAEzD;EAMF,IAAI,iBAAiB,QAAQ,cAAc,OAAO,WAAW,IAC3D,KAAK,SACF,IAAI,cAAc,EAAE,CAAC,EACpB,SAAS,iBAAiB,MAAM,EAAE,QAAQ,MAAM,CAAC;EAGvD,KAAK,gBAAgB;EACrB,KAAK,SACF,IAAI,WAAW,MAAM,EAAE,CAAC,EACvB,SAAS,iBAAiB,WAAW,SAAS,MAAM,OAAO;CACjE;CAEA,gBAA8B;EAC5B,IAAI,KAAK,iBAAiB,MACxB;EAGF,MAAM,OAAO,KAAK,SAAS,IAAI,KAAK,cAAc,EAAE;EACpD,IAAI,QAAQ,MAAM;GAChB,KAAK,gBAAgB;GACrB,KAAK,QAAQ,wBAAwB,IAAI;GACzC;EACF;EAEA,KAAK,SAAS,iBAAiB,KAAK,cAAc,OAAO,EAAE,QAAQ,MAAM,CAAC;CAC5E;CAGA,iBAAyB,MAAiD;EACxE,OAAO,KAAK,KAAK,SAAS,QAAQ,KAAK,KAAK,cAAc;CAC5D;;;;;;;;;;CAWA,iBAAyB,MAA8C;EACrE,MAAM,EAAE,OAAO,KAAK;EACpB,MAAM,EAAE,iBAAiB,KAAK;EAC9B,IACE,KAAK,WAAW,QAChB,KAAK,gBAAgB,IAAI,EAAE,KAC3B,CAAC,KAAK,iBAAiB,IAAI,GAE3B;EAGF,IAAI,SAAS,KAAK,YAAY,IAAI,EAAE;EACpC,IAAI,gBAAgB;EACpB,IAAI;GACF,IAAI,UAAU,MAAM;IAClB,oBAAoB,YAAY;IAMhC,MAAM,QAA8C,EAAE,GAAG;IACzD,MAAM,SAAS,aAAa,EAC1B,WAAW,MAAM,oBAAoB;KACnC,MAAM,SAAS,KAAK,SAAS,IAAI,MAAM,EAAE;KACzC,IAAI,UAAU,MACZ;KAEF,MAAM,aAAa;MAAE,MAAM,OAAO;MAAM;MAAM;KAAgB;KAC9D,KAAK,QAAQ,mBAAmB,OAAO,MAAM,MAAM,eAAe;IACpE,EACF,CAAC;IACD,IAAI,UAAU,MACZ;IAEF,SAAS;KAAE;KAAQ;IAAM;IACzB,KAAK,YAAY,IAAI,IAAI,MAAM;IAC/B,gBAAgB;GAClB;GAEA,OAAO,OAAO,KAAK,KAAK,QAAQ;GAChC,KAAK,gBAAgB,IAAI,EAAE;EAC7B,SAAS,OAAO;GACd,IAAI,iBAAiB,UAAU,MAAM;IACnC,KAAK,YAAY,OAAO,EAAE;IAC1B,OAAO,OAAO,QAAQ;GACxB;GAIA,KAAK,oBAAoB,IAAI;GAC7B,MAAM;EACR;CACF;;;;;;;CAQA,gBACE,cACM;EACN,IAAI,KAAK,YAAY,SAAS,GAC5B;EAGF,MAAM,cAAqD,CAAC;EAC5D,KAAK,MAAM,CAAC,IAAI,WAAW,KAAK,aAAa;GAC3C,MAAM,OAAO,KAAK,SAAS,IAAI,EAAE;GACjC,MAAM,cAAc,cAAc,IAAI,EAAE;GACxC,IAAI,eAAe,QAAQ,QAAQ,QAAQ,KAAK,iBAAiB,IAAI,GACnE;GAIF,OAAO,OAAO,QAAQ;GACtB,KAAK,YAAY,OAAO,EAAE;GAC1B,KAAK,gBAAgB,OAAO,EAAE;GAO9B,MAAM,EAAE,eAAe,OAAO;GAC9B,MAAM,eACJ,eAAe,OACV,MAAM,QAAQ,YAAY,OAC1B,YAAY,QAAQ,YAAY;GACvC,IAAI,cAAc,SAAS,QAAQ;IACjC,IACE,eAAe,QACf,QAAQ,QACR,KAAK,SAAS,UACd,KAAK,SAAS,oBAAoB,GAClC;KACA,KAAK,oBAAoB,IAAI;KAC7B,KAAK,OAAO;IACd;IACA,yBAAyB,aAAa,QAAQ;GAChD;GACA,IAAI,cAAc,MAIhB,YAAY,KACV,eAAe,QAAQ,QAAQ,OAC3B,aACA;IAAE,GAAG;IAAY,MAAM,KAAK;GAAK,CACvC;EAEJ;EAIA,KAAK,MAAM,EAAE,MAAM,MAAM,qBAAqB,aAC5C,KAAK,QAAQ,qBAAqB,MAAM,MAAM,eAAe;CAEjE;CAEA,0BAAkC,OAAe,OAAqB;EACpE,MAAM,EAAE,wBAAwB;EAChC,IACE,uBAAuB,QACvB,oBAAoB,SAAS,cAC7B,oBAAoB,OAAO,OAE3B;EAGF,KAAK,sBAAsB;GAAE,GAAG;GAAqB,IAAI;EAAM;CACjE;CAEA,0BAAkC,OAAe,OAAqB;EACpE,IAAI,KAAK,qBAAqB,OAAO,OACnC,KAAK,oBAAoB,KAAK;CAElC;CAMA,6BAA+D;EAC7D,MAAM,YAAY,CAAC;EAEnB,KAAK,MAAM,OAAO,4BAChB,iBACE,WACA,WACM,KAAK,QAAQ,IACrB;EAKF,iBACE,WACA,sBACM,KAAK,QAAQ,aACrB;EACA,iBAAiB,WAAW,cAAc,aAAa;GACrD,MAAM,QAAQ,oBAAoB,QAAQ;GAC1C,IAAI,SAAS,MACX;GAEF,OAAO,KAAK,eAAe,OAAO,MAAM,CAAC,EAAE,KAAK;EAClD,CAAC;EAED,KAAK,MAAM,OAAO,gCAChB,KAAK,yBAAyB,WAAW,QAAQ,GAAG;EAEtD,KAAK,MAAM,OAAO,mCAChB,KAAK,4BAA4B,WAAW,QAAQ,GAAG;EAGzD,OAAO;CACT;CAEA,6BAAmE;EACjE,MAAM,YAAY,CAAC;EAEnB,KAAK,MAAM,OAAO,4BAChB,iBACE,WACA,WACM,KAAK,QAAQ,IACrB;EAKF,iBACE,WACA,sBACM,KAAK,QAAQ,aACrB;EACA,iBACE,WACA,wBACM,KAAK,QAAQ,cACrB;EACA,iBAAiB,WAAW,cAAc,aAAa;GACrD,MAAM,QAAQ,oBAAoB,QAAQ;GAC1C,IAAI,SAAS,MACX;GAEF,OAAO,KAAK,eAAe,OAAO,MAAM,CAAC,EAAE,KAAK;EAClD,CAAC;EAED,KAAK,MAAM,OAAO,gCAChB,KAAK,yBAAyB,WAAW,QAAQ,GAAG;EAEtD,KAAK,MAAM,OAAO,mCAChB,KAAK,4BAA4B,WAAW,QAAQ,GAAG;EAGzD,OAAO;CACT;CAEA,kBAA0B,IAAsC;EAG9D,MAAM,UAAU,OAAO,OACrB,KAAK,oBACP;EAIA,mBAAmB,SAAS,EAF1B,GAE8B,CAAC;EACjC,OAAO;CACT;CAEA,kBAA0B,IAA0C;EAGlE,MAAM,UAAU,OAAO,OACrB,KAAK,oBACP;EAIA,mBAAmB,SAAS,EAF1B,GAE8B,CAAC;EACjC,OAAO;CACT;CAEA,oBACE,SACA,IACM;EACN,MAAM,QAAQ,oBAAoB,OAAO;EACzC,IAAI,SAAS,MACX,MAAM,IAAI,MAAM,8CAA8C;EAEhE,MAAM,KAAK;CACb;CAEA,eACE,OACA,MACyD;EACzD,MAAM,OAAO,KAAK,SAAS,IAAI,MAAM,EAAE;EACvC,IAAI,QAAQ,QAAQ,KAAK,SAAS,MAChC;EAEF,OAAO;CACT;CAEA,yBAIE,SACA,MACA,KACM;EACN,iBACE,SAIA,MACC,aAAa;GAIZ,IAHgB,KAAK,QAAQ,QAGd,MACb;GAGF,MAAM,QAAQ,oBACZ,QACF;GACA,IAAI,SAAS,MACX;GAIF,MAAM,gBAAiB,MAAM,kBAAkB,CAAC;GAChD,IAAI,UAAU,cAAc;GAG5B,IAAI,WAAW,MAAM;IACnB,YAAY,GAAG,SAAoB;KACjC,MAAM,SAAS,KAAK,eAAe,OAAO,IAAI;KAC9C,IAAI,UAAU,MACZ;KAEF,MAAM,WAAW,KAAK,QAAQ;KAG9B,OACE,WACE,GAAG,MAAM,MAAM;IACrB;IAEA,cAAc,OAAO;GACvB;GAEA,OAAO;EACT,CACF;CACF;CAEA,4BAIE,SACA,MACA,KACM;EACN,iBACE,SAIA,MACC,aAAa;GACZ,MAAM,QAAQ,oBACZ,QACF;GACA,IAAI,SAAS,MACX;GAKF,MAAM,gBAAiB,MAAM,kBAAkB,CAAC;GAChD,IAAI,UAAU,cAAc;GAG5B,IAAI,WAAW,MAAM;IACnB,YAAY,UAAoC;KAC9C,MAAM,SAAS,KAAK,eAAe,OAAO,IAAI;KAC9C,IAAI,UAAU,MACZ;KAGF,MAAM,YACJ,SAAS,OAAO,OAAO;MAAE,IAAI,OAAO,KAAK;MAAI;KAAM;KACrD,IAAI,KAAK,QAAQ,wBAAwB;UACnC,SAAS,QAAQ,KAAK,eAAe,OAAO,OAAO,KAAK,IAC1D,KAAK,mBAAmB,WAAW,EAAE,QAAQ,MAAM,CAAC;KAAA;KAIxD,KAAK,QAAQ,wBAAwB,SAAS;KAE9C,MAAM,WAAW,KAAK,QAAQ;KAM9B,OAAO,WAAW,OAAO,MAAM;IACjC;IAEA,cAAc,OAAO;GACvB;GAEA,OAAO;EACT,CACF;CACF;;;;;;CAOA,yBAAiC,OAAqB;EACpD,KAAK,mBAAmB,KAAK,IAAI,KAAK,oBAAoB,OAAO,KAAK;CACxE;;;;;;CAOA,oBAA4B,MAA8C;EACxE,IAAI,KAAK,MAAM,KAAK,WAAW,MAC7B,MAAM,IAAI,MACR,kDAAkD,KAAK,KAAK,GAAG,EACjE;EAGF,KAAK,yBAAyB,KAAK,KAAK;CAC1C;;;;;;;CAQA,eAAuB,OAAsD;EAC3E,IAAI,MAAM,UAAU,KAAK,MAAM,QAC7B,OAAO;EAGT,KAAK,IAAI,QAAQ,GAAG,QAAQ,KAAK,MAAM,QAAQ,SAAS;GACtD,MAAM,eAAe,KAAK,MAAM;GAChC,IAAI,gBAAgB,MAClB,MAAM,IAAI,MAAM,gDAAgD;GAElE,MAAM,WAAW,MAAM;GACvB,IACE,YAAY,QACZ,aAAa,KAAK,OAAO,SAAS,MAClC,aAAa,SAAS,SAAS,MAE/B,OAAO;EAEX;EAEA,KAAK,IAAI,QAAQ,GAAG,QAAQ,KAAK,MAAM,QAAQ,SAAS;GACtD,MAAM,eAAe,KAAK,MAAM;GAChC,IAAI,gBAAgB,MAClB,MAAM,IAAI,MAAM,gDAAgD;GAElE,MAAM,WAAW,MAAM;GACvB,IAAI,YAAY,MACd,MAAM,IAAI,MACR,+DACF;GAEF,IAAI,KAAK,eAAe,cAAc,QAAQ,GAC5C,KAAK,yBAAyB,KAAK;EAEvC;EAEA,KAAK,oBAAoB,MAAM,MAAM,KAAK,MAAM,MAAM,GAAG,KAAK;EAC9D,KAAK,cAAc;EACnB,KAAK,OAAO;EACZ,OAAO;CACT;;;;;;;CAQA,eACE,OACoD;EACpD,MAAM,EAAE,OAAO,eAAe,UAAU,iBAAiB;EACzD,MAAM,eAAe,IAAI,IAAI,aAAa;EAC1C,MAAM,YAAgD,CAAC;EACvD,MAAM,+BAGF,IAAI,IAAI;EACZ,MAAM,qCAGF,IAAI,IAAI;EACZ,MAAM,mCAAiD,IAAI,IAAI;EAC/D,IAAI;EAEJ,KAAK,IAAI,QAAQ,GAAG,QAAQ,MAAM,QAAQ,SAAS;GACjD,MAAM,QAAQ,MAAM;GACpB,IAAI,SAAS,MACX,MAAM,IAAI,MAAM,6CAA6C;GAE/D,IAAI,aAAa,IAAI,MAAM,EAAE,GAC3B,MAAM,IAAI,MAAM,oCAAoC,MAAM,GAAG,EAAE;GAGjE,MAAM,eAAe,aAAa,IAAI,MAAM,EAAE;GAC9C,MAAM,OACJ,gBAAgB,QAAQ,aAAa,SAAS,MAAM,OAChD,eACA,KAAK,WAAW,OAAO,OAAO,CAAC;GAErC,KAAK,QAAQ;GAEb,IAAI,gBAAgB,QAAQ,aAAa,SAAS,MAAM,MAAM;IAC5D,aAAa,OAAO,YAAY;IAChC,IAAI,KAAK,eAAe,MAAM,KAAK,GACjC,kBAAkB,KAAK,IAAI,mBAAmB,OAAO,KAAK;GAE9D,OACE,kBAAkB,KAAK,IAAI,mBAAmB,OAAO,KAAK;GAG5D,IAAI,cAAc,WAAW,MAC3B,kBAAkB,KAAK,IAAI,mBAAmB,OAAO,KAAK;GAG5D,UAAU,KAAK,IAAI;GACnB,aAAa,IAAI,MAAM,IAAI,IAAI;GAC/B,mBAAmB,IAAI,KAAK,UAAU,IAAI;EAC5C;EAEA,IAAI,mBAAmB,MAAM;GAC3B,IAAI,aAAa,SAAS,GACxB;GAEF,kBAAkB,KAAK,IAAI,UAAU,SAAS,GAAG,CAAC;EACpD;EAEA,KAAK,2BAA2B,YAAY;EAE5C,KAAK,IAAI,QAAQ,GAAG,QAAQ,cAAc,QAAQ,SAAS;GACzD,MAAM,cAAc,cAAc;GAClC,IAAI,eAAe,QAAQ,CAAC,aAAa,IAAI,WAAW,GACtD;GAEF,iBAAiB,IAAI,YAAY,KAAK,IAAI,WAAW;GACrD,KAAK,oBAAoB,WAAW;GACpC,MAAM,aAAa,KAAK,IAAI,UAAU,SAAS,GAAG,CAAC;GACnD,kBAAkB,KAAK,IAAI,mBAAmB,YAAY,UAAU;EACtE;EAEA,KAAK,QAAQ;EACb,KAAK,WAAW;EAChB,KAAK,iBAAiB;EAEtB,IAAI,KAAK,YAAY,cAAc,UAAU,QAC3C,KAAK,iBAAiB;OACjB,IAAI,KAAK,YAAY,aAAa,UAAU,QACjD,KAAK,YAAY,YAAY,UAAU,SAAS;EAGlD,KAAK,yBAAyB,eAAe;EAC7C,KAAK,cAAc;EACnB,KAAK,OAAO;EACZ,OAAO,iBAAiB,OAAO,IAAI,mBAAmB,KAAA;CACxD;;;;;;;CAQA,eACE,MACA,UACS;EACT,IAAI,KAAK,SAAS,SAAS,MACzB,MAAM,IAAI,MACR,kDAAkD,SAAS,GAAG,EAChE;EAGF,IAAI,KAAK,YAAY,SAAS,SAC5B,OAAO;EAGT,KAAK,OAAO;EACZ,KAAK,UAAU,SAAS;EACxB,KAAK,0BAA0B;EAC/B,OAAO;CACT;CAEA,yBAAiC,cAA8B;EAC7D,MAAM,EAAE,eAAe,eAAe,KAAK,UAAU;EAGrD,OAAO,KAAK,IACV,aACE,KAAK,OAAO,SACZ,eACA,KAAK,OAAO,SACZ,gBACA,KAAK,UAAU,GACjB,CACF;CACF;CAEA,kBAAkC;EAChC,OAAO,KAAK,yBAAyB,KAAK,gBAAgB,CAAC;CAC7D;CAEA,qBAAsC;EACpC,OAAO,KAAK,gBAAgB,IAAI;CAClC;CAEA,uBAAuC;EACrC,OAAO,KAAK,mBAAmB,IAC3B,KAAK,IAAI,KAAK,gBAAgB,GAAG,8BAA8B,IAC/D,KAAK,gBAAgB;CAC3B;CAEA,uBAAuC;EACrC,OAAO,KAAK,yBAAyB,KAAK,qBAAqB,CAAC;CAClE;CAEA,oBAA4B,OAAuB;EACjD,MAAM,YAAY,KAAK,qBAAqB;EAC5C,OAAO,KAAK,IAAI,GAAG,KAAK,IAAI,OAAO,SAAS,CAAC;CAC/C;;;;;CAMA,eAAuB,OAAuB;EAC5C,MAAM,YAAY,KAAK,gBAAgB;EACvC,OAAO,KAAK,IAAI,GAAG,KAAK,IAAI,OAAO,SAAS,CAAC;CAC/C;CAEA,yBAAyC;EACvC,OAAO,KAAK,IAAI,KAAK,gBAAgB,IAAI,KAAK,qBAAqB,GAAG,CAAC;CACzE;CAEA,sBAA8B,OAAuB;EACnD,MAAM,YAAY,KAAK,uBAAuB;EAC9C,OAAO,KAAK,IAAI,GAAG,KAAK,IAAI,OAAO,SAAS,CAAC;CAC/C;CAEA,wBACE,WACA,yBACsD;EACtD,IAAI,iBAAiB,mBACnB,KAAK,oBAAoB,uBAAuB,CAClD;EACA,IAAI,mBAAmB,KAAK,sBAC1B,YAAY,cACd;EAEA,iBAAiB,mBACf,KAAK,oBAAoB,YAAY,gBAAgB,CACvD;EACA,mBAAmB,KAAK,sBAAsB,YAAY,cAAc;EACxE,OAAO;GAAE;GAAgB;EAAiB;CAC5C;;;;;CAMA,2BACE,kBACqB;EACrB,IAAI,CAAC,KAAK,mBAAmB,GAC3B,OAAO;GACL,gBAAgB,KAAK,oBAAoB,gBAAgB;GACzD,kBAAkB;EACpB;EAGF,MAAM,oBAAoB,KAAK,sBAAsB,KAAK,gBAAgB;EAE1E,MAAM,iBAAiB,mBAAmB;EAC1C,MAAM,oBAAoB,KAAK,qBAAqB;EACpD,MAAM,kBAAkB,KAAK,uBAAuB;EACpD,MAAM,iBACJ,iBAAiB,2BACjB,oBAAoB;EACtB,MAAM,eACJ,iBAAiB,6BAA6B,oBAAoB;EAEpE,IACE,iBAAiB,KACjB,iBAAiB,qBACjB,kBACA,cAQA,OANmB,KAAK,wBACtB,kBACA,eACI,KAAK,IAAI,6BAA6B,iBAAiB,IACvD,wBAEU;EAGlB,OAAO;GACL,gBAAgB,mBACd,KAAK,oBAAoB,cAAc,CACzC;GACA,kBAAkB;EACpB;CACF;CAEA,sBAA8B,kBAAmC;EAC/D,MAAM,mBAAmB,mBACvB,KAAK,eAAe,gBAAgB,CACtC;EACA,MAAM,EAAE,qBACN,KAAK,2BAA2B,gBAAgB;EAClD,OAAO,qBAAqB,KAAK;CACnC;CAEA,kBAA0B,YAA4B;EACpD,IAAI,CAAC,KAAK,mBAAmB,GAC3B,OAAO;EAET,OAAO,KAAK,IAAI,aAAa,KAAK,kBAAkB,CAAC;CACvD;CAEA,wBAAwC;EACtC,OAAO,KAAK,QAAQ,kBAAkB,QACpC,KAAK,QAAQ,sBAAsB,OACjC,KAAK,iBAAiB,mBACtB;CACN;CAEA,oBACE,QAI6C;EAC7C,MAAM,OAAO,KAAK,SAAS,IAAI,OAAO,EAAE;EACxC,IAAI,QAAQ,MAAM;GAChB,QAAQ,KAAK,uCAAuC,OAAO,GAAG,EAAE;GAChE;EACF;EAEA,IAAI,OAAO,SAAS,QAClB,OAAO;GAAE,KAAK,KAAK;GAAK,QAAQ,KAAK;EAAO;EAG9C,IAAI,OAAO,SAAS,SAAS;GAC3B,MAAM,gBAAgB,KAAK,uBAAuB,MAAM,MAAM;GAC9D,IAAI,iBAAiB,MAAM;IACzB,QAAQ,KACN,8CAA8C,wBAAwB,OAAO,KAAK,EAAE,aAAa,OAAO,GAAG,EAC7G;IACA;GACF;GAEA,OAAO;IACL,KAAK,KAAK,MAAM,cAAc;IAC9B,QAAQ,cAAc;GACxB;EACF;EAEA,MAAM,eAAe,KAAK,sBAAsB,MAAM,MAAM;EAC5D,IAAI,gBAAgB,MAAM;GACxB,QAAQ,KACN,6CAA6C,OAAO,WAAW,aAAa,OAAO,GAAG,EACxF;GACA;EACF;EAEA,OAAO;GACL,KAAK,KAAK,MAAM,aAAa;GAC7B,QAAQ,aAAa;EACvB;CACF;CAEA,sBACE,QACiC;EACjC,IAAI,OAAO,SAAS,cAAc,OAAO,UAAU,WACjD,OAAO;EAGT,MAAM,OAAO,KAAK,oBAAoB,MAAM;EAC5C,IAAI,QAAQ,MACV;EAKF,MAAM,SAAS,OAAO,UAAU;EAChC,MAAM,YAAY,KAAK,iBAAiB,IAAI,KAAK;EACjD,MAAM,eAAe,YAAY,KAAK;EACtC,MAAM,aAAa,KAAK,aAAa;EACrC,MAAM,aACJ,cACC,OAAO,SAAS,UAAU,OAAO,SAAS,UACvC,KAAK,sBAAsB,IAC3B;EACN,MAAM,gBAAgB,aAAa,KAAK,UAAU;EAIlD,IACE,YAAY,UAAU,cACtB,eAAe,UAAU,eAEzB;EAIF,IAAI,YAAY,SAAS,YACvB,OAAO;GAAE,GAAG;GAAQ,OAAO;EAAQ;EAIrC,IAAI,eAAe,SAAS,eAC1B,OAAO;GAAE,GAAG;GAAQ,OAAO;EAAM;CAKrC;;;;;;CAOA,uBACE,QACoB;EACpB,IAAI,OAAO,SAAS,YAAY;GAC9B,MAAM,kBAAkB,KAAK,eAAe,OAAO,QAAQ;GAC3D,OAAO,oBAAoB,OAAO,WAE9B,kBACA,KAAK,eAAe,OAAO,WAAW,KAAK,sBAAsB,CAAC;EACxE;EAEA,MAAM,OAAO,KAAK,SAAS,IAAI,OAAO,EAAE;EACxC,IAAI,QAAQ,MAAM;GAChB,QAAQ,KAAK,uCAAuC,OAAO,GAAG,EAAE;GAChE;EACF;EAEA,IAAI,OAAO,SAAS,QAClB,OAAO,KAAK,eACV,KAAK,6BACH,KAAK,KACL,KAAK,QACL,OAAO,OACP,OAAO,MACT,CACF;EAGF,IAAI,OAAO,SAAS,SAAS;GAC3B,MAAM,gBAAgB,KAAK,uBAAuB,MAAM,MAAM;GAC9D,IAAI,iBAAiB,MAAM;IACzB,QAAQ,KACN,8CAA8C,wBAAwB,OAAO,KAAK,EAAE,aAAa,OAAO,GAAG,EAC7G;IACA;GACF;GAEA,OAAO,KAAK,eACV,KAAK,6BACH,KAAK,MAAM,cAAc,KACzB,cAAc,QACd,OAAO,OACP,OAAO,QACP,KAAK,sBAAsB,CAC7B,CACF;EACF;EAEA,MAAM,eAAe,KAAK,sBAAsB,MAAM,MAAM;EAC5D,IAAI,gBAAgB,MAAM;GACxB,QAAQ,KACN,6CAA6C,OAAO,WAAW,aAAa,OAAO,GAAG,EACxF;GACA;EACF;EAEA,OAAO,KAAK,eACV,KAAK,6BACH,KAAK,MAAM,aAAa,KACxB,aAAa,QACb,OAAO,OACP,OAAO,QACP,KAAK,sBAAsB,CAC7B,CACF;CACF;;;;;;CAOA,6BAGE,WACA,cACA,OACA,SAAS,GACT,eAAe,GACP;EAIR,aAAa,KAAK,iBAAiB;EACnC,MAAM,iBAAiB,KAAK,UAAU;EAGtC,IAAI,UAAU,YAAY,eAAe,SAAS,gBAChD,OAAO,aAAa,iBAAiB,gBAAgB,IAAI;EAE3D,IAAI,UAAU,OACZ,OAAO,aAAa,iBAAiB,gBAAgB;EAGvD,OAAO,YAAY,eAAe;CACpC;CAEA,sBACE,MACA,QACgC;EAChC,IAAI,KAAK,SAAS,QAChB,OAAO,KAAK,SAAS,gBAAgB,OAAO,YAAY,OAAO,IAAI;EAGrE,OAAO,KAAK,SAAS,gBAAgB,OAAO,UAAU;CACxD;CAEA,uBACE,MACA,QACgC;EAChC,MAAM,EAAE,UAAU;EAClB,MAAM,gBAAgB,KAAK,sBAAsB,MAAM;GACrD,MAAM;GACN,IAAI,OAAO;GACX,YAAY,MAAM;GAClB,MAAM,MAAM;EACd,CAAC;EACD,MAAM,cAAc,KAAK,sBAAsB,MAAM;GACnD,MAAM;GACN,IAAI,OAAO;GACX,YAAY,MAAM;GAClB,MAAM,MAAM,WAAW,MAAM;EAC/B,CAAC;EACD,IAAI,iBAAiB,QAAQ,eAAe,MAC1C;EAGF,MAAM,WAAW,cAAc;EAC/B,MAAM,cAAc,WAAW,cAAc;EAC7C,MAAM,SAAS,YAAY;EAC3B,MAAM,YAAY,SAAS,YAAY;EACvC,MAAM,MAAM,KAAK,IAAI,UAAU,MAAM;EAErC,OAAO;GAAE;GAAK,QADC,KAAK,IAAI,aAAa,SACV,IAAI;EAAI;CACrC;;;;;;;;;;;CAYA,+BACE,WACA,gBACQ;EACR,IAAI,KAAK,uBAAuB,MAC9B,OAAO;EAET,MAAM,cAAc,KAAK,uBAAuB,KAAK,mBAAmB;EACxE,IAAI,eAAe,MACjB,OAAO;EAET,MAAM,EAAE,oBAAoB;EAC5B,IAAI,mBAAmB,MACrB,OAAO;EAET,OAAO,KAAK,kBAAkB,iBAAiB,aAAa,cAAc,CAAC,CACxE;CACL;;;;;;;;CASA,kBACE,WACA,aACA,gBACkB;EAClB,MAAM,KAAK,KAAK,IAAI,GAAG,iBAAiB,UAAU,aAAa;EAC/D,MAAM,EAAE,UAAU,KAAK,wBAAwB;EAC/C,MAAM,QAAQ,KAAK,IAAI,CAAC,QAAQ,EAAE;EAClC,MAAM,eAAe,UAAU,WAAW;EAC1C,MAAM,cAAc,UAAU,WAAW,QAAQ;EAIjD,OAAO;GAAE,UAHQ,eAAe,eAAe,cAAc,MAAM;GAGhD,WADhB,eAAe,IAAI,QAAQ,MAAM,QAAQ,gBAAgB;EAChC;CAC9B;;;;;;;;CASA,uBACE,gBACA,aACoB;EACpB,IAAI,KAAK,uBAAuB,MAC9B;EAEF,MAAM,cAAc,KAAK,uBAAuB,KAAK,mBAAmB;EACxE,IAAI,eAAe,MAAM;GACvB,KAAK,sBAAsB,KAAA;GAC3B,KAAK,kBAAkB,KAAA;GACvB;EACF;EACA,MAAM,YAAY,KAAK;EACvB,IAAI,aAAa,MACf,OAAO;EAGT,UAAU,YAAY;EAEtB,MAAM,EAAE,UAAU,aAAa,KAAK,kBAClC,WACA,aACA,cACF;EACA,UAAU,gBAAgB;EAC1B,UAAU,WAAW;EACrB,UAAU,WAAW;EAErB,MAAM,EAAE,iBAAiB,oBAAoB,KAAK,wBAAwB;EAC1E,IACE,KAAK,IAAI,cAAc,QAAQ,KAAK,mBACpC,KAAK,IAAI,QAAQ,KAAK,iBACtB;GACA,UAAU,WAAW;GACrB,UAAU,WAAW;GACrB,KAAK,kBAAkB,KAAA;GACvB,OAAO;EACT;EAEA,OAAO,UAAU;CACnB;CAEA,6BACE,YAAoB,YAAY,IAAI,MAC3B;EACT,IAAI,SAAS,UAAU,KAAK,aAAa,MACvC;EAEF,IAAI,CAAC,KAAK,QAAQ,GAChB;EAKF,MAAM,iBAAiB,KAAK,UAAU;EACtC,MAAM,mBAAmB,KAAK,aAAa;EAC3C,IAAI,uBAAuB;EAK3B,IAAI,0BAA0B,KAAK,uBAAuB;EAK1D,IAAI,eAAe,KAAK,gBAAgB,oBAAoB;EAI5D,IAAI,KAAK,oBAAoB,MAAM;GACjC,KAAK,gBAAgB,KAAK,kBAAkB,KAAK,kBAAkB;GACnE,KAAK,mBAAmB,KAAA;GACxB,KAAK,qBAAqB,KAAA;GAC1B,0BAA0B;EAC5B;EAIA,IAAI,2BAA2B,gBAAgB,MAAM;GACnD,MAAM,+BACJ,KAAK,yBAAyB,YAAY;GAC5C,IAAI,gCAAgC,MAAM;IACxC,MAAM,oBACJ,+BAA+B;IACjC,uBAAuB;IACvB,IAAI,KAAK,mBAAmB,MAI1B,KAAK,gBAAgB,YAAY;GAErC;EACF;EAIA,IAAI,yBAAyB;GAC3B,uBAAuB,KAAK,eAAe,oBAAoB;GAC/D,KAAK,oBAAoB;EAC3B;EAIA,MAAM,kBAAkB,KAAK,+BAC3B,sBACA,SACF;EAQA,MAAM,eACJ,CAAC,4BACA,KAAK,YAAY,cAAc,MAC9B,KAAK,IAAI,kBAAkB,KAAK,YAAY,SAAS,IACnD,iBAAiB,KAAK,OAAO,iBAAiB;EAIpD,IAAI,cACF,eAAe,KAAA;EAKjB,KAAK,cAAc,+BAA+B;GAGhD,WAAW,kBAAkB,KAAK,OAAO;GACzC,QAAQ;GACR,cAAc,KAAK,gBAAgB;GACnC;GACA,wBAAwB,KAAK,0BAA0B;GACvD,gBAAgB,KAAK,OAAO;EAC9B,CAAC;EACD,IAAI,kBAAkB;EACtB,IACG,KAAK,uBAAuB,QAC3B,oBAAoB,mBACtB,KAAK,sBAAsB,eAAe,GAC1C;GAIA,KAAK,eAAe,iBAAiB,iBAAiB,KAAK,WAAW;GACtE,kBAAkB;EACpB;EAIA,MAAM,EAAE,KAAK,WAAW,KAAK;EAC7B,MAAM,EAAE,YAAY,cAAc,KAAK;EACvC,IAAI,cAAc,GAChB,KAAK,IAAI,QAAQ,YAAY,SAAS,WAAW,SAAS;GACxD,MAAM,OAAO,KAAK,MAAM;GACxB,IAAI,QAAQ,MACV,MAAM,IAAI,MACR,yDAAyD,OAC3D;GAIF,IAAI,EAFc,KAAK,MAAM,MAAM,KAAK,UAAU,KAAK,OAAO,SAG5D,KAAK,oBAAoB,IAAI;EAEjC;EAMF,MAAM,eAAe,KAAK,2BAA2B;EAErD,IAAI;EACJ,MAAM,+BAAe,IAAI,IAAsC;EAC/D,MAAM,gBAAgB,KAAK,sBAAsB,GAAG;EACpD,MAAM,oBAAoB,KAAK,qBAAqB,MAAM;EAE1D,KACE,IAAI,YAAY,eAChB,aAAa,mBACb,aACA;GACA,MAAM,OAAO,KAAK,MAAM;GACxB,IAAI,QAAQ,MACV,MAAM,IAAI,MAAM,kDAAkD;GAEpE,MAAM,EAAE,aAAa;GAGrB,IAAI,KAAK,WAAW,MAAM;IACxB,KAAK,UAAU,KAAK,eAAe;IACnC,sBAAsB,KAAK,iBAAiB,KAAK,SAAS,WAAW;IACrE,SAAS,iBAAiB;IAC1B,IAAI,WAAW,MAAM,KAAK,OAAO,GAAG;KAClC,KAAK,0BAA0B,KAAK;KACpC,aAAa,IAAI,IAAI;IACvB;IACA,cAAc,KAAK;GACrB,OAEK;IACH,sBAAsB,KAAK,iBAAiB,KAAK,SAAS,WAAW;IAGrE,IAAI,WAAW,MAAM,KAAA,GADnB,KAAK,4BAA4B,KAAK,qBACG,GAAG;KAC5C,KAAK,0BAA0B,KAAK;KACpC,aAAa,IAAI,IAAI;IACvB;IACA,cAAc,KAAK;GACrB;GAGA,IAAI,KAAK,KAAK,SAAS,MACrB,KAAK,iBAAiB,IAAI;EAE9B;EAEA,KAAK,YAAY,aACf,iBAAiB,oBAAoB,gBAAgB;EACvD,KAAK,YAAY,YAAY;EAE7B,KAAK,qBAAqB;EAC1B,KAAK,cAAc,YAAY;EAG/B,IAAI,cACF,KAAK,oBAAoB;EAE3B,KAAK,uBAAuB,YAAY;EACxC,KAAK,oBAAoB;EACzB,KAAK,wBAAwB;EAc7B,MAAM,+BACJ,gBAAgB,OACZ,KAAK,yBAAyB,YAAY,IAC1C,KAAA;EACN,IAAI,iBAAiB,KAAK,qBACxB,KAAK,sBAAsB,KAAA;EAG7B,MAAM,wBACJ,gCAAgC,OAC5B,+BAA+B,uBAC/B;EAEN,IAAI,sBAAsB;EAC1B,IAAI,kCAAkC;EACtC,IAAI,KAAK,uBAAuB,MAAM;GACpC,MAAM,yBAAyB,KAAK,uBAClC,WACA,qBACF;GACA,IAAI,0BAA0B,MAAM;IAClC,sBAAsB;IACtB,kCAAkC;GACpC,OAKE,sBAAsB;EAE1B,OACE,sBAAsB,gCAAgC;EAIxD,IAAI,wBAAwB,iBAAiB;GAC3C,KAAK,eACH,qBACA,iBACA,KAAK,WACP;GACA,kBAAkB;EACpB;EACA,IACE,mCACA,KAAK,uBAAuB,QAC5B,KAAK,uBAAuB,KAAK,mBAAmB,GACpD;GACA,KAAK,sBAAsB,KAAA;GAC3B,KAAK,kBAAkB,KAAA;EACzB;EACA,KAAK,YAAY,YAAY,mBAAmB,eAAe;EAW/D,KAAK,wBAAwB;EAE7B,KAAK,8BAA8B;EACnC,KAAK,kBAAkB;EAKvB,IAAI,gBAAgB,KAAK,mBAAmB,MAC1C,KAAK,OAAO;CAEhB;CAEA,cACE,cACM;EACN,KAAK,MAAM,QAAQ,cACjB,KAAK,SAAS,cAAc;CAEhC;CAEA,sBAAoC;EAClC,MAAM,oBAAoB,KAAK,qBAAqB;EACpD,IAAI,KAAK,aAAa,QAAQ,KAAK,oBAAoB,mBACrD;EAGF,KAAK,UAAU,MAAM,SAAS,GAAG,kBAAkB;EACnD,KAAK,kBAAkB;CACzB;CAEA,gBACE,aAC0B;EAC1B,MAAM,EAAE,YAAY,cAClB,eAAe,OACX;GACE,YAAY,KAAK,sBAAsB,YAAY,GAAG;GACtD,WAAW,KAAK,qBAAqB,YAAY,MAAM;EACzD,IACA,KAAK;EAEX,IAAI,eAAe,MAAM,cAAc,MAAM,aAAa,WACxD;EAEF,MAAM,mBACJ,KAAK,MAAM,WAAW,EAAE,SAAS,uBAAuB,WAAW;EACrE,MAAM,kBACJ,KAAK,MAAM,UAAU,EAAE,SAAS,uBAAuB,WAAW;EAEpE,IAAI,oBAAoB,QAAQ,mBAAmB,MACjD;EAGF,OAAO;GACL,WAAW,KAAK,kBACd,KAAK,IAAI,iBAAiB,WAAW,CAAC,CACxC;GACA,cAAc,KAAK,kBACjB,gBAAgB,YAAY,gBAAgB,MAC9C;EACF;CACF;CAEA,uBAA+B,EAC7B,WACA,gBACqB;EACrB,MAAM,SAAS,KAAK,UAAU;EAC9B,MAAM,EAAE,kBAAkB,gBAAgB;EAC1C,MAAM,wBAAwB,eAAe;EAE7C,KAAK,YAAY,eAAe;EAChC,KAAK,YAAY,YAAY;EAC7B,KAAK,YAAY,eAAe;EAEhC,KAAK,aAAa,MAAM,SAAS,GAAG,UAAU;EAI9C,MAAM,gBAAiB,KAAK,OAAO,IAAI,YAAY,cAAe,KAAK;EACvE,MAAM,eACJ,CAAC,KAAK,IAAI,wBAAwB,cAAc,CAAC,IAAI;EACvD,KAAK,gBAAgB,MAAM,MAAM,GAAG,aAAa;EACjD,KAAK,gBAAgB,MAAM,SAAS,GAAG,eAAe,YAAY,iBAAiB;CACrF;CAEA,2BAAmC,aAAuC;EACxE,KAAK,oBAAoB;EACzB,MAAM,eAAe,KAAK,gBAAgB,WAAW;EACrD,IAAI,gBAAgB,MAClB;EAEF,KAAK,uBAAuB,YAAY;CAC1C;CAEA,uBACE,cACM;EACN,MAAM,EAAE,YAAY,cAAc,KAAK;EACvC,IAAI,eAAe,IACjB;EAGF,IAAI,aAAa;EACjB,IAAI,gBAAgB;EAIpB,KAAK,IAAI,QAAQ,YAAY,QAAQ,KAAK,MAAM,QAAQ,SAAS;GAE/D,IAAI,CAAC,iBAAiB,QAAQ,WAC5B;GAEF,MAAM,OAAO,KAAK,MAAM;GACxB,IAAI,QAAQ,MACV,MAAM,IAAI,MAAM,+CAA+C;GAEjE,IAAI,eAAe,IACjB,aAAa,KAAK;QACb,IAAI,KAAK,QAAQ,YAAY;IAClC,KAAK,MAAM;IACX,KAAK,SAAS,mBAAmB;IACjC,gBAAgB;GAClB;GAGA,IAAI,gBAAgB,OAAO,SAAS,YAAY,aAAa,IAAI,IAAI,GAAG;IACtE,IAAI,KAAK,SAAS,iBAAiB,GAAG;KACpC,gBAAgB;KAChB,KAAK,SAAS,KAAK,SAAS,qBAAqB;IACnD;IACA,KAAK,2BAA2B,IAAI;GACtC;GACA,cAAc,KAAK,SAAS,qBAAqB;GACjD,IAAI,QAAQ,KAAK,MAAM,SAAS,GAC9B,cAAc,KAAK,UAAU,CAAC,CAAC;EAEnC;EAEA,IAAI,iBAAiB,cAAc,MAAM;GACvC,KAAK,cAAc;GACnB,KAAK,eAAe;EACtB;CACF;CAEA,0BAAwC;EACtC,MAAM,eAAe,KAAK,gBAAgB;EAC1C,IAAI,gBAAgB,MAAM;GAIxB,IAAI,KAAK,YAAY,eAAe,IAClC,KAAK,aAAa,MAAM,SAAS;GAEnC;EACF;EACA,MAAM,EAAE,WAAW,iBAAiB;EAGpC,IAF8B,eAAe,cAGjB,KAAK,YAAY,gBAC3C,cAAc,KAAK,YAAY,aAC/B,iBAAiB,KAAK,YAAY,cAElC;EAGF,KAAK,uBAAuB,YAAY;CAC1C;CAEA,qBAAmC;EACjC,IAAI,SAAS,QACX;EAEF,KAAK,0BAA0B;EAC/B,KAAK,cAAc;EACnB,KAAK,aAAa;EAClB,KAAK,OAAO;CACd;CAKA,2BAAyC;EACvC,KAAK,sBAAsB,KAAA;EAC3B,KAAK,sBAAsB,KAAA;EAC3B,KAAK,kBAAkB,KAAA;CACzB;CAEA,gBAAwB,YAAmC;EACzD,IAAI,eAAe;EACnB,KAAK,MAAM,SAAS,SAGlB,IAAI,MAAM,WAAW,KAAK,iBAAiB;GACzC,MAAM,YAAY,MAAM,cAAc,EAAE,CAAC;GACzC,IACE,KAAK,IAAI,YAAY,KAAK,YAAY,YAAY,KAClD,qBACA;IAGA,MAAM,mBAAmB,KAAK,aAAa;IAC3C,MAAM,SAAS,KAAK,gBAAgB,gBAAgB;IAEpD,KAAK,uBAAuB;IAC5B,KAAK,wBAAwB;IAE7B,MAAM,oBACJ,UAAU,OAAO,KAAK,yBAAyB,MAAM,IAAI,KAAA;IAC3D,IAAI,qBAAqB,MAAM;KAC7B,MAAM,oBAAoB,oBAAoB;KAC9C,KAAK,eACH,mBACA,kBACA,KAAK,WACP;KACA,IAAI,KAAK,mBAAmB,MAK1B,KAAK,gBAAgB,YAAY;IAErC;IACA,IACE,KAAK,uBAAuB,QAC5B,KAAK,uBAAuB,KAAK,mBAAmB,GACpD;KACA,KAAK,sBAAsB,KAAA;KAC3B,KAAK,kBAAkB,KAAA;IACzB;IACA,eAAe;GACjB;EACF,OAOK,IACH,MAAM,WAAW,KAAK,OAAO,WAC7B,MAAM,WAAW,KAAK,OAAO,SAC7B;GACA,MAAM,OACJ,MAAM,WAAW,KAAK,OAAO,UAAU,KAAK,SAAS,KAAK;GAC5D,MAAM,YAAY,MAAM,cAAc,EAAE,CAAC;GACzC,IAAI,cAAc,KAAK,QAAQ;IAK7B,MAAM,mBAAmB,KAAK,aAAa;IAC3C,MAAM,SAAS,KAAK,gBAAgB,gBAAgB;IACpD,KAAK,cAAc,MAAM,SAAS;IAClC,MAAM,oBACJ,UAAU,OAAO,KAAK,yBAAyB,MAAM,IAAI,KAAA;IAC3D,IAAI,qBAAqB,MAAM;KAC7B,MAAM,oBAAoB,oBAAoB;KAC9C,KAAK,eACH,mBACA,kBACA,KAAK,WACP;KACA,IAAI,KAAK,mBAAmB,MAC1B,KAAK,gBAAgB,YAAY;IAErC;IACA,IACE,KAAK,uBAAuB,QAC5B,KAAK,uBAAuB,KAAK,mBAAmB,GACpD;KACA,KAAK,sBAAsB,KAAA;KAC3B,KAAK,kBAAkB,KAAA;IACzB;IACA,eAAe;GACjB;EACF,OAEK;GACH,KAAK,cAAc;GACnB,KAAK,cAAc;GACnB,eAAe;EACjB;EAMF,IAAI,cACF,KAAK,OAAO,IAAI;CAEpB;;;;;CAMA,2BACE,iBACA,WACQ;EACR,OAAO,kBAAkB,YACrB,YAAY,KAAK,sBAAsB,IACvC;CACN;;;;;;;;CASA,gBACE,WACA,iBAAwE,KACrE,UACuB;EAC1B,IAAI;EAEJ,MAAM,EAAE,wBAAwB;EAChC,IAAI,uBAAuB,MAAM;GAC/B,MAAM,cAAc,KAAK,SAAS,IAAI,oBAAoB,EAAE;GAC5D,IACE,eAAe,QACf,eAAe,IAAI,oBAAoB,EAAE,MAAM,aAE/C,OAAO;GAET,IAAI,eAAe,MACjB,cAAc;EAElB;EAMA,IAAI,aAAa,GACf;EAGF,MAAM,EAAE,YAAY,WAAW,WAAW,iBAAiB,KAAK;EAChE,IAAI,eAAe,MAAM,cAAc,IACrC;EAGF,MAAM,iBAAiB,KAAK,UAAU;EAEtC,IAAI,cAAc,MAAM,iBAAiB,IACvC;EAGF,KAAK,IAAI,QAAQ,YAAY,SAAS,WAAW,SAAS;GACxD,MAAM,OAAO,KAAK,MAAM;GACxB,IAAI,QAAQ,MACV;GAGF,MAAM,kBAAkB,KAAK,iBAAiB,IAAI,KAAK;GAGvD,IAF2B,kBAAkB,KAAK,UAExB,WACxB;GAGF,IAAI,mBAAmB,YAAY,gBACjC;GAIF,IAAI,EADoB,eAAe,IAAI,KAAK,KAAK,EAAE,MAAM,OACvC;IACpB,gBAAgB;IAChB;GACF;GAEA,IAAI,mBAAmB,WACrB,OAAO;IACL,MAAM;IACN,IAAI,KAAK,KAAK;IACd,gBAAgB,kBAAkB;GACpC;GAQF,MAAM,mBAJoB,KAAK,2BAC7B,iBACA,SAEuC,IAAI;GAC7C,MAAM,aAAa,KAAK,SAAS,uBAAuB,gBAAgB;GACxE,IAAI,cAAc,MAAM;IACtB,MAAM,kBAAkB,kBAAkB,WAAW;IACrD,OAAO;KACL,MAAM;KACN,IAAI,KAAK,KAAK;KACd,YAAY,WAAW;KACvB,MAAM,WAAW;KACjB,gBAAgB,kBAAkB;IACpC;GACF;EACF;EAIA,IAAI,eAAe,MACjB,KACE,IAAI,QAAQ,YAAY,QAAQ,GAChC,QAAQ,KAAK,MAAM,QACnB,SACA;GACA,MAAM,YAAY,KAAK,MAAM;GAC7B,IACE,aAAa,QACb,eAAe,IAAI,UAAU,KAAK,EAAE,MAAM,WAE1C,OAAO;IACL,MAAM;IACN,IAAI,UAAU,KAAK;IACnB,gBAAgB;GAClB;EAEJ;CAKJ;;;;;;;;CASA,yBAAiC,QAA0C;EACzE,MAAM,OAAO,KAAK,SAAS,IAAI,OAAO,EAAE;EACxC,IAAI,QAAQ,MACV;EAGF,MAAM,gBAAgB,KAAK,iBAAiB;EAC5C,IAAI,OAAO,SAAS,QAAQ;GAC1B,MAAM,kBAAkB,gBAAgB,KAAK;GAC7C,OAAO,KAAK,eAAe,kBAAkB,OAAO,cAAc;EACpE;EAEA,MAAM,eACJ,KAAK,SAAS,SACV,KAAK,SAAS,gBAAgB,OAAO,YAAY,OAAO,IAAI,IAC5D,KAAK,SAAS,gBAAgB,OAAO,UAAU;EACrD,IAAI,gBAAgB,MAClB;EAEF,MAAM,kBAAkB,gBAAgB,KAAK,MAAM,aAAa;EAChE,OAAO,KAAK,eAAe,kBAAkB,OAAO,cAAc;CACpE;;;;;CAMA,eACE,iBACA,iBACA,aACM;EACN,IAAI,KAAK,QAAQ,MACf;EAEF,MAAM,yBAAyB,mBAC7B,KAAK,eAAe,eAAe,CACrC;EACA,MAAM,yBAAyB,mBAAmB,eAAe;EAEjE,MAAM,EAAE,kBAAkB,uBAAuB;EACjD,MAAM,uBAAuB,mBAC3B,KAAK,oBAAoB,yBAAyB,kBAAkB,CACtE;EACA,MAAM,EAAE,gBAAgB,qBACtB,KAAK,2BAA2B,sBAAsB;EACxD,MAAM,uBAAuB;EAE7B,MAAM,gBAAgB,uBAAuB;EAC7C,IACE,2BAA2B,KAAK,YAAY,aAC5C,2BAA2B,0BAC3B,yBAAyB,wBACzB,CAAC,eAED;EAEF,KAAK,0BAA0B;EAC/B,IAAI,yBAAyB,wBAAwB,eAAe;GAClE,KAAK,mBAAmB;GACxB,KAAK,2BAA2B,WAAW;EAC7C;EACA,IAAI,yBAAyB,sBAC3B,KAAK,KAAK,SAAS;GAAE,KAAK;GAAsB,UAAU;EAAU,CAAC;EAIvE,KAAK,YAAY,YAAY;EAC7B,KAAK,YAAY;EACjB,KAAK,cAAc;CACrB;;;;;CAMA,uBAA+B,QAAsC;EACnE,MAAM,MAAM,KAAK,uBAAuB,MAAM;EAC9C,IAAI,OAAO,MACT,OAAO;EAET,OAAO,mBAAmB,KAAK,aAAa,CAAC,MAAM,mBAAmB,GAAG;CAC3E;CAEA,eAA8B;EAC5B,IAAI,CAAC,KAAK,aACR,OAAO,KAAK;EAEd,KAAK,cAAc;EACnB,MAAM,gBAAgB,KAAK,MAAM,aAAa;EAC9C,KAAK,YAAY,KAAK,eAAe,gBAAgB,KAAK,gBAAgB;EAC1E,OAAO,KAAK;CACd;CAEA,YAA2B;EACzB,IAAI,CAAC,KAAK,aACR,OAAO,KAAK;EAEd,KAAK,cAAc;EACnB,KAAK,SAAS,KAAK,MAAM,sBAAsB,CAAC,CAAC,UAAU;EAC3D,OAAO,KAAK;CACd;CAEA,kBAAiC;EAC/B,OAAO,KAAK;CACd;CAEA,uBAAqC;EACnC,IAAI,KAAK,mBAAmB,MAC1B;EAGF,MAAM,eAAe,KAAK,kBAAkB,KAAK,eAAe;EAChE,IAAI,yBAAyB,KAAK,cAAc,YAAY,GAC1D;EAGF,KAAK,eAAe;EACpB,KAAK,gBAAgB,iBAAiB,YAAY;CACpD;CAEA,eAA6B;EAE3B,IAAI,KAAK,gBAAgB,SAAS,GAChC;EAEF,MAAM,YAAY,KAAK,aAAa;EACpC,KAAK,MAAM,YAAY,KAAK,iBAC1B,SAAS,WAAW,IAAI;CAE5B;;;;;;CAOA,sBAA8B,KAAqB;EACjD,IAAI,MAAM;EACV,IAAI,OAAO,KAAK,MAAM,SAAS;EAC/B,IAAI,SAAS,KAAK,MAAM;EAExB,OAAO,OAAO,MAAM;GAClB,MAAM,MAAO,MAAM,QAAS;GAC5B,MAAM,OAAO,KAAK,MAAM;GACxB,IAAI,QAAQ,MACV,MAAM,IAAI,MAAM,oDAAoD;GAGtE,IAAI,KAAK,MAAM,KAAK,SAAS,KAAK;IAChC,SAAS;IACT,OAAO,MAAM;GACf,OACE,MAAM,MAAM;EAEhB;EAEA,OAAO;CACT;;;;;;CAOA,qBAA6B,QAAwB;EACnD,IAAI,MAAM;EACV,IAAI,OAAO,KAAK,MAAM,SAAS;EAC/B,IAAI,SAAS;EAEb,OAAO,OAAO,MAAM;GAClB,MAAM,MAAO,MAAM,QAAS;GAC5B,MAAM,OAAO,KAAK,MAAM;GACxB,IAAI,QAAQ,MACV,MAAM,IAAI,MAAM,mDAAmD;GAGrE,IAAI,KAAK,OAAO,QAAQ;IACtB,SAAS;IACT,MAAM,MAAM;GACd,OACE,OAAO,MAAM;EAEjB;EAEA,OAAO;CACT;;;;;;;CAQA,gBACE,aAAa,GACb,OACM;EACN,IAAI,KAAK,MAAM,WAAW,GAAG;GAC3B,KAAK,eAAe;GACpB;EACF;EAEA,MAAM,SAAS,KAAK,UAAU;EAC9B,IAAI,aAAa;EACjB,IAAI,aAAa,GAAG;GAClB,MAAM,eAAe,KAAK,MAAM,aAAa;GAC7C,IAAI,gBAAgB,MAClB,MAAM,IAAI,MAAM,+CAA+C;GAEjE,aAAa,aAAa,MAAM,aAAa,SAAS,OAAO;EAC/D;EAEA,KAAK,IAAI,QAAQ,YAAY,QAAQ,KAAK,MAAM,QAAQ,SAAS;GAC/D,MAAM,OAAO,KAAK,MAAM;GACxB,IAAI,QAAQ,MACV,MAAM,IAAI,MAAM,8CAA8C;GAEhE,KAAK,MAAM;GACX,IAAI,KAAK,SAAS,QAAQ;IACxB,MAAM,WAAW,KAAK,SAAS,6BAC7B,KAAK,KAAK,QACZ;IACA,IAAI,YAAY,MAKd,OAAO,OAAO,KAAK,KAAK,UAAU,QAAQ;IAE5C,KAAK,SAAS,KAAK,SAAS,oBAC1B,KAAK,KAAK,UACV,YACA,OACA,KAAK,KAAK,eAAe,CAAC,CAC5B;GACF,OACE,KAAK,SAAS,KAAK,SAAS,oBAC1B,KAAK,KAAK,MACV,YACA,OACA,KAAK,KAAK,eAAe,CAAC,CAC5B;GAEF,cAAc,KAAK;GACnB,IAAI,QAAQ,KAAK,MAAM,SAAS,GAC9B,cAAc,OAAO;EAEzB;EAEA,IAAI,eAAe,KAAK,cACtB,KAAK,cAAc;EAErB,KAAK,eAAe;CACtB;CAEA,mBAA2B;EACzB,KAAK,YAAY,YAAY;EAC7B,KAAK,YAAY,aAAa;EAC9B,KAAK,YAAY,YAAY;EAC7B,KAAK,YAAY,eAAe;EAChC,KAAK,YAAY,YAAY;EAC7B,KAAK,YAAY,eAAe;CAClC;CAOA,4BAAoC;EAClC,OAAO,KAAK,UAAU,CAAC,CAAC,MAAM,KAAK,iBAAiB;CACtD;AACF;AAEA,SAAS,oBACP,MACQ;CACR,KAAK,SAAS,QAAQ,IAAI;CAC1B,IAAI,KAAK,SAAS,QAChB,OAAO,KAAK,SAAS,oBACnB,KAAK,KAAK,UACV,KAAK,KACL,KAAA,GACA,KAAK,KAAK,eAAe,CAAC,CAC5B;MAEA,OAAO,KAAK,SAAS,oBACnB,KAAK,KAAK,MACV,KAAK,KACL,KAAA,GACA,KAAK,KAAK,eAAe,CAAC,CAC5B;AAEJ;AAEA,SAAS,gBACP,iBACA,aACS;CACT,OACE,CAAC,eACC,gBAAgB,SAAS,gBACzB,YAAY,SAAS,cACvB,MACC,gBAAgB,aAAa,eAC3B,YAAY,aAAa,aAC5B,gBAAgB,cAAc,YAAY;AAE9C;AAEA,SAAS,2BACP,iBACA,aACS;CACT,QACG,gBAAgB,YAAY,eAC1B,YAAY,YAAY,cAC1B,gBAAgB,sBAAsB,YACpC,YAAY,sBAAsB,WACpC,gBAAgB,qBAAqB,YACnC,YAAY,qBAAqB,UACpC,gBAAgB,cAAc,YAAY,cACzC,gBAAgB,aAAa,cAC3B,YAAY,aAAa,aAC3B,gBAAgB,kBAAkB,aAChC,YAAY,kBAAkB,YAChC,gBAAgB,kBAAkB,kBAChC,YAAY,kBAAkB,iBAChC,gBAAgB,mBAAmB,YACjC,YAAY,mBAAmB,WACjC,gBAAgB,6BAAA,QAEd,YAAY,6BAAA;AAGnB;AAEA,SAAS,qCACP,iBACA,aACS;CACT,QACG,gBAAgB,qBAAqB,YACnC,YAAY,qBAAqB,WACnC,gBAAgB,kBAAkB,kBAChC,YAAY,kBAAkB,iBAChC,gBAAgB,mBAAmB,YACjC,YAAY,mBAAmB,WACjC,gBAAgB,6BAAA,QAEd,YAAY,6BAAA;AAGnB;AAEA,SAAS,oBAAoB,OAAyB;CACpD,IAAI,iBAAiB,YACnB,OAAO;CAET,OACE,YAAY,KAAK,MAChB,MAAM,aAAA,eAA+B,KACpC,MAAM,aAAA,gBAAgC,KACtC,MAAM,aAAA,iBAAiC;AAE7C;AAEA,SAAS,wBAAwB,OAAkC;CACjE,MAAM,QAAQ,wBAAwB,MAAM,OAAO,MAAM,IAAI;CAC7D,MAAM,MAAM,wBAAwB,MAAM,KAAK,MAAM,WAAW,MAAM,IAAI;CAC1E,OAAO,UAAU,MAAM,QAAQ,GAAG,MAAM,GAAG;AAC7C;AAEA,SAAS,wBACP,YACA,MACQ;CACR,IAAI,QAAQ,MACV,OAAO,GAAG;CAGZ,OAAO,GAAG,SAAS,cAAc,MAAM,MAAM;AAC/C;AAEA,SAAS,WACP,MACA,eACA,cAAc,OACL;CACT,IAAI,KAAK,SAAS,QAChB,OAAO,KAAK,SAAS,OAAO;EAC1B,eAAe;EACf;EACA,UAAU,KAAK,KAAK;EACpB;EACA,iBAAiB,KAAK,KAAK,eAAe,CAAC;CAC7C,CAAC;MAED,OAAO,KAAK,SAAS,OAAO;EAC1B,eAAe;EACf;EACA,MAAM,KAAK,KAAK;EAChB;EACA,iBAAiB,KAAK,KAAK,eAAe,CAAC;CAC7C,CAAC;AAEL;;;;;;;AAQA,SAAS,sBACP,WACA,SACA,aACM;CACN,IAAI,eAAe,MAAM;EACvB,IAAI,UAAU,eAAe,SAC3B,UAAU,QAAQ,OAAO;EAE3B;CACF;CAEA,IAAI,YAAY,gBAAgB,SAC9B,YAAY,MAAM,OAAO;AAE7B;AAEA,SAAS,eAA4B,MAA0C;CAC7E,QAAQ,KAAK,aAAa,UAAU,KAAK;AAC3C;AAEA,SAAS,aACP,eACA,EACE,oBACA,uBACA,qBAE+C;CACjD,IAAI,cAAc,WAAW,GAC3B;CAGF,IAAI,sBAAsB,mBACxB,OAAO;CAGT,IAAI,CAAC,uBACH;CAGF,MAAM,eAAoD,CAAC;CAE3D,KAAK,MAAM,gBAAgB,eACzB,IAAI,eAAe,aAAa,IAAI,GAClC,aAAa,KAAK,YAAY;CAIlC,OAAO,aAAa,SAAS,IAAI,eAAe,KAAA;AAClD"}
|