shortcutxl 0.2.19 → 0.2.21
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/CHANGELOG.md +6 -0
- package/agent-docs/api-reference.json +2041 -0
- package/agent-docs/examples/extensions/built-in-tool-renderer.ts +2 -13
- package/agent-docs/examples/extensions/claude-code.ts +69 -0
- package/agent-docs/examples/extensions/custom-provider-gitlab-duo/test.ts +1 -7
- package/agent-docs/examples/sdk/04-skills.ts +1 -6
- package/dist/cli/config-selector.js +1 -1
- package/dist/cli/session-picker.js +1 -1
- package/dist/config.js +15 -5
- package/dist/core/agent-loop.js +8 -9
- package/dist/core/agent-session.js +102 -462
- package/dist/core/agent.js +1 -0
- package/dist/core/export-html/template.js +14 -2
- package/dist/core/extensions/loader.js +4 -4
- package/dist/core/keybindings.js +1 -1
- package/dist/core/run-agent.js +84 -0
- package/dist/core/session/extension-emitter.js +36 -0
- package/dist/core/session/model-manager.js +111 -0
- package/dist/core/session/persistence-handler.js +104 -0
- package/dist/core/session/queue-tracker.js +91 -0
- package/dist/core/session/tool-registry.js +231 -0
- package/dist/core/settings-manager.js +11 -3
- package/dist/core/theme.js +1 -1
- package/dist/core/tools/edit.js +1 -1
- package/dist/core/tools/find.js +1 -1
- package/dist/core/tools/grep.js +1 -1
- package/dist/core/tools/ls.js +1 -1
- package/dist/core/tools/read.js +1 -1
- package/dist/core/tools/write.js +1 -1
- package/dist/custom/dev/index.js +16 -1
- package/dist/custom/excel-session.js +2 -2
- package/dist/custom/exec-mode-command.js +27 -0
- package/dist/custom/install-utils.js +1 -4
- package/dist/custom/new-sheet/api-guidelines.js +83 -0
- package/dist/custom/new-sheet/api-lookup.js +69 -0
- package/dist/custom/new-sheet/api-overlay.js +133 -0
- package/dist/custom/new-sheet/api-reference-loader.js +29 -0
- package/dist/custom/new-sheet/cell-diff/address-utils.js +80 -0
- package/dist/custom/new-sheet/cell-diff/cell-categorizer.js +100 -0
- package/dist/custom/new-sheet/cell-diff/cell-diff-formatter.js +201 -0
- package/dist/custom/new-sheet/cell-diff/index.js +23 -0
- package/dist/custom/new-sheet/cell-diff/types.js +33 -0
- package/dist/custom/new-sheet/mutation-tracker.js +358 -0
- package/dist/custom/new-sheet/sandbox-globals.js +118 -0
- package/dist/custom/new-sheet/sdk-types.js +9 -0
- package/dist/custom/new-sheet/sheet-engine-poc.js +112 -0
- package/dist/custom/new-sheet/sheet-engine.js +146 -0
- package/dist/custom/new-sheet/sheet-exec.js +219 -0
- package/dist/custom/new-sheet-command.js +24 -0
- package/dist/custom/preflight.js +28 -18
- package/dist/custom/prompts/action.js +33 -12
- package/dist/custom/prompts/shared.js +0 -6
- package/dist/custom/providers/llm-usage.js +1 -5
- package/dist/custom/providers/shortcut-invoke.js +3 -4
- package/dist/custom/providers/shortcut-stream.js +3 -4
- package/dist/custom/sandbox/index.js +6 -10
- package/dist/custom/sandbox/lib/bwrap.js +93 -0
- package/dist/custom/sandbox/lib/index.js +20 -0
- package/dist/custom/sandbox/lib/manager.js +87 -0
- package/dist/custom/sandbox/lib/network/domain-filter.js +29 -0
- package/dist/custom/sandbox/lib/network/http-proxy.js +172 -0
- package/dist/custom/sandbox/lib/network/index.js +5 -0
- package/dist/custom/sandbox/lib/network/proxy.js +145 -0
- package/dist/custom/sandbox/lib/network/socks-proxy.js +269 -0
- package/dist/custom/sandbox/{sandbox-paths.js → lib/paths.js} +1 -3
- package/dist/custom/sandbox/lib/resolve.js +320 -0
- package/dist/custom/sandbox/lib/smoke.js +87 -0
- package/dist/custom/sandbox/lib/types.js +9 -0
- package/dist/custom/sandbox/lib/wrap-command.js +110 -0
- package/dist/custom/sandbox/{wsl-detect.js → lib/wsl-detect.js} +10 -14
- package/dist/custom/sandbox/lib/wsl-setup.js +152 -0
- package/dist/custom/sandbox/sandbox-bash-tool.js +12 -7
- package/dist/custom/sandbox/sandbox-command.js +17 -16
- package/dist/custom/sandbox/sandbox-executor.js +13 -38
- package/dist/custom/sandbox/sandbox-manager.js +43 -31
- package/dist/custom/sandbox/sandbox-prompt.js +2 -2
- package/dist/custom/sandbox/tests/test-helpers.js +24 -0
- package/dist/custom/sheet-api/api-guidelines.js +83 -0
- package/dist/custom/sheet-api/api-lookup.js +69 -0
- package/dist/custom/sheet-api/api-overlay.js +133 -0
- package/dist/custom/sheet-api/api-reference-loader.js +29 -0
- package/dist/custom/sync-xll.js +1 -1
- package/dist/custom/tools/approval.js +2 -2
- package/dist/custom/tools/excel-exec.js +29 -9
- package/dist/custom/tools/llm-analysis.js +54 -29
- package/dist/custom/tools/task/task.js +4 -7
- package/dist/custom/tools/todo-list.js +5 -1
- package/dist/custom/tracing/session-upload.js +4 -1
- package/dist/custom/uninstall.js +31 -20
- package/dist/main.js +77 -22
- package/dist/modes/interactive/components/assistant-message.js +1 -1
- package/dist/modes/interactive/components/bash-execution.js +5 -9
- package/dist/modes/interactive/components/branch-summary-message.js +1 -1
- package/dist/modes/interactive/components/compaction-summary-message.js +1 -1
- package/dist/modes/interactive/components/config-selector.js +1 -1
- package/dist/modes/interactive/components/custom-editor.js +3 -1
- package/dist/modes/interactive/components/custom-message.js +1 -1
- package/dist/modes/interactive/components/extension-editor.js +1 -1
- package/dist/modes/interactive/components/extension-input.js +1 -1
- package/dist/modes/interactive/components/extension-selector.js +1 -1
- package/dist/modes/interactive/components/footer.js +3 -2
- package/dist/modes/interactive/components/keybinding-hints.js +1 -1
- package/dist/modes/interactive/components/layout.js +1 -1
- package/dist/modes/interactive/components/login-dialog.js +1 -1
- package/dist/modes/interactive/components/model-selector.js +1 -1
- package/dist/modes/interactive/components/oauth-selector.js +1 -1
- package/dist/modes/interactive/components/session-selector.js +1 -1
- package/dist/modes/interactive/components/skill-invocation-message.js +1 -1
- package/dist/modes/interactive/components/theme-selector.js +1 -1
- package/dist/modes/interactive/components/tool-execution.js +1 -1
- package/dist/modes/interactive/components/tool-group.js +1 -1
- package/dist/modes/interactive/components/tree-selector.js +1 -1
- package/dist/modes/interactive/components/user-message-selector.js +1 -1
- package/dist/modes/interactive/components/user-message.js +1 -1
- package/dist/modes/interactive/file-attachments.js +4 -9
- package/dist/modes/interactive/interactive-mode.js +8 -136
- package/dist/modes/print-mode.js +2 -1
- package/dist/modes/rpc/rpc-mode.js +3 -4
- package/dist/tui/autocomplete.js +543 -555
- package/dist/tui/components/box.js +93 -89
- package/dist/tui/components/cancellable-loader.js +23 -23
- package/dist/tui/components/editor.js +1671 -1642
- package/dist/tui/components/image.js +67 -63
- package/dist/tui/components/input.js +408 -408
- package/dist/tui/components/loader.js +42 -42
- package/dist/tui/components/markdown.js +612 -617
- package/dist/tui/components/select-list.js +148 -142
- package/dist/tui/components/settings-list.js +187 -172
- package/dist/tui/components/spacer.js +17 -17
- package/dist/tui/components/text.js +83 -80
- package/dist/tui/components/truncated-text.js +43 -43
- package/dist/tui/editor-component.js +1 -1
- package/dist/tui/fuzzy.js +86 -88
- package/dist/tui/get-east-asian-width/index.js +13 -17
- package/dist/tui/get-east-asian-width/lookup.js +386 -384
- package/dist/tui/index.js +54 -22
- package/dist/tui/keybindings.js +92 -95
- package/dist/tui/keys.js +794 -806
- package/dist/tui/kill-ring.js +31 -33
- package/dist/tui/stdin-buffer.js +236 -241
- package/dist/tui/terminal-image.js +210 -224
- package/dist/tui/terminal.js +235 -242
- package/dist/tui/tui/autocomplete.js +543 -555
- package/dist/tui/tui/components/box.js +91 -89
- package/dist/tui/tui/components/cancellable-loader.js +23 -23
- package/dist/tui/tui/components/editor.js +1671 -1642
- package/dist/tui/tui/components/image.js +67 -63
- package/dist/tui/tui/components/input.js +408 -408
- package/dist/tui/tui/components/loader.js +42 -42
- package/dist/tui/tui/components/markdown.js +612 -617
- package/dist/tui/tui/components/select-list.js +148 -142
- package/dist/tui/tui/components/settings-list.js +187 -172
- package/dist/tui/tui/components/spacer.js +17 -17
- package/dist/tui/tui/components/text.js +81 -80
- package/dist/tui/tui/components/truncated-text.js +43 -43
- package/dist/tui/tui/editor-component.js +1 -1
- package/dist/tui/tui/fuzzy.js +86 -88
- package/dist/tui/tui/get-east-asian-width/index.js +13 -17
- package/dist/tui/tui/get-east-asian-width/lookup.js +386 -384
- package/dist/tui/tui/index.js +54 -22
- package/dist/tui/tui/keybindings.js +92 -95
- package/dist/tui/tui/keys.js +794 -806
- package/dist/tui/tui/kill-ring.js +31 -33
- package/dist/tui/tui/stdin-buffer.js +236 -241
- package/dist/tui/tui/terminal-image.js +210 -224
- package/dist/tui/tui/terminal.js +235 -242
- package/dist/tui/tui/tui.js +908 -920
- package/dist/tui/tui/undo-stack.js +17 -17
- package/dist/tui/tui/utils.js +647 -674
- package/dist/tui/tui.js +908 -920
- package/dist/tui/undo-stack.js +17 -17
- package/dist/tui/utils.js +647 -674
- package/dist/utils/log.js +51 -0
- package/package.json +9 -5
- package/skills/{com-advanced-api → advanced-com-api}/SKILL.md +1 -1
- package/skills/advanced-com-api/excel-type-library.py +30935 -0
- package/skills/advanced-com-api/office-type-library.py +11220 -0
- package/skills/sec-edgar/sec_to_pdf.py +26 -28
- package/wsl/alpine-minirootfs.tar.gz +0 -0
- package/xll/ShortcutXL.xll +0 -0
- package/xll/modules/debug_render.py +289 -0
- package/xll/modules/shortcut_xl/_com.py +10 -11
- package/xll/modules/shortcut_xl/_diff_highlight.py +17 -15
- package/xll/modules/shortcut_xl/_exec_entry.py +32 -14
- package/xll/modules/shortcut_xl/_log.py +4 -4
- package/xll/modules/shortcut_xl/_managed.py +25 -8
- package/xll/modules/shortcut_xl/_registry.py +12 -7
- package/xll/modules/shortcut_xl/_threading.py +33 -20
- package/xll/modules/shortcut_xl/_tracking.py +31 -14
- package/xll/modules/shortcut_xl/api/categorize.py +31 -17
- package/xll/modules/shortcut_xl/api/format.py +16 -26
- package/xll/modules/shortcut_xl/api/named_ranges.py +10 -10
- package/xll/modules/shortcut_xl/api/picture.py +6 -6
- package/xll/modules/shortcut_xl/api/range_formatter.py +44 -22
- package/xll/modules/shortcut_xl/api/style.py +3 -3
- package/xll/modules/shortcut_xl/api/utils/helpers.py +16 -26
- package/xll/modules/shortcut_xl/api/utils/numerical.py +6 -1
- package/xll/modules/shortcut_xl/api/utils/ranges.py +12 -7
- package/xll/modules/shortcut_xl/api/workbook.py +14 -28
- package/xll/modules/shortcut_xl/api/worksheet.py +33 -49
- package/xll/modules/shortcut_xl/api-reference.py +9 -5
- package/xll/python/Lib/site-packages/__pycache__/typing_extensions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/from_thread.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/functools.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/lowlevel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/pytest_plugin.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/to_interpreter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/to_process.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/__pycache__/to_thread.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_backends/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_backends/__pycache__/_asyncio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_backends/__pycache__/_trio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_backends/_asyncio.py +39 -23
- package/xll/python/Lib/site-packages/anyio/_backends/_trio.py +2 -5
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_asyncio_selector_thread.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_contextmanagers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_eventloop.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_fileio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_resources.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_signals.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_sockets.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_streams.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_subprocesses.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_synchronization.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_tasks.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_tempfile.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_testing.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_typedattr.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/_core/_fileio.py +12 -10
- package/xll/python/Lib/site-packages/anyio/_core/_subprocesses.py +2 -8
- package/xll/python/Lib/site-packages/anyio/_core/_synchronization.py +4 -0
- package/xll/python/Lib/site-packages/anyio/_core/_tempfile.py +1 -4
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_eventloop.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_resources.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_sockets.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_streams.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_subprocesses.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_tasks.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_testing.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/abc/_eventloop.py +2 -7
- package/xll/python/Lib/site-packages/anyio/abc/_sockets.py +5 -11
- package/xll/python/Lib/site-packages/anyio/abc/_streams.py +14 -20
- package/xll/python/Lib/site-packages/anyio/functools.py +51 -17
- package/xll/python/Lib/site-packages/anyio/pytest_plugin.py +62 -1
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/buffered.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/file.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/memory.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/stapled.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/__pycache__/tls.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/anyio/streams/file.py +5 -5
- package/xll/python/Lib/site-packages/anyio/streams/tls.py +6 -9
- package/xll/python/Lib/site-packages/anyio/to_thread.py +3 -3
- package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/METADATA +14 -5
- package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/RECORD +21 -21
- package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/WHEEL +1 -1
- package/xll/python/Lib/site-packages/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/certifi/__pycache__/core.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/incremental_tree.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/xmlfile.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_abnf.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_connection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_events.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_headers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_readers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_receivebuffer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_state.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_util.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_version.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/h11/__pycache__/_writers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_api.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_models.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_ssl.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_synchronization.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_trace.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/__pycache__/_utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/connection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/connection_pool.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/http11.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/http2.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/http_proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/interfaces.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/socks_proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/anyio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/auto.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/mock.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/sync.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/trio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/connection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/connection_pool.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/http11.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/http2.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/http_proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/interfaces.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/socks_proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/__version__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_api.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_auth.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_client.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_config.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_content.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_decoders.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_main.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_models.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_multipart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_status_codes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_types.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_urlparse.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_urls.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/asgi.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/default.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/mock.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/wsgi.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx-0.28.1.dist-info/RECORD +1 -1
- package/xll/python/Lib/site-packages/idna/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/codec.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/core.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/intranges.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/package_data.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/__pycache__/_constants.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/cell.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/read_only.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/rich_text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/_3d.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/area_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/axis.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/bar_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/bubble_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/chartspace.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/data_source.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/descriptors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/error_bar.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/label.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/layout.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/legend.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/line_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/marker.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/picture.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/pie_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/pivot.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/plotarea.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/print_settings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/radar_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/reader.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/reference.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/scatter_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/series.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/series_factory.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/shapes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/stock_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/surface_chart.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/title.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/trendline.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/updown_bars.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/chartsheet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/custom.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/properties.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/publish.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/relation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/views.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/author.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/comment_sheet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/comments.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/shape_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/abc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/numbers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/product.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/singleton.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/strings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/container.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/excel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/namespace.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/nested.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/sequence.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/serialisable.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/slots.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/colors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/connector.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/drawing.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/effect.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/fill.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/geometry.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/graphic.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/image.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/line.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/picture.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/properties.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/relation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/spreadsheet_drawing.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/xdr.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/formatting.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/rule.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/tokenizer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/translate.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/core.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/custom.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/extended.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/interface.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/manifest.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/relationship.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/workbook.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/fields.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/record.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/table.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/drawings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/excel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/strings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/workbook.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/alignment.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/borders.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/builtins.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/cell_style.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/colors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/differential.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/fills.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/fonts.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/named_styles.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/numbers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/styleable.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/stylesheet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/table.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/bound_dictionary.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/cell.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/dataframe.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/datetime.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/escape.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/formulas.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/indexed_list.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/inference.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/units.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/child.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/defined_name.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/external_reference.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/function_group.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/properties.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/smart_tags.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/views.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/web.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/workbook.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/external_link/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/external_link/__pycache__/external.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_read_only.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_reader.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_write_only.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/cell_range.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/cell_watch.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/controls.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/copier.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/custom.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/datavalidation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/dimensions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/drawing.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/errors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/filters.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/formula.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/header_footer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/hyperlink.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/merge.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/ole.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/page.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/pagebreak.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/picture.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/print_settings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/properties.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/protection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/related.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/scenario.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/smart_tag.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/table.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/views.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/worksheet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/excel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/theme.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/constants.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/functions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/lock.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/release_control.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/pep723.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_dependency_group.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/pylock.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_implementation.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_toml_compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/pylock.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/resolution.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli_w/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/tomli_w/__pycache__/_writer.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc +0 -0
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/RECORD +3 -3
- package/xll/python/Scripts/httpx.exe +0 -0
- package/xll/python/Scripts/pip.exe +0 -0
- package/xll/python/Scripts/pip3.12.exe +0 -0
- package/xll/python/Scripts/pip3.exe +0 -0
- package/dist/custom/ensure-excel.js +0 -63
- package/dist/custom/sandbox/network/index.js +0 -8
- package/dist/custom/sandbox/network/network-proxy.js +0 -136
- package/dist/custom/sandbox/network/proxy-worker.py +0 -257
- package/dist/custom/sandbox/sandbox-config.js +0 -153
- package/dist/custom/sandbox/sandbox-smoke.js +0 -49
- package/dist/custom/sandbox/wsl-setup.js +0 -92
- package/dist/custom/tools/task/agents.js +0 -6
- package/skills/com-advanced-api/excel-type-library.py +0 -27767
- package/skills/com-advanced-api/office-type-library.py +0 -10867
- /package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/INSTALLER +0 -0
- /package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/entry_points.txt +0 -0
- /package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/licenses/LICENSE +0 -0
- /package/xll/python/Lib/site-packages/{anyio-4.12.1.dist-info → anyio-4.13.0.dist-info}/top_level.txt +0 -0
|
@@ -1,596 +1,584 @@
|
|
|
1
|
-
import { spawnSync } from
|
|
2
|
-
import { readdirSync, statSync } from
|
|
3
|
-
import { homedir } from
|
|
4
|
-
import { basename, dirname, join } from
|
|
5
|
-
import { fuzzyFilter } from
|
|
6
|
-
const PATH_DELIMITERS = new Set([
|
|
1
|
+
import { spawnSync } from 'child_process';
|
|
2
|
+
import { readdirSync, statSync } from 'fs';
|
|
3
|
+
import { homedir } from 'os';
|
|
4
|
+
import { basename, dirname, join } from 'path';
|
|
5
|
+
import { fuzzyFilter } from './fuzzy.js';
|
|
6
|
+
const PATH_DELIMITERS = new Set([' ', '\t', '"', "'", '=']);
|
|
7
7
|
function findLastDelimiter(text) {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
}
|
|
8
|
+
for (let i = text.length - 1; i >= 0; i -= 1) {
|
|
9
|
+
if (PATH_DELIMITERS.has(text[i] ?? '')) {
|
|
10
|
+
return i;
|
|
12
11
|
}
|
|
13
|
-
|
|
12
|
+
}
|
|
13
|
+
return -1;
|
|
14
14
|
}
|
|
15
15
|
function findUnclosedQuoteStart(text) {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
}
|
|
16
|
+
let inQuotes = false;
|
|
17
|
+
let quoteStart = -1;
|
|
18
|
+
for (let i = 0; i < text.length; i += 1) {
|
|
19
|
+
if (text[i] === '"') {
|
|
20
|
+
inQuotes = !inQuotes;
|
|
21
|
+
if (inQuotes) {
|
|
22
|
+
quoteStart = i;
|
|
23
|
+
}
|
|
25
24
|
}
|
|
26
|
-
|
|
25
|
+
}
|
|
26
|
+
return inQuotes ? quoteStart : null;
|
|
27
27
|
}
|
|
28
28
|
function isTokenStart(text, index) {
|
|
29
|
-
|
|
29
|
+
return index === 0 || PATH_DELIMITERS.has(text[index - 1] ?? '');
|
|
30
30
|
}
|
|
31
31
|
function extractQuotedPrefix(text) {
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
}
|
|
40
|
-
return text.slice(quoteStart - 1);
|
|
41
|
-
}
|
|
42
|
-
if (!isTokenStart(text, quoteStart)) {
|
|
43
|
-
return null;
|
|
32
|
+
const quoteStart = findUnclosedQuoteStart(text);
|
|
33
|
+
if (quoteStart === null) {
|
|
34
|
+
return null;
|
|
35
|
+
}
|
|
36
|
+
if (quoteStart > 0 && text[quoteStart - 1] === '@') {
|
|
37
|
+
if (!isTokenStart(text, quoteStart - 1)) {
|
|
38
|
+
return null;
|
|
44
39
|
}
|
|
45
|
-
return text.slice(quoteStart);
|
|
40
|
+
return text.slice(quoteStart - 1);
|
|
41
|
+
}
|
|
42
|
+
if (!isTokenStart(text, quoteStart)) {
|
|
43
|
+
return null;
|
|
44
|
+
}
|
|
45
|
+
return text.slice(quoteStart);
|
|
46
46
|
}
|
|
47
47
|
function parsePathPrefix(prefix) {
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
48
|
+
if (prefix.startsWith('@"')) {
|
|
49
|
+
return { rawPrefix: prefix.slice(2), isAtPrefix: true, isQuotedPrefix: true };
|
|
50
|
+
}
|
|
51
|
+
if (prefix.startsWith('"')) {
|
|
52
|
+
return { rawPrefix: prefix.slice(1), isAtPrefix: false, isQuotedPrefix: true };
|
|
53
|
+
}
|
|
54
|
+
if (prefix.startsWith('@')) {
|
|
55
|
+
return { rawPrefix: prefix.slice(1), isAtPrefix: true, isQuotedPrefix: false };
|
|
56
|
+
}
|
|
57
|
+
return { rawPrefix: prefix, isAtPrefix: false, isQuotedPrefix: false };
|
|
58
58
|
}
|
|
59
59
|
function buildCompletionValue(path, options) {
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
60
|
+
const needsQuotes = options.isQuotedPrefix || path.includes(' ');
|
|
61
|
+
const prefix = options.isAtPrefix ? '@' : '';
|
|
62
|
+
if (!needsQuotes) {
|
|
63
|
+
return `${prefix}${path}`;
|
|
64
|
+
}
|
|
65
|
+
const openQuote = `${prefix}"`;
|
|
66
|
+
const closeQuote = '"';
|
|
67
|
+
return `${openQuote}${path}${closeQuote}`;
|
|
68
68
|
}
|
|
69
69
|
// Use fd to walk directory tree (fast, respects .gitignore)
|
|
70
70
|
function walkDirectoryWithFd(baseDir, fdPath, query, maxResults) {
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
71
|
+
const args = [
|
|
72
|
+
'--base-directory',
|
|
73
|
+
baseDir,
|
|
74
|
+
'--max-results',
|
|
75
|
+
String(maxResults),
|
|
76
|
+
'--type',
|
|
77
|
+
'f',
|
|
78
|
+
'--type',
|
|
79
|
+
'd',
|
|
80
|
+
'--full-path',
|
|
81
|
+
'--hidden',
|
|
82
|
+
'--exclude',
|
|
83
|
+
'.git',
|
|
84
|
+
'--exclude',
|
|
85
|
+
'.git/*',
|
|
86
|
+
'--exclude',
|
|
87
|
+
'.git/**'
|
|
88
|
+
];
|
|
89
|
+
// Add query as pattern if provided
|
|
90
|
+
if (query) {
|
|
91
|
+
args.push(query);
|
|
92
|
+
}
|
|
93
|
+
const result = spawnSync(fdPath, args, {
|
|
94
|
+
encoding: 'utf-8',
|
|
95
|
+
stdio: ['pipe', 'pipe', 'pipe'],
|
|
96
|
+
maxBuffer: 10 * 1024 * 1024
|
|
97
|
+
});
|
|
98
|
+
if (result.status !== 0 || !result.stdout) {
|
|
99
|
+
return [];
|
|
100
|
+
}
|
|
101
|
+
const lines = result.stdout.trim().split('\n').filter(Boolean);
|
|
102
|
+
const results = [];
|
|
103
|
+
for (const line of lines) {
|
|
104
|
+
const normalizedPath = line.endsWith('/') ? line.slice(0, -1) : line;
|
|
105
|
+
if (
|
|
106
|
+
normalizedPath === '.git' ||
|
|
107
|
+
normalizedPath.startsWith('.git/') ||
|
|
108
|
+
normalizedPath.includes('/.git/')
|
|
109
|
+
) {
|
|
110
|
+
continue;
|
|
92
111
|
}
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
112
|
+
// fd outputs directories with trailing /
|
|
113
|
+
const isDirectory = line.endsWith('/');
|
|
114
|
+
results.push({
|
|
115
|
+
path: line,
|
|
116
|
+
isDirectory
|
|
97
117
|
});
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
}
|
|
101
|
-
const lines = result.stdout.trim().split("\n").filter(Boolean);
|
|
102
|
-
const results = [];
|
|
103
|
-
for (const line of lines) {
|
|
104
|
-
const normalizedPath = line.endsWith("/") ? line.slice(0, -1) : line;
|
|
105
|
-
if (normalizedPath === ".git" || normalizedPath.startsWith(".git/") || normalizedPath.includes("/.git/")) {
|
|
106
|
-
continue;
|
|
107
|
-
}
|
|
108
|
-
// fd outputs directories with trailing /
|
|
109
|
-
const isDirectory = line.endsWith("/");
|
|
110
|
-
results.push({
|
|
111
|
-
path: line,
|
|
112
|
-
isDirectory,
|
|
113
|
-
});
|
|
114
|
-
}
|
|
115
|
-
return results;
|
|
118
|
+
}
|
|
119
|
+
return results;
|
|
116
120
|
}
|
|
117
121
|
// Combined provider that handles both slash commands and file paths
|
|
118
122
|
export class CombinedAutocompleteProvider {
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
123
|
+
commands;
|
|
124
|
+
basePath;
|
|
125
|
+
fdPath;
|
|
126
|
+
constructor(commands = [], basePath = process.cwd(), fdPath = null) {
|
|
127
|
+
this.commands = commands;
|
|
128
|
+
this.basePath = basePath;
|
|
129
|
+
this.fdPath = fdPath;
|
|
130
|
+
}
|
|
131
|
+
getSuggestions(lines, cursorLine, cursorCol) {
|
|
132
|
+
const currentLine = lines[cursorLine] || '';
|
|
133
|
+
const textBeforeCursor = currentLine.slice(0, cursorCol);
|
|
134
|
+
// Check for @ file reference (fuzzy search) - must be after a delimiter or at start
|
|
135
|
+
const atPrefix = this.extractAtPrefix(textBeforeCursor);
|
|
136
|
+
if (atPrefix) {
|
|
137
|
+
const { rawPrefix, isQuotedPrefix } = parsePathPrefix(atPrefix);
|
|
138
|
+
const suggestions = this.getFuzzyFileSuggestions(rawPrefix, {
|
|
139
|
+
isQuotedPrefix: isQuotedPrefix
|
|
140
|
+
});
|
|
141
|
+
if (suggestions.length === 0) return null;
|
|
142
|
+
return {
|
|
143
|
+
items: suggestions,
|
|
144
|
+
prefix: atPrefix
|
|
145
|
+
};
|
|
126
146
|
}
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
if (
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
if (filtered.length === 0)
|
|
159
|
-
return null;
|
|
160
|
-
return {
|
|
161
|
-
items: filtered,
|
|
162
|
-
prefix: textBeforeCursor,
|
|
163
|
-
};
|
|
164
|
-
}
|
|
165
|
-
else {
|
|
166
|
-
// Space found - complete command arguments
|
|
167
|
-
const commandName = textBeforeCursor.slice(1, spaceIndex); // Command without "/"
|
|
168
|
-
const argumentText = textBeforeCursor.slice(spaceIndex + 1); // Text after space
|
|
169
|
-
const command = this.commands.find((cmd) => {
|
|
170
|
-
const name = "name" in cmd ? cmd.name : cmd.value;
|
|
171
|
-
return name === commandName;
|
|
172
|
-
});
|
|
173
|
-
if (!command || !("getArgumentCompletions" in command) || !command.getArgumentCompletions) {
|
|
174
|
-
return null; // No argument completion for this command
|
|
175
|
-
}
|
|
176
|
-
const argumentSuggestions = command.getArgumentCompletions(argumentText);
|
|
177
|
-
if (!argumentSuggestions || argumentSuggestions.length === 0) {
|
|
178
|
-
return null;
|
|
179
|
-
}
|
|
180
|
-
return {
|
|
181
|
-
items: argumentSuggestions,
|
|
182
|
-
prefix: argumentText,
|
|
183
|
-
};
|
|
184
|
-
}
|
|
147
|
+
// Check for slash commands
|
|
148
|
+
if (textBeforeCursor.startsWith('/')) {
|
|
149
|
+
const spaceIndex = textBeforeCursor.indexOf(' ');
|
|
150
|
+
if (spaceIndex === -1) {
|
|
151
|
+
// No space yet - complete command names with fuzzy matching
|
|
152
|
+
const prefix = textBeforeCursor.slice(1); // Remove the "/"
|
|
153
|
+
const commandItems = this.commands.map((cmd) => ({
|
|
154
|
+
name: 'name' in cmd ? cmd.name : cmd.value,
|
|
155
|
+
label: 'name' in cmd ? cmd.name : cmd.label,
|
|
156
|
+
description: cmd.description
|
|
157
|
+
}));
|
|
158
|
+
const filtered = fuzzyFilter(commandItems, prefix, (item) => item.name).map((item) => ({
|
|
159
|
+
value: item.name,
|
|
160
|
+
label: item.label,
|
|
161
|
+
...(item.description && { description: item.description })
|
|
162
|
+
}));
|
|
163
|
+
if (filtered.length === 0) return null;
|
|
164
|
+
return {
|
|
165
|
+
items: filtered,
|
|
166
|
+
prefix: textBeforeCursor
|
|
167
|
+
};
|
|
168
|
+
} else {
|
|
169
|
+
// Space found - complete command arguments
|
|
170
|
+
const commandName = textBeforeCursor.slice(1, spaceIndex); // Command without "/"
|
|
171
|
+
const argumentText = textBeforeCursor.slice(spaceIndex + 1); // Text after space
|
|
172
|
+
const command = this.commands.find((cmd) => {
|
|
173
|
+
const name = 'name' in cmd ? cmd.name : cmd.value;
|
|
174
|
+
return name === commandName;
|
|
175
|
+
});
|
|
176
|
+
if (!command || !('getArgumentCompletions' in command) || !command.getArgumentCompletions) {
|
|
177
|
+
return null; // No argument completion for this command
|
|
185
178
|
}
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
const suggestions = this.getFileSuggestions(pathMatch);
|
|
190
|
-
if (suggestions.length === 0)
|
|
191
|
-
return null;
|
|
192
|
-
// Check if we have an exact match that is a directory
|
|
193
|
-
// In that case, we might want to return suggestions for the directory content instead
|
|
194
|
-
// But only if the prefix ends with /
|
|
195
|
-
if (suggestions.length === 1 && suggestions[0]?.value === pathMatch && !pathMatch.endsWith("/")) {
|
|
196
|
-
// Exact match found (e.g. user typed "src" and "src/" is the only match)
|
|
197
|
-
// We still return it so user can select it and add /
|
|
198
|
-
return {
|
|
199
|
-
items: suggestions,
|
|
200
|
-
prefix: pathMatch,
|
|
201
|
-
};
|
|
202
|
-
}
|
|
203
|
-
return {
|
|
204
|
-
items: suggestions,
|
|
205
|
-
prefix: pathMatch,
|
|
206
|
-
};
|
|
179
|
+
const argumentSuggestions = command.getArgumentCompletions(argumentText);
|
|
180
|
+
if (!argumentSuggestions || argumentSuggestions.length === 0) {
|
|
181
|
+
return null;
|
|
207
182
|
}
|
|
208
|
-
return
|
|
183
|
+
return {
|
|
184
|
+
items: argumentSuggestions,
|
|
185
|
+
prefix: argumentText
|
|
186
|
+
};
|
|
187
|
+
}
|
|
209
188
|
}
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
newLines[cursorLine] = newLine;
|
|
226
|
-
return {
|
|
227
|
-
lines: newLines,
|
|
228
|
-
cursorLine,
|
|
229
|
-
cursorCol: beforePrefix.length + item.value.length + 2, // +2 for "/" and space
|
|
230
|
-
};
|
|
231
|
-
}
|
|
232
|
-
// Check if we're completing a file attachment (prefix starts with "@")
|
|
233
|
-
if (prefix.startsWith("@")) {
|
|
234
|
-
// This is a file attachment completion
|
|
235
|
-
// Don't add space after directories so user can continue autocompleting
|
|
236
|
-
const isDirectory = item.label.endsWith("/");
|
|
237
|
-
const suffix = isDirectory ? "" : " ";
|
|
238
|
-
const newLine = `${beforePrefix + item.value}${suffix}${adjustedAfterCursor}`;
|
|
239
|
-
const newLines = [...lines];
|
|
240
|
-
newLines[cursorLine] = newLine;
|
|
241
|
-
const hasTrailingQuote = item.value.endsWith('"');
|
|
242
|
-
const cursorOffset = isDirectory && hasTrailingQuote ? item.value.length - 1 : item.value.length;
|
|
243
|
-
return {
|
|
244
|
-
lines: newLines,
|
|
245
|
-
cursorLine,
|
|
246
|
-
cursorCol: beforePrefix.length + cursorOffset + suffix.length,
|
|
247
|
-
};
|
|
248
|
-
}
|
|
249
|
-
// Check if we're in a slash command context (beforePrefix contains "/command ")
|
|
250
|
-
const textBeforeCursor = currentLine.slice(0, cursorCol);
|
|
251
|
-
if (textBeforeCursor.includes("/") && textBeforeCursor.includes(" ")) {
|
|
252
|
-
// This is likely a command argument completion
|
|
253
|
-
const newLine = beforePrefix + item.value + adjustedAfterCursor;
|
|
254
|
-
const newLines = [...lines];
|
|
255
|
-
newLines[cursorLine] = newLine;
|
|
256
|
-
const isDirectory = item.label.endsWith("/");
|
|
257
|
-
const hasTrailingQuote = item.value.endsWith('"');
|
|
258
|
-
const cursorOffset = isDirectory && hasTrailingQuote ? item.value.length - 1 : item.value.length;
|
|
259
|
-
return {
|
|
260
|
-
lines: newLines,
|
|
261
|
-
cursorLine,
|
|
262
|
-
cursorCol: beforePrefix.length + cursorOffset,
|
|
263
|
-
};
|
|
264
|
-
}
|
|
265
|
-
// For file paths, complete the path
|
|
266
|
-
const newLine = beforePrefix + item.value + adjustedAfterCursor;
|
|
267
|
-
const newLines = [...lines];
|
|
268
|
-
newLines[cursorLine] = newLine;
|
|
269
|
-
const isDirectory = item.label.endsWith("/");
|
|
270
|
-
const hasTrailingQuote = item.value.endsWith('"');
|
|
271
|
-
const cursorOffset = isDirectory && hasTrailingQuote ? item.value.length - 1 : item.value.length;
|
|
189
|
+
// Check for file paths - triggered by Tab or if we detect a path pattern
|
|
190
|
+
const pathMatch = this.extractPathPrefix(textBeforeCursor, false);
|
|
191
|
+
if (pathMatch !== null) {
|
|
192
|
+
const suggestions = this.getFileSuggestions(pathMatch);
|
|
193
|
+
if (suggestions.length === 0) return null;
|
|
194
|
+
// Check if we have an exact match that is a directory
|
|
195
|
+
// In that case, we might want to return suggestions for the directory content instead
|
|
196
|
+
// But only if the prefix ends with /
|
|
197
|
+
if (
|
|
198
|
+
suggestions.length === 1 &&
|
|
199
|
+
suggestions[0]?.value === pathMatch &&
|
|
200
|
+
!pathMatch.endsWith('/')
|
|
201
|
+
) {
|
|
202
|
+
// Exact match found (e.g. user typed "src" and "src/" is the only match)
|
|
203
|
+
// We still return it so user can select it and add /
|
|
272
204
|
return {
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
cursorCol: beforePrefix.length + cursorOffset,
|
|
205
|
+
items: suggestions,
|
|
206
|
+
prefix: pathMatch
|
|
276
207
|
};
|
|
208
|
+
}
|
|
209
|
+
return {
|
|
210
|
+
items: suggestions,
|
|
211
|
+
prefix: pathMatch
|
|
212
|
+
};
|
|
277
213
|
}
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
214
|
+
return null;
|
|
215
|
+
}
|
|
216
|
+
applyCompletion(lines, cursorLine, cursorCol, item, prefix) {
|
|
217
|
+
const currentLine = lines[cursorLine] || '';
|
|
218
|
+
const beforePrefix = currentLine.slice(0, cursorCol - prefix.length);
|
|
219
|
+
const afterCursor = currentLine.slice(cursorCol);
|
|
220
|
+
const isQuotedPrefix = prefix.startsWith('"') || prefix.startsWith('@"');
|
|
221
|
+
const hasLeadingQuoteAfterCursor = afterCursor.startsWith('"');
|
|
222
|
+
const hasTrailingQuoteInItem = item.value.endsWith('"');
|
|
223
|
+
const adjustedAfterCursor =
|
|
224
|
+
isQuotedPrefix && hasTrailingQuoteInItem && hasLeadingQuoteAfterCursor
|
|
225
|
+
? afterCursor.slice(1)
|
|
226
|
+
: afterCursor;
|
|
227
|
+
// Check if we're completing a slash command (prefix starts with "/" but NOT a file path)
|
|
228
|
+
// Slash commands are at the start of the line and don't contain path separators after the first /
|
|
229
|
+
const isSlashCommand =
|
|
230
|
+
prefix.startsWith('/') && beforePrefix.trim() === '' && !prefix.slice(1).includes('/');
|
|
231
|
+
if (isSlashCommand) {
|
|
232
|
+
// This is a command name completion
|
|
233
|
+
const newLine = `${beforePrefix}/${item.value} ${adjustedAfterCursor}`;
|
|
234
|
+
const newLines = [...lines];
|
|
235
|
+
newLines[cursorLine] = newLine;
|
|
236
|
+
return {
|
|
237
|
+
lines: newLines,
|
|
238
|
+
cursorLine,
|
|
239
|
+
cursorCol: beforePrefix.length + item.value.length + 2 // +2 for "/" and space
|
|
240
|
+
};
|
|
290
241
|
}
|
|
291
|
-
//
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
// Return empty string only after a space (not for completely empty text)
|
|
309
|
-
// Empty text should not trigger file suggestions - that's for forced Tab completion
|
|
310
|
-
if (pathPrefix === "" && text.endsWith(" ")) {
|
|
311
|
-
return pathPrefix;
|
|
312
|
-
}
|
|
313
|
-
return null;
|
|
242
|
+
// Check if we're completing a file attachment (prefix starts with "@")
|
|
243
|
+
if (prefix.startsWith('@')) {
|
|
244
|
+
// This is a file attachment completion
|
|
245
|
+
// Don't add space after directories so user can continue autocompleting
|
|
246
|
+
const isDirectory = item.label.endsWith('/');
|
|
247
|
+
const suffix = isDirectory ? '' : ' ';
|
|
248
|
+
const newLine = `${beforePrefix + item.value}${suffix}${adjustedAfterCursor}`;
|
|
249
|
+
const newLines = [...lines];
|
|
250
|
+
newLines[cursorLine] = newLine;
|
|
251
|
+
const hasTrailingQuote = item.value.endsWith('"');
|
|
252
|
+
const cursorOffset =
|
|
253
|
+
isDirectory && hasTrailingQuote ? item.value.length - 1 : item.value.length;
|
|
254
|
+
return {
|
|
255
|
+
lines: newLines,
|
|
256
|
+
cursorLine,
|
|
257
|
+
cursorCol: beforePrefix.length + cursorOffset + suffix.length
|
|
258
|
+
};
|
|
314
259
|
}
|
|
315
|
-
//
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
260
|
+
// Check if we're in a slash command context (beforePrefix contains "/command ")
|
|
261
|
+
const textBeforeCursor = currentLine.slice(0, cursorCol);
|
|
262
|
+
if (textBeforeCursor.includes('/') && textBeforeCursor.includes(' ')) {
|
|
263
|
+
// This is likely a command argument completion
|
|
264
|
+
const newLine = beforePrefix + item.value + adjustedAfterCursor;
|
|
265
|
+
const newLines = [...lines];
|
|
266
|
+
newLines[cursorLine] = newLine;
|
|
267
|
+
const isDirectory = item.label.endsWith('/');
|
|
268
|
+
const hasTrailingQuote = item.value.endsWith('"');
|
|
269
|
+
const cursorOffset =
|
|
270
|
+
isDirectory && hasTrailingQuote ? item.value.length - 1 : item.value.length;
|
|
271
|
+
return {
|
|
272
|
+
lines: newLines,
|
|
273
|
+
cursorLine,
|
|
274
|
+
cursorCol: beforePrefix.length + cursorOffset
|
|
275
|
+
};
|
|
326
276
|
}
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
return null;
|
|
347
|
-
}
|
|
348
|
-
}
|
|
349
|
-
catch {
|
|
350
|
-
return null;
|
|
351
|
-
}
|
|
352
|
-
return { baseDir, query, displayBase };
|
|
277
|
+
// For file paths, complete the path
|
|
278
|
+
const newLine = beforePrefix + item.value + adjustedAfterCursor;
|
|
279
|
+
const newLines = [...lines];
|
|
280
|
+
newLines[cursorLine] = newLine;
|
|
281
|
+
const isDirectory = item.label.endsWith('/');
|
|
282
|
+
const hasTrailingQuote = item.value.endsWith('"');
|
|
283
|
+
const cursorOffset =
|
|
284
|
+
isDirectory && hasTrailingQuote ? item.value.length - 1 : item.value.length;
|
|
285
|
+
return {
|
|
286
|
+
lines: newLines,
|
|
287
|
+
cursorLine,
|
|
288
|
+
cursorCol: beforePrefix.length + cursorOffset
|
|
289
|
+
};
|
|
290
|
+
}
|
|
291
|
+
// Extract @ prefix for fuzzy file suggestions
|
|
292
|
+
extractAtPrefix(text) {
|
|
293
|
+
const quotedPrefix = extractQuotedPrefix(text);
|
|
294
|
+
if (quotedPrefix?.startsWith('@"')) {
|
|
295
|
+
return quotedPrefix;
|
|
353
296
|
}
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
return `${displayBase}${relativePath}`;
|
|
297
|
+
const lastDelimiterIndex = findLastDelimiter(text);
|
|
298
|
+
const tokenStart = lastDelimiterIndex === -1 ? 0 : lastDelimiterIndex + 1;
|
|
299
|
+
if (text[tokenStart] === '@') {
|
|
300
|
+
return text.slice(tokenStart);
|
|
359
301
|
}
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
// Handle home directory expansion
|
|
368
|
-
if (expandedPrefix.startsWith("~")) {
|
|
369
|
-
expandedPrefix = this.expandHomePath(expandedPrefix);
|
|
370
|
-
}
|
|
371
|
-
const isRootPrefix = rawPrefix === "" ||
|
|
372
|
-
rawPrefix === "./" ||
|
|
373
|
-
rawPrefix === "../" ||
|
|
374
|
-
rawPrefix === "~" ||
|
|
375
|
-
rawPrefix === "~/" ||
|
|
376
|
-
rawPrefix === "/" ||
|
|
377
|
-
(isAtPrefix && rawPrefix === "");
|
|
378
|
-
if (isRootPrefix) {
|
|
379
|
-
// Complete from specified position
|
|
380
|
-
if (rawPrefix.startsWith("~") || expandedPrefix.startsWith("/")) {
|
|
381
|
-
searchDir = expandedPrefix;
|
|
382
|
-
}
|
|
383
|
-
else {
|
|
384
|
-
searchDir = join(this.basePath, expandedPrefix);
|
|
385
|
-
}
|
|
386
|
-
searchPrefix = "";
|
|
387
|
-
}
|
|
388
|
-
else if (rawPrefix.endsWith("/")) {
|
|
389
|
-
// If prefix ends with /, show contents of that directory
|
|
390
|
-
if (rawPrefix.startsWith("~") || expandedPrefix.startsWith("/")) {
|
|
391
|
-
searchDir = expandedPrefix;
|
|
392
|
-
}
|
|
393
|
-
else {
|
|
394
|
-
searchDir = join(this.basePath, expandedPrefix);
|
|
395
|
-
}
|
|
396
|
-
searchPrefix = "";
|
|
397
|
-
}
|
|
398
|
-
else {
|
|
399
|
-
// Split into directory and file prefix
|
|
400
|
-
const dir = dirname(expandedPrefix);
|
|
401
|
-
const file = basename(expandedPrefix);
|
|
402
|
-
if (rawPrefix.startsWith("~") || expandedPrefix.startsWith("/")) {
|
|
403
|
-
searchDir = dir;
|
|
404
|
-
}
|
|
405
|
-
else {
|
|
406
|
-
searchDir = join(this.basePath, dir);
|
|
407
|
-
}
|
|
408
|
-
searchPrefix = file;
|
|
409
|
-
}
|
|
410
|
-
const entries = readdirSync(searchDir, { withFileTypes: true });
|
|
411
|
-
const suggestions = [];
|
|
412
|
-
for (const entry of entries) {
|
|
413
|
-
if (!entry.name.toLowerCase().startsWith(searchPrefix.toLowerCase())) {
|
|
414
|
-
continue;
|
|
415
|
-
}
|
|
416
|
-
// Check if entry is a directory (or a symlink pointing to a directory)
|
|
417
|
-
let isDirectory = entry.isDirectory();
|
|
418
|
-
if (!isDirectory && entry.isSymbolicLink()) {
|
|
419
|
-
try {
|
|
420
|
-
const fullPath = join(searchDir, entry.name);
|
|
421
|
-
isDirectory = statSync(fullPath).isDirectory();
|
|
422
|
-
}
|
|
423
|
-
catch {
|
|
424
|
-
// Broken symlink or permission error - treat as file
|
|
425
|
-
}
|
|
426
|
-
}
|
|
427
|
-
let relativePath;
|
|
428
|
-
const name = entry.name;
|
|
429
|
-
const displayPrefix = rawPrefix;
|
|
430
|
-
if (displayPrefix.endsWith("/")) {
|
|
431
|
-
// If prefix ends with /, append entry to the prefix
|
|
432
|
-
relativePath = displayPrefix + name;
|
|
433
|
-
}
|
|
434
|
-
else if (displayPrefix.includes("/")) {
|
|
435
|
-
// Preserve ~/ format for home directory paths
|
|
436
|
-
if (displayPrefix.startsWith("~/")) {
|
|
437
|
-
const homeRelativeDir = displayPrefix.slice(2); // Remove ~/
|
|
438
|
-
const dir = dirname(homeRelativeDir);
|
|
439
|
-
relativePath = `~/${dir === "." ? name : join(dir, name)}`;
|
|
440
|
-
}
|
|
441
|
-
else if (displayPrefix.startsWith("/")) {
|
|
442
|
-
// Absolute path - construct properly
|
|
443
|
-
const dir = dirname(displayPrefix);
|
|
444
|
-
if (dir === "/") {
|
|
445
|
-
relativePath = `/${name}`;
|
|
446
|
-
}
|
|
447
|
-
else {
|
|
448
|
-
relativePath = `${dir}/${name}`;
|
|
449
|
-
}
|
|
450
|
-
}
|
|
451
|
-
else {
|
|
452
|
-
relativePath = join(dirname(displayPrefix), name);
|
|
453
|
-
}
|
|
454
|
-
}
|
|
455
|
-
else {
|
|
456
|
-
// For standalone entries, preserve ~/ if original prefix was ~/
|
|
457
|
-
if (displayPrefix.startsWith("~")) {
|
|
458
|
-
relativePath = `~/${name}`;
|
|
459
|
-
}
|
|
460
|
-
else {
|
|
461
|
-
relativePath = name;
|
|
462
|
-
}
|
|
463
|
-
}
|
|
464
|
-
const pathValue = isDirectory ? `${relativePath}/` : relativePath;
|
|
465
|
-
const value = buildCompletionValue(pathValue, {
|
|
466
|
-
isDirectory,
|
|
467
|
-
isAtPrefix,
|
|
468
|
-
isQuotedPrefix,
|
|
469
|
-
});
|
|
470
|
-
suggestions.push({
|
|
471
|
-
value,
|
|
472
|
-
label: name + (isDirectory ? "/" : ""),
|
|
473
|
-
});
|
|
474
|
-
}
|
|
475
|
-
// Sort directories first, then alphabetically
|
|
476
|
-
suggestions.sort((a, b) => {
|
|
477
|
-
const aIsDir = a.value.endsWith("/");
|
|
478
|
-
const bIsDir = b.value.endsWith("/");
|
|
479
|
-
if (aIsDir && !bIsDir)
|
|
480
|
-
return -1;
|
|
481
|
-
if (!aIsDir && bIsDir)
|
|
482
|
-
return 1;
|
|
483
|
-
return a.label.localeCompare(b.label);
|
|
484
|
-
});
|
|
485
|
-
return suggestions;
|
|
486
|
-
}
|
|
487
|
-
catch (_e) {
|
|
488
|
-
// Directory doesn't exist or not accessible
|
|
489
|
-
return [];
|
|
490
|
-
}
|
|
302
|
+
return null;
|
|
303
|
+
}
|
|
304
|
+
// Extract a path-like prefix from the text before cursor
|
|
305
|
+
extractPathPrefix(text, forceExtract = false) {
|
|
306
|
+
const quotedPrefix = extractQuotedPrefix(text);
|
|
307
|
+
if (quotedPrefix) {
|
|
308
|
+
return quotedPrefix;
|
|
491
309
|
}
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
const lowerQuery = query.toLowerCase();
|
|
498
|
-
let score = 0;
|
|
499
|
-
// Exact filename match (highest)
|
|
500
|
-
if (lowerFileName === lowerQuery)
|
|
501
|
-
score = 100;
|
|
502
|
-
// Filename starts with query
|
|
503
|
-
else if (lowerFileName.startsWith(lowerQuery))
|
|
504
|
-
score = 80;
|
|
505
|
-
// Substring match in filename
|
|
506
|
-
else if (lowerFileName.includes(lowerQuery))
|
|
507
|
-
score = 50;
|
|
508
|
-
// Substring match in full path
|
|
509
|
-
else if (filePath.toLowerCase().includes(lowerQuery))
|
|
510
|
-
score = 30;
|
|
511
|
-
// Directories get a bonus to appear first
|
|
512
|
-
if (isDirectory && score > 0)
|
|
513
|
-
score += 10;
|
|
514
|
-
return score;
|
|
310
|
+
const lastDelimiterIndex = findLastDelimiter(text);
|
|
311
|
+
const pathPrefix = lastDelimiterIndex === -1 ? text : text.slice(lastDelimiterIndex + 1);
|
|
312
|
+
// For forced extraction (Tab key), always return something
|
|
313
|
+
if (forceExtract) {
|
|
314
|
+
return pathPrefix;
|
|
515
315
|
}
|
|
516
|
-
//
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
return [];
|
|
521
|
-
}
|
|
522
|
-
try {
|
|
523
|
-
const scopedQuery = this.resolveScopedFuzzyQuery(query);
|
|
524
|
-
const fdBaseDir = scopedQuery?.baseDir ?? this.basePath;
|
|
525
|
-
const fdQuery = scopedQuery?.query ?? query;
|
|
526
|
-
const entries = walkDirectoryWithFd(fdBaseDir, this.fdPath, fdQuery, 100);
|
|
527
|
-
// Score entries
|
|
528
|
-
const scoredEntries = entries
|
|
529
|
-
.map((entry) => ({
|
|
530
|
-
...entry,
|
|
531
|
-
score: fdQuery ? this.scoreEntry(entry.path, fdQuery, entry.isDirectory) : 1,
|
|
532
|
-
}))
|
|
533
|
-
.filter((entry) => entry.score > 0);
|
|
534
|
-
// Sort by score (descending) and take top 20
|
|
535
|
-
scoredEntries.sort((a, b) => b.score - a.score);
|
|
536
|
-
const topEntries = scoredEntries.slice(0, 20);
|
|
537
|
-
// Build suggestions
|
|
538
|
-
const suggestions = [];
|
|
539
|
-
for (const { path: entryPath, isDirectory } of topEntries) {
|
|
540
|
-
// fd already includes trailing / for directories
|
|
541
|
-
const pathWithoutSlash = isDirectory ? entryPath.slice(0, -1) : entryPath;
|
|
542
|
-
const displayPath = scopedQuery
|
|
543
|
-
? this.scopedPathForDisplay(scopedQuery.displayBase, pathWithoutSlash)
|
|
544
|
-
: pathWithoutSlash;
|
|
545
|
-
const entryName = basename(pathWithoutSlash);
|
|
546
|
-
const completionPath = isDirectory ? `${displayPath}/` : displayPath;
|
|
547
|
-
const value = buildCompletionValue(completionPath, {
|
|
548
|
-
isDirectory,
|
|
549
|
-
isAtPrefix: true,
|
|
550
|
-
isQuotedPrefix: options.isQuotedPrefix,
|
|
551
|
-
});
|
|
552
|
-
suggestions.push({
|
|
553
|
-
value,
|
|
554
|
-
label: entryName + (isDirectory ? "/" : ""),
|
|
555
|
-
description: displayPath,
|
|
556
|
-
});
|
|
557
|
-
}
|
|
558
|
-
return suggestions;
|
|
559
|
-
}
|
|
560
|
-
catch {
|
|
561
|
-
return [];
|
|
562
|
-
}
|
|
316
|
+
// For natural triggers, return if it looks like a path, ends with /, starts with ~/, .
|
|
317
|
+
// Only return empty string if the text looks like it's starting a path context
|
|
318
|
+
if (pathPrefix.includes('/') || pathPrefix.startsWith('.') || pathPrefix.startsWith('~/')) {
|
|
319
|
+
return pathPrefix;
|
|
563
320
|
}
|
|
564
|
-
//
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
321
|
+
// Return empty string only after a space (not for completely empty text)
|
|
322
|
+
// Empty text should not trigger file suggestions - that's for forced Tab completion
|
|
323
|
+
if (pathPrefix === '' && text.endsWith(' ')) {
|
|
324
|
+
return pathPrefix;
|
|
325
|
+
}
|
|
326
|
+
return null;
|
|
327
|
+
}
|
|
328
|
+
// Expand home directory (~/) to actual home path
|
|
329
|
+
expandHomePath(path) {
|
|
330
|
+
if (path.startsWith('~/')) {
|
|
331
|
+
const expandedPath = join(homedir(), path.slice(2));
|
|
332
|
+
// Preserve trailing slash if original path had one
|
|
333
|
+
return path.endsWith('/') && !expandedPath.endsWith('/') ? `${expandedPath}/` : expandedPath;
|
|
334
|
+
} else if (path === '~') {
|
|
335
|
+
return homedir();
|
|
336
|
+
}
|
|
337
|
+
return path;
|
|
338
|
+
}
|
|
339
|
+
resolveScopedFuzzyQuery(rawQuery) {
|
|
340
|
+
const slashIndex = rawQuery.lastIndexOf('/');
|
|
341
|
+
if (slashIndex === -1) {
|
|
342
|
+
return null;
|
|
343
|
+
}
|
|
344
|
+
const displayBase = rawQuery.slice(0, slashIndex + 1);
|
|
345
|
+
const query = rawQuery.slice(slashIndex + 1);
|
|
346
|
+
let baseDir;
|
|
347
|
+
if (displayBase.startsWith('~/')) {
|
|
348
|
+
baseDir = this.expandHomePath(displayBase);
|
|
349
|
+
} else if (displayBase.startsWith('/')) {
|
|
350
|
+
baseDir = displayBase;
|
|
351
|
+
} else {
|
|
352
|
+
baseDir = join(this.basePath, displayBase);
|
|
353
|
+
}
|
|
354
|
+
try {
|
|
355
|
+
if (!statSync(baseDir).isDirectory()) {
|
|
583
356
|
return null;
|
|
357
|
+
}
|
|
358
|
+
} catch {
|
|
359
|
+
return null;
|
|
584
360
|
}
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
361
|
+
return { baseDir, query, displayBase };
|
|
362
|
+
}
|
|
363
|
+
scopedPathForDisplay(displayBase, relativePath) {
|
|
364
|
+
if (displayBase === '/') {
|
|
365
|
+
return `/${relativePath}`;
|
|
366
|
+
}
|
|
367
|
+
return `${displayBase}${relativePath}`;
|
|
368
|
+
}
|
|
369
|
+
// Get file/directory suggestions for a given path prefix
|
|
370
|
+
getFileSuggestions(prefix) {
|
|
371
|
+
try {
|
|
372
|
+
let searchDir;
|
|
373
|
+
let searchPrefix;
|
|
374
|
+
const { rawPrefix, isAtPrefix, isQuotedPrefix } = parsePathPrefix(prefix);
|
|
375
|
+
let expandedPrefix = rawPrefix;
|
|
376
|
+
// Handle home directory expansion
|
|
377
|
+
if (expandedPrefix.startsWith('~')) {
|
|
378
|
+
expandedPrefix = this.expandHomePath(expandedPrefix);
|
|
379
|
+
}
|
|
380
|
+
const isRootPrefix =
|
|
381
|
+
rawPrefix === '' ||
|
|
382
|
+
rawPrefix === './' ||
|
|
383
|
+
rawPrefix === '../' ||
|
|
384
|
+
rawPrefix === '~' ||
|
|
385
|
+
rawPrefix === '~/' ||
|
|
386
|
+
rawPrefix === '/' ||
|
|
387
|
+
(isAtPrefix && rawPrefix === '');
|
|
388
|
+
if (isRootPrefix) {
|
|
389
|
+
// Complete from specified position
|
|
390
|
+
if (rawPrefix.startsWith('~') || expandedPrefix.startsWith('/')) {
|
|
391
|
+
searchDir = expandedPrefix;
|
|
392
|
+
} else {
|
|
393
|
+
searchDir = join(this.basePath, expandedPrefix);
|
|
394
|
+
}
|
|
395
|
+
searchPrefix = '';
|
|
396
|
+
} else if (rawPrefix.endsWith('/')) {
|
|
397
|
+
// If prefix ends with /, show contents of that directory
|
|
398
|
+
if (rawPrefix.startsWith('~') || expandedPrefix.startsWith('/')) {
|
|
399
|
+
searchDir = expandedPrefix;
|
|
400
|
+
} else {
|
|
401
|
+
searchDir = join(this.basePath, expandedPrefix);
|
|
402
|
+
}
|
|
403
|
+
searchPrefix = '';
|
|
404
|
+
} else {
|
|
405
|
+
// Split into directory and file prefix
|
|
406
|
+
const dir = dirname(expandedPrefix);
|
|
407
|
+
const file = basename(expandedPrefix);
|
|
408
|
+
if (rawPrefix.startsWith('~') || expandedPrefix.startsWith('/')) {
|
|
409
|
+
searchDir = dir;
|
|
410
|
+
} else {
|
|
411
|
+
searchDir = join(this.basePath, dir);
|
|
412
|
+
}
|
|
413
|
+
searchPrefix = file;
|
|
414
|
+
}
|
|
415
|
+
const entries = readdirSync(searchDir, { withFileTypes: true });
|
|
416
|
+
const suggestions = [];
|
|
417
|
+
for (const entry of entries) {
|
|
418
|
+
if (!entry.name.toLowerCase().startsWith(searchPrefix.toLowerCase())) {
|
|
419
|
+
continue;
|
|
420
|
+
}
|
|
421
|
+
// Check if entry is a directory (or a symlink pointing to a directory)
|
|
422
|
+
let isDirectory = entry.isDirectory();
|
|
423
|
+
if (!isDirectory && entry.isSymbolicLink()) {
|
|
424
|
+
try {
|
|
425
|
+
const fullPath = join(searchDir, entry.name);
|
|
426
|
+
isDirectory = statSync(fullPath).isDirectory();
|
|
427
|
+
} catch {
|
|
428
|
+
// Broken symlink or permission error - treat as file
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
let relativePath;
|
|
432
|
+
const name = entry.name;
|
|
433
|
+
const displayPrefix = rawPrefix;
|
|
434
|
+
if (displayPrefix.endsWith('/')) {
|
|
435
|
+
// If prefix ends with /, append entry to the prefix
|
|
436
|
+
relativePath = displayPrefix + name;
|
|
437
|
+
} else if (displayPrefix.includes('/')) {
|
|
438
|
+
// Preserve ~/ format for home directory paths
|
|
439
|
+
if (displayPrefix.startsWith('~/')) {
|
|
440
|
+
const homeRelativeDir = displayPrefix.slice(2); // Remove ~/
|
|
441
|
+
const dir = dirname(homeRelativeDir);
|
|
442
|
+
relativePath = `~/${dir === '.' ? name : join(dir, name)}`;
|
|
443
|
+
} else if (displayPrefix.startsWith('/')) {
|
|
444
|
+
// Absolute path - construct properly
|
|
445
|
+
const dir = dirname(displayPrefix);
|
|
446
|
+
if (dir === '/') {
|
|
447
|
+
relativePath = `/${name}`;
|
|
448
|
+
} else {
|
|
449
|
+
relativePath = `${dir}/${name}`;
|
|
450
|
+
}
|
|
451
|
+
} else {
|
|
452
|
+
relativePath = join(dirname(displayPrefix), name);
|
|
453
|
+
}
|
|
454
|
+
} else {
|
|
455
|
+
// For standalone entries, preserve ~/ if original prefix was ~/
|
|
456
|
+
if (displayPrefix.startsWith('~')) {
|
|
457
|
+
relativePath = `~/${name}`;
|
|
458
|
+
} else {
|
|
459
|
+
relativePath = name;
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
const pathValue = isDirectory ? `${relativePath}/` : relativePath;
|
|
463
|
+
const value = buildCompletionValue(pathValue, {
|
|
464
|
+
isDirectory,
|
|
465
|
+
isAtPrefix,
|
|
466
|
+
isQuotedPrefix
|
|
467
|
+
});
|
|
468
|
+
suggestions.push({
|
|
469
|
+
value,
|
|
470
|
+
label: name + (isDirectory ? '/' : '')
|
|
471
|
+
});
|
|
472
|
+
}
|
|
473
|
+
// Sort directories first, then alphabetically
|
|
474
|
+
suggestions.sort((a, b) => {
|
|
475
|
+
const aIsDir = a.value.endsWith('/');
|
|
476
|
+
const bIsDir = b.value.endsWith('/');
|
|
477
|
+
if (aIsDir && !bIsDir) return -1;
|
|
478
|
+
if (!aIsDir && bIsDir) return 1;
|
|
479
|
+
return a.label.localeCompare(b.label);
|
|
480
|
+
});
|
|
481
|
+
return suggestions;
|
|
482
|
+
} catch (_e) {
|
|
483
|
+
// Directory doesn't exist or not accessible
|
|
484
|
+
return [];
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
// Score an entry against the query (higher = better match)
|
|
488
|
+
// isDirectory adds bonus to prioritize folders
|
|
489
|
+
scoreEntry(filePath, query, isDirectory) {
|
|
490
|
+
const fileName = basename(filePath);
|
|
491
|
+
const lowerFileName = fileName.toLowerCase();
|
|
492
|
+
const lowerQuery = query.toLowerCase();
|
|
493
|
+
let score = 0;
|
|
494
|
+
// Exact filename match (highest)
|
|
495
|
+
if (lowerFileName === lowerQuery) score = 100;
|
|
496
|
+
// Filename starts with query
|
|
497
|
+
else if (lowerFileName.startsWith(lowerQuery)) score = 80;
|
|
498
|
+
// Substring match in filename
|
|
499
|
+
else if (lowerFileName.includes(lowerQuery)) score = 50;
|
|
500
|
+
// Substring match in full path
|
|
501
|
+
else if (filePath.toLowerCase().includes(lowerQuery)) score = 30;
|
|
502
|
+
// Directories get a bonus to appear first
|
|
503
|
+
if (isDirectory && score > 0) score += 10;
|
|
504
|
+
return score;
|
|
505
|
+
}
|
|
506
|
+
// Fuzzy file search using fd (fast, respects .gitignore)
|
|
507
|
+
getFuzzyFileSuggestions(query, options) {
|
|
508
|
+
if (!this.fdPath) {
|
|
509
|
+
// fd not available, return empty results
|
|
510
|
+
return [];
|
|
511
|
+
}
|
|
512
|
+
try {
|
|
513
|
+
const scopedQuery = this.resolveScopedFuzzyQuery(query);
|
|
514
|
+
const fdBaseDir = scopedQuery?.baseDir ?? this.basePath;
|
|
515
|
+
const fdQuery = scopedQuery?.query ?? query;
|
|
516
|
+
const entries = walkDirectoryWithFd(fdBaseDir, this.fdPath, fdQuery, 100);
|
|
517
|
+
// Score entries
|
|
518
|
+
const scoredEntries = entries
|
|
519
|
+
.map((entry) => ({
|
|
520
|
+
...entry,
|
|
521
|
+
score: fdQuery ? this.scoreEntry(entry.path, fdQuery, entry.isDirectory) : 1
|
|
522
|
+
}))
|
|
523
|
+
.filter((entry) => entry.score > 0);
|
|
524
|
+
// Sort by score (descending) and take top 20
|
|
525
|
+
scoredEntries.sort((a, b) => b.score - a.score);
|
|
526
|
+
const topEntries = scoredEntries.slice(0, 20);
|
|
527
|
+
// Build suggestions
|
|
528
|
+
const suggestions = [];
|
|
529
|
+
for (const { path: entryPath, isDirectory } of topEntries) {
|
|
530
|
+
// fd already includes trailing / for directories
|
|
531
|
+
const pathWithoutSlash = isDirectory ? entryPath.slice(0, -1) : entryPath;
|
|
532
|
+
const displayPath = scopedQuery
|
|
533
|
+
? this.scopedPathForDisplay(scopedQuery.displayBase, pathWithoutSlash)
|
|
534
|
+
: pathWithoutSlash;
|
|
535
|
+
const entryName = basename(pathWithoutSlash);
|
|
536
|
+
const completionPath = isDirectory ? `${displayPath}/` : displayPath;
|
|
537
|
+
const value = buildCompletionValue(completionPath, {
|
|
538
|
+
isDirectory,
|
|
539
|
+
isAtPrefix: true,
|
|
540
|
+
isQuotedPrefix: options.isQuotedPrefix
|
|
541
|
+
});
|
|
542
|
+
suggestions.push({
|
|
543
|
+
value,
|
|
544
|
+
label: entryName + (isDirectory ? '/' : ''),
|
|
545
|
+
description: displayPath
|
|
546
|
+
});
|
|
547
|
+
}
|
|
548
|
+
return suggestions;
|
|
549
|
+
} catch {
|
|
550
|
+
return [];
|
|
551
|
+
}
|
|
552
|
+
}
|
|
553
|
+
// Force file completion (called on Tab key) - always returns suggestions
|
|
554
|
+
getForceFileSuggestions(lines, cursorLine, cursorCol) {
|
|
555
|
+
const currentLine = lines[cursorLine] || '';
|
|
556
|
+
const textBeforeCursor = currentLine.slice(0, cursorCol);
|
|
557
|
+
// Don't trigger if we're typing a slash command at the start of the line
|
|
558
|
+
if (textBeforeCursor.trim().startsWith('/') && !textBeforeCursor.trim().includes(' ')) {
|
|
559
|
+
return null;
|
|
560
|
+
}
|
|
561
|
+
// Force extract path prefix - this will always return something
|
|
562
|
+
const pathMatch = this.extractPathPrefix(textBeforeCursor, true);
|
|
563
|
+
if (pathMatch !== null) {
|
|
564
|
+
const suggestions = this.getFileSuggestions(pathMatch);
|
|
565
|
+
if (suggestions.length === 0) return null;
|
|
566
|
+
return {
|
|
567
|
+
items: suggestions,
|
|
568
|
+
prefix: pathMatch
|
|
569
|
+
};
|
|
570
|
+
}
|
|
571
|
+
return null;
|
|
572
|
+
}
|
|
573
|
+
// Check if we should trigger file completion (called on Tab key)
|
|
574
|
+
shouldTriggerFileCompletion(lines, cursorLine, cursorCol) {
|
|
575
|
+
const currentLine = lines[cursorLine] || '';
|
|
576
|
+
const textBeforeCursor = currentLine.slice(0, cursorCol);
|
|
577
|
+
// Don't trigger if we're typing a slash command at the start of the line
|
|
578
|
+
if (textBeforeCursor.trim().startsWith('/') && !textBeforeCursor.trim().includes(' ')) {
|
|
579
|
+
return false;
|
|
594
580
|
}
|
|
581
|
+
return true;
|
|
582
|
+
}
|
|
595
583
|
}
|
|
596
|
-
//# sourceMappingURL=autocomplete.js.map
|
|
584
|
+
//# sourceMappingURL=autocomplete.js.map
|