@luan.sh/pi-developer-messages 0.3.6
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 +199 -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/node_modules/typebox/build/compile/code.d.mts +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/compile/code.mjs +65 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/compile/compile.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/compile/compile.mjs +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/compile/index.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/compile/index.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/compile/validator.d.mts +35 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/compile/validator.mjs +91 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/error/errors.d.mts +208 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/error/errors.mjs +18 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/error/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/error/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/_registry.d.mts +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/_registry.mjs +96 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/date.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/date.mjs +19 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/date_time.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/date_time.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/duration.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/duration.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/email.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/email.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/format.d.mts +22 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/format.mjs +22 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/hostname.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/hostname.mjs +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/idn_email.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/idn_email.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/idn_hostname.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/idn_hostname.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/idna/format/bidi.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/idna/format/bidi.mjs +98 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/idna/format/puny.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/idna/format/puny.mjs +144 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/idna/hostname.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/idna/hostname.mjs +16 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/idna/idn-hostname.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/idna/idn-hostname.mjs +23 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/idna/index.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/idna/index.mjs +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/idna/label/ascii.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/idna/label/ascii.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/idna/label/puny.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/idna/label/puny.mjs +28 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/idna/label/unicode.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/idna/label/unicode.mjs +106 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/idna/pattern/pattern.d.mts +30 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/idna/pattern/pattern.mjs +70 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/index.d.mts +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/index.mjs +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/ipv4.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/ipv4.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/ipv6.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/ipv6.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/iri.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/iri.mjs +31 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/iri_reference.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/iri_reference.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/json_pointer.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/json_pointer.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/json_pointer_uri_fragment.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/json_pointer_uri_fragment.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/regex.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/regex.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/relative_json_pointer.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/relative_json_pointer.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/time.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/time.mjs +32 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/uri.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/uri.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/uri_reference.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/uri_reference.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/uri_template.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/uri_template.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/url.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/url.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/uuid.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/format/uuid.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/guard/emit.d.mts +56 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/guard/emit.mjs +193 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/guard/globals.d.mts +35 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/guard/globals.mjs +90 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/guard/guard.d.mts +71 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/guard/guard.mjs +233 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/guard/index.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/guard/index.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/guard/native.d.mts +20 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/guard/native.mjs +60 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/guard/string.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/guard/string.mjs +176 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/index.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/index.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/build.d.mts +39 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/build.mjs +118 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/check.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/check.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/compile.d.mts +22 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/compile.mjs +46 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/_context.d.mts +35 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/_context.mjs +129 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/_exact_optional.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/_exact_optional.mjs +20 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/_externals.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/_externals.mjs +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/_functions.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/_functions.mjs +65 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/_reducer.d.mts +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/_reducer.mjs +45 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/_refine.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/_refine.mjs +29 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/_regexp.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/_regexp.mjs +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/_stack.d.mts +18 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/_stack.mjs +107 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/_unique.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/_unique.mjs +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/additionalItems.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/additionalItems.mjs +60 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/additionalProperties.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/additionalProperties.mjs +111 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/allOf.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/allOf.mjs +47 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/anyOf.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/anyOf.mjs +52 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/boolean.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/boolean.mjs +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/const.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/const.mjs +30 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/contains.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/contains.mjs +54 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/dependencies.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/dependencies.mjs +45 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/dependentRequired.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/dependentRequired.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/dependentSchemas.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/dependentSchemas.mjs +38 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/dynamicRef.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/dynamicRef.mjs +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/enum.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/enum.mjs +33 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/exclusiveMaximum.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/exclusiveMaximum.mjs +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/exclusiveMinimum.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/exclusiveMinimum.mjs +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/format.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/format.mjs +26 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/if.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/if.mjs +47 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/index.d.mts +48 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/index.mjs +54 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/items.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/items.mjs +88 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/maxContains.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/maxContains.mjs +42 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/maxItems.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/maxItems.mjs +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/maxLength.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/maxLength.mjs +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/maxProperties.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/maxProperties.mjs +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/maximum.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/maximum.mjs +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/minContains.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/minContains.mjs +51 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/minItems.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/minItems.mjs +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/minLength.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/minLength.mjs +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/minProperties.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/minProperties.mjs +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/minimum.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/minimum.mjs +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/multipleOf.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/multipleOf.mjs +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/not.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/not.mjs +39 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/oneOf.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/oneOf.mjs +59 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/pattern.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/pattern.mjs +29 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/patternProperties.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/patternProperties.mjs +45 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/prefixItems.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/prefixItems.mjs +35 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/properties.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/properties.mjs +75 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/propertyNames.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/propertyNames.mjs +39 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/recursiveRef.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/recursiveRef.mjs +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/ref.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/ref.mjs +52 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/required.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/required.mjs +32 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/schema.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/schema.mjs +356 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/type.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/type.mjs +70 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/unevaluatedItems.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/unevaluatedItems.mjs +51 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/unevaluatedProperties.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/unevaluatedProperties.mjs +51 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/uniqueItems.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/engine/uniqueItems.mjs +51 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/errors.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/errors.mjs +24 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/index.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/index.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/parse.d.mts +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/parse.mjs +27 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/pointer/index.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/pointer/index.mjs +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/pointer/pointer.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/pointer/pointer.mjs +106 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/pointer/pointer_get.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/pointer/pointer_get.mjs +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/resolve/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/resolve/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/resolve/ref.d.mts +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/resolve/ref.mjs +156 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/resolve/resolve.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/resolve/resolve.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/schema.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/schema.mjs +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/_canonical.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/_canonical.mjs +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/_comparer.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/_comparer.mjs +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/_elements.d.mts +18 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/_elements.mjs +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/additionalProperties.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/additionalProperties.mjs +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/allOf.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/allOf.mjs +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/anyOf.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/anyOf.mjs +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/const.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/const.mjs +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/enum.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/enum.mjs +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/if.d.mts +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/if.mjs +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/items.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/items.mjs +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/oneOf.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/oneOf.mjs +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/patternProperties.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/patternProperties.mjs +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/prefixItems.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/prefixItems.mjs +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/properties.d.mts +32 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/properties.mjs +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/propertyNames.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/propertyNames.mjs +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/ref.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/ref.mjs +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/required.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/required.mjs +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/schema.d.mts +59 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/schema.mjs +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/static.d.mts +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/static.mjs +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/type.d.mts +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/type.mjs +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/unevaluatedProperties.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/static/unevaluatedProperties.mjs +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/_refine.d.mts +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/_refine.mjs +18 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/additionalItems.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/additionalItems.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/additionalProperties.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/additionalProperties.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/allOf.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/allOf.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/anchor.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/anchor.mjs +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/anyOf.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/anyOf.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/const.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/const.mjs +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/contains.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/contains.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/default.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/default.mjs +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/defs.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/defs.mjs +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/dependencies.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/dependencies.mjs +16 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/dependentRequired.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/dependentRequired.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/dependentSchemas.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/dependentSchemas.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/dynamicAnchor.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/dynamicAnchor.mjs +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/dynamicRef.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/dynamicRef.mjs +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/else.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/else.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/enum.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/enum.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/exclusiveMaximum.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/exclusiveMaximum.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/exclusiveMinimum.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/exclusiveMinimum.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/format.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/format.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/id.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/id.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/if.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/if.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/index.d.mts +51 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/index.mjs +57 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/items.d.mts +19 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/items.mjs +26 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/maxContains.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/maxContains.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/maxItems.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/maxItems.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/maxLength.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/maxLength.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/maxProperties.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/maxProperties.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/maximum.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/maximum.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/minContains.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/minContains.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/minItems.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/minItems.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/minLength.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/minLength.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/minProperties.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/minProperties.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/minimum.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/minimum.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/multipleOf.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/multipleOf.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/not.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/not.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/oneOf.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/oneOf.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/pattern.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/pattern.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/patternProperties.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/patternProperties.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/prefixItems.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/prefixItems.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/properties.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/properties.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/propertyNames.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/propertyNames.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/recursiveAnchor.d.mts +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/recursiveAnchor.mjs +19 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/recursiveRef.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/recursiveRef.mjs +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/ref.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/ref.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/required.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/required.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/schema.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/schema.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/then.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/then.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/type.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/type.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/unevaluatedItems.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/unevaluatedItems.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/unevaluatedProperties.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/unevaluatedProperties.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/uniqueItems.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/schema/types/uniqueItems.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/arguments/arguments.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/arguments/arguments.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/arguments/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/arguments/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/environment/environment.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/environment/environment.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/environment/evaluate.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/environment/evaluate.mjs +37 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/environment/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/environment/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/hashing/hash.d.mts +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/hashing/hash.mjs +232 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/hashing/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/hashing/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/index.d.mts +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/index.mjs +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/_config.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/_config.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/_locale.d.mts +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/_locale.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/ar_001.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/ar_001.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/bn_BD.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/bn_BD.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/cs_CZ.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/cs_CZ.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/de_DE.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/de_DE.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/el_GR.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/el_GR.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/en_US.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/en_US.mjs +39 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/es_419.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/es_419.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/es_AR.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/es_AR.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/es_ES.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/es_ES.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/es_MX.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/es_MX.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/fa_IR.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/fa_IR.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/fil_PH.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/fil_PH.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/fr_CA.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/fr_CA.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/fr_FR.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/fr_FR.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/ha_NG.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/ha_NG.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/hi_IN.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/hi_IN.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/hu_HU.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/hu_HU.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/id_ID.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/id_ID.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/it_IT.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/it_IT.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/ja_JP.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/ja_JP.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/ko_KR.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/ko_KR.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/ms_MY.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/ms_MY.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/nl_NL.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/nl_NL.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/pl_PL.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/pl_PL.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/pt_BR.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/pt_BR.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/pt_PT.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/pt_PT.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/ro_RO.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/ro_RO.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/ru_RU.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/ru_RU.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/sv_SE.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/sv_SE.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/sw_TZ.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/sw_TZ.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/th_TH.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/th_TH.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/tr_TR.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/tr_TR.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/uk_UA.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/uk_UA.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/ur_PK.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/ur_PK.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/vi_VN.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/vi_VN.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/yo_NG.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/yo_NG.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/zh_Hans.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/zh_Hans.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/zh_Hant.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/locale/zh_Hant.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/memory/assign.d.mts +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/memory/assign.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/memory/clone.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/memory/clone.mjs +113 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/memory/create.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/memory/create.mjs +30 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/memory/discard.d.mts +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/memory/discard.mjs +18 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/memory/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/memory/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/memory/memory.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/memory/memory.mjs +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/memory/metrics.d.mts +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/memory/metrics.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/memory/update.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/memory/update.mjs +32 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/settings/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/settings/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/settings/settings.d.mts +80 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/settings/settings.mjs +36 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/system.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/system.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/unreachable/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/unreachable/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/unreachable/unreachable.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/system/unreachable/unreachable.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/_add_immutable.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/_add_immutable.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/_add_optional.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/_add_optional.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/_add_readonly.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/_add_readonly.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/_remove_immutable.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/_remove_immutable.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/_remove_optional.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/_remove_optional.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/_remove_readonly.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/_remove_readonly.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/capitalize.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/capitalize.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/conditional.d.mts +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/conditional.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/constructor_parameters.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/constructor_parameters.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/evaluate.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/evaluate.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/exclude.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/exclude.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/extract.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/extract.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/index.d.mts +30 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/index.mjs +30 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/indexed.d.mts +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/indexed.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/instance_type.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/instance_type.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/interface.d.mts +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/interface.mjs +22 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/keyof.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/keyof.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/lowercase.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/lowercase.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/mapped.d.mts +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/mapped.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/module.d.mts +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/module.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/non_nullable.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/non_nullable.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/omit.d.mts +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/omit.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/parameters.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/parameters.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/partial.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/partial.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/pick.d.mts +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/pick.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/readonly_object.d.mts +16 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/readonly_object.mjs +19 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/required.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/required.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/return_type.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/return_type.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/uncapitalize.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/uncapitalize.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/uppercase.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/uppercase.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/with.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/action/with.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/call/distribute_arguments.d.mts +20 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/call/distribute_arguments.mjs +66 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/call/instantiate.d.mts +21 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/call/instantiate.mjs +79 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/call/resolve_arguments.d.mts +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/call/resolve_arguments.mjs +33 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/call/resolve_target.d.mts +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/call/resolve_target.mjs +27 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/conditional/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/conditional/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/conditional/instantiate.d.mts +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/conditional/instantiate.mjs +23 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/constructor_parameters/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/constructor_parameters/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/constructor_parameters/instantiate.d.mts +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/constructor_parameters/instantiate.mjs +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/cyclic/candidates.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/cyclic/candidates.mjs +16 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/cyclic/check.d.mts +21 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/cyclic/check.mjs +45 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/cyclic/dependencies.d.mts +22 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/cyclic/dependencies.mjs +47 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/cyclic/extends.d.mts +28 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/cyclic/extends.mjs +47 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/cyclic/index.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/cyclic/index.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/cyclic/instantiate.d.mts +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/cyclic/instantiate.mjs +31 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/cyclic/target.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/cyclic/target.mjs +16 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/enum/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/enum/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/enum/typescript_enum_to_enum_values.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/enum/typescript_enum_to_enum_values.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/evaluate/broaden.d.mts +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/evaluate/broaden.mjs +37 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/evaluate/compare.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/evaluate/compare.mjs +18 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/evaluate/composite.d.mts +37 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/evaluate/composite.mjs +60 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/evaluate/distribute.d.mts +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/evaluate/distribute.mjs +33 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/evaluate/evaluate.d.mts +26 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/evaluate/evaluate.mjs +56 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/evaluate/flatten.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/evaluate/flatten.mjs +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/evaluate/index.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/evaluate/index.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/evaluate/instantiate.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/evaluate/instantiate.mjs +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/evaluate/narrow.d.mts +20 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/evaluate/narrow.mjs +31 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/exclude/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/exclude/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/exclude/instantiate.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/exclude/instantiate.mjs +16 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/exclude/operation.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/exclude/operation.mjs +22 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/extract/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/extract/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/extract/instantiate.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/extract/instantiate.mjs +16 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/extract/operation.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/extract/operation.mjs +22 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/helpers/index.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/helpers/index.mjs +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/helpers/keys.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/helpers/keys.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/helpers/keys_to_indexer.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/helpers/keys_to_indexer.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/helpers/union.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/helpers/union.mjs +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/immutable/instantiate_add.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/immutable/instantiate_add.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/immutable/instantiate_remove.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/immutable/instantiate_remove.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/index.d.mts +31 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/index.mjs +37 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexable/from_cyclic.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexable/from_cyclic.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexable/from_dependent.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexable/from_dependent.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexable/from_enum.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexable/from_enum.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexable/from_intersect.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexable/from_intersect.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexable/from_literal.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexable/from_literal.mjs +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexable/from_template_literal.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexable/from_template_literal.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexable/from_type.d.mts +19 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexable/from_type.mjs +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexable/from_union.d.mts +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexable/from_union.mjs +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexable/to_indexable.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexable/to_indexable.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexable/to_indexable_keys.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexable/to_indexable_keys.mjs +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexed/array_indexer.d.mts +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexed/array_indexer.mjs +18 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexed/from_array.d.mts +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexed/from_array.mjs +35 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexed/from_object.d.mts +16 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexed/from_object.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexed/from_tuple.d.mts +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexed/from_tuple.mjs +35 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexed/from_type.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexed/from_type.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexed/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexed/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexed/instantiate.d.mts +16 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/indexed/instantiate.mjs +28 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/instance_type/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/instance_type/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/instance_type/instantiate.d.mts +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/instance_type/instantiate.mjs +21 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/instantiate.d.mts +178 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/instantiate.mjs +158 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/interface/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/interface/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/interface/instantiate.d.mts +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/interface/instantiate.mjs +23 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/intrinsics/from_literal.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/intrinsics/from_literal.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/intrinsics/from_template_literal.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/intrinsics/from_template_literal.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/intrinsics/from_type.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/intrinsics/from_type.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/intrinsics/from_union.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/intrinsics/from_union.mjs +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/intrinsics/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/intrinsics/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/intrinsics/instantiate.d.mts +38 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/intrinsics/instantiate.mjs +52 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/intrinsics/mapping.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/intrinsics/mapping.mjs +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/keyof/from_any.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/keyof/from_any.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/keyof/from_array.d.mts +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/keyof/from_array.mjs +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/keyof/from_object.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/keyof/from_object.mjs +20 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/keyof/from_record.d.mts +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/keyof/from_record.mjs +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/keyof/from_tuple.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/keyof/from_tuple.mjs +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/keyof/from_type.d.mts +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/keyof/from_type.mjs +23 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/keyof/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/keyof/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/keyof/instantiate.d.mts +16 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/keyof/instantiate.mjs +29 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/mapped/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/mapped/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/mapped/instantiate.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/mapped/instantiate.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/mapped/mapped_operation.d.mts +22 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/mapped/mapped_operation.mjs +42 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/mapped/mapped_variants.d.mts +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/mapped/mapped_variants.mjs +39 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/module/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/module/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/module/instantiate.d.mts +19 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/module/instantiate.mjs +36 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/non_nullable/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/non_nullable/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/non_nullable/instantiate.d.mts +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/non_nullable/instantiate.mjs +22 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/object/collapse.d.mts +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/object/collapse.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/object/from_cyclic.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/object/from_cyclic.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/object/from_dependent.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/object/from_dependent.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/object/from_intersect.d.mts +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/object/from_intersect.mjs +22 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/object/from_object.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/object/from_object.mjs +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/object/from_tuple.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/object/from_tuple.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/object/from_type.d.mts +16 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/object/from_type.mjs +23 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/object/from_union.d.mts +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/object/from_union.mjs +19 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/object/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/object/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/omit/from_type.d.mts +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/omit/from_type.mjs +18 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/omit/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/omit/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/omit/instantiate.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/omit/instantiate.mjs +16 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/optional/instantiate_add.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/optional/instantiate_add.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/optional/instantiate_remove.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/optional/instantiate_remove.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/parameters/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/parameters/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/parameters/instantiate.d.mts +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/parameters/instantiate.mjs +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/partial/from_cyclic.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/partial/from_cyclic.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/partial/from_dependent.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/partial/from_dependent.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/partial/from_intersect.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/partial/from_intersect.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/partial/from_object.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/partial/from_object.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/partial/from_type.d.mts +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/partial/from_type.mjs +20 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/partial/from_union.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/partial/from_union.mjs +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/partial/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/partial/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/partial/instantiate.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/partial/instantiate.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/patterns/index.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/patterns/index.mjs +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/patterns/pattern.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/patterns/pattern.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/patterns/template.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/patterns/template.mjs +20 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/pick/from_type.d.mts +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/pick/from_type.mjs +20 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/pick/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/pick/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/pick/instantiate.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/pick/instantiate.mjs +16 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/priority/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/priority/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/priority/priority.d.mts +20 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/priority/priority.mjs +27 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/readonly/instantiate_add.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/readonly/instantiate_add.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/readonly/instantiate_remove.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/readonly/instantiate_remove.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/readonly_object/from_array.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/readonly_object/from_array.mjs +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/readonly_object/from_cyclic.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/readonly_object/from_cyclic.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/readonly_object/from_dependent.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/readonly_object/from_dependent.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/readonly_object/from_intersect.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/readonly_object/from_intersect.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/readonly_object/from_object.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/readonly_object/from_object.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/readonly_object/from_tuple.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/readonly_object/from_tuple.mjs +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/readonly_object/from_type.d.mts +18 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/readonly_object/from_type.mjs +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/readonly_object/from_union.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/readonly_object/from_union.mjs +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/readonly_object/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/readonly_object/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/readonly_object/instantiate.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/readonly_object/instantiate.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/from_key.d.mts +24 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/from_key.mjs +40 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/from_key_any.d.mts +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/from_key_any.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/from_key_boolean.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/from_key_boolean.mjs +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/from_key_enum.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/from_key_enum.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/from_key_integer.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/from_key_integer.mjs +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/from_key_intersect.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/from_key_intersect.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/from_key_literal.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/from_key_literal.mjs +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/from_key_number.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/from_key_number.mjs +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/from_key_string.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/from_key_string.mjs +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/from_key_template_literal.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/from_key_template_literal.mjs +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/from_key_union.d.mts +20 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/from_key_union.mjs +39 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/instantiate.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/instantiate.mjs +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/record_create.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/record/record_create.mjs +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/ref/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/ref/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/ref/instantiate.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/ref/instantiate.mjs +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/required/from_cyclic.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/required/from_cyclic.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/required/from_dependent.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/required/from_dependent.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/required/from_intersect.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/required/from_intersect.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/required/from_object.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/required/from_object.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/required/from_type.d.mts +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/required/from_type.mjs +20 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/required/from_union.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/required/from_union.mjs +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/required/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/required/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/required/instantiate.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/required/instantiate.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/rest/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/rest/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/rest/spread.d.mts +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/rest/spread.mjs +19 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/return_type/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/return_type/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/return_type/instantiate.d.mts +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/return_type/instantiate.mjs +21 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/template_literal/create.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/template_literal/create.mjs +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/template_literal/decode.d.mts +30 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/template_literal/decode.mjs +81 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/template_literal/encode.d.mts +33 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/template_literal/encode.mjs +81 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/template_literal/index.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/template_literal/index.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/template_literal/instantiate.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/template_literal/instantiate.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/template_literal/is_finite.d.mts +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/template_literal/is_finite.mjs +26 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/template_literal/is_pattern.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/template_literal/is_pattern.mjs +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/template_literal/static.d.mts +18 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/template_literal/static.mjs +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/this/expand_this.d.mts +16 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/this/expand_this.mjs +26 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/tuple/to_object.d.mts +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/tuple/to_object.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/with/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/with/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/with/instantiate.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/engine/with/instantiate.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/any.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/any.mjs +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/array.d.mts +20 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/array.mjs +21 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/bigint.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/bigint.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/boolean.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/boolean.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/constructor.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/constructor.mjs +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/dependent.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/dependent.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/enum.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/enum.mjs +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/extends.d.mts +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/extends.mjs +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/extends_left.d.mts +53 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/extends_left.mjs +80 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/extends_right.d.mts +27 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/extends_right.mjs +49 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/function.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/function.mjs +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/index.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/index.mjs +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/inference.d.mts +34 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/inference.mjs +62 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/integer.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/integer.mjs +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/intersect.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/intersect.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/literal.d.mts +18 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/literal.mjs +44 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/never.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/never.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/null.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/null.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/number.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/number.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/object.d.mts +32 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/object.mjs +109 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/parameters.d.mts +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/parameters.mjs +28 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/record.d.mts +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/record.mjs +23 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/result.d.mts +24 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/result.mjs +36 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/return_type.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/return_type.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/string.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/string.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/symbol.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/symbol.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/template_literal.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/template_literal.mjs +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/tuple.d.mts +22 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/tuple.mjs +61 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/undefined.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/undefined.mjs +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/union.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/union.mjs +24 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/unknown.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/unknown.mjs +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/void.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/extends/void.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/index.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/index.mjs +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/mapping.d.mts +356 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/mapping.mjs +528 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/parser.d.mts +256 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/parser.mjs +140 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/script.d.mts +16 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/script.mjs +22 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/bigint.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/bigint.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/const.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/const.mjs +18 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/ident.d.mts +16 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/ident.mjs +26 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/index.d.mts +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/index.mjs +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/integer.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/integer.mjs +19 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/internal/char.d.mts +75 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/internal/char.mjs +26 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/internal/guard.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/internal/guard.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/internal/many.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/internal/many.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/internal/match.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/internal/match.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/internal/optional.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/internal/optional.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/internal/take.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/internal/take.mjs +30 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/internal/trim.d.mts +19 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/internal/trim.mjs +34 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/number.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/number.mjs +19 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/rest.d.mts +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/rest.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/span.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/span.mjs +24 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/string.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/string.mjs +20 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/unsigned_integer.d.mts +16 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/unsigned_integer.mjs +26 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/unsigned_number.d.mts +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/unsigned_number.mjs +38 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/until.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/until.mjs +21 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/until_1.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/script/token/until_1.mjs +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/_codec.d.mts +30 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/_codec.mjs +60 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/_immutable.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/_immutable.mjs +18 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/_optional.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/_optional.mjs +18 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/_readonly.d.mts +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/_readonly.mjs +18 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/_refine.d.mts +24 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/_refine.mjs +36 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/any.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/any.mjs +18 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/array.d.mts +18 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/array.mjs +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/bigint.d.mts +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/bigint.mjs +21 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/boolean.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/boolean.mjs +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/call.d.mts +16 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/call.mjs +23 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/constructor.d.mts +18 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/constructor.mjs +24 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/cyclic.d.mts +16 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/cyclic.mjs +29 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/deferred.d.mts +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/deferred.mjs +16 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/dependent.d.mts +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/dependent.mjs +24 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/enum.d.mts +18 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/enum.mjs +22 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/function.d.mts +21 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/function.mjs +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/generic.d.mts +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/generic.mjs +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/identifier.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/identifier.mjs +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/index.d.mts +45 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/index.mjs +51 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/infer.d.mts +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/infer.mjs +20 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/integer.d.mts +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/integer.mjs +21 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/intersect.d.mts +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/intersect.mjs +24 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/literal.d.mts +31 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/literal.mjs +62 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/never.d.mts +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/never.mjs +22 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/null.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/null.mjs +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/number.d.mts +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/number.mjs +21 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/object.d.mts +18 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/object.mjs +28 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/parameter.d.mts +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/parameter.mjs +21 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/properties.d.mts +43 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/properties.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/record.d.mts +52 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/record.mjs +66 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/ref.d.mts +19 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/ref.mjs +18 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/rest.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/rest.mjs +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/schema.d.mts +176 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/schema.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/static.d.mts +45 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/static.mjs +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/string.d.mts +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/string.mjs +22 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/symbol.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/symbol.mjs +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/template_literal.d.mts +28 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/template_literal.mjs +37 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/this.d.mts +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/this.mjs +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/tuple.d.mts +38 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/tuple.mjs +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/undefined.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/undefined.mjs +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/union.d.mts +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/union.mjs +24 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/unknown.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/unknown.mjs +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/unsafe.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/unsafe.mjs +20 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/void.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/type/types/void.mjs +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/typebox.d.mts +69 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/typebox.mjs +85 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/assert/assert.d.mts +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/assert/assert.mjs +28 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/assert/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/assert/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/check/check.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/check/check.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/check/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/check/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clean/additional.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clean/additional.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clean/clean.d.mts +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clean/clean.mjs +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clean/from_array.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clean/from_array.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clean/from_cyclic.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clean/from_cyclic.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clean/from_intersect.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clean/from_intersect.mjs +26 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clean/from_object.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clean/from_object.mjs +31 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clean/from_record.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clean/from_record.mjs +32 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clean/from_ref.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clean/from_ref.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clean/from_tuple.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clean/from_tuple.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clean/from_type.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clean/from_type.mjs +21 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clean/from_union.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clean/from_union.mjs +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clean/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clean/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clone/clone.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clone/clone.mjs +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clone/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/clone/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/callback.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/callback.mjs +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/decode.d.mts +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/decode.mjs +52 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/encode.d.mts +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/encode.mjs +52 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/from_array.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/from_array.mjs +35 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/from_cyclic.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/from_cyclic.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/from_intersect.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/from_intersect.mjs +58 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/from_object.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/from_object.mjs +42 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/from_record.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/from_record.mjs +39 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/from_ref.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/from_ref.mjs +31 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/from_tuple.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/from_tuple.mjs +32 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/from_type.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/from_type.mjs +22 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/from_union.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/from_union.mjs +39 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/has.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/has.mjs +93 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/index.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/codec/index.mjs +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/convert.d.mts +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/convert.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_additional.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_additional.mjs +18 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_array.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_array.mjs +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_bigint.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_bigint.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_boolean.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_boolean.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_cyclic.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_cyclic.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_enum.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_enum.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_integer.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_integer.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_intersect.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_intersect.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_literal.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_literal.mjs +44 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_null.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_null.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_number.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_number.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_object.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_object.mjs +28 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_record.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_record.mjs +23 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_ref.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_ref.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_string.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_string.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_template_literal.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_template_literal.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_tuple.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_tuple.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_type.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_type.mjs +43 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_undefined.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_undefined.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_union.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_union.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_void.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/from_void.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/try/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/try/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/try/try.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/try/try.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/try/try_array.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/try/try_array.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/try/try_bigint.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/try/try_bigint.mjs +45 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/try/try_boolean.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/try/try_boolean.mjs +41 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/try/try_null.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/try/try_null.mjs +44 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/try/try_number.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/try/try_number.mjs +44 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/try/try_result.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/try/try_result.mjs +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/try/try_string.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/try/try_string.mjs +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/try/try_undefined.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/convert/try/try_undefined.mjs +44 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/create.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/create.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/error.d.mts +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/error.mjs +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_array.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_array.mjs +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_bigint.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_bigint.mjs +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_boolean.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_boolean.mjs +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_constructor.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_constructor.mjs +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_cyclic.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_cyclic.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_default.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_default.mjs +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_enum.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_enum.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_function.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_function.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_integer.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_integer.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_intersect.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_intersect.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_literal.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_literal.mjs +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_never.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_never.mjs +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_null.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_null.mjs +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_number.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_number.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_object.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_object.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_record.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_record.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_ref.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_ref.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_string.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_string.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_symbol.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_symbol.mjs +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_template_literal.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_template_literal.mjs +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_tuple.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_tuple.mjs +5 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_type.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_type.mjs +61 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_undefined.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_undefined.mjs +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_union.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_union.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_void.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/from_void.mjs +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/index.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/create/index.mjs +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/default/default.d.mts +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/default/default.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/default/from_array.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/default/from_array.mjs +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/default/from_cyclic.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/default/from_cyclic.mjs +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/default/from_default.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/default/from_default.mjs +13 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/default/from_intersect.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/default/from_intersect.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/default/from_object.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/default/from_object.mjs +32 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/default/from_record.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/default/from_record.mjs +26 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/default/from_ref.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/default/from_ref.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/default/from_tuple.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/default/from_tuple.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/default/from_type.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/default/from_type.mjs +25 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/default/from_union.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/default/from_union.mjs +14 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/default/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/default/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/delta/diff.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/delta/diff.mjs +135 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/delta/edit.d.mts +24 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/delta/edit.mjs +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/delta/index.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/delta/index.mjs +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/delta/patch.d.mts +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/delta/patch.mjs +42 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/equal/equal.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/equal/equal.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/equal/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/equal/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/errors/errors.d.mts +16 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/errors/errors.mjs +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/errors/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/errors/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/hash/hash.d.mts +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/hash/hash.mjs +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/hash/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/hash/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/index.d.mts +20 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/index.mjs +29 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/parse/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/parse/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/parse/parse.d.mts +11 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/parse/parse.mjs +47 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/pipeline/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/pipeline/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/pipeline/pipeline.d.mts +10 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/pipeline/pipeline.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/pointer/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/pointer/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/error.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/error.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/from_array.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/from_array.mjs +39 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/from_enum.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/from_enum.mjs +6 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/from_intersect.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/from_intersect.mjs +8 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/from_object.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/from_object.mjs +33 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/from_record.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/from_record.mjs +33 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/from_ref.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/from_ref.mjs +9 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/from_template_literal.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/from_template_literal.mjs +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/from_tuple.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/from_tuple.mjs +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/from_type.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/from_type.mjs +88 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/from_union.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/from_union.mjs +24 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/from_unknown.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/from_unknown.mjs +12 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/index.d.mts +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/index.mjs +1 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/repair.d.mts +17 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/repair/repair.mjs +20 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/shared/index.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/shared/index.mjs +4 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/shared/optional_undefined.d.mts +2 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/shared/optional_undefined.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/shared/union_priority_sort.d.mts +7 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/shared/union_priority_sort.mjs +72 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/shared/union_score_select.d.mts +3 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/shared/union_score_select.mjs +51 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/value.d.mts +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/build/value/value.mjs +15 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/license +23 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/package.json +87 -0
- package/node_modules/@luan.sh/pi-xsettings/node_modules/typebox/readme.md +367 -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/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 +51 -0
- package/src/audit-entries.ts +172 -0
- package/src/context-messages.ts +60 -0
- package/src/contributions/xsettings.ts +32 -0
- package/src/developer-messages.ts +138 -0
- package/src/extension.ts +191 -0
- package/src/index.ts +48 -0
- package/src/prompt-envelope.ts +97 -0
- package/src/provider-instructions.ts +6 -0
- package/src/provider-payload.ts +59 -0
- package/test/audit-entries.test.ts +262 -0
- package/test/audit-export.test.ts +62 -0
- package/test/developer-prompt.test.ts +133 -0
- package/test/extension.test.ts +517 -0
- package/tsconfig.json +16 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"selection.js","names":[],"sources":["../../src/editor/selection.ts"],"sourcesContent":["import type {\n DiffLineAnnotation,\n EditorSelection,\n Position,\n Range,\n ResolvedTextEdit,\n SelectionDirection,\n TextEdit,\n} from '../types';\nimport { applyDocumentChangeToLineAnnotations } from './lineAnnotations';\nimport type { TextDocument, TextDocumentChange } from './textDocument';\nimport {\n createSegmenter,\n endsWithLineBreak,\n getGraphemeSegmenter,\n} from './utils';\n\nexport const DirectionBackward = -1;\nexport const DirectionNone = 0;\nexport const DirectionForward = 1;\n\nconst SURROUNDING_PAIRS: Array<[openChar: string, closeChar: string]> = [\n [\"'\", \"'\"],\n ['\"', '\"'],\n ['`', '`'],\n ['{', '}'],\n ['[', ']'],\n ['<', '>'],\n ['(', ')'],\n];\n\nconst AUTO_SURROUND_CLOSE_CHARS = new Map(SURROUNDING_PAIRS);\nconst AUTO_SURROUND_QUOTE_CHARS = new Set([\"'\", '\"', '`']);\nconst AUTO_SURROUND_BRACKET_CHARS = new Set(['{', '[', '(', '<']);\n\nexport interface CursorMoveOptions {\n getSoftLineOffsets?: (line: number) => ArrayLike<number> | undefined;\n /**\n * Fold-skip resolver for vertical motion crossing document lines: the\n * nearest renderable line at or beyond the target in the move direction,\n * or undefined when everything that way is hidden inside a collapsed\n * region (the caret then stays put). Soft-line moves within one document\n * line never consult it.\n */\n resolveRenderableLine?: ResolveRenderableLine;\n}\n\ninterface SoftLineInfo {\n start: number;\n end: number;\n index: number;\n count: number;\n}\n\n/**\n * Converts a selection from a web selection to an editor selection.\n */\nexport function convertSelection(\n range: StaticRange,\n direction: SelectionDirection = DirectionNone\n): EditorSelection | undefined {\n const start = boundaryToPosition(range.startContainer, range.startOffset);\n const end = boundaryToPosition(range.endContainer, range.endOffset);\n if (start === null || end === null) {\n return undefined;\n }\n return {\n start,\n end,\n direction,\n };\n}\n\n/**\n * Resolves the indent edits for a selection.\n */\nexport function resolveIndentEdits(\n textDocument: TextDocument<unknown>,\n selection: EditorSelection,\n tabSize: number,\n outdent: boolean\n): [edits: TextEdit[], nextSelection: EditorSelection] {\n if (textDocument === undefined) {\n return [[], selection];\n }\n const { start, end } = selection;\n const edits: TextEdit[] = [];\n let newSelection: EditorSelection = { ...selection };\n const blockIndent = start.line !== end.line;\n let endLine = end.line;\n if (start.line < end.line && end.character === 0) {\n endLine--;\n }\n for (let line = start.line; line <= endLine; line++) {\n const lineText = textDocument.getLineText(line);\n if (lineText === undefined) {\n continue;\n }\n if (blockIndent && lineText.trim().length === 0) {\n continue;\n }\n const indentUnit = lineText.startsWith('\\t') ? '\\t' : ' '.repeat(tabSize);\n let deleteLength = 0;\n let newText = indentUnit;\n if (outdent) {\n if (lineText.startsWith('\\t')) {\n deleteLength = 1;\n } else if (lineText.startsWith(' ')) {\n const leadingSpacesLength =\n lineText.length - lineText.trimStart().length;\n deleteLength = Math.min(indentUnit.length, leadingSpacesLength);\n }\n if (deleteLength === 0) {\n continue;\n }\n newText = '';\n }\n edits.push({\n range: {\n start: { line, character: 0 },\n end: { line, character: deleteLength },\n },\n newText,\n });\n const delta = newText.length - deleteLength;\n if (line === start.line) {\n newSelection = {\n ...newSelection,\n start: {\n ...start,\n character: Math.max(0, start.character + delta),\n },\n };\n }\n if (line === end.line) {\n newSelection = {\n ...newSelection,\n end: {\n ...end,\n character: Math.max(0, end.character + delta),\n },\n };\n }\n }\n return [edits, newSelection];\n}\n\n/**\n * The nearest zero-based document line at or beyond `line` in `direction`\n * that has a rendered row, or undefined when everything that way is hidden\n * inside a collapsed region. Vertical caret motion uses it to skip collapsed\n * regions atomically, like code folds.\n */\nexport type ResolveRenderableLine = (\n line: number,\n direction: 'up' | 'down'\n) => number | undefined;\n\n/**\n * Maps the cursor move to all selections.\n */\nexport function mapCursorMove(\n textDocument: TextDocument<unknown>,\n selections: EditorSelection[],\n shortcut: 'textStart' | 'start' | 'end' | 'up' | 'down' | 'left' | 'right',\n options: CursorMoveOptions = {}\n): EditorSelection[] {\n const lineCount = textDocument.lineCount;\n return selections.map((selection) => {\n let { line, character } =\n shortcut === 'up' || shortcut === 'left'\n ? selection.start\n : selection.end;\n if (\n shortcut === 'textStart' ||\n shortcut === 'start' ||\n shortcut === 'end'\n ) {\n const caret = getCaretPosition(selection);\n line = caret.line;\n character = caret.character;\n const softLine = getSoftLineInfo(textDocument, line, character, options);\n if (shortcut === 'textStart') {\n const softLineText = textDocument\n .getLineText(line)\n .slice(softLine.start, softLine.end);\n const indent = softLine.start + getLeadingSpaces(softLineText);\n character = character === indent ? softLine.start : indent;\n } else {\n character = shortcut === 'start' ? softLine.start : softLine.end;\n }\n } else if (shortcut === 'up') {\n const moved = moveBySoftLine(textDocument, line, character, -1, options);\n if (moved !== undefined) {\n line = moved.line;\n character = moved.character;\n } else if (line > 0) {\n // Fold-skip: when the line above is collapsed, jump to the nearest\n // renderable line above it; stay put when nothing above renders.\n line =\n options.resolveRenderableLine == null\n ? line - 1\n : (options.resolveRenderableLine(line - 1, 'up') ?? line);\n }\n } else if (shortcut === 'down') {\n const moved = moveBySoftLine(textDocument, line, character, 1, options);\n if (moved !== undefined) {\n line = moved.line;\n character = moved.character;\n } else {\n const maxLine = Math.max(lineCount - 1, 0);\n if (line < maxLine) {\n line =\n options.resolveRenderableLine == null\n ? line + 1\n : Math.min(\n options.resolveRenderableLine(line + 1, 'down') ?? line,\n maxLine\n );\n }\n }\n } else if (isCollapsedSelection(selection)) {\n const lineLength = textDocument.getLineLength(line);\n character = Math.min(character, lineLength);\n if (shortcut === 'left') {\n if (character > 0) {\n // Step left by a whole grapheme so the caret never lands inside an\n // emoji or other multi-code-unit character.\n character = stepCharacterByGrapheme(\n textDocument,\n line,\n character,\n false\n );\n } else if (line > 0) {\n // Fold-skip: land at the end of the nearest renderable line above;\n // stay put when everything above is collapsed.\n const targetLine =\n options.resolveRenderableLine == null\n ? line - 1\n : options.resolveRenderableLine(line - 1, 'up');\n if (targetLine !== undefined) {\n line = targetLine;\n character = textDocument.getLineLength(line);\n }\n }\n } else if (character < lineLength) {\n character = stepCharacterByGrapheme(\n textDocument,\n line,\n character,\n true\n );\n } else if (line < lineCount - 1) {\n // Fold-skip: land at the start of the nearest renderable line below;\n // stay put when everything below is collapsed.\n const targetLine =\n options.resolveRenderableLine == null\n ? line + 1\n : options.resolveRenderableLine(line + 1, 'down');\n if (targetLine !== undefined) {\n line = Math.min(targetLine, lineCount - 1);\n character = 0;\n }\n }\n }\n const pos = { line, character };\n return {\n start: pos,\n end: pos,\n direction: DirectionNone,\n };\n });\n}\n\nfunction moveBySoftLine(\n textDocument: TextDocument<unknown>,\n line: number,\n character: number,\n direction: -1 | 1,\n options: CursorMoveOptions\n): Position | undefined {\n if (options.getSoftLineOffsets === undefined) {\n return undefined;\n }\n\n const current = getSoftLineInfo(textDocument, line, character, options);\n const targetIndex = current.index + direction;\n let targetLine = line;\n let target: SoftLineInfo;\n\n if (targetIndex >= 0 && targetIndex < current.count) {\n target = getSoftLineInfoAtIndex(\n textDocument,\n targetLine,\n targetIndex,\n options\n );\n } else {\n const nextLine = line + direction;\n if (nextLine < 0 || nextLine >= textDocument.lineCount) {\n return { line, character };\n }\n\n // Fold-skip: crossing to another document line skips collapsed regions;\n // when nothing renders in that direction the caret stays put.\n const resolvedLine =\n options.resolveRenderableLine == null\n ? nextLine\n : options.resolveRenderableLine(\n nextLine,\n direction < 0 ? 'up' : 'down'\n );\n if (resolvedLine === undefined) {\n return { line, character };\n }\n\n targetLine = Math.min(resolvedLine, textDocument.lineCount - 1);\n const targetCount = getSoftLineCount(textDocument, targetLine, options);\n target = getSoftLineInfoAtIndex(\n textDocument,\n targetLine,\n direction < 0 ? targetCount - 1 : 0,\n options\n );\n }\n\n const column = Math.max(0, character - current.start);\n const targetCharacter = target.start + column;\n const landedCharacter =\n target.index === target.count - 1\n ? targetCharacter\n : Math.min(targetCharacter, target.end);\n const targetLineText = textDocument.getLineText(targetLine);\n // Keep goal-column overshoots, but snap real offsets out of graphemes.\n return {\n line: targetLine,\n character:\n landedCharacter > targetLineText.length\n ? landedCharacter\n : snapCharacterToGraphemeBoundary(targetLineText, landedCharacter),\n };\n}\n\n// Snaps a vertical landing to the end of its grapheme so edits cannot split a\n// user-visible character. Stop once the containing cluster is resolved.\nfunction snapCharacterToGraphemeBoundary(\n lineText: string,\n character: number\n): number {\n if (character <= 0 || character >= lineText.length) {\n return character;\n }\n\n const segmenter = getGraphemeSegmenter();\n if (segmenter !== undefined) {\n for (const segment of segmenter.segment(lineText)) {\n if (character <= segment.index) {\n return character;\n }\n const segmentEnd = segment.index + segment.segment.length;\n if (character < segmentEnd) {\n return segmentEnd;\n }\n }\n return character;\n }\n\n // Degraded path for engines lacking Intl.Segmenter: preserve code points.\n let segmentStart = 0;\n for (const codePoint of lineText) {\n if (character <= segmentStart) {\n return character;\n }\n const segmentEnd = segmentStart + codePoint.length;\n if (character < segmentEnd) {\n return segmentEnd;\n }\n segmentStart = segmentEnd;\n }\n return character;\n}\n\nfunction getSoftLineInfo(\n textDocument: TextDocument<unknown>,\n line: number,\n character: number,\n options: CursorMoveOptions\n): SoftLineInfo {\n const lineLength = textDocument.getLineLength(line);\n const offsets = options.getSoftLineOffsets?.(line);\n if (offsets === undefined || offsets.length < 2) {\n return { start: 0, end: lineLength, index: 0, count: 1 };\n }\n\n for (let index = 0; index + 1 < offsets.length; index++) {\n const softLine = getSoftLineInfoAtIndex(textDocument, line, index, options);\n if (character >= softLine.start && character <= softLine.end) {\n return softLine;\n }\n }\n\n return getSoftLineInfoAtIndex(\n textDocument,\n line,\n character < (offsets[0] ?? 0) ? 0 : offsets.length - 2,\n options\n );\n}\n\nfunction getSoftLineCount(\n textDocument: TextDocument<unknown>,\n line: number,\n options: CursorMoveOptions\n): number {\n const offsets = options.getSoftLineOffsets?.(line);\n return offsets === undefined || offsets.length < 2 ? 1 : offsets.length - 1;\n}\n\nfunction getSoftLineInfoAtIndex(\n textDocument: TextDocument<unknown>,\n line: number,\n index: number,\n options: CursorMoveOptions\n): SoftLineInfo {\n const lineLength = textDocument.getLineLength(line);\n const offsets = options.getSoftLineOffsets?.(line);\n if (offsets === undefined || offsets.length < 2) {\n return { start: 0, end: lineLength, index: 0, count: 1 };\n }\n\n const count = offsets.length - 1;\n const boundedIndex = Math.max(0, Math.min(index, count - 1));\n const start = Math.max(0, Math.min(lineLength, offsets[boundedIndex] ?? 0));\n const end = Math.max(\n start,\n Math.min(lineLength, offsets[boundedIndex + 1] ?? lineLength)\n );\n return { start, end, index: boundedIndex, count };\n}\n\n/**\n * Same as mapCursorMove, but with shift key pressed.\n */\nexport function mapSelectionShift(\n textDocument: TextDocument<unknown>,\n selections: EditorSelection[],\n shortcut: 'textStart' | 'start' | 'end' | 'up' | 'down' | 'left' | 'right',\n options: CursorMoveOptions = {}\n): EditorSelection[] {\n return selections.map((selection) => {\n const focusPosition =\n selection.direction === DirectionBackward\n ? selection.start\n : selection.end;\n const [movedFocusSelection] = mapCursorMove(\n textDocument,\n [\n {\n start: focusPosition,\n end: focusPosition,\n direction: DirectionNone,\n },\n ],\n shortcut,\n options\n );\n return createSelectionFrom(selection, movedFocusSelection);\n });\n}\n\n/**\n * Applies a text change to the given text document\n */\nexport function applyTextChangeToSelections<LAnnotation>(\n textDocument: TextDocument<LAnnotation>,\n selections: EditorSelection[],\n edit: ResolvedTextEdit,\n lineAnnotations?: DiffLineAnnotation<LAnnotation>[],\n tabSize = 2,\n undoBoundary = false\n): {\n nextSelections: EditorSelection[];\n change?: TextDocumentChange;\n} {\n const primarySelection = selections[selections.length - 1];\n if (primarySelection === undefined) {\n return { nextSelections: [] };\n }\n const selectionPositions: Position[] = [];\n for (const selection of selections) {\n selectionPositions.push(selection.start, selection.end);\n }\n const selectionOffsets = selectionPositions.map((position) =>\n textDocument.offsetAt(position)\n );\n const primaryStartOffset = selectionOffsets[(selections.length - 1) * 2];\n const primaryEndOffset = selectionOffsets[(selections.length - 1) * 2 + 1];\n const ordered: Array<{\n index: number;\n start: number;\n end: number;\n }> = [];\n let isAlreadyOrdered = true;\n for (let index = 0; index < selections.length; index++) {\n const entry = {\n index,\n start: selectionOffsets[index * 2],\n end: selectionOffsets[index * 2 + 1],\n };\n const previous = ordered[ordered.length - 1];\n if (\n previous !== undefined &&\n (entry.start < previous.start ||\n (entry.start === previous.start && entry.end < previous.end))\n ) {\n isAlreadyOrdered = false;\n }\n ordered.push(entry);\n }\n if (!isAlreadyOrdered) {\n ordered.sort((a, b) => {\n const startOrder = a.start - b.start;\n if (startOrder !== 0) {\n return startOrder;\n }\n const endOrder = a.end - b.end;\n if (endOrder !== 0) {\n return endOrder;\n }\n return a.index - b.index;\n });\n }\n const adjustedChange = normalizeLeadingIndentForChange(\n textDocument,\n edit,\n tabSize\n );\n const edits: ResolvedTextEdit[] = [];\n const nextSelectionOffsets: Array<[number, number] | undefined> = Array.from({\n length: selections.length,\n });\n let offsetDelta = 0;\n let mergedGroup:\n | {\n start: number;\n end: number;\n indices: number[];\n }\n | undefined;\n const finalizeMergedGroup = () => {\n if (mergedGroup === undefined) {\n return;\n }\n const perGroupChange = normalizeLeadingIndentForChange(\n textDocument,\n {\n start: mergedGroup.start,\n end: mergedGroup.end,\n text: adjustedChange.text,\n },\n tabSize\n );\n const newText = expandSingleNewlineInsert(\n textDocument,\n perGroupChange.text,\n perGroupChange.start\n );\n edits.push({\n start: perGroupChange.start,\n end: perGroupChange.end,\n text: newText,\n });\n const nextOffsets: [number, number] = [\n mergedGroup.start + offsetDelta + newText.length,\n mergedGroup.start + offsetDelta + newText.length,\n ];\n for (const index of mergedGroup.indices) {\n nextSelectionOffsets[index] = nextOffsets;\n }\n offsetDelta += newText.length - (perGroupChange.end - perGroupChange.start);\n mergedGroup = undefined;\n };\n for (const entry of ordered) {\n const startOffset = Math.max(\n 0,\n entry.start + (adjustedChange.start - primaryStartOffset)\n );\n const endOffset = Math.max(\n startOffset,\n entry.end + (adjustedChange.end - primaryEndOffset)\n );\n if (mergedGroup !== undefined && startOffset < mergedGroup.end) {\n mergedGroup.end = Math.max(mergedGroup.end, endOffset);\n mergedGroup.indices.push(entry.index);\n continue;\n }\n finalizeMergedGroup();\n mergedGroup = {\n start: startOffset,\n end: endOffset,\n indices: [entry.index],\n };\n }\n finalizeMergedGroup();\n\n const change = textDocument.applyResolvedEdits(\n edits,\n true,\n selections,\n undefined,\n undoBoundary\n );\n const nextSelections = createSelectionsFromOffsetPairs(\n textDocument,\n nextSelectionOffsets.map((offsets) => {\n if (offsets === undefined) {\n throw new Error('Missing next selection offsets');\n }\n return offsets;\n })\n );\n textDocument.setLastUndoSelectionsAfter(nextSelections);\n if (change !== undefined && lineAnnotations !== undefined) {\n const nextLineAnnotations =\n applyDocumentChangeToLineAnnotations<LAnnotation>(\n change,\n lineAnnotations\n );\n if (nextLineAnnotations !== undefined) {\n textDocument.setLastUndoLineAnnotations(\n lineAnnotations,\n nextLineAnnotations\n );\n }\n }\n return { nextSelections, change };\n}\n\n/**\n * Returns the next anchor/focus offsets after replacing a selection range.\n * When the inserted text still contains the original selection (auto-surround),\n * the inner range is reselected to match VS Code/CodeMirror behavior.\n */\n// Detect exact auto-surround replacements before a substring search can match\n// the newly inserted opening delimiter instead of the preserved selection.\nfunction getAutoSurroundPreservedOffset(\n originalText: string,\n newText: string\n): number | undefined {\n if (newText.length !== originalText.length + 2) {\n return undefined;\n }\n\n const closeChar = AUTO_SURROUND_CLOSE_CHARS.get(newText[0]);\n if (\n closeChar === undefined ||\n newText[newText.length - 1] !== closeChar ||\n newText.slice(1, -1) !== originalText\n ) {\n return undefined;\n }\n\n return 1;\n}\n\nfunction getNextSelectionOffsetPairAfterReplace(\n textDocument: TextDocument<unknown>,\n entry: { start: number; end: number },\n offsetDelta: number,\n newText: string\n): [number, number] {\n const insertStart = entry.start + offsetDelta;\n const insertEnd = insertStart + newText.length;\n const originalLength = entry.end - entry.start;\n if (originalLength > 0) {\n const originalText = textDocument.getTextSlice(entry.start, entry.end);\n const preservedOffset =\n getAutoSurroundPreservedOffset(originalText, newText) ??\n newText.indexOf(originalText);\n if (\n preservedOffset !== -1 &&\n preservedOffset + originalText.length <= newText.length\n ) {\n const rangeStart = insertStart + preservedOffset;\n return [rangeStart, rangeStart + originalText.length];\n }\n }\n return [insertEnd, insertEnd];\n}\n\n/**\n * Applies text replacements to multiple selections. Texts pair by selection\n * index unless they are explicitly marked as document ordered.\n */\nexport function applyTextReplaceToSelections<LAnnotation>(\n textDocument: TextDocument<LAnnotation>,\n selections: EditorSelection[],\n texts: string[],\n lineAnnotations?: DiffLineAnnotation<LAnnotation>[],\n undoBoundary = false,\n textOrder: 'selection' | 'document' = 'selection'\n): {\n nextSelections: EditorSelection[];\n change?: TextDocumentChange;\n} {\n if (selections.length !== texts.length) {\n throw new Error(\n 'Selection text replacements must match the selection count'\n );\n }\n const selectionPositions: Position[] = [];\n for (const selection of selections) {\n selectionPositions.push(selection.start, selection.end);\n }\n const selectionOffsets = selectionPositions.map((position) =>\n textDocument.offsetAt(position)\n );\n const ordered: Array<{\n index: number;\n start: number;\n end: number;\n }> = [];\n let isAlreadyOrdered = true;\n for (let index = 0; index < selections.length; index++) {\n const entry = {\n index,\n start: selectionOffsets[index * 2],\n end: selectionOffsets[index * 2 + 1],\n };\n const previous = ordered[ordered.length - 1];\n if (\n previous !== undefined &&\n (entry.start < previous.start ||\n (entry.start === previous.start && entry.end < previous.end))\n ) {\n isAlreadyOrdered = false;\n }\n ordered.push(entry);\n }\n if (!isAlreadyOrdered) {\n ordered.sort((a, b) => {\n const startOrder = a.start - b.start;\n if (startOrder !== 0) {\n return startOrder;\n }\n const endOrder = a.end - b.end;\n if (endOrder !== 0) {\n return endOrder;\n }\n return a.index - b.index;\n });\n }\n const allDeletes = texts.every((text) => text === '');\n let edits: ResolvedTextEdit[];\n const nextSelectionOffsetPairs: Array<[number, number] | undefined> =\n Array.from({\n length: selections.length,\n });\n if (allDeletes) {\n edits = [];\n let hasEffect = false;\n for (const entry of ordered) {\n nextSelectionOffsetPairs[entry.index] = [entry.end, entry.end];\n if (entry.start >= entry.end) {\n continue;\n }\n hasEffect = true;\n const last = edits[edits.length - 1];\n if (last !== undefined && entry.start < last.end) {\n edits[edits.length - 1] = {\n start: last.start,\n end: Math.max(last.end, entry.end),\n text: '',\n };\n } else {\n edits.push({ start: entry.start, end: entry.end, text: '' });\n }\n }\n if (!hasEffect) {\n return { nextSelections: selections };\n }\n for (const entry of ordered) {\n const caret = entry.end;\n let delta = 0;\n let next = caret;\n for (const edit of edits) {\n if (caret <= edit.start) {\n break;\n }\n if (caret >= edit.end) {\n delta -= edit.end - edit.start;\n continue;\n }\n next = edit.start + delta;\n break;\n }\n if (next === caret) {\n next += delta;\n }\n nextSelectionOffsetPairs[entry.index] = [next, next];\n }\n } else {\n edits = [];\n let offsetDelta = 0;\n let previousEditEnd = -1;\n for (let index = 0; index < ordered.length; index++) {\n const entry = ordered[index];\n if (entry.start < previousEditEnd) {\n throw new Error('Overlapping multi-selection edits are not supported');\n }\n previousEditEnd = entry.end;\n const newText = expandSingleNewlineInsert(\n textDocument,\n texts[textOrder === 'document' ? index : entry.index],\n entry.start\n );\n edits.push({\n start: entry.start,\n end: entry.end,\n text: newText,\n });\n nextSelectionOffsetPairs[entry.index] =\n getNextSelectionOffsetPairAfterReplace(\n textDocument,\n entry,\n offsetDelta,\n newText\n );\n offsetDelta += newText.length - (entry.end - entry.start);\n }\n }\n\n const change = textDocument.applyResolvedEdits(\n edits,\n true,\n selections,\n undefined,\n undoBoundary\n );\n const nextSelections = createSelectionsFromOffsetPairs(\n textDocument,\n nextSelectionOffsetPairs.map((offsets) => {\n if (offsets === undefined) {\n throw new Error('Missing next selection offsets');\n }\n return offsets;\n })\n );\n textDocument.setLastUndoSelectionsAfter(nextSelections);\n if (change !== undefined && lineAnnotations !== undefined) {\n const nextLineAnnotations =\n applyDocumentChangeToLineAnnotations<LAnnotation>(\n change,\n lineAnnotations\n );\n if (nextLineAnnotations !== undefined) {\n textDocument.setLastUndoLineAnnotations(\n lineAnnotations,\n nextLineAnnotations\n );\n }\n }\n return { nextSelections, change };\n}\n\nexport type AutoSurround =\n | 'default'\n | 'never'\n | 'brackets'\n | 'quotes'\n | 'languageDefined';\n\nfunction shouldAutoSurroundChar(\n autoSurround: AutoSurround | undefined,\n char: string\n): boolean {\n if (autoSurround === 'never') {\n return false;\n }\n if (autoSurround === 'brackets') {\n return AUTO_SURROUND_BRACKET_CHARS.has(char);\n }\n if (autoSurround === 'quotes') {\n return AUTO_SURROUND_QUOTE_CHARS.has(char);\n }\n return true;\n}\n\n/**\n * Returns per-selection replacement text when typing a surround character over\n * non-collapsed selections, matching VS Code auto-surround behavior.\n */\nexport function getAutoSurroundReplacementTexts<LAnnotation>(\n textDocument: TextDocument<LAnnotation>,\n selections: EditorSelection[],\n char: string,\n autoSurround?: AutoSurround\n): string[] | undefined {\n if (char.length !== 1 || selections.length === 0) {\n return undefined;\n }\n const closeChar = AUTO_SURROUND_CLOSE_CHARS.get(char);\n if (closeChar === undefined || !shouldAutoSurroundChar(autoSurround, char)) {\n return undefined;\n }\n const replacements: string[] = [];\n for (const selection of selections) {\n if (isCollapsedSelection(selection)) {\n return undefined;\n }\n replacements.push(char + textDocument.getText(selection) + closeChar);\n }\n return replacements;\n}\n\n/**\n * Swaps the two characters adjacent to a collapsed selection, matching browser\n * insertTranspose (Ctrl+T) behavior.\n */\nexport function applyTransposeToSelections<LAnnotation>(\n textDocument: TextDocument<LAnnotation>,\n selections: EditorSelection[],\n lineAnnotations?: DiffLineAnnotation<LAnnotation>[]\n): {\n nextSelections: EditorSelection[];\n change?: TextDocumentChange;\n} {\n const edits: ResolvedTextEdit[] = [];\n const nextOffsetPairs: Array<[number, number]> = [];\n\n for (const selection of selections) {\n const [anchor, focus] = getSelectionAnchorAndFocusOffsets(\n textDocument,\n selection\n );\n if (!isCollapsedSelection(selection)) {\n nextOffsetPairs.push([anchor, focus]);\n continue;\n }\n\n const { line, character } = selection.start;\n const offset = anchor;\n const lineText = textDocument.getLineText(line);\n const lineLength = lineText.length;\n // Document offset of column 0 on this line, used to translate the\n // grapheme-cluster columns below back into document offsets.\n const lineStart = offset - character;\n const graphemeStarts = getLineGraphemeStarts(lineText);\n let edit: ResolvedTextEdit | undefined;\n\n if (character > 0 && character < lineLength) {\n // Swap the whole grapheme before the caret with the one after it so a\n // surrogate pair (emoji) on either side is moved intact.\n const before = findClusterBreak(\n lineText,\n character,\n false,\n graphemeStarts\n );\n const after = findClusterBreak(lineText, character, true, graphemeStarts);\n edit = {\n start: lineStart + before,\n end: lineStart + after,\n text:\n lineText.slice(character, after) + lineText.slice(before, character),\n };\n nextOffsetPairs.push([lineStart + after, lineStart + after]);\n } else if (character === lineLength && graphemeStarts.length >= 2) {\n // Swap the last two graphemes on the line.\n const lastStart = graphemeStarts[graphemeStarts.length - 1];\n const secondLastStart = graphemeStarts[graphemeStarts.length - 2];\n edit = {\n start: lineStart + secondLastStart,\n end: offset,\n text:\n lineText.slice(lastStart, lineLength) +\n lineText.slice(secondLastStart, lastStart),\n };\n nextOffsetPairs.push([offset, offset]);\n } else if (character === 0 && line > 0 && lineLength > 0) {\n // Carry the previous line's last grapheme and this line's first grapheme\n // across the line break, swapping their order.\n const prevLine = line - 1;\n const prevLineText = textDocument.getLineText(prevLine);\n const prevLength = prevLineText.length;\n const prevEnd = textDocument.offsetAt({\n line: prevLine,\n character: prevLength,\n });\n const prevGraphemeStart =\n prevLength > 0\n ? findClusterBreak(\n prevLineText,\n prevLength,\n false,\n getLineGraphemeStarts(prevLineText)\n )\n : prevLength;\n const firstEnd = findClusterBreak(lineText, 0, true, graphemeStarts);\n const prevStart = prevEnd - (prevLength - prevGraphemeStart);\n const newText =\n lineText.slice(0, firstEnd) +\n textDocument.getTextSlice(prevEnd, offset) +\n prevLineText.slice(prevGraphemeStart, prevLength);\n edit = {\n start: prevStart,\n end: offset + firstEnd,\n text: newText,\n };\n const caret = prevStart + newText.length;\n nextOffsetPairs.push([caret, caret]);\n } else {\n nextOffsetPairs.push([anchor, focus]);\n continue;\n }\n\n edits.push(edit);\n }\n\n if (edits.length === 0) {\n return { nextSelections: selections };\n }\n\n edits.sort((a, b) => a.start - b.start);\n for (let index = 1; index < edits.length; index++) {\n if (edits[index].start < edits[index - 1].end) {\n throw new Error('Overlapping multi-selection edits are not supported');\n }\n }\n\n const change = textDocument.applyResolvedEdits(edits, true, selections);\n const nextSelections = createSelectionsFromOffsetPairs(\n textDocument,\n nextOffsetPairs\n );\n textDocument.setLastUndoSelectionsAfter(nextSelections);\n if (change !== undefined && lineAnnotations !== undefined) {\n const nextLineAnnotations =\n applyDocumentChangeToLineAnnotations<LAnnotation>(\n change,\n lineAnnotations\n );\n if (nextLineAnnotations !== undefined) {\n textDocument.setLastUndoLineAnnotations(\n lineAnnotations,\n nextLineAnnotations\n );\n }\n }\n return { nextSelections, change };\n}\n\n/**\n * Deletes from each selection to the end of its line, including the line break\n * when the caret is already at the end of a non-final line. Non-collapsed\n * selections delete their selected text instead.\n */\nexport function applyDeleteHardLineForwardToSelections<LAnnotation>(\n textDocument: TextDocument<LAnnotation>,\n selections: EditorSelection[],\n lineAnnotations?: DiffLineAnnotation<LAnnotation>[]\n): {\n nextSelections: EditorSelection[];\n change?: TextDocumentChange;\n} {\n const deleteSelections: EditorSelection[] = selections.map((selection) => {\n const range = resolveDeleteHardLineForwardRange(textDocument, selection);\n return {\n start: range.start,\n end: range.end,\n direction: DirectionNone,\n };\n });\n return applyTextReplaceToSelections(\n textDocument,\n deleteSelections,\n deleteSelections.map(() => ''),\n lineAnnotations\n );\n}\n\n/**\n * Deletes from each selection back to the start of its soft (visual) line.\n * Non-collapsed selections delete their selected text instead.\n */\nexport function applyDeleteSoftLineBackwardToSelections<LAnnotation>(\n textDocument: TextDocument<LAnnotation>,\n selections: EditorSelection[],\n getSoftLineStart?: (line: number, character: number) => number,\n lineAnnotations?: DiffLineAnnotation<LAnnotation>[]\n): {\n nextSelections: EditorSelection[];\n change?: TextDocumentChange;\n} {\n const deleteSelections: EditorSelection[] = selections.map((selection) => {\n if (!isCollapsedSelection(selection)) {\n return {\n start: selection.start,\n end: selection.end,\n direction: DirectionNone,\n };\n }\n const caret = getCaretPosition(selection);\n const { line, character } = caret;\n const softLineStart = getSoftLineStart?.(line, character) ?? 0;\n if (character > softLineStart) {\n return {\n start: { line, character: softLineStart },\n end: { line, character },\n direction: DirectionNone,\n };\n }\n if (line === 0) {\n return {\n start: caret,\n end: caret,\n direction: DirectionNone,\n };\n }\n const prevLineLength = textDocument.getLineLength(line - 1);\n return {\n start: { line: line - 1, character: prevLineLength },\n end: { line, character: 0 },\n direction: DirectionNone,\n };\n });\n return applyTextReplaceToSelections(\n textDocument,\n deleteSelections,\n deleteSelections.map(() => ''),\n lineAnnotations\n );\n}\n\n/**\n * Deletes the word or separator group immediately before each selection.\n * Non-collapsed selections delete their selected text instead.\n */\nexport function applyDeleteWordBackwardToSelections<LAnnotation>(\n textDocument: TextDocument<LAnnotation>,\n selections: EditorSelection[],\n lineAnnotations?: DiffLineAnnotation<LAnnotation>[]\n): {\n nextSelections: EditorSelection[];\n change?: TextDocumentChange;\n} {\n const deleteSelections: EditorSelection[] = selections.map((selection) => {\n const [start, end] = resolveDeleteWordBackwardRange(\n textDocument,\n selection\n );\n return {\n start,\n end,\n direction: DirectionNone,\n };\n });\n return applyTextReplaceToSelections(\n textDocument,\n deleteSelections,\n deleteSelections.map(() => ''),\n lineAnnotations\n );\n}\n\n/**\n * Resolves the document range deleted by Backspace or Delete at a collapsed\n * caret. Non-collapsed selections delete their selected text instead.\n */\nexport function resolveDeleteCharacterRange(\n textDocument: TextDocument<unknown>,\n selection: EditorSelection,\n forward: boolean\n): [start: Position, end: Position] {\n if (!isCollapsedSelection(selection)) {\n return [selection.start, selection.end];\n }\n\n const caret = getCaretPosition(selection);\n let { line, character } = caret;\n const lineLength = textDocument.getLineLength(line);\n const lineCount = textDocument.lineCount;\n\n // A preserved vertical-move goal column can overshoot a shorter line; clamp\n // before stepping so Backspace/Delete target the visible caret position.\n character = Math.min(character, lineLength);\n\n if (forward) {\n if (character < lineLength) {\n return [\n { line, character },\n {\n line,\n character: stepCharacterByGrapheme(\n textDocument,\n line,\n character,\n true\n ),\n },\n ];\n }\n if (line < lineCount - 1) {\n return [\n { line, character: lineLength },\n { line: line + 1, character: 0 },\n ];\n }\n return [caret, caret];\n }\n\n if (character > 0) {\n return [\n {\n line,\n character: stepCharacterByGrapheme(\n textDocument,\n line,\n character,\n false\n ),\n },\n { line, character },\n ];\n }\n if (line > 0) {\n const prevLineLength = textDocument.getLineLength(line - 1);\n return [\n { line: line - 1, character: prevLineLength },\n { line, character: 0 },\n ];\n }\n return [caret, caret];\n}\n\n/**\n * Deletes one grapheme (or selected text) at each selection.\n */\nexport function applyDeleteCharacterToSelections<LAnnotation>(\n textDocument: TextDocument<LAnnotation>,\n selections: EditorSelection[],\n forward: boolean,\n lineAnnotations?: DiffLineAnnotation<LAnnotation>[],\n tabSize = 2\n): {\n nextSelections: EditorSelection[];\n change?: TextDocumentChange;\n} {\n const deleteSelections: EditorSelection[] = selections.map((selection) => {\n let [start, end] = resolveDeleteCharacterRange(\n textDocument,\n selection,\n forward\n );\n // Only grow a Backspace into a full indent unit for a collapsed caret. When\n // the user has an explicit selection, Backspace must delete exactly that\n // selection rather than expanding it to a whole soft tab.\n if (!forward && isCollapsedSelection(selection)) {\n const normalized = normalizeLeadingIndentForChange(\n textDocument,\n {\n start: textDocument.offsetAt(start),\n end: textDocument.offsetAt(end),\n text: '',\n },\n tabSize\n );\n start = textDocument.positionAt(normalized.start);\n end = textDocument.positionAt(normalized.end);\n }\n return {\n start,\n end,\n direction: DirectionNone,\n };\n });\n return applyTextReplaceToSelections(\n textDocument,\n deleteSelections,\n deleteSelections.map(() => ''),\n lineAnnotations\n );\n}\n\n/**\n * Checks if a selection is collapsed.\n */\nexport function isCollapsedSelection(\n selection: EditorSelection | Range\n): boolean {\n return (\n selection.start.line === selection.end.line &&\n selection.start.character === selection.end.character\n );\n}\n\n/**\n * Returns the caret (focus) position for a selection.\n */\nexport function getCaretPosition(selection: EditorSelection): Position {\n const { start, end, direction } = selection;\n return direction === DirectionBackward ? start : end;\n}\n\n/**\n * Checks if a line is editable.\n */\nexport function isLineEditable(lineType: string): boolean {\n return (\n lineType === 'context' ||\n lineType === 'context-expanded' ||\n lineType === 'change-addition'\n );\n}\n\n/**\n * Checks whether selections `a` and `b` intersect.\n */\nexport function selectionIntersects(\n a: EditorSelection | Range,\n b: EditorSelection | Range\n): boolean {\n const aCollapsed = isCollapsedSelection(a);\n const bCollapsed = isCollapsedSelection(b);\n if (aCollapsed && bCollapsed) {\n return comparePosition(a.start, b.start) === 0;\n }\n if (aCollapsed) {\n return (\n comparePosition(b.start, a.start) <= 0 &&\n comparePosition(a.start, b.end) <= 0\n );\n }\n if (bCollapsed) {\n return (\n comparePosition(a.start, b.start) <= 0 &&\n comparePosition(b.start, a.end) <= 0\n );\n }\n return (\n comparePosition(a.start, b.end) < 0 && comparePosition(b.start, a.end) < 0\n );\n}\n\n/**\n * Compares two positions.\n */\nexport function comparePosition(a: Position, b: Position): number {\n if (a.line !== b.line) {\n return a.line - b.line;\n }\n return a.character - b.character;\n}\n\n/**\n * Creates a selection from anchor and focus offsets.\n */\nexport function createSelectionFromAnchorAndFocusOffsets(\n textDocument: TextDocument<unknown>,\n anchorOffset: number,\n focusOffset: number\n): EditorSelection {\n const direction =\n anchorOffset === focusOffset\n ? DirectionNone\n : anchorOffset < focusOffset\n ? DirectionForward\n : DirectionBackward;\n const start = Math.min(anchorOffset, focusOffset);\n const end = Math.max(anchorOffset, focusOffset);\n return {\n start: textDocument.positionAt(start),\n end: textDocument.positionAt(end),\n direction,\n };\n}\n\n/**\n * Maps a single offset from the pre-edit document into the post-edit document.\n * `edits` are resolved edits in pre-edit offsets, sorted ascending and\n * non-overlapping. An offset at or after an edit's start shifts to the end of\n * that edit's replacement (right gravity), so text inserted at the caret pushes\n * the caret past it; an offset strictly before an edit is only shifted by the\n * net length change of the edits that precede it.\n */\nfunction remapOffsetThroughEdits(\n offset: number,\n edits: readonly ResolvedTextEdit[]\n): number {\n let delta = 0;\n for (const edit of edits) {\n if (offset < edit.start) {\n break;\n }\n if (offset >= edit.end) {\n delta += edit.text.length - (edit.end - edit.start);\n } else {\n return edit.start + delta + edit.text.length;\n }\n }\n return offset + delta;\n}\n\n/**\n * Re-anchors selections after a batch of text edits has been applied, so the\n * caret keeps pointing at the same logical location in the changed buffer.\n *\n * `selectionOffsets` (one `[start, end]` pair per selection) and `edits` are\n * measured in the PRE-edit document; the returned selections are built from\n * `textDocument`, which must already reflect the applied edits. Selection\n * direction is preserved by remapping each edge and re-deriving anchor/focus.\n */\nexport function remapSelectionsAfterEdits(\n textDocument: TextDocument<unknown>,\n selections: readonly EditorSelection[],\n selectionOffsets: ReadonlyArray<readonly [number, number]>,\n edits: readonly ResolvedTextEdit[]\n): EditorSelection[] {\n return selections.map((selection, index) => {\n const [startOffset, endOffset] = selectionOffsets[index];\n const nextStart = remapOffsetThroughEdits(startOffset, edits);\n const nextEnd = remapOffsetThroughEdits(endOffset, edits);\n const anchorOffset =\n selection.direction === DirectionBackward ? nextEnd : nextStart;\n const focusOffset =\n selection.direction === DirectionBackward ? nextStart : nextEnd;\n return createSelectionFromAnchorAndFocusOffsets(\n textDocument,\n anchorOffset,\n focusOffset\n );\n });\n}\n\n/**\n * Creates a selection from a anchor and focus selection.\n */\nexport function createSelectionFrom(\n anchorSelection: EditorSelection,\n focusSelection: EditorSelection\n): EditorSelection {\n const anchor =\n anchorSelection.direction === DirectionBackward\n ? anchorSelection.end\n : anchorSelection.start;\n const currentStartOrder = comparePosition(anchor, focusSelection.start);\n const currentEndOrder = comparePosition(anchor, focusSelection.end);\n let focus = focusSelection.end;\n if (currentStartOrder <= 0) {\n focus = focusSelection.end;\n } else if (currentEndOrder >= 0) {\n focus = focusSelection.start;\n } else {\n // When the original anchor sits inside `current`, keep whichever edge\n // stayed at the anchor so drag direction remains stable.\n focus = currentStartOrder === 0 ? focusSelection.end : focusSelection.start;\n }\n const anchorVsFocus = comparePosition(anchor, focus);\n const direction: SelectionDirection =\n anchorVsFocus === 0\n ? DirectionNone\n : anchorVsFocus < 0\n ? DirectionForward\n : DirectionBackward;\n const selectionStart = anchorVsFocus <= 0 ? anchor : focus;\n const selectionEnd = anchorVsFocus <= 0 ? focus : anchor;\n return {\n start: selectionStart,\n end: selectionEnd,\n direction,\n };\n}\n\n/**\n * Extends or shrinks the selection `original` using the endpoints of `target`, \\\n * matching contenteditable shift + click extend behavior.\n */\nexport function extendSelection(\n original: EditorSelection,\n target: EditorSelection\n): EditorSelection {\n const leftExtended = comparePosition(target.start, original.start) < 0;\n const rightExtended = comparePosition(target.end, original.end) > 0;\n\n if (leftExtended && !rightExtended) {\n return {\n start: target.start,\n end: original.end,\n direction: DirectionBackward,\n };\n }\n\n if (rightExtended && !leftExtended) {\n return {\n start: original.start,\n end: target.end,\n direction: DirectionForward,\n };\n }\n\n if (original.direction === DirectionBackward) {\n return {\n start: target.start,\n end: original.end,\n direction:\n comparePosition(target.start, original.end) === 0\n ? DirectionNone\n : DirectionBackward,\n };\n }\n\n return {\n start: original.start,\n end: target.end,\n direction:\n comparePosition(original.start, target.end) === 0\n ? DirectionNone\n : DirectionForward,\n };\n}\n\n/**\n * Extends multiple selections.\n */\nexport function extendSelections(\n selections: EditorSelection[],\n target: EditorSelection\n): EditorSelection[] {\n const newSelections = selections.map((selection) => {\n return extendSelection(selection, target);\n });\n return mergeOverlappingSelections(newSelections);\n}\n\n/**\n * Merges overlapping selections.\n */\nexport function mergeOverlappingSelections(\n selections: EditorSelection[]\n): EditorSelection[] {\n if (selections.length <= 1) {\n return selections;\n }\n const ordered = selections\n .map((selection, index) => ({ index, selection }))\n .sort((a, b) => {\n const startOrder = comparePosition(a.selection.start, b.selection.start);\n if (startOrder !== 0) {\n return startOrder;\n }\n const endOrder = comparePosition(a.selection.end, b.selection.end);\n return endOrder !== 0 ? endOrder : a.index - b.index;\n });\n const merged: {\n index: number;\n selection: EditorSelection;\n }[] = [];\n\n let current = ordered[0];\n for (const entry of ordered.slice(1)) {\n if (selectionIntersects(current.selection, entry.selection)) {\n const latest = entry.index > current.index ? entry : current;\n const start =\n comparePosition(entry.selection.start, current.selection.start) < 0\n ? entry.selection.start\n : current.selection.start;\n const end =\n comparePosition(entry.selection.end, current.selection.end) > 0\n ? entry.selection.end\n : current.selection.end;\n let direction = latest.selection.direction;\n if (direction === DirectionNone && comparePosition(start, end) !== 0) {\n direction =\n comparePosition(latest.selection.start, start) === 0\n ? DirectionBackward\n : DirectionForward;\n }\n current = { index: latest.index, selection: { direction, end, start } };\n continue;\n }\n\n merged.push(current);\n current = entry;\n }\n merged.push(current);\n\n return merged\n .sort((a, b) => a.index - b.index)\n .map(({ selection }) => selection);\n}\n\n/**\n * Converts selections into merged line blocks for line-based commands.\n */\nexport function getSelectedLineBlocks(\n selections: EditorSelection[]\n): { startLine: number; endLine: number }[] {\n const blocks = selections\n .map((selection) => {\n let endLine = selection.end.line;\n if (\n selection.end.character === 0 &&\n comparePosition(selection.start, selection.end) !== 0\n ) {\n endLine--;\n }\n return {\n startLine: selection.start.line,\n endLine: Math.max(selection.start.line, endLine),\n };\n })\n .sort((a, b) => {\n const startOrder = a.startLine - b.startLine;\n return startOrder !== 0 ? startOrder : a.endLine - b.endLine;\n });\n\n const merged: { startLine: number; endLine: number }[] = [];\n for (const block of blocks) {\n const previous = merged.at(-1);\n if (previous !== undefined && block.startLine <= previous.endLine + 1) {\n previous.endLine = Math.max(previous.endLine, block.endLine);\n } else {\n merged.push({ ...block });\n }\n }\n return merged;\n}\n\n/**\n * Moves a selection's line positions after its lines are shifted, clamping to\n * the target document bounds.\n */\nexport function shiftSelectionLines(\n selection: EditorSelection,\n direction: -1 | 1,\n lineCount: number,\n getLineLength: (line: number) => number\n): EditorSelection {\n const shiftPosition = (position: Position): Position => {\n const line = position.line + direction;\n if (line >= lineCount) {\n const lastLine = Math.max(0, lineCount - 1);\n return {\n line: lastLine,\n character: getLineLength(lastLine),\n };\n }\n if (line < 0) {\n return { line: 0, character: 0 };\n }\n return {\n line,\n character: position.character,\n };\n };\n\n return {\n start: shiftPosition(selection.start),\n end: shiftPosition(selection.end),\n direction: selection.direction,\n };\n}\n\n/**\n * Finds the next matching word and updates the selections.\n */\nexport function findNextMatch(\n textDocument: TextDocument<unknown>,\n selections: EditorSelection[]\n): EditorSelection[] | undefined {\n if (selections.length === 0) {\n return undefined;\n }\n\n const normalizedSelections = selections.map((selection) =>\n isCollapsedSelection(selection)\n ? expandCollapsedSelectionToWord(textDocument, selection)\n : selection\n );\n const texts = normalizedSelections.map((s) => textDocument.getText(s));\n const needle = texts[0];\n if (needle.length === 0 || texts.some((t) => t !== needle)) {\n return undefined;\n }\n\n const occupied = normalizedSelections.map(\n (s) =>\n [textDocument.offsetAt(s.start), textDocument.offsetAt(s.end)] as [\n number,\n number,\n ]\n );\n const nextOffset = textDocument.findNextNonOverlappingSubstring(\n needle,\n occupied\n );\n if (nextOffset === undefined) {\n return normalizedSelections.some((selection, index) => {\n const original = selections[index];\n return (\n comparePosition(selection.start, original.start) !== 0 ||\n comparePosition(selection.end, original.end) !== 0 ||\n selection.direction !== original.direction\n );\n })\n ? normalizedSelections\n : undefined;\n }\n const added = createSelectionFromAnchorAndFocusOffsets(\n textDocument,\n nextOffset,\n nextOffset + needle.length\n );\n return [...normalizedSelections, added];\n}\n\n/**\n * Get the full selection of the document.\n */\nexport function getDocumentFullSelection(\n textDocument: TextDocument<unknown>\n): EditorSelection {\n const lastLine = textDocument.lineCount - 1;\n const lastCharacter = textDocument.getLineLength(lastLine);\n return {\n start: { line: 0, character: 0 },\n end: { line: lastLine, character: lastCharacter },\n direction: DirectionForward,\n };\n}\n\n/**\n * Get the boundary selection of the document.\n */\nexport function getDocumentBoundarySelection(\n textDocument: TextDocument<unknown>,\n atEnd: boolean,\n trimmedEndNewLine?: boolean\n): EditorSelection {\n let line = 0;\n if (atEnd) {\n const lastLine = textDocument.lineCount - 1;\n const hasTrailingBlankLine =\n trimmedEndNewLine === true &&\n lastLine > 0 &&\n textDocument.getLineLength(lastLine) === 0;\n line = hasTrailingBlankLine ? lastLine - 1 : lastLine;\n }\n const character = atEnd ? textDocument.getLineLength(line) : 0;\n const start = { line, character };\n return {\n start: start,\n end: start,\n direction: DirectionForward,\n };\n}\n\ninterface ClipboardRegion {\n start: number;\n end: number;\n}\n\n/** Resolves the document offset range one selection contributes to a copy. */\nfunction resolveClipboardRegion(\n textDocument: TextDocument<unknown>,\n selection: EditorSelection\n): ClipboardRegion {\n if (isCollapsedSelection(selection)) {\n const line = selection.start.line;\n const start = textDocument.offsetAt({ line, character: 0 });\n const end =\n line < textDocument.lineCount - 1\n ? textDocument.offsetAt({ line: line + 1, character: 0 })\n : textDocument.offsetAt({\n line,\n character: textDocument.getLineLength(line),\n });\n return { start, end };\n }\n const start = textDocument.offsetAt(selection.start);\n const end = textDocument.offsetAt(selection.end);\n return start <= end ? { start, end } : { start: end, end: start };\n}\n\n/**\n * Resolves the document offset range each selection contributes to the\n * clipboard, ordered by position. A collapsed selection contributes its whole\n * logical line including the trailing line break; the final line has no\n * trailing break to include. A ranged selection contributes the selected text.\n */\nfunction resolveClipboardRegions(\n textDocument: TextDocument<unknown>,\n selections: EditorSelection[]\n): ClipboardRegion[] {\n return selections\n .map((selection) => resolveClipboardRegion(textDocument, selection))\n .sort((a, b) => {\n const startOrder = a.start - b.start;\n return startOrder !== 0 ? startOrder : a.end - b.end;\n });\n}\n\n/**\n * Gets the text contributed by each selection in document order, preserving\n * the pairing needed to paste the values into another set of selections.\n */\nexport function getSelectionClipboardTexts(\n textDocument: TextDocument<unknown>,\n selections: EditorSelection[]\n): string[] {\n const regions = resolveClipboardRegions(textDocument, selections);\n return regions.map(({ start, end }) => textDocument.getTextSlice(start, end));\n}\n\n/**\n * Get the clipboard text of the selections for the given text document. Used by\n * both copy and cut so the two stay in sync. Overlapping regions (e.g. several\n * carets on one line) are merged so the same text is never emitted twice, and a\n * line-ending separator is inserted only between regions that aren't already\n * contiguous in the document.\n */\nexport function getSelectionText(\n textDocument: TextDocument<unknown>,\n selections: EditorSelection[]\n): string {\n const regions = resolveClipboardRegions(textDocument, selections);\n const eol = textDocument.eol;\n let result = '';\n let prevEnd = -1;\n for (const region of regions) {\n if (region.end <= region.start) {\n continue;\n }\n if (region.start <= prevEnd) {\n // Contiguous with or overlapping the previous region: extend it rather\n // than repeat any shared text.\n if (region.end > prevEnd) {\n result += textDocument.getTextSlice(prevEnd, region.end);\n prevEnd = region.end;\n }\n continue;\n }\n if (result.length > 0 && !endsWithLineBreak(result)) {\n result += eol;\n }\n result += textDocument.getTextSlice(region.start, region.end);\n prevEnd = region.end;\n }\n return result;\n}\n\ninterface SelectionCut {\n index: number;\n edit: ResolvedTextEdit;\n}\n\n// Resolves the deletion an individual selection contributes to a cut: a\n// collapsed caret removes its whole logical line, while a ranged selection\n// removes only the selected text.\nfunction resolveSelectionCutEdit(\n textDocument: TextDocument<unknown>,\n selection: EditorSelection\n): ResolvedTextEdit {\n if (isCollapsedSelection(selection)) {\n return resolveCollapsedSelectionCutEdit(textDocument, selection);\n }\n const [start, end] =\n comparePosition(selection.start, selection.end) <= 0\n ? [selection.start, selection.end]\n : [selection.end, selection.start];\n return {\n start: textDocument.offsetAt(start),\n end: textDocument.offsetAt(end),\n text: '',\n };\n}\n\n// A caret-only cut removes the whole logical line. Non-final lines delete\n// their trailing line break; the final line deletes the preceding break so\n// no empty line is left behind.\nfunction resolveCollapsedSelectionCutEdit(\n textDocument: TextDocument<unknown>,\n selection: EditorSelection\n): ResolvedTextEdit {\n const line = selection.start.line;\n const lineStart = textDocument.offsetAt({ line, character: 0 });\n const lineEnd = textDocument.offsetAt({\n line,\n character: textDocument.getLineLength(line),\n });\n\n if (line < textDocument.lineCount - 1) {\n const nextLineStart = textDocument.offsetAt({\n line: line + 1,\n character: 0,\n });\n return { start: lineStart, end: nextLineStart, text: '' };\n }\n\n if (line > 0) {\n const previousLineEnd = textDocument.offsetAt({\n line: line - 1,\n character: textDocument.getLineLength(line - 1),\n });\n return { start: previousLineEnd, end: lineEnd, text: '' };\n }\n\n return { start: lineStart, end: lineEnd, text: '' };\n}\n\nfunction mergeCutEdits(orderedCuts: SelectionCut[]): ResolvedTextEdit[] {\n const edits: ResolvedTextEdit[] = [];\n for (const { edit } of orderedCuts) {\n if (edit.start >= edit.end) {\n continue;\n }\n const last = edits.at(-1);\n if (last !== undefined && edit.start <= last.end) {\n edits[edits.length - 1] = {\n start: last.start,\n end: Math.max(last.end, edit.end),\n text: '',\n };\n } else {\n edits.push(edit);\n }\n }\n return edits;\n}\n\nfunction mapCutSelectionOffsets(\n orderedCuts: SelectionCut[],\n edits: ResolvedTextEdit[]\n): number[] {\n const nextOffsets: number[] = Array.from({ length: orderedCuts.length });\n let editIndex = 0;\n let offsetDelta = 0;\n for (const cut of orderedCuts) {\n while (editIndex < edits.length && cut.edit.start > edits[editIndex].end) {\n const edit = edits[editIndex];\n offsetDelta -= edit.end - edit.start;\n editIndex++;\n }\n\n const edit = edits[editIndex];\n if (\n edit !== undefined &&\n cut.edit.start >= edit.start &&\n cut.edit.start <= edit.end\n ) {\n nextOffsets[cut.index] = edit.start + offsetDelta;\n } else {\n nextOffsets[cut.index] = cut.edit.start + offsetDelta;\n }\n }\n return nextOffsets;\n}\n\n// Resolves the clipboard text, merged deletions, and resulting caret offsets\n// for a cut. The clipboard text comes from the shared getSelectionText helper\n// so cut stays in sync with copy, while the deletions are computed per\n// selection and merged so overlapping cuts delete their shared text once.\nexport function resolveSelectionCut(\n textDocument: TextDocument<unknown>,\n selections: EditorSelection[]\n): {\n text: string;\n edits: ResolvedTextEdit[];\n nextSelectionOffsets: number[];\n} {\n const cuts = selections.map<SelectionCut>((selection, index) => ({\n index,\n edit: resolveSelectionCutEdit(textDocument, selection),\n }));\n const orderedCuts = [...cuts].sort((a, b) => {\n const startOrder = a.edit.start - b.edit.start;\n if (startOrder !== 0) {\n return startOrder;\n }\n const endOrder = a.edit.end - b.edit.end;\n if (endOrder !== 0) {\n return endOrder;\n }\n return a.index - b.index;\n });\n const edits = mergeCutEdits(orderedCuts);\n return {\n text: getSelectionText(textDocument, selections),\n edits,\n nextSelectionOffsets: mapCutSelectionOffsets(orderedCuts, edits),\n };\n}\n\n/**\n * Get the anchor node and offset for a selection.\n */\nexport function getSelectionAnchor(\n lineElement: HTMLElement,\n character: number\n): [Node, number] {\n const ch = Math.max(0, character);\n const tokens = collectTokens(lineElement);\n\n let last: HTMLElement | null = null;\n for (const token of tokens) {\n last = token;\n const base = getCharacterIndex(token)!;\n const end = base + (token.textContent?.length ?? 0);\n if (ch <= end) {\n const anchor = textAt(token, ch < base ? 0 : ch - base);\n if (anchor !== null) {\n return anchor;\n }\n }\n }\n\n if (last !== null) {\n const anchor = textAt(last, last.textContent?.length ?? 0);\n if (anchor !== null) {\n return anchor;\n }\n return [last, 0];\n }\n\n let textOffset = 0;\n let lastTextNode: Text | null = null;\n for (const child of lineElement.childNodes) {\n if (child.nodeType === 1 && (child as HTMLElement).tagName === 'BR') {\n return [child, 0];\n }\n if (child.nodeType !== 3) {\n continue;\n }\n lastTextNode = child as Text;\n const len = getTextOffset(\n lastTextNode.textContent,\n lastTextNode.textContent?.length ?? 0\n );\n if (ch <= textOffset + len) {\n return [\n lastTextNode,\n getTextOffset(lastTextNode.textContent, ch - textOffset),\n ];\n }\n textOffset += len;\n }\n\n if (lastTextNode !== null) {\n return [\n lastTextNode,\n getTextOffset(\n lastTextNode.textContent,\n lastTextNode.textContent?.length ?? 0\n ),\n ];\n }\n return [lineElement, 0];\n}\n\n/**\n * Expands a zero-width selection to the word-like segment that contains the caret.\n */\nexport function expandCollapsedSelectionToWord(\n textDocument: TextDocument<unknown>,\n selection: EditorSelection\n): EditorSelection {\n const { line, character } = selection.start;\n const lineText = textDocument.getLineText(line);\n const ch = Math.max(0, Math.min(character, lineText.length));\n const span = expandCollapsedLineWord(lineText, ch);\n if (span === undefined) {\n return selection;\n }\n return {\n start: { line, character: span.start },\n end: { line, character: span.end },\n direction: DirectionForward,\n };\n}\n\nfunction expandCollapsedLineWord(\n lineText: string,\n character: number\n): { start: number; end: number } | undefined {\n const segmenter = createSegmenter({ granularity: 'word' });\n if (segmenter !== undefined) {\n for (const seg of segmenter.segment(lineText)) {\n if (seg.isWordLike !== true) {\n continue;\n }\n const lo = seg.index;\n const hi = lo + seg.segment.length;\n // Match when the cursor is inside the word or immediately touching\n // one of its boundaries — not when separated by non-word characters.\n if (character >= lo && character <= hi) {\n return { start: lo, end: hi };\n }\n }\n return undefined;\n }\n // Degraded path for engines lacking Intl.Segmenter: treat runs of\n // alphanumeric/underscore characters as words.\n const wordRe = /[\\p{Alphabetic}\\p{Number}_]+/gu;\n let match: RegExpExecArray | null;\n while ((match = wordRe.exec(lineText)) !== null) {\n const lo = match.index;\n const hi = lo + match[0].length;\n if (character >= lo && character <= hi) {\n return { start: lo, end: hi };\n }\n }\n return undefined;\n}\n\n// Resolves the range removed by deleteWordBackward for one selection.\nfunction resolveDeleteWordBackwardRange(\n textDocument: TextDocument<unknown>,\n selection: EditorSelection\n): [start: Position, end: Position] {\n if (!isCollapsedSelection(selection)) {\n return [selection.start, selection.end];\n }\n const caret = getCaretPosition(selection);\n const { line, character: head } = caret;\n if (head === 0) {\n if (line === 0) {\n return [caret, caret];\n }\n const prevLineLength = textDocument.getLineLength(line - 1);\n return [\n { line: line - 1, character: prevLineLength },\n { line, character: 0 },\n ];\n }\n const lineText = textDocument.getLineText(line);\n const graphemeStarts = getLineGraphemeStarts(lineText);\n let pos = head;\n let match: number | undefined;\n while (pos > 0) {\n const prev = findClusterBreak(lineText, pos, false, graphemeStarts);\n const nextChar = lineText.slice(prev, pos);\n const nextMatch = !/\\S/.test(nextChar)\n ? 0\n : /\\p{Alphabetic}|\\p{Number}|_/u.test(nextChar)\n ? 1\n : 2;\n if (match !== undefined && nextMatch !== match) {\n break;\n }\n if (nextMatch !== 0 || pos !== head) {\n match = nextMatch;\n }\n pos = prev;\n }\n return [\n { line, character: pos },\n { line, character: head },\n ];\n}\n\nfunction findClusterBreak(\n text: string,\n pos: number,\n forward: boolean,\n graphemeStarts: number[]\n): number {\n if (forward) {\n for (const start of graphemeStarts) {\n if (start > pos) {\n return start;\n }\n }\n return text.length;\n }\n for (let i = graphemeStarts.length - 1; i >= 0; i--) {\n const start = graphemeStarts[i];\n if (start < pos) {\n return start;\n }\n }\n return 0;\n}\n\n// Lists the start column of every grapheme cluster on a line (always starting\n// at 0). Used to step the caret and to transpose by whole graphemes so a\n// surrogate pair (emoji) or combining sequence is never split.\nfunction getLineGraphemeStarts(lineText: string): number[] {\n const graphemeStarts = [0];\n const segmenter = getGraphemeSegmenter();\n if (segmenter !== undefined) {\n for (const segment of segmenter.segment(lineText)) {\n if (segment.index > 0) {\n graphemeStarts.push(segment.index);\n }\n }\n return graphemeStarts;\n }\n // Degraded path for engines lacking Intl.Segmenter: step by code point\n // (keeps surrogate pairs intact, but not combining sequences).\n let index = 0;\n for (const codePoint of lineText) {\n if (index > 0) {\n graphemeStarts.push(index);\n }\n index += codePoint.length;\n }\n return graphemeStarts;\n}\n\n// Returns the character column one grapheme cluster to the left or right of\n// `character` on `line`. Stepping by grapheme rather than by a single UTF-16\n// code unit keeps the caret from landing inside an emoji or other multi-unit\n// character. Crossing a line boundary is left to the caller.\nfunction stepCharacterByGrapheme(\n textDocument: TextDocument<unknown>,\n line: number,\n character: number,\n forward: boolean\n): number {\n const lineLength = textDocument.getLineLength(line);\n if (forward) {\n if (character >= lineLength) {\n return lineLength;\n }\n const lineStart = textDocument.offsetAt({ line, character: 0 });\n const suffix = textDocument.getTextSlice(\n lineStart + character,\n lineStart + lineLength\n );\n const segmenter = getGraphemeSegmenter();\n if (segmenter !== undefined) {\n for (const segment of segmenter.segment(suffix)) {\n return character + segment.segment.length;\n }\n return lineLength;\n }\n // Degraded path for engines lacking Intl.Segmenter: step one code point.\n for (const codePoint of suffix) {\n return character + codePoint.length;\n }\n return lineLength;\n }\n if (character <= 0) {\n return 0;\n }\n const lineStart = textDocument.offsetAt({ line, character: 0 });\n const prefix = textDocument.getTextSlice(lineStart, lineStart + character);\n let prevStart = 0;\n const segmenter = getGraphemeSegmenter();\n if (segmenter !== undefined) {\n for (const segment of segmenter.segment(prefix)) {\n prevStart = segment.index;\n }\n return prevStart;\n }\n // Degraded path for engines lacking Intl.Segmenter: step one code point.\n let index = 0;\n for (const codePoint of prefix) {\n prevStart = index;\n index += codePoint.length;\n }\n return prevStart;\n}\n\nfunction getSelectionAnchorAndFocusOffsets(\n textDocument: TextDocument<unknown>,\n selection: EditorSelection\n): [anchorOffset: number, focusOffset: number] {\n const isBackward = selection.direction === DirectionBackward;\n return [\n textDocument.offsetAt(isBackward ? selection.end : selection.start),\n textDocument.offsetAt(getCaretPosition(selection)),\n ];\n}\n\n// Resolves the range removed by deleteHardLineForward for one selection.\nfunction resolveDeleteHardLineForwardRange(\n textDocument: TextDocument<unknown>,\n selection: EditorSelection\n): Range {\n if (!isCollapsedSelection(selection)) {\n return { start: selection.start, end: selection.end };\n }\n const { line, character } = selection.start;\n const lineText = textDocument.getLineText(line);\n const lineLength = lineText.length;\n if (character < lineLength) {\n return {\n start: { line, character },\n end: { line, character: lineLength },\n };\n }\n if (line < textDocument.lineCount - 1) {\n return {\n start: { line, character },\n end: { line: line + 1, character: 0 },\n };\n }\n return {\n start: { line, character },\n end: { line, character },\n };\n}\n\n// When the user inserts a lone line break, copy the current line's indentation onto the new line.\nfunction expandSingleNewlineInsert(\n textDocument: TextDocument<unknown>,\n insertText: string,\n insertStartOffset: number\n): string {\n if (insertText !== '\\n' && insertText !== '\\r' && insertText !== '\\r\\n') {\n return insertText;\n }\n const line = textDocument.positionAt(insertStartOffset).line;\n const lineText = textDocument.getLineText(line);\n const indentLen = getLeadingSpaces(lineText);\n if (indentLen === 0) {\n return insertText;\n }\n return insertText + lineText.slice(0, indentLen);\n}\n\nfunction getLeadingSpaces(text: string): number {\n let indent = 0;\n for (; indent < text.length; indent++) {\n const c = text.charCodeAt(indent);\n if (c !== /* space */ 32 && c !== /* tab */ 9) {\n break;\n }\n }\n return indent;\n}\n\nfunction createSelectionsFromOffsetPairs(\n textDocument: TextDocument<unknown>,\n offsetPairs: readonly [anchorOffset: number, focusOffset: number][]\n): EditorSelection[] {\n const normalizedOffsets: number[] = [];\n for (const [anchorOffset, focusOffset] of offsetPairs) {\n normalizedOffsets.push(\n Math.min(anchorOffset, focusOffset),\n Math.max(anchorOffset, focusOffset)\n );\n }\n const positions = textDocument.positionsAt(normalizedOffsets);\n return offsetPairs.map(([anchorOffset, focusOffset], index) => {\n const direction =\n anchorOffset === focusOffset\n ? DirectionNone\n : anchorOffset < focusOffset\n ? DirectionForward\n : DirectionBackward;\n return {\n start: positions[index * 2],\n end: positions[index * 2 + 1],\n direction,\n };\n });\n}\n\n// Expands a backspace over leading spaces into one soft-tab width so mixed hard/soft indentation\n// behaves like the explicit outdent command.\nfunction normalizeLeadingIndentForChange(\n textDocument: TextDocument<unknown>,\n change: ResolvedTextEdit,\n tabSize: number\n): ResolvedTextEdit {\n if (change.text !== '' || change.start !== change.end - 1) {\n return change;\n }\n const caretPosition = textDocument.positionAt(change.end);\n if (caretPosition.character === 0) {\n return change;\n }\n const lineText = textDocument.getLineText(caretPosition.line);\n const leadingText = lineText.slice(0, caretPosition.character);\n if (/[^ \\t]/.test(leadingText)) {\n return change;\n }\n if (lineText[caretPosition.character - 1] === '\\t') {\n return change;\n }\n const softTabStart = Math.max(0, caretPosition.character - tabSize);\n const softTabText = lineText.slice(softTabStart, caretPosition.character);\n if (softTabText.length === tabSize && /^ +$/.test(softTabText)) {\n return {\n ...change,\n start: change.end - softTabText.length,\n };\n }\n return change;\n}\n\nfunction boundaryToPosition(node: Node, offset: number): Position | null {\n const host = node.nodeType === 1 ? (node as HTMLElement) : node.parentElement;\n let lineEl: HTMLElement | null = host;\n while (lineEl !== null && getLineIndex(lineEl) === undefined) {\n lineEl = lineEl.parentElement;\n }\n if (lineEl === null) {\n return null;\n }\n const line = getLineIndex(lineEl);\n if (line === undefined) {\n return null;\n }\n\n if (node.nodeType === 3) {\n if (node.parentElement === null) {\n return null;\n }\n if (findTokenSpan(node.parentElement) !== null) {\n return { line, character: getLineChildEnd(node, offset) };\n }\n return {\n line,\n character:\n offsetBefore(lineEl, node) + getTextOffset(node.textContent, offset),\n };\n }\n\n if (node.nodeType === 1) {\n const el = node as HTMLElement;\n if (el.tagName === 'DIV') {\n let character = 0;\n for (let i = 0; i < offset; i++) {\n character = getLineChildEnd(el.childNodes[i]);\n }\n return { line, character };\n }\n if (el.tagName === 'BR') {\n return { line, character: 0 };\n }\n if (el.tagName === 'SPAN') {\n if (offset < el.childNodes.length) {\n const next = el.childNodes[offset];\n if (next?.nodeType === 1) {\n const nextBase = getCharacterIndex(next as HTMLElement);\n if (nextBase !== undefined) {\n return { line, character: nextBase };\n }\n const token = findTokenSpan(next as HTMLElement);\n const tokenBase =\n token === null ? undefined : getCharacterIndex(token);\n if (tokenBase !== undefined) {\n return { line, character: tokenBase };\n }\n }\n }\n return {\n line,\n character:\n offset > 0\n ? getLineChildEnd(el.childNodes[offset - 1])\n : offsetBefore(lineEl, el),\n };\n }\n return { line, character: offsetBefore(lineEl, el) };\n }\n return null;\n}\n\nfunction collectTokens(line: HTMLElement): HTMLElement[] {\n const tokens: HTMLElement[] = [];\n for (const child of line.childNodes) {\n if (child.nodeType !== 1) {\n continue;\n }\n const el = child as HTMLElement;\n if (el.tagName !== 'SPAN') {\n continue;\n }\n const base = getCharacterIndex(el);\n if (base !== undefined) {\n tokens.push(el);\n continue;\n }\n for (const nested of el.childNodes) {\n if (\n nested.nodeType === 1 &&\n getCharacterIndex(nested as HTMLElement) !== undefined\n ) {\n tokens.push(nested as HTMLElement);\n }\n }\n }\n return tokens;\n}\n\nfunction textAt(token: HTMLElement, offset: number): [Node, number] | null {\n let remaining = Math.max(0, offset);\n const stack: Array<{ container: Node; index: number }> = [\n { container: token, index: 0 },\n ];\n while (stack.length > 0) {\n const frame = stack[stack.length - 1];\n if (frame.index >= frame.container.childNodes.length) {\n stack.pop();\n continue;\n }\n const walkNode = frame.container.childNodes[frame.index];\n frame.index++;\n if (walkNode.nodeType === 3) {\n const len = getTextOffset(\n walkNode.textContent,\n walkNode.textContent?.length ?? 0\n );\n if (remaining <= len) {\n return [walkNode, remaining];\n }\n remaining -= len;\n } else if (walkNode.nodeType === 1) {\n stack.push({ container: walkNode, index: 0 });\n }\n }\n return null;\n}\n\nfunction textLengthBefore(root: Node, target: Node): number {\n let before = 0;\n const stack: Array<{ container: Node; index: number }> = [\n { container: root, index: 0 },\n ];\n while (stack.length > 0) {\n const frame = stack[stack.length - 1];\n if (frame.index >= frame.container.childNodes.length) {\n stack.pop();\n continue;\n }\n const walkNode = frame.container.childNodes[frame.index];\n if (walkNode === target) {\n return before;\n }\n frame.index++;\n if (walkNode.nodeType === 3) {\n before += getTextOffset(\n walkNode.textContent,\n walkNode.textContent?.length ?? 0\n );\n } else if (walkNode.nodeType === 1) {\n stack.push({ container: walkNode, index: 0 });\n }\n }\n return before;\n}\n\nfunction isInside(token: HTMLElement, node: Node): boolean {\n let current: Node | null = node;\n while (current !== null) {\n if (current === token) {\n return true;\n }\n current = current.parentElement;\n }\n return false;\n}\n\nfunction offsetBefore(line: HTMLElement, node: Node): number {\n if (node.parentElement === line) {\n let offset = 0;\n const index = Array.prototype.indexOf.call(line.childNodes, node);\n for (let i = 0; i < index; i++) {\n offset = getLineChildEnd(line.childNodes[i]);\n }\n return offset;\n }\n for (const token of collectTokens(line)) {\n if (isInside(token, node)) {\n const base = getCharacterIndex(token)!;\n return base + (node.nodeType === 3 ? textLengthBefore(token, node) : 0);\n }\n }\n let offset = 0;\n let target: HTMLElement | null =\n node.nodeType === 1 ? (node as HTMLElement) : node.parentElement;\n while (target !== null && target.parentElement !== null) {\n if (getLineIndex(target.parentElement) !== undefined) {\n break;\n }\n const parent = target.parentElement;\n const index = Array.prototype.indexOf.call(parent.childNodes, target);\n for (let i = 0; i < index; i++) {\n offset = getLineChildEnd(parent.childNodes[i]);\n }\n target = parent;\n }\n return offset;\n}\n\nfunction findTokenSpan(el: HTMLElement): HTMLElement | null {\n let current: HTMLElement | null = el;\n while (current !== null) {\n if (getLineIndex(current) !== undefined) {\n return null;\n }\n if (getCharacterIndex(current) !== undefined) {\n return current;\n }\n current = current.parentElement;\n }\n return null;\n}\n\nfunction getLineChildEnd(\n child: Node | undefined,\n textOffsetInChild?: number\n): number {\n if (child === undefined) {\n return 0;\n }\n if (child.nodeType === 3) {\n const parent = child.parentElement;\n if (parent === null) {\n return 0;\n }\n const token = findTokenSpan(parent);\n if (token === null) {\n return 0;\n }\n const base = getCharacterIndex(token);\n if (base === undefined) {\n return 0;\n }\n const length =\n textOffsetInChild === undefined\n ? getTextOffset(child.textContent, child.textContent?.length ?? 0)\n : getTextOffset(child.textContent, textOffsetInChild);\n return base + textLengthBefore(token, child) + length;\n }\n if (child.nodeType !== 1) {\n return 0;\n }\n const el = child as HTMLElement;\n if (el.tagName !== 'SPAN' && el.tagName !== 'BR') {\n return 0;\n }\n const base = getCharacterIndex(el);\n if (base !== undefined) {\n return base + (el.textContent?.length ?? 0);\n }\n let end = 0;\n for (const token of el.childNodes) {\n end = Math.max(end, getLineChildEnd(token));\n }\n return end;\n}\n\nfunction getLineIndex(el: HTMLElement): number | undefined {\n const { line, lineType } = el.dataset;\n if (line !== undefined && lineType !== 'change-deletion') {\n const lineNumber = parseInt(line, 10);\n if (!Number.isNaN(lineNumber)) {\n return lineNumber - 1;\n }\n }\n return undefined;\n}\n\nfunction getCharacterIndex(el: HTMLElement): number | undefined {\n const { char } = el.dataset;\n if (char !== undefined) {\n const charIndex = parseInt(char, 10);\n if (!Number.isNaN(charIndex)) {\n return charIndex;\n }\n }\n return undefined;\n}\n\nfunction getTextOffset(\n text: string | null | undefined,\n offset: number\n): number {\n const value = text ?? '';\n const lineBreakIndex = value.search(/[\\r\\n]/);\n return Math.min(\n offset,\n lineBreakIndex === -1 ? value.length : lineBreakIndex\n );\n}\n"],"mappings":"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"}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { EditorSelection, TextEdit } from "../types.js";
|
|
2
|
+
import { TextDocument } from "./textDocument.js";
|
|
3
|
+
import { PopoverViewportBounds } from "./popover.js";
|
|
4
|
+
|
|
5
|
+
//#region src/editor/selectionAction.d.ts
|
|
6
|
+
interface SelectionActionContext<LAnnotation> {
|
|
7
|
+
/** The current selection (live: reflects keyboard-driven changes). */
|
|
8
|
+
selection: EditorSelection;
|
|
9
|
+
/** The text document. */
|
|
10
|
+
textDocument: TextDocument<LAnnotation>;
|
|
11
|
+
/** Applies the edits to the text document. */
|
|
12
|
+
applyEdits: (edits: TextEdit[]) => void;
|
|
13
|
+
/** Gets the text of the current selection. */
|
|
14
|
+
getSelectionText: () => string;
|
|
15
|
+
/** Replaces the text of the current selection. */
|
|
16
|
+
replaceSelectionText: (text: string) => void;
|
|
17
|
+
/** Closes the selection action. */
|
|
18
|
+
close: () => void;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Selection action widget.
|
|
22
|
+
*/
|
|
23
|
+
declare class SelectionActionWidget {
|
|
24
|
+
#private;
|
|
25
|
+
constructor(selectionActionElement: HTMLElement, overlayElement: HTMLElement, onHeightChange: () => void);
|
|
26
|
+
/**
|
|
27
|
+
* Repositions the selection action widget.
|
|
28
|
+
* @param left - The left position of the selection action widget.
|
|
29
|
+
* @param top - The top position of the selection action widget.
|
|
30
|
+
* @param gutterWidth - The width of the gutter.
|
|
31
|
+
* @param placeAbove - Whether the selection action widget should be placed above the anchor.
|
|
32
|
+
* @param visible - Whether the selection intersects the viewport.
|
|
33
|
+
*/
|
|
34
|
+
reposition(left: number, top: number, gutterWidth: number, placeAbove: boolean, visible: boolean, viewport?: PopoverViewportBounds): void;
|
|
35
|
+
/**
|
|
36
|
+
* Gets the height of the selection action widget.
|
|
37
|
+
* @returns The height of the selection action widget.
|
|
38
|
+
*/
|
|
39
|
+
get height(): number;
|
|
40
|
+
/**
|
|
41
|
+
* Cleans up the selection action widget.
|
|
42
|
+
*/
|
|
43
|
+
cleanup(): void;
|
|
44
|
+
}
|
|
45
|
+
//#endregion
|
|
46
|
+
export { SelectionActionContext, SelectionActionWidget };
|
|
47
|
+
//# sourceMappingURL=selectionAction.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"selectionAction.d.ts","names":[],"sources":["../../src/editor/selectionAction.ts"],"mappings":";;;;;UAQiB,sBAAA;;EAEf,SAAA,EAAW,eAAA;EAF0B;EAIrC,YAAA,EAAc,YAAA,CAAa,WAAA;EAFhB;EAIX,UAAA,GAAa,KAAA,EAAO,QAAA;EAFN;EAId,gBAAA;EAF4B;EAI5B,oBAAA,GAAuB,IAAA;EAVe;EAYtC,KAAA;AAAA;;;;cAMW,qBAAA;EAAA;EAOX,WAAA,CACE,sBAAA,EAAwB,WAAA,EACxB,cAAA,EAAgB,WAAA,EAChB,cAAA;EApBF;;;;;AAIK;AAMP;;EAwCE,UAAA,CACE,IAAA,UACA,GAAA,UACA,WAAA,UACA,UAAA,WACA,OAAA,WACA,QAAA,GAAW,qBAAA;EAtCa;;;;EAAA,IAsDtB,MAAA;;;;EAOJ,OAAA;AAAA"}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { h } from "./utils.js";
|
|
2
|
+
import { setPopoverPositionStyles } from "./popover.js";
|
|
3
|
+
//#region src/editor/selectionAction.ts
|
|
4
|
+
/**
|
|
5
|
+
* Selection action widget.
|
|
6
|
+
*/
|
|
7
|
+
var SelectionActionWidget = class {
|
|
8
|
+
#root;
|
|
9
|
+
#height;
|
|
10
|
+
#resizeObserver;
|
|
11
|
+
constructor(selectionActionElement, overlayElement, onHeightChange) {
|
|
12
|
+
this.#root = h("div", {
|
|
13
|
+
dataset: {
|
|
14
|
+
editorWidget: "",
|
|
15
|
+
selectionActionPopover: ""
|
|
16
|
+
},
|
|
17
|
+
contentEditable: "false",
|
|
18
|
+
children: [selectionActionElement]
|
|
19
|
+
}, overlayElement);
|
|
20
|
+
this.#height = this.#root.offsetHeight;
|
|
21
|
+
this.#resizeObserver = new ResizeObserver(() => {
|
|
22
|
+
const height = this.#root.offsetHeight;
|
|
23
|
+
if (height !== this.#height) {
|
|
24
|
+
this.#height = height;
|
|
25
|
+
onHeightChange();
|
|
26
|
+
}
|
|
27
|
+
});
|
|
28
|
+
this.#resizeObserver.observe(this.#root);
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Repositions the selection action widget.
|
|
32
|
+
* @param left - The left position of the selection action widget.
|
|
33
|
+
* @param top - The top position of the selection action widget.
|
|
34
|
+
* @param gutterWidth - The width of the gutter.
|
|
35
|
+
* @param placeAbove - Whether the selection action widget should be placed above the anchor.
|
|
36
|
+
* @param visible - Whether the selection intersects the viewport.
|
|
37
|
+
*/
|
|
38
|
+
reposition(left, top, gutterWidth, placeAbove, visible, viewport) {
|
|
39
|
+
this.#root.style.visibility = visible ? "" : "hidden";
|
|
40
|
+
setPopoverPositionStyles(this.#root, {
|
|
41
|
+
gutterWidth,
|
|
42
|
+
placeAbove,
|
|
43
|
+
viewport,
|
|
44
|
+
x: left,
|
|
45
|
+
y: top
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* Gets the height of the selection action widget.
|
|
50
|
+
* @returns The height of the selection action widget.
|
|
51
|
+
*/
|
|
52
|
+
get height() {
|
|
53
|
+
return this.#height;
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* Cleans up the selection action widget.
|
|
57
|
+
*/
|
|
58
|
+
cleanup() {
|
|
59
|
+
this.#resizeObserver.disconnect();
|
|
60
|
+
this.#root.remove();
|
|
61
|
+
}
|
|
62
|
+
};
|
|
63
|
+
//#endregion
|
|
64
|
+
export { SelectionActionWidget };
|
|
65
|
+
|
|
66
|
+
//# sourceMappingURL=selectionAction.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"selectionAction.js","names":["#root","#height","#resizeObserver"],"sources":["../../src/editor/selectionAction.ts"],"sourcesContent":["import type { EditorSelection, TextEdit } from '../types';\nimport {\n type PopoverViewportBounds,\n setPopoverPositionStyles,\n} from './popover';\nimport type { TextDocument } from './textDocument';\nimport { h } from './utils';\n\nexport interface SelectionActionContext<LAnnotation> {\n /** The current selection (live: reflects keyboard-driven changes). */\n selection: EditorSelection;\n /** The text document. */\n textDocument: TextDocument<LAnnotation>;\n /** Applies the edits to the text document. */\n applyEdits: (edits: TextEdit[]) => void;\n /** Gets the text of the current selection. */\n getSelectionText: () => string;\n /** Replaces the text of the current selection. */\n replaceSelectionText: (text: string) => void;\n /** Closes the selection action. */\n close: () => void;\n}\n\n/**\n * Selection action widget.\n */\nexport class SelectionActionWidget {\n #root: HTMLElement;\n // Cached border-box height, refreshed only when the popover's own size\n // actually changes (via #resizeObserver below)\n #height: number;\n #resizeObserver: ResizeObserver;\n\n constructor(\n selectionActionElement: HTMLElement,\n overlayElement: HTMLElement,\n onHeightChange: () => void\n ) {\n this.#root = h(\n 'div',\n {\n dataset: { editorWidget: '', selectionActionPopover: '' },\n contentEditable: 'false',\n children: [selectionActionElement],\n },\n overlayElement\n );\n this.#height = this.#root.offsetHeight;\n this.#resizeObserver = new ResizeObserver(() => {\n const height = this.#root.offsetHeight;\n if (height !== this.#height) {\n this.#height = height;\n onHeightChange();\n }\n });\n this.#resizeObserver.observe(this.#root);\n }\n\n /**\n * Repositions the selection action widget.\n * @param left - The left position of the selection action widget.\n * @param top - The top position of the selection action widget.\n * @param gutterWidth - The width of the gutter.\n * @param placeAbove - Whether the selection action widget should be placed above the anchor.\n * @param visible - Whether the selection intersects the viewport.\n */\n reposition(\n left: number,\n top: number,\n gutterWidth: number,\n placeAbove: boolean,\n visible: boolean,\n viewport?: PopoverViewportBounds\n ): void {\n this.#root.style.visibility = visible ? '' : 'hidden';\n setPopoverPositionStyles(this.#root, {\n gutterWidth,\n placeAbove,\n viewport,\n x: left,\n y: top,\n });\n }\n\n /**\n * Gets the height of the selection action widget.\n * @returns The height of the selection action widget.\n */\n get height(): number {\n return this.#height;\n }\n\n /**\n * Cleans up the selection action widget.\n */\n cleanup(): void {\n this.#resizeObserver.disconnect();\n this.#root.remove();\n }\n}\n"],"mappings":";;;;;;AA0BA,IAAa,wBAAb,MAAmC;CACjC;CAGA;CACA;CAEA,YACE,wBACA,gBACA,gBACA;EACA,KAAKA,QAAQ,EACX,OACA;GACE,SAAS;IAAE,cAAc;IAAI,wBAAwB;GAAG;GACxD,iBAAiB;GACjB,UAAU,CAAC,sBAAsB;EACnC,GACA,cACF;EACA,KAAKC,UAAU,KAAKD,MAAM;EAC1B,KAAKE,kBAAkB,IAAI,qBAAqB;GAC9C,MAAM,SAAS,KAAKF,MAAM;GAC1B,IAAI,WAAW,KAAKC,SAAS;IAC3B,KAAKA,UAAU;IACf,eAAe;GACjB;EACF,CAAC;EACD,KAAKC,gBAAgB,QAAQ,KAAKF,KAAK;CACzC;;;;;;;;;CAUA,WACE,MACA,KACA,aACA,YACA,SACA,UACM;EACN,KAAKA,MAAM,MAAM,aAAa,UAAU,KAAK;EAC7C,yBAAyB,KAAKA,OAAO;GACnC;GACA;GACA;GACA,GAAG;GACH,GAAG;EACL,CAAC;CACH;;;;;CAMA,IAAI,SAAiB;EACnB,OAAO,KAAKC;CACd;;;;CAKA,UAAgB;EACd,KAAKC,gBAAgB,WAAW;EAChC,KAAKF,MAAM,OAAO;CACpB;AACF"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
//#region src/editor/sprite.d.ts
|
|
2
|
+
type SVGSpriteNames = 'arrow-down' | 'arrow-up' | 'case' | 'close' | 'regex' | 'whole-word' | 'replace' | 'replace-all';
|
|
3
|
+
declare const SVGSpriteSheet = "<svg data-icon-sprite aria-hidden=\"true\" width=\"0\" height=\"0\">\n <symbol id=\"diffs-editor-icon-close\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" d=\"M3.21967 3.21967C3.51256 2.92678 3.98744 2.92678 4.28033 3.21967L8 6.93934L11.7197 3.21967C12.0126 2.92678 12.4874 2.92678 12.7803 3.21967C13.0732 3.51256 13.0732 3.98744 12.7803 4.28033L9.06066 8L12.7803 11.7197C13.0732 12.0126 13.0732 12.4874 12.7803 12.7803C12.4874 13.0732 12.0126 13.0732 11.7197 12.7803L8 9.06066L4.28033 12.7803C3.98744 13.0732 3.51256 13.0732 3.21967 12.7803C2.92678 12.4874 2.92678 12.0126 3.21967 11.7197L6.93934 8L3.21967 4.28033C2.92678 3.98744 2.92678 3.51256 3.21967 3.21967Z\"></path>\n </symbol>\n <symbol id=\"diffs-editor-icon-arrow-up\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" transform=\"rotate(-90 8 8)\" d=\"M8.46967 2.21967C8.17678 2.51256 8.17678 2.98744 8.46967 3.28033L12.4393 7.25H1.75C1.33579 7.25 1 7.58579 1 8C1 8.41421 1.33579 8.75 1.75 8.75H12.4393L8.46967 12.7197C8.17678 13.0126 8.17678 13.4874 8.46967 13.7803C8.76256 14.0732 9.23744 14.0732 9.53033 13.7803L14.7803 8.53033C15.0732 8.23744 15.0732 7.76256 14.7803 7.46967L9.53033 2.21967C9.23744 1.92678 8.76256 1.92678 8.46967 2.21967Z\"></path>\n </symbol>\n <symbol id=\"diffs-editor-icon-arrow-down\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" transform=\"rotate(90 8 8)\" d=\"M8.46967 2.21967C8.17678 2.51256 8.17678 2.98744 8.46967 3.28033L12.4393 7.25H1.75C1.33579 7.25 1 7.58579 1 8C1 8.41421 1.33579 8.75 1.75 8.75H12.4393L8.46967 12.7197C8.17678 13.0126 8.17678 13.4874 8.46967 13.7803C8.76256 14.0732 9.23744 14.0732 9.53033 13.7803L14.7803 8.53033C15.0732 8.23744 15.0732 7.76256 14.7803 7.46967L9.53033 2.21967C9.23744 1.92678 8.76256 1.92678 8.46967 2.21967Z\"></path>\n </symbol>\n <symbol id=\"diffs-editor-icon-case\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" d=\"M12.2969 12.9969C10.7109 12.9969 9.61719 12.0125 9.61719 10.5047C9.61719 9.06719 10.6172 8.16094 12.5 8.15312H14.6641V7.31719C14.6641 6.23906 14.0391 5.64531 12.9297 5.64531C11.875 5.64531 11.2734 6.18437 11.1953 7.00469H9.92969C10.0156 5.56719 10.9922 4.52031 12.9766 4.52031C14.7266 4.52031 16 5.47344 16 7.2V12.8641H14.7109V11.8406H14.6719C14.2578 12.5047 13.5078 12.9969 12.2969 12.9969ZM12.6562 11.8797C13.8047 11.8797 14.6641 11.1609 14.6641 10.1375V9.18437H12.6016C11.4766 9.18437 10.9922 9.71562 10.9922 10.4578C10.9922 11.4266 11.7969 11.8797 12.6562 11.8797Z\"></path>\n <path fill=\"currentColor\" d=\"M1.42188 12.8641H0L3.79688 2H5.1875L8.98438 12.8641H7.54688L6.46875 9.66094H2.5L1.42188 12.8641ZM4.50781 3.60938H4.46875L2.86719 8.55937H6.10156L4.50781 3.60938Z\"></path>\n </symbol>\n <symbol id=\"diffs-editor-icon-whole-word\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" d=\"M11.4089 9.99449C11.1417 9.99449 10.8961 9.95595 10.6722 9.87887C10.4519 9.80179 10.2605 9.69167 10.098 9.54852C9.93551 9.40537 9.81453 9.23469 9.73508 9.03648H9.67007V9.91191H8.5V2H9.70258V5.01721H9.76758C9.81092 4.86671 9.88314 4.7309 9.98426 4.60977C10.089 4.48497 10.2136 4.37853 10.358 4.29043C10.5025 4.19867 10.6668 4.13076 10.851 4.08672C11.0352 4.039 11.2302 4.01514 11.436 4.01514C11.8802 4.01514 12.2648 4.11792 12.5898 4.32347C12.9149 4.52535 13.164 4.81532 13.3374 5.19339C13.5107 5.57146 13.5974 6.02478 13.5974 6.55334V7.45079C13.5974 7.97568 13.5089 8.429 13.332 8.81074C13.1586 9.1888 12.9076 9.48061 12.579 9.68617C12.2504 9.89172 11.8604 9.99449 11.4089 9.99449ZM11.0785 8.99243C11.353 8.99243 11.5859 8.92636 11.7773 8.79422C11.9723 8.66208 12.1204 8.46937 12.2215 8.2161C12.3226 7.95916 12.3732 7.65267 12.3732 7.29663V6.73503C12.3732 6.37164 12.3208 6.06332 12.2161 5.81005C12.115 5.55311 11.9669 5.35673 11.7719 5.22092C11.5769 5.08511 11.3385 5.01721 11.0568 5.01721C10.7824 5.01721 10.5422 5.08328 10.3364 5.21542C10.1341 5.34389 9.97704 5.52925 9.86509 5.77151C9.75675 6.01009 9.70258 6.2964 9.70258 6.63042V7.47281C9.70258 7.77013 9.76036 8.03441 9.87592 8.26566C9.99509 8.49323 10.1576 8.67125 10.3635 8.79972C10.5729 8.92819 10.8113 8.99243 11.0785 8.99243Z\"></path>\n <path fill=\"currentColor\" d=\"M4.70482 9.99449C4.15229 9.99449 3.70087 9.83482 3.35057 9.51548C3.00388 9.19247 2.83054 8.75935 2.83054 8.2161C2.83054 7.70223 3.00207 7.28745 3.34515 6.97178C3.69184 6.65244 4.19562 6.49277 4.8565 6.49277H6.30284V5.94769C6.30284 5.61367 6.20533 5.36774 6.01032 5.20991C5.81531 5.04841 5.55349 4.96765 5.22485 4.96765C5.00817 4.96765 4.82941 4.99702 4.68857 5.05575C4.54773 5.11081 4.43758 5.18789 4.35813 5.28699C4.27868 5.38243 4.22271 5.49621 4.19021 5.62835H3.04722C3.06527 5.3861 3.12305 5.16586 3.22056 4.96765C3.32168 4.76577 3.46252 4.59326 3.64309 4.4501C3.82727 4.30328 4.05297 4.19133 4.32021 4.11425C4.59106 4.03716 4.90525 3.99862 5.26277 3.99862C5.67086 3.99862 6.04463 4.06286 6.38409 4.19133C6.72356 4.31613 6.99441 4.52168 7.19665 4.80798C7.39888 5.09429 7.5 5.4797 7.5 5.96421V9.9064H6.35701V9.1521H6.30284C6.21978 9.29892 6.10783 9.43657 5.96698 9.56504C5.82614 9.69351 5.65099 9.79812 5.44153 9.87887C5.23569 9.95595 4.99012 9.99449 4.70482 9.99449ZM5.07318 9.04749C5.3043 9.04749 5.51196 8.99977 5.69613 8.90434C5.88031 8.80523 6.02657 8.67309 6.13491 8.50791C6.24686 8.34274 6.30284 8.1537 6.30284 7.94081V7.31314H5.04609C4.69579 7.31314 4.43939 7.39206 4.27688 7.5499C4.11798 7.70773 4.03853 7.90961 4.03853 8.15554C4.03853 8.4602 4.14326 8.68594 4.35272 8.83276C4.56578 8.97591 4.80594 9.04749 5.07318 9.04749Z\"></path>\n <path fill=\"currentColor\" d=\"M2.5 12.5L13.5 12.5C14.3284 12.5 15 11.8284 15 11V9.5C15 9.22386 15.2239 9 15.5 9C15.7761 9 16 9.22386 16 9.5V11C16 12.3807 14.8807 13.5 13.5 13.5L2.5 13.5C1.11929 13.5 -7.56324e-07 12.3807 0 11L6.55675e-08 9.5C3.58362e-07 9.22386 0.223858 9 0.5 9C0.776142 9 1 9.22386 1 9.5L1 11C0.999999 11.8284 1.67157 12.5 2.5 12.5Z\"></path>\n </symbol>\n <symbol id=\"diffs-editor-icon-regex\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" d=\"M8.60788 6.59074C8.78227 6.46701 9.02141 6.60508 9.00146 6.81797L8.77564 9.22666C8.76189 9.37331 8.87726 9.5 9.02455 9.5H9.97548C10.1228 9.5 10.2381 9.37331 10.2244 9.22667L9.99858 6.81801C9.97862 6.60513 10.2178 6.46706 10.3922 6.59079L12.3652 7.99066C12.4853 8.07589 12.6527 8.03932 12.7264 7.91177L13.2018 7.08823C13.2755 6.96068 13.2234 6.79742 13.0896 6.73601L10.8907 5.72723C10.6963 5.63807 10.6963 5.36193 10.8907 5.27277L13.0896 4.264C13.2234 4.20258 13.2755 4.03932 13.2018 3.91177L12.7263 3.08824C12.6527 2.96068 12.4853 2.92411 12.3652 3.00934L10.3922 4.40921C10.2178 4.53294 9.97862 4.39486 9.99858 4.18198L10.2244 1.77334C10.2381 1.62669 10.1228 1.5 9.97548 1.5H9.02455C8.87726 1.5 8.76189 1.62669 8.77564 1.77334L9.00146 4.18203C9.02141 4.39491 8.78227 4.53298 8.60788 4.40926L6.63479 3.00934C6.51466 2.92411 6.34726 2.96068 6.27362 3.08823L5.79815 3.91177C5.72451 4.03932 5.77654 4.20258 5.91041 4.26399L8.10929 5.27277C8.30363 5.36193 8.30363 5.63807 8.10929 5.72723L5.91041 6.73601C5.77653 6.79742 5.7245 6.96068 5.79814 7.08824L6.27361 7.91177C6.34725 8.03932 6.51466 8.07589 6.63478 7.99066L8.60788 6.59074Z\"></path>\n <path fill=\"currentColor\" d=\"M4 11C3.44772 11 3 11.4477 3 12V13C3 13.5523 3.44772 14 4 14H5C5.55228 14 6 13.5523 6 13V12C6 11.4477 5.55228 11 5 11H4Z\"></path>\n </symbol>\n <symbol id=\"diffs-editor-icon-replace\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.28033 5.71967C5.57322 6.01256 5.57322 6.48744 5.28033 6.78033L3.56066 8.5H11.75C12.7165 8.5 13.5 7.7165 13.5 6.75V2.75C13.5 2.33579 13.8358 2 14.25 2C14.6642 2 15 2.33579 15 2.75V6.75C15 8.54493 13.5449 10 11.75 10H3.56066L5.28033 11.7197C5.57322 12.0126 5.57322 12.4874 5.28033 12.7803C4.98744 13.0732 4.51256 13.0732 4.21967 12.7803L1.21967 9.78033C0.926777 9.48744 0.926777 9.01256 1.21967 8.71967L4.21967 5.71967C4.51256 5.42678 4.98744 5.42678 5.28033 5.71967Z\"></path>\n </symbol>\n <symbol id=\"diffs-editor-icon-replace-all\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7197 0.21967C11.0126 -0.0732233 11.4874 -0.0732233 11.7803 0.21967L14.7803 3.21967C15.0732 3.51256 15.0732 3.98744 14.7803 4.28033L11.7803 7.28033C11.4874 7.57322 11.0126 7.57322 10.7197 7.28033C10.4268 6.98744 10.4268 6.51256 10.7197 6.21967L12.4393 4.5H4.25C3.2835 4.5 2.5 5.2835 2.5 6.25V6.875C2.5 7.28921 2.16421 7.625 1.75 7.625C1.33579 7.625 1 7.28921 1 6.875V6.25C1 4.45507 2.45508 3 4.25 3H12.4393L10.7197 1.28033C10.4268 0.987437 10.4268 0.512563 10.7197 0.21967ZM5.28033 8.71967C5.57322 9.01256 5.57322 9.48744 5.28033 9.78033L3.56066 11.5H11.75C12.7165 11.5 13.5 10.7165 13.5 9.75V9.125C13.5 8.71079 13.8358 8.375 14.25 8.375C14.6642 8.375 15 8.71079 15 9.125V9.75C15 11.5449 13.5449 13 11.75 13H3.56066L5.28033 14.7197C5.57322 15.0126 5.57322 15.4874 5.28033 15.7803C4.98744 16.0732 4.51256 16.0732 4.21967 15.7803L1.21967 12.7803C0.926777 12.4874 0.926777 12.0126 1.21967 11.7197L4.21967 8.71967C4.51256 8.42678 4.98744 8.42678 5.28033 8.71967Z\"></path>\n </symbol>\n</svg>";
|
|
4
|
+
declare const createSpriteElement: () => SVGSVGElement;
|
|
5
|
+
declare const getEditorIconSvg: (name: SVGSpriteNames, size?: number) => string;
|
|
6
|
+
//#endregion
|
|
7
|
+
export { SVGSpriteNames, SVGSpriteSheet, createSpriteElement, getEditorIconSvg };
|
|
8
|
+
//# sourceMappingURL=sprite.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sprite.d.ts","names":[],"sources":["../../src/editor/sprite.ts"],"mappings":";KAAY,cAAA;AAAA,cAiBC,cAAA;AAAA,cA+BA,mBAAA,QAA0B,aAQtC;AAAA,cAEY,gBAAA,GAAgB,IAAA,EAAU,cAAc,EAAA,IAAA"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
//#region src/editor/sprite.ts
|
|
2
|
+
const SVGSpriteSheet = `<svg data-icon-sprite aria-hidden="true" width="0" height="0">
|
|
3
|
+
<symbol id="diffs-editor-icon-close" viewBox="0 0 16 16">
|
|
4
|
+
<path fill="currentColor" d="M3.21967 3.21967C3.51256 2.92678 3.98744 2.92678 4.28033 3.21967L8 6.93934L11.7197 3.21967C12.0126 2.92678 12.4874 2.92678 12.7803 3.21967C13.0732 3.51256 13.0732 3.98744 12.7803 4.28033L9.06066 8L12.7803 11.7197C13.0732 12.0126 13.0732 12.4874 12.7803 12.7803C12.4874 13.0732 12.0126 13.0732 11.7197 12.7803L8 9.06066L4.28033 12.7803C3.98744 13.0732 3.51256 13.0732 3.21967 12.7803C2.92678 12.4874 2.92678 12.0126 3.21967 11.7197L6.93934 8L3.21967 4.28033C2.92678 3.98744 2.92678 3.51256 3.21967 3.21967Z"></path>
|
|
5
|
+
</symbol>
|
|
6
|
+
<symbol id="diffs-editor-icon-arrow-up" viewBox="0 0 16 16">
|
|
7
|
+
<path fill="currentColor" transform="rotate(-90 8 8)" d="M8.46967 2.21967C8.17678 2.51256 8.17678 2.98744 8.46967 3.28033L12.4393 7.25H1.75C1.33579 7.25 1 7.58579 1 8C1 8.41421 1.33579 8.75 1.75 8.75H12.4393L8.46967 12.7197C8.17678 13.0126 8.17678 13.4874 8.46967 13.7803C8.76256 14.0732 9.23744 14.0732 9.53033 13.7803L14.7803 8.53033C15.0732 8.23744 15.0732 7.76256 14.7803 7.46967L9.53033 2.21967C9.23744 1.92678 8.76256 1.92678 8.46967 2.21967Z"></path>
|
|
8
|
+
</symbol>
|
|
9
|
+
<symbol id="diffs-editor-icon-arrow-down" viewBox="0 0 16 16">
|
|
10
|
+
<path fill="currentColor" transform="rotate(90 8 8)" d="M8.46967 2.21967C8.17678 2.51256 8.17678 2.98744 8.46967 3.28033L12.4393 7.25H1.75C1.33579 7.25 1 7.58579 1 8C1 8.41421 1.33579 8.75 1.75 8.75H12.4393L8.46967 12.7197C8.17678 13.0126 8.17678 13.4874 8.46967 13.7803C8.76256 14.0732 9.23744 14.0732 9.53033 13.7803L14.7803 8.53033C15.0732 8.23744 15.0732 7.76256 14.7803 7.46967L9.53033 2.21967C9.23744 1.92678 8.76256 1.92678 8.46967 2.21967Z"></path>
|
|
11
|
+
</symbol>
|
|
12
|
+
<symbol id="diffs-editor-icon-case" viewBox="0 0 16 16">
|
|
13
|
+
<path fill="currentColor" d="M12.2969 12.9969C10.7109 12.9969 9.61719 12.0125 9.61719 10.5047C9.61719 9.06719 10.6172 8.16094 12.5 8.15312H14.6641V7.31719C14.6641 6.23906 14.0391 5.64531 12.9297 5.64531C11.875 5.64531 11.2734 6.18437 11.1953 7.00469H9.92969C10.0156 5.56719 10.9922 4.52031 12.9766 4.52031C14.7266 4.52031 16 5.47344 16 7.2V12.8641H14.7109V11.8406H14.6719C14.2578 12.5047 13.5078 12.9969 12.2969 12.9969ZM12.6562 11.8797C13.8047 11.8797 14.6641 11.1609 14.6641 10.1375V9.18437H12.6016C11.4766 9.18437 10.9922 9.71562 10.9922 10.4578C10.9922 11.4266 11.7969 11.8797 12.6562 11.8797Z"></path>
|
|
14
|
+
<path fill="currentColor" d="M1.42188 12.8641H0L3.79688 2H5.1875L8.98438 12.8641H7.54688L6.46875 9.66094H2.5L1.42188 12.8641ZM4.50781 3.60938H4.46875L2.86719 8.55937H6.10156L4.50781 3.60938Z"></path>
|
|
15
|
+
</symbol>
|
|
16
|
+
<symbol id="diffs-editor-icon-whole-word" viewBox="0 0 16 16">
|
|
17
|
+
<path fill="currentColor" d="M11.4089 9.99449C11.1417 9.99449 10.8961 9.95595 10.6722 9.87887C10.4519 9.80179 10.2605 9.69167 10.098 9.54852C9.93551 9.40537 9.81453 9.23469 9.73508 9.03648H9.67007V9.91191H8.5V2H9.70258V5.01721H9.76758C9.81092 4.86671 9.88314 4.7309 9.98426 4.60977C10.089 4.48497 10.2136 4.37853 10.358 4.29043C10.5025 4.19867 10.6668 4.13076 10.851 4.08672C11.0352 4.039 11.2302 4.01514 11.436 4.01514C11.8802 4.01514 12.2648 4.11792 12.5898 4.32347C12.9149 4.52535 13.164 4.81532 13.3374 5.19339C13.5107 5.57146 13.5974 6.02478 13.5974 6.55334V7.45079C13.5974 7.97568 13.5089 8.429 13.332 8.81074C13.1586 9.1888 12.9076 9.48061 12.579 9.68617C12.2504 9.89172 11.8604 9.99449 11.4089 9.99449ZM11.0785 8.99243C11.353 8.99243 11.5859 8.92636 11.7773 8.79422C11.9723 8.66208 12.1204 8.46937 12.2215 8.2161C12.3226 7.95916 12.3732 7.65267 12.3732 7.29663V6.73503C12.3732 6.37164 12.3208 6.06332 12.2161 5.81005C12.115 5.55311 11.9669 5.35673 11.7719 5.22092C11.5769 5.08511 11.3385 5.01721 11.0568 5.01721C10.7824 5.01721 10.5422 5.08328 10.3364 5.21542C10.1341 5.34389 9.97704 5.52925 9.86509 5.77151C9.75675 6.01009 9.70258 6.2964 9.70258 6.63042V7.47281C9.70258 7.77013 9.76036 8.03441 9.87592 8.26566C9.99509 8.49323 10.1576 8.67125 10.3635 8.79972C10.5729 8.92819 10.8113 8.99243 11.0785 8.99243Z"></path>
|
|
18
|
+
<path fill="currentColor" d="M4.70482 9.99449C4.15229 9.99449 3.70087 9.83482 3.35057 9.51548C3.00388 9.19247 2.83054 8.75935 2.83054 8.2161C2.83054 7.70223 3.00207 7.28745 3.34515 6.97178C3.69184 6.65244 4.19562 6.49277 4.8565 6.49277H6.30284V5.94769C6.30284 5.61367 6.20533 5.36774 6.01032 5.20991C5.81531 5.04841 5.55349 4.96765 5.22485 4.96765C5.00817 4.96765 4.82941 4.99702 4.68857 5.05575C4.54773 5.11081 4.43758 5.18789 4.35813 5.28699C4.27868 5.38243 4.22271 5.49621 4.19021 5.62835H3.04722C3.06527 5.3861 3.12305 5.16586 3.22056 4.96765C3.32168 4.76577 3.46252 4.59326 3.64309 4.4501C3.82727 4.30328 4.05297 4.19133 4.32021 4.11425C4.59106 4.03716 4.90525 3.99862 5.26277 3.99862C5.67086 3.99862 6.04463 4.06286 6.38409 4.19133C6.72356 4.31613 6.99441 4.52168 7.19665 4.80798C7.39888 5.09429 7.5 5.4797 7.5 5.96421V9.9064H6.35701V9.1521H6.30284C6.21978 9.29892 6.10783 9.43657 5.96698 9.56504C5.82614 9.69351 5.65099 9.79812 5.44153 9.87887C5.23569 9.95595 4.99012 9.99449 4.70482 9.99449ZM5.07318 9.04749C5.3043 9.04749 5.51196 8.99977 5.69613 8.90434C5.88031 8.80523 6.02657 8.67309 6.13491 8.50791C6.24686 8.34274 6.30284 8.1537 6.30284 7.94081V7.31314H5.04609C4.69579 7.31314 4.43939 7.39206 4.27688 7.5499C4.11798 7.70773 4.03853 7.90961 4.03853 8.15554C4.03853 8.4602 4.14326 8.68594 4.35272 8.83276C4.56578 8.97591 4.80594 9.04749 5.07318 9.04749Z"></path>
|
|
19
|
+
<path fill="currentColor" d="M2.5 12.5L13.5 12.5C14.3284 12.5 15 11.8284 15 11V9.5C15 9.22386 15.2239 9 15.5 9C15.7761 9 16 9.22386 16 9.5V11C16 12.3807 14.8807 13.5 13.5 13.5L2.5 13.5C1.11929 13.5 -7.56324e-07 12.3807 0 11L6.55675e-08 9.5C3.58362e-07 9.22386 0.223858 9 0.5 9C0.776142 9 1 9.22386 1 9.5L1 11C0.999999 11.8284 1.67157 12.5 2.5 12.5Z"></path>
|
|
20
|
+
</symbol>
|
|
21
|
+
<symbol id="diffs-editor-icon-regex" viewBox="0 0 16 16">
|
|
22
|
+
<path fill="currentColor" d="M8.60788 6.59074C8.78227 6.46701 9.02141 6.60508 9.00146 6.81797L8.77564 9.22666C8.76189 9.37331 8.87726 9.5 9.02455 9.5H9.97548C10.1228 9.5 10.2381 9.37331 10.2244 9.22667L9.99858 6.81801C9.97862 6.60513 10.2178 6.46706 10.3922 6.59079L12.3652 7.99066C12.4853 8.07589 12.6527 8.03932 12.7264 7.91177L13.2018 7.08823C13.2755 6.96068 13.2234 6.79742 13.0896 6.73601L10.8907 5.72723C10.6963 5.63807 10.6963 5.36193 10.8907 5.27277L13.0896 4.264C13.2234 4.20258 13.2755 4.03932 13.2018 3.91177L12.7263 3.08824C12.6527 2.96068 12.4853 2.92411 12.3652 3.00934L10.3922 4.40921C10.2178 4.53294 9.97862 4.39486 9.99858 4.18198L10.2244 1.77334C10.2381 1.62669 10.1228 1.5 9.97548 1.5H9.02455C8.87726 1.5 8.76189 1.62669 8.77564 1.77334L9.00146 4.18203C9.02141 4.39491 8.78227 4.53298 8.60788 4.40926L6.63479 3.00934C6.51466 2.92411 6.34726 2.96068 6.27362 3.08823L5.79815 3.91177C5.72451 4.03932 5.77654 4.20258 5.91041 4.26399L8.10929 5.27277C8.30363 5.36193 8.30363 5.63807 8.10929 5.72723L5.91041 6.73601C5.77653 6.79742 5.7245 6.96068 5.79814 7.08824L6.27361 7.91177C6.34725 8.03932 6.51466 8.07589 6.63478 7.99066L8.60788 6.59074Z"></path>
|
|
23
|
+
<path fill="currentColor" d="M4 11C3.44772 11 3 11.4477 3 12V13C3 13.5523 3.44772 14 4 14H5C5.55228 14 6 13.5523 6 13V12C6 11.4477 5.55228 11 5 11H4Z"></path>
|
|
24
|
+
</symbol>
|
|
25
|
+
<symbol id="diffs-editor-icon-replace" viewBox="0 0 16 16">
|
|
26
|
+
<path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M5.28033 5.71967C5.57322 6.01256 5.57322 6.48744 5.28033 6.78033L3.56066 8.5H11.75C12.7165 8.5 13.5 7.7165 13.5 6.75V2.75C13.5 2.33579 13.8358 2 14.25 2C14.6642 2 15 2.33579 15 2.75V6.75C15 8.54493 13.5449 10 11.75 10H3.56066L5.28033 11.7197C5.57322 12.0126 5.57322 12.4874 5.28033 12.7803C4.98744 13.0732 4.51256 13.0732 4.21967 12.7803L1.21967 9.78033C0.926777 9.48744 0.926777 9.01256 1.21967 8.71967L4.21967 5.71967C4.51256 5.42678 4.98744 5.42678 5.28033 5.71967Z"></path>
|
|
27
|
+
</symbol>
|
|
28
|
+
<symbol id="diffs-editor-icon-replace-all" viewBox="0 0 16 16">
|
|
29
|
+
<path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M10.7197 0.21967C11.0126 -0.0732233 11.4874 -0.0732233 11.7803 0.21967L14.7803 3.21967C15.0732 3.51256 15.0732 3.98744 14.7803 4.28033L11.7803 7.28033C11.4874 7.57322 11.0126 7.57322 10.7197 7.28033C10.4268 6.98744 10.4268 6.51256 10.7197 6.21967L12.4393 4.5H4.25C3.2835 4.5 2.5 5.2835 2.5 6.25V6.875C2.5 7.28921 2.16421 7.625 1.75 7.625C1.33579 7.625 1 7.28921 1 6.875V6.25C1 4.45507 2.45508 3 4.25 3H12.4393L10.7197 1.28033C10.4268 0.987437 10.4268 0.512563 10.7197 0.21967ZM5.28033 8.71967C5.57322 9.01256 5.57322 9.48744 5.28033 9.78033L3.56066 11.5H11.75C12.7165 11.5 13.5 10.7165 13.5 9.75V9.125C13.5 8.71079 13.8358 8.375 14.25 8.375C14.6642 8.375 15 8.71079 15 9.125V9.75C15 11.5449 13.5449 13 11.75 13H3.56066L5.28033 14.7197C5.57322 15.0126 5.57322 15.4874 5.28033 15.7803C4.98744 16.0732 4.51256 16.0732 4.21967 15.7803L1.21967 12.7803C0.926777 12.4874 0.926777 12.0126 1.21967 11.7197L4.21967 8.71967C4.51256 8.42678 4.98744 8.42678 5.28033 8.71967Z"></path>
|
|
30
|
+
</symbol>
|
|
31
|
+
</svg>`;
|
|
32
|
+
const createSpriteElement = () => {
|
|
33
|
+
const fragment = document.createElement("div");
|
|
34
|
+
fragment.innerHTML = SVGSpriteSheet;
|
|
35
|
+
const sprite = fragment.firstElementChild;
|
|
36
|
+
if (sprite === null || !(sprite instanceof SVGSVGElement)) throw new Error("Failed to create sprite element");
|
|
37
|
+
return sprite;
|
|
38
|
+
};
|
|
39
|
+
const getEditorIconSvg = (name, size = 16) => `<svg width="${size}" height="${size}" aria-hidden="true" focusable="false">
|
|
40
|
+
<use href="#diffs-editor-icon-${name}"></use>
|
|
41
|
+
</svg>`;
|
|
42
|
+
//#endregion
|
|
43
|
+
export { SVGSpriteSheet, createSpriteElement, getEditorIconSvg };
|
|
44
|
+
|
|
45
|
+
//# sourceMappingURL=sprite.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sprite.js","names":[],"sources":["../../src/editor/sprite.ts"],"sourcesContent":["export type SVGSpriteNames =\n | 'arrow-down'\n | 'arrow-up'\n | 'case'\n | 'close'\n | 'regex'\n | 'whole-word'\n | 'replace'\n | 'replace-all';\n\n// Icon artwork is sourced from `@pierre/icons` (IconSearch, IconX,\n// IconArrowRight, IconType, IconTypeWord, IconRegex, IconReplace,\n// IconReplaceAll) so the editor matches the rest of the product. The arrow glyph\n// is the full-size right arrow rotated to point up/down for the search\n// \"previous\"/\"next\" controls. `getEditorIconSvg` omits an outer viewBox so each\n// symbol scales to fill the requested size regardless of its intrinsic\n// coordinate system.\nexport const SVGSpriteSheet = `<svg data-icon-sprite aria-hidden=\"true\" width=\"0\" height=\"0\">\n <symbol id=\"diffs-editor-icon-close\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" d=\"M3.21967 3.21967C3.51256 2.92678 3.98744 2.92678 4.28033 3.21967L8 6.93934L11.7197 3.21967C12.0126 2.92678 12.4874 2.92678 12.7803 3.21967C13.0732 3.51256 13.0732 3.98744 12.7803 4.28033L9.06066 8L12.7803 11.7197C13.0732 12.0126 13.0732 12.4874 12.7803 12.7803C12.4874 13.0732 12.0126 13.0732 11.7197 12.7803L8 9.06066L4.28033 12.7803C3.98744 13.0732 3.51256 13.0732 3.21967 12.7803C2.92678 12.4874 2.92678 12.0126 3.21967 11.7197L6.93934 8L3.21967 4.28033C2.92678 3.98744 2.92678 3.51256 3.21967 3.21967Z\"></path>\n </symbol>\n <symbol id=\"diffs-editor-icon-arrow-up\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" transform=\"rotate(-90 8 8)\" d=\"M8.46967 2.21967C8.17678 2.51256 8.17678 2.98744 8.46967 3.28033L12.4393 7.25H1.75C1.33579 7.25 1 7.58579 1 8C1 8.41421 1.33579 8.75 1.75 8.75H12.4393L8.46967 12.7197C8.17678 13.0126 8.17678 13.4874 8.46967 13.7803C8.76256 14.0732 9.23744 14.0732 9.53033 13.7803L14.7803 8.53033C15.0732 8.23744 15.0732 7.76256 14.7803 7.46967L9.53033 2.21967C9.23744 1.92678 8.76256 1.92678 8.46967 2.21967Z\"></path>\n </symbol>\n <symbol id=\"diffs-editor-icon-arrow-down\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" transform=\"rotate(90 8 8)\" d=\"M8.46967 2.21967C8.17678 2.51256 8.17678 2.98744 8.46967 3.28033L12.4393 7.25H1.75C1.33579 7.25 1 7.58579 1 8C1 8.41421 1.33579 8.75 1.75 8.75H12.4393L8.46967 12.7197C8.17678 13.0126 8.17678 13.4874 8.46967 13.7803C8.76256 14.0732 9.23744 14.0732 9.53033 13.7803L14.7803 8.53033C15.0732 8.23744 15.0732 7.76256 14.7803 7.46967L9.53033 2.21967C9.23744 1.92678 8.76256 1.92678 8.46967 2.21967Z\"></path>\n </symbol>\n <symbol id=\"diffs-editor-icon-case\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" d=\"M12.2969 12.9969C10.7109 12.9969 9.61719 12.0125 9.61719 10.5047C9.61719 9.06719 10.6172 8.16094 12.5 8.15312H14.6641V7.31719C14.6641 6.23906 14.0391 5.64531 12.9297 5.64531C11.875 5.64531 11.2734 6.18437 11.1953 7.00469H9.92969C10.0156 5.56719 10.9922 4.52031 12.9766 4.52031C14.7266 4.52031 16 5.47344 16 7.2V12.8641H14.7109V11.8406H14.6719C14.2578 12.5047 13.5078 12.9969 12.2969 12.9969ZM12.6562 11.8797C13.8047 11.8797 14.6641 11.1609 14.6641 10.1375V9.18437H12.6016C11.4766 9.18437 10.9922 9.71562 10.9922 10.4578C10.9922 11.4266 11.7969 11.8797 12.6562 11.8797Z\"></path>\n <path fill=\"currentColor\" d=\"M1.42188 12.8641H0L3.79688 2H5.1875L8.98438 12.8641H7.54688L6.46875 9.66094H2.5L1.42188 12.8641ZM4.50781 3.60938H4.46875L2.86719 8.55937H6.10156L4.50781 3.60938Z\"></path>\n </symbol>\n <symbol id=\"diffs-editor-icon-whole-word\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" d=\"M11.4089 9.99449C11.1417 9.99449 10.8961 9.95595 10.6722 9.87887C10.4519 9.80179 10.2605 9.69167 10.098 9.54852C9.93551 9.40537 9.81453 9.23469 9.73508 9.03648H9.67007V9.91191H8.5V2H9.70258V5.01721H9.76758C9.81092 4.86671 9.88314 4.7309 9.98426 4.60977C10.089 4.48497 10.2136 4.37853 10.358 4.29043C10.5025 4.19867 10.6668 4.13076 10.851 4.08672C11.0352 4.039 11.2302 4.01514 11.436 4.01514C11.8802 4.01514 12.2648 4.11792 12.5898 4.32347C12.9149 4.52535 13.164 4.81532 13.3374 5.19339C13.5107 5.57146 13.5974 6.02478 13.5974 6.55334V7.45079C13.5974 7.97568 13.5089 8.429 13.332 8.81074C13.1586 9.1888 12.9076 9.48061 12.579 9.68617C12.2504 9.89172 11.8604 9.99449 11.4089 9.99449ZM11.0785 8.99243C11.353 8.99243 11.5859 8.92636 11.7773 8.79422C11.9723 8.66208 12.1204 8.46937 12.2215 8.2161C12.3226 7.95916 12.3732 7.65267 12.3732 7.29663V6.73503C12.3732 6.37164 12.3208 6.06332 12.2161 5.81005C12.115 5.55311 11.9669 5.35673 11.7719 5.22092C11.5769 5.08511 11.3385 5.01721 11.0568 5.01721C10.7824 5.01721 10.5422 5.08328 10.3364 5.21542C10.1341 5.34389 9.97704 5.52925 9.86509 5.77151C9.75675 6.01009 9.70258 6.2964 9.70258 6.63042V7.47281C9.70258 7.77013 9.76036 8.03441 9.87592 8.26566C9.99509 8.49323 10.1576 8.67125 10.3635 8.79972C10.5729 8.92819 10.8113 8.99243 11.0785 8.99243Z\"></path>\n <path fill=\"currentColor\" d=\"M4.70482 9.99449C4.15229 9.99449 3.70087 9.83482 3.35057 9.51548C3.00388 9.19247 2.83054 8.75935 2.83054 8.2161C2.83054 7.70223 3.00207 7.28745 3.34515 6.97178C3.69184 6.65244 4.19562 6.49277 4.8565 6.49277H6.30284V5.94769C6.30284 5.61367 6.20533 5.36774 6.01032 5.20991C5.81531 5.04841 5.55349 4.96765 5.22485 4.96765C5.00817 4.96765 4.82941 4.99702 4.68857 5.05575C4.54773 5.11081 4.43758 5.18789 4.35813 5.28699C4.27868 5.38243 4.22271 5.49621 4.19021 5.62835H3.04722C3.06527 5.3861 3.12305 5.16586 3.22056 4.96765C3.32168 4.76577 3.46252 4.59326 3.64309 4.4501C3.82727 4.30328 4.05297 4.19133 4.32021 4.11425C4.59106 4.03716 4.90525 3.99862 5.26277 3.99862C5.67086 3.99862 6.04463 4.06286 6.38409 4.19133C6.72356 4.31613 6.99441 4.52168 7.19665 4.80798C7.39888 5.09429 7.5 5.4797 7.5 5.96421V9.9064H6.35701V9.1521H6.30284C6.21978 9.29892 6.10783 9.43657 5.96698 9.56504C5.82614 9.69351 5.65099 9.79812 5.44153 9.87887C5.23569 9.95595 4.99012 9.99449 4.70482 9.99449ZM5.07318 9.04749C5.3043 9.04749 5.51196 8.99977 5.69613 8.90434C5.88031 8.80523 6.02657 8.67309 6.13491 8.50791C6.24686 8.34274 6.30284 8.1537 6.30284 7.94081V7.31314H5.04609C4.69579 7.31314 4.43939 7.39206 4.27688 7.5499C4.11798 7.70773 4.03853 7.90961 4.03853 8.15554C4.03853 8.4602 4.14326 8.68594 4.35272 8.83276C4.56578 8.97591 4.80594 9.04749 5.07318 9.04749Z\"></path>\n <path fill=\"currentColor\" d=\"M2.5 12.5L13.5 12.5C14.3284 12.5 15 11.8284 15 11V9.5C15 9.22386 15.2239 9 15.5 9C15.7761 9 16 9.22386 16 9.5V11C16 12.3807 14.8807 13.5 13.5 13.5L2.5 13.5C1.11929 13.5 -7.56324e-07 12.3807 0 11L6.55675e-08 9.5C3.58362e-07 9.22386 0.223858 9 0.5 9C0.776142 9 1 9.22386 1 9.5L1 11C0.999999 11.8284 1.67157 12.5 2.5 12.5Z\"></path>\n </symbol>\n <symbol id=\"diffs-editor-icon-regex\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" d=\"M8.60788 6.59074C8.78227 6.46701 9.02141 6.60508 9.00146 6.81797L8.77564 9.22666C8.76189 9.37331 8.87726 9.5 9.02455 9.5H9.97548C10.1228 9.5 10.2381 9.37331 10.2244 9.22667L9.99858 6.81801C9.97862 6.60513 10.2178 6.46706 10.3922 6.59079L12.3652 7.99066C12.4853 8.07589 12.6527 8.03932 12.7264 7.91177L13.2018 7.08823C13.2755 6.96068 13.2234 6.79742 13.0896 6.73601L10.8907 5.72723C10.6963 5.63807 10.6963 5.36193 10.8907 5.27277L13.0896 4.264C13.2234 4.20258 13.2755 4.03932 13.2018 3.91177L12.7263 3.08824C12.6527 2.96068 12.4853 2.92411 12.3652 3.00934L10.3922 4.40921C10.2178 4.53294 9.97862 4.39486 9.99858 4.18198L10.2244 1.77334C10.2381 1.62669 10.1228 1.5 9.97548 1.5H9.02455C8.87726 1.5 8.76189 1.62669 8.77564 1.77334L9.00146 4.18203C9.02141 4.39491 8.78227 4.53298 8.60788 4.40926L6.63479 3.00934C6.51466 2.92411 6.34726 2.96068 6.27362 3.08823L5.79815 3.91177C5.72451 4.03932 5.77654 4.20258 5.91041 4.26399L8.10929 5.27277C8.30363 5.36193 8.30363 5.63807 8.10929 5.72723L5.91041 6.73601C5.77653 6.79742 5.7245 6.96068 5.79814 7.08824L6.27361 7.91177C6.34725 8.03932 6.51466 8.07589 6.63478 7.99066L8.60788 6.59074Z\"></path>\n <path fill=\"currentColor\" d=\"M4 11C3.44772 11 3 11.4477 3 12V13C3 13.5523 3.44772 14 4 14H5C5.55228 14 6 13.5523 6 13V12C6 11.4477 5.55228 11 5 11H4Z\"></path>\n </symbol>\n <symbol id=\"diffs-editor-icon-replace\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.28033 5.71967C5.57322 6.01256 5.57322 6.48744 5.28033 6.78033L3.56066 8.5H11.75C12.7165 8.5 13.5 7.7165 13.5 6.75V2.75C13.5 2.33579 13.8358 2 14.25 2C14.6642 2 15 2.33579 15 2.75V6.75C15 8.54493 13.5449 10 11.75 10H3.56066L5.28033 11.7197C5.57322 12.0126 5.57322 12.4874 5.28033 12.7803C4.98744 13.0732 4.51256 13.0732 4.21967 12.7803L1.21967 9.78033C0.926777 9.48744 0.926777 9.01256 1.21967 8.71967L4.21967 5.71967C4.51256 5.42678 4.98744 5.42678 5.28033 5.71967Z\"></path>\n </symbol>\n <symbol id=\"diffs-editor-icon-replace-all\" viewBox=\"0 0 16 16\">\n <path fill=\"currentColor\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7197 0.21967C11.0126 -0.0732233 11.4874 -0.0732233 11.7803 0.21967L14.7803 3.21967C15.0732 3.51256 15.0732 3.98744 14.7803 4.28033L11.7803 7.28033C11.4874 7.57322 11.0126 7.57322 10.7197 7.28033C10.4268 6.98744 10.4268 6.51256 10.7197 6.21967L12.4393 4.5H4.25C3.2835 4.5 2.5 5.2835 2.5 6.25V6.875C2.5 7.28921 2.16421 7.625 1.75 7.625C1.33579 7.625 1 7.28921 1 6.875V6.25C1 4.45507 2.45508 3 4.25 3H12.4393L10.7197 1.28033C10.4268 0.987437 10.4268 0.512563 10.7197 0.21967ZM5.28033 8.71967C5.57322 9.01256 5.57322 9.48744 5.28033 9.78033L3.56066 11.5H11.75C12.7165 11.5 13.5 10.7165 13.5 9.75V9.125C13.5 8.71079 13.8358 8.375 14.25 8.375C14.6642 8.375 15 8.71079 15 9.125V9.75C15 11.5449 13.5449 13 11.75 13H3.56066L5.28033 14.7197C5.57322 15.0126 5.57322 15.4874 5.28033 15.7803C4.98744 16.0732 4.51256 16.0732 4.21967 15.7803L1.21967 12.7803C0.926777 12.4874 0.926777 12.0126 1.21967 11.7197L4.21967 8.71967C4.51256 8.42678 4.98744 8.42678 5.28033 8.71967Z\"></path>\n </symbol>\n</svg>`;\n\nexport const createSpriteElement = (): SVGSVGElement => {\n const fragment = document.createElement('div');\n fragment.innerHTML = SVGSpriteSheet;\n const sprite = fragment.firstElementChild;\n if (sprite === null || !(sprite instanceof SVGSVGElement)) {\n throw new Error('Failed to create sprite element');\n }\n return sprite;\n};\n\nexport const getEditorIconSvg = (name: SVGSpriteNames, size = 16): string =>\n `<svg width=\"${size}\" height=\"${size}\" aria-hidden=\"true\" focusable=\"false\">\n<use href=\"#diffs-editor-icon-${name}\"></use>\n</svg>`;\n"],"mappings":";AAiBA,MAAa,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+B9B,MAAa,4BAA2C;CACtD,MAAM,WAAW,SAAS,cAAc,KAAK;CAC7C,SAAS,YAAY;CACrB,MAAM,SAAS,SAAS;CACxB,IAAI,WAAW,QAAQ,EAAE,kBAAkB,gBACzC,MAAM,IAAI,MAAM,iCAAiC;CAEnD,OAAO;AACT;AAEA,MAAa,oBAAoB,MAAsB,OAAO,OAC5D,eAAe,KAAK,YAAY,KAAK;gCACP,KAAK"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { EditorState } from "../types.js";
|
|
2
|
+
|
|
3
|
+
//#region src/editor/stateStorage.d.ts
|
|
4
|
+
interface IStateStorage {
|
|
5
|
+
/** Read the editor state stored for a file cache key. */
|
|
6
|
+
get(cacheKey: string): EditorState | undefined | Promise<EditorState | undefined>;
|
|
7
|
+
/** Store the editor state for a file cache key. */
|
|
8
|
+
set(cacheKey: string, state: EditorState): void | Promise<void>;
|
|
9
|
+
}
|
|
10
|
+
type PersistStateStorage = 'inMemory' | 'indexedDB' | IStateStorage;
|
|
11
|
+
declare function cloneEditorState(state: EditorState): EditorState;
|
|
12
|
+
declare function createStateStorage(storage: PersistStateStorage): IStateStorage;
|
|
13
|
+
//#endregion
|
|
14
|
+
export { IStateStorage, PersistStateStorage, cloneEditorState, createStateStorage };
|
|
15
|
+
//# sourceMappingURL=stateStorage.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stateStorage.d.ts","names":[],"sources":["../../src/editor/stateStorage.ts"],"mappings":";;;UAEiB,aAAA;;EAEf,GAAA,CACE,QAAA,WACC,WAAA,eAA0B,OAAA,CAAQ,WAAA;EAJT;EAM5B,GAAA,CAAI,QAAA,UAAkB,KAAA,EAAO,WAAA,UAAqB,OAAA;AAAA;AAAA,KAGxC,mBAAA,8BAAiD,aAAa;AAAA,iBAE1D,gBAAA,CAAiB,KAAA,EAAO,WAAA,GAAc,WAAW;AAAA,iBAWjD,kBAAA,CACd,OAAA,EAAS,mBAAA,GACR,aAAa"}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
//#region src/editor/stateStorage.ts
|
|
2
|
+
function cloneEditorState(state) {
|
|
3
|
+
return {
|
|
4
|
+
selections: state.selections?.map((selection) => ({
|
|
5
|
+
start: { ...selection.start },
|
|
6
|
+
end: { ...selection.end },
|
|
7
|
+
direction: selection.direction
|
|
8
|
+
})),
|
|
9
|
+
view: state.view === void 0 ? void 0 : { ...state.view }
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
function createStateStorage(storage) {
|
|
13
|
+
return typeof storage === "object" ? storage : storage === "indexedDB" ? new IndexedDBStateStorage() : new InMemoryStateStorage();
|
|
14
|
+
}
|
|
15
|
+
var InMemoryStateStorage = class {
|
|
16
|
+
#states = /* @__PURE__ */ new Map();
|
|
17
|
+
get(cacheKey) {
|
|
18
|
+
const state = this.#states.get(cacheKey);
|
|
19
|
+
return state === void 0 ? void 0 : cloneEditorState(state);
|
|
20
|
+
}
|
|
21
|
+
set(cacheKey, state) {
|
|
22
|
+
this.#states.set(cacheKey, cloneEditorState(state));
|
|
23
|
+
}
|
|
24
|
+
};
|
|
25
|
+
const DATABASE_NAME = "pierre-diffs-editor-state";
|
|
26
|
+
const DATABASE_VERSION = 1;
|
|
27
|
+
const STORE_NAME = "states";
|
|
28
|
+
var IndexedDBStateStorage = class {
|
|
29
|
+
#database = openDatabase();
|
|
30
|
+
async get(cacheKey) {
|
|
31
|
+
const database = await this.#database;
|
|
32
|
+
if (database === void 0) return;
|
|
33
|
+
const state = await requestToPromise(database.transaction(STORE_NAME, "readonly").objectStore(STORE_NAME).get(cacheKey));
|
|
34
|
+
return state === void 0 ? void 0 : cloneEditorState(state);
|
|
35
|
+
}
|
|
36
|
+
async set(cacheKey, state) {
|
|
37
|
+
const database = await this.#database;
|
|
38
|
+
if (database === void 0) return;
|
|
39
|
+
await requestToPromise(database.transaction(STORE_NAME, "readwrite").objectStore(STORE_NAME).put(cloneEditorState(state), cacheKey));
|
|
40
|
+
}
|
|
41
|
+
};
|
|
42
|
+
function openDatabase() {
|
|
43
|
+
try {
|
|
44
|
+
const factory = globalThis.indexedDB;
|
|
45
|
+
if (factory === void 0) return Promise.resolve(void 0);
|
|
46
|
+
const request = factory.open(DATABASE_NAME, DATABASE_VERSION);
|
|
47
|
+
request.onupgradeneeded = () => {
|
|
48
|
+
const database = request.result;
|
|
49
|
+
if (!database.objectStoreNames.contains(STORE_NAME)) database.createObjectStore(STORE_NAME);
|
|
50
|
+
};
|
|
51
|
+
return requestToPromise(request);
|
|
52
|
+
} catch {
|
|
53
|
+
return Promise.resolve(void 0);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
function requestToPromise(request) {
|
|
57
|
+
return new Promise((resolve, reject) => {
|
|
58
|
+
request.onsuccess = () => resolve(request.result);
|
|
59
|
+
request.onerror = () => reject(request.error);
|
|
60
|
+
});
|
|
61
|
+
}
|
|
62
|
+
//#endregion
|
|
63
|
+
export { cloneEditorState, createStateStorage };
|
|
64
|
+
|
|
65
|
+
//# sourceMappingURL=stateStorage.js.map
|